[PR #592] [MERGED] Bump tui from 0.10.0 to 0.12.0 #914

Closed
opened 2026-02-28 14:53:48 +03:00 by kerem · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/Rigellute/spotify-tui/pull/592
Author: @dependabot-preview[bot]
Created: 9/28/2020
Status: Merged
Merged: 9/30/2020
Merged by: @Rigellute

Base: masterHead: dependabot/cargo/tui-0.12.0


📝 Commits (1)

  • 8aaa8c3 Bump tui from 0.10.0 to 0.12.0

📊 Changes

2 files changed (+3 additions, -3 deletions)

View changed files

📝 Cargo.lock (+2 -2)
📝 Cargo.toml (+1 -1)

📄 Description

Bumps tui from 0.10.0 to 0.12.0.

Release notes

Sourced from tui's releases.

v0.12.0

Features

  • Make it easier to work with string with multiple lines in Text (#361).

Fixes

  • Fix a style leak in Graph so components drawn on top of the plotted data (i.e legend and axis titles) are not affected by the style of the Datasets (#388).
  • Make sure BarChart shows bars with the max height only when the plotted data is actually equal to the max (#383).

v0.11.0

Features

  • Add the dot character as a new type of canvas marker (#350).
  • Support more style modifiers on Windows (#368).

Fixes

  • Clearing the terminal through Terminal::clear will cause the whole UI to be redrawn (#380).
  • Fix incorrect output when the first diff to draw is on the second cell of the terminal (#347).
Changelog

Sourced from tui's changelog.

v0.12.0 - 2020-09-27

Features

  • Make it easier to work with string with multiple lines in Text (#361).

Fixes

  • Fix a style leak in Graph so components drawn on top of the plotted data (i.e legend and axis titles) are not affected by the style of the Datasets (#388).
  • Make sure BarChart shows bars with the max height only when the plotted data is actually equal to the max (#383).

v0.11.0 - 2020-09-20

Features

  • Add the dot character as a new type of canvas marker (#350).
  • Support more style modifiers on Windows (#368).

Fixes

  • Clearing the terminal through Terminal::clear will cause the whole UI to be redrawn (#380).
  • Fix incorrect output when the first diff to draw is on the second cell of the terminal (#347).
Commits
  • 51b691e Release v0.12.0
  • c4cd0a5 fix(widgets/chart): use the correct style to draw legend and axis titles
  • 4114273 feat(buffer): add a method to build a Style out of an existing Cell
  • 62495c3 fix(widgets/barchart): fix chart filled more than actual (#383)
  • d00184a feat(text): extend Text to be stylable and extendable (#361)
  • ce32d55 chore: clippy fixes (#386)
  • 25921fa chore: added termchat to "apps using tui" (#371)
  • 932a496 chore: add rkm to the list of apps using tui (#376)
  • 57862ee Release v0.11.0
  • 11df94d fix(examples): avoid panic when computing event poll timeout in crossterm dem...
  • Additional commits viewable in compare view

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
  • @dependabot use these labels will set the current labels as the default for future PRs for this repo and language
  • @dependabot use these reviewers will set the current reviewers as the default for future PRs for this repo and language
  • @dependabot use these assignees will set the current assignees as the default for future PRs for this repo and language
  • @dependabot use this milestone will set the current milestone as the default for future PRs for this repo and language
  • @dependabot badge me will comment on this PR with code to add a "Dependabot enabled" badge to your readme

Additionally, you can set the following in your Dependabot dashboard:

  • Update frequency (including time of day and day of week)
  • Pull request limits (per update run and/or open at any time)
  • Out-of-range updates (receive only lockfile updates, if desired)
  • Security updates (receive only security updates, if desired)

🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/Rigellute/spotify-tui/pull/592 **Author:** [@dependabot-preview[bot]](https://github.com/apps/dependabot-preview) **Created:** 9/28/2020 **Status:** ✅ Merged **Merged:** 9/30/2020 **Merged by:** [@Rigellute](https://github.com/Rigellute) **Base:** `master` ← **Head:** `dependabot/cargo/tui-0.12.0` --- ### 📝 Commits (1) - [`8aaa8c3`](https://github.com/Rigellute/spotify-tui/commit/8aaa8c383580a4116665736ed772d9f1988d8154) Bump tui from 0.10.0 to 0.12.0 ### 📊 Changes **2 files changed** (+3 additions, -3 deletions) <details> <summary>View changed files</summary> 📝 `Cargo.lock` (+2 -2) 📝 `Cargo.toml` (+1 -1) </details> ### 📄 Description Bumps [tui](https://github.com/fdehau/tui-rs) from 0.10.0 to 0.12.0. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/fdehau/tui-rs/releases">tui's releases</a>.</em></p> <blockquote> <h2>v0.12.0</h2> <h3>Features</h3> <ul> <li>Make it easier to work with string with multiple lines in <code>Text</code> (<a href="https://github-redirect.dependabot.com/fdehau/tui-rs/issues/361">#361</a>).</li> </ul> <h3>Fixes</h3> <ul> <li>Fix a style leak in <code>Graph</code> so components drawn on top of the plotted data (i.e legend and axis titles) are not affected by the style of the <code>Dataset</code>s (<a href="https://github-redirect.dependabot.com/fdehau/tui-rs/issues/388">#388</a>).</li> <li>Make sure <code>BarChart</code> shows bars with the max height only when the plotted data is actually equal to the max (<a href="https://github-redirect.dependabot.com/fdehau/tui-rs/issues/383">#383</a>).</li> </ul> <h2>v0.11.0</h2> <h3>Features</h3> <ul> <li>Add the dot character as a new type of canvas marker (<a href="https://github-redirect.dependabot.com/fdehau/tui-rs/issues/350">#350</a>).</li> <li>Support more style modifiers on Windows (<a href="https://github-redirect.dependabot.com/fdehau/tui-rs/issues/368">#368</a>).</li> </ul> <h3>Fixes</h3> <ul> <li>Clearing the terminal through <code>Terminal::clear</code> will cause the whole UI to be redrawn (<a href="https://github-redirect.dependabot.com/fdehau/tui-rs/issues/380">#380</a>).</li> <li>Fix incorrect output when the first diff to draw is on the second cell of the terminal (<a href="https://github-redirect.dependabot.com/fdehau/tui-rs/issues/347">#347</a>).</li> </ul> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/fdehau/tui-rs/blob/master/CHANGELOG.md">tui's changelog</a>.</em></p> <blockquote> <h2>v0.12.0 - 2020-09-27</h2> <h3>Features</h3> <ul> <li>Make it easier to work with string with multiple lines in <code>Text</code> (<a href="https://github-redirect.dependabot.com/fdehau/tui-rs/issues/361">#361</a>).</li> </ul> <h3>Fixes</h3> <ul> <li>Fix a style leak in <code>Graph</code> so components drawn on top of the plotted data (i.e legend and axis titles) are not affected by the style of the <code>Dataset</code>s (<a href="https://github-redirect.dependabot.com/fdehau/tui-rs/issues/388">#388</a>).</li> <li>Make sure <code>BarChart</code> shows bars with the max height only when the plotted data is actually equal to the max (<a href="https://github-redirect.dependabot.com/fdehau/tui-rs/issues/383">#383</a>).</li> </ul> <h2>v0.11.0 - 2020-09-20</h2> <h3>Features</h3> <ul> <li>Add the dot character as a new type of canvas marker (<a href="https://github-redirect.dependabot.com/fdehau/tui-rs/issues/350">#350</a>).</li> <li>Support more style modifiers on Windows (<a href="https://github-redirect.dependabot.com/fdehau/tui-rs/issues/368">#368</a>).</li> </ul> <h3>Fixes</h3> <ul> <li>Clearing the terminal through <code>Terminal::clear</code> will cause the whole UI to be redrawn (<a href="https://github-redirect.dependabot.com/fdehau/tui-rs/issues/380">#380</a>).</li> <li>Fix incorrect output when the first diff to draw is on the second cell of the terminal (<a href="https://github-redirect.dependabot.com/fdehau/tui-rs/issues/347">#347</a>).</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/fdehau/tui-rs/commit/51b691e7ac48beb035abacb22c610cac53f023c5"><code>51b691e</code></a> Release v0.12.0</li> <li><a href="https://github.com/fdehau/tui-rs/commit/c4cd0a5f31581518501a1ecda93875277ff943d0"><code>c4cd0a5</code></a> fix(widgets/chart): use the correct style to draw legend and axis titles</li> <li><a href="https://github.com/fdehau/tui-rs/commit/41142732ec2bb6490c18e68fa7da02823adb65d7"><code>4114273</code></a> feat(buffer): add a method to build a <code>Style</code> out of an existing <code>Cell</code></li> <li><a href="https://github.com/fdehau/tui-rs/commit/62495c3bd1afb46969640fb6307085b33e4a85cb"><code>62495c3</code></a> fix(widgets/barchart): fix chart filled more than actual (<a href="https://github-redirect.dependabot.com/fdehau/tui-rs/issues/383">#383</a>)</li> <li><a href="https://github.com/fdehau/tui-rs/commit/d00184a7c387fb0c31453527aa7e54c52c088950"><code>d00184a</code></a> feat(text): extend <code>Text</code> to be stylable and extendable (<a href="https://github-redirect.dependabot.com/fdehau/tui-rs/issues/361">#361</a>)</li> <li><a href="https://github.com/fdehau/tui-rs/commit/ce32d5537ddfca2870bcab71736f61cd034b99bd"><code>ce32d55</code></a> chore: clippy fixes (<a href="https://github-redirect.dependabot.com/fdehau/tui-rs/issues/386">#386</a>)</li> <li><a href="https://github.com/fdehau/tui-rs/commit/25921fa91af9446baeea2586e5131ae222d6b1a4"><code>25921fa</code></a> chore: added termchat to &quot;apps using tui&quot; (<a href="https://github-redirect.dependabot.com/fdehau/tui-rs/issues/371">#371</a>)</li> <li><a href="https://github.com/fdehau/tui-rs/commit/932a496c3c6b0a26ba856bae77082ae3d585829a"><code>932a496</code></a> chore: add rkm to the list of apps using tui (<a href="https://github-redirect.dependabot.com/fdehau/tui-rs/issues/376">#376</a>)</li> <li><a href="https://github.com/fdehau/tui-rs/commit/57862eeda63539a538a8b5f8ef50620087407bbf"><code>57862ee</code></a> Release v0.11.0</li> <li><a href="https://github.com/fdehau/tui-rs/commit/11df94d601df6a01441536ebc206df9b950abc9f"><code>11df94d</code></a> fix(examples): avoid panic when computing event poll timeout in crossterm dem...</li> <li>Additional commits viewable in <a href="https://github.com/fdehau/tui-rs/compare/v0.10.0...v0.12.0">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://api.dependabot.com/badges/compatibility_score?dependency-name=tui&package-manager=cargo&previous-version=0.10.0&new-version=0.12.0)](https://dependabot.com/compatibility-score/?dependency-name=tui&package-manager=cargo&previous-version=0.10.0&new-version=0.12.0) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) - `@dependabot use these labels` will set the current labels as the default for future PRs for this repo and language - `@dependabot use these reviewers` will set the current reviewers as the default for future PRs for this repo and language - `@dependabot use these assignees` will set the current assignees as the default for future PRs for this repo and language - `@dependabot use this milestone` will set the current milestone as the default for future PRs for this repo and language - `@dependabot badge me` will comment on this PR with code to add a "Dependabot enabled" badge to your readme Additionally, you can set the following in your Dependabot [dashboard](https://app.dependabot.com): - Update frequency (including time of day and day of week) - Pull request limits (per update run and/or open at any time) - Out-of-range updates (receive only lockfile updates, if desired) - Security updates (receive only security updates, if desired) </details> --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
kerem 2026-02-28 14:53:48 +03:00
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/spotify-tui#914
No description provided.