Skip to content

build(deps): bump tui from 0.15.0 to 0.17.0#105

Closed
dependabot[bot] wants to merge 1 commit intomasterfrom
dependabot/cargo/tui-0.17.0
Closed

build(deps): bump tui from 0.15.0 to 0.17.0#105
dependabot[bot] wants to merge 1 commit intomasterfrom
dependabot/cargo/tui-0.17.0

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Jan 24, 2022

Bumps tui from 0.15.0 to 0.17.0.

Release notes

Sourced from tui's releases.

v0.17.0

Features

  • Add option to widgets::List to repeat the hightlight symbol for each line of multi-line items (#533).
  • Add option to control the alignment of Axis labels in the Chart widget (#568).

Breaking changes

  • The minimum supported rust version is now 1.56.1.

New default backend and consolidated backend options (#553)

  • crossterm is now the default backend. If you are already using the crossterm backend, you can simplify your dependency specification in Cargo.toml:
- tui = { version = "0.16", default-features = false, features = ["crossterm"] }
+ tui = "0.17"

If you are using the termion backend, your Cargo is now a bit more verbose:

- tui = "0.16"
+ tui = { version = "0.17", default-features = false, features = ["termion"] }

crossterm has also been bumped to version 0.22.

Because of their apparent low usage, curses and rustbox backends have been removed. If you are using one of them, you can import their last implementation in your own project:

Canvas labels (#543)

  • Labels of the Canvas widget are now text::Spans. The signature of widgets::canvas::Context::print has thus been updated:
- ctx.print(x, y, "Some text", Color::Yellow);
+ ctx.print(x, y, Span::styled("Some text", Style::default().fg(Color::Yellow)))

v.0.16.0

Features

  • Update crossterm to 0.20.
  • Add From<Cow<str>> implementation for text::Text (#471).
  • Add option to right or center align the title of a widgets::Block (#462).

Fixes

  • Apply label style in widgets::Gauge and avoid panics because of overflows with long labels (#494).

... (truncated)

Changelog

Sourced from tui's changelog.

v0.17.0 - 2022-01-22

Features

  • Add option to widgets::List to repeat the hightlight symbol for each line of multi-line items (#533).
  • Add option to control the alignment of Axis labels in the Chart widget (#568).

Breaking changes

  • The minimum supported rust version is now 1.56.1.

New default backend and consolidated backend options (#553)

  • crossterm is now the default backend. If you are already using the crossterm backend, you can simplify your dependency specification in Cargo.toml:
- tui = { version = "0.16", default-features = false, features = ["crossterm"] }
+ tui = "0.17"

If you are using the termion backend, your Cargo is now a bit more verbose:

- tui = "0.16"
+ tui = { version = "0.17", default-features = false, features = ["termion"] }

crossterm has also been bumped to version 0.22.

Because of their apparent low usage, curses and rustbox backends have been removed. If you are using one of them, you can import their last implementation in your own project:

Canvas labels (#543)

  • Labels of the Canvas widget are now text::Spans. The signature of widgets::canvas::Context::print has thus been updated:
- ctx.print(x, y, "Some text", Color::Yellow);
+ ctx.print(x, y, Span::styled("Some text", Style::default().fg(Color::Yellow)))

v0.16.0 - 2021-08-01

Features

  • Update crossterm to 0.20.
  • Add From<Cow<str>> implementation for text::Text (#471).
  • Add option to right or center align the title of a widgets::Block (#462).

Fixes

... (truncated)

Commits
  • 8593930 Release v0.17.0
  • cf2d9c2 feat!: bump MSRV to 1.56.1 and migrate to edition 2021
  • 853d904 feat(widgets/chart): add option to control alignment of axis labels (#568)
  • 6069d89 chore: fix all clippy warnings
  • d25e263 chore: enable clippy on all targets
  • d05e696 chore: fix optional attribute for serde feature (#571)
  • ef583ce chore(examples): remove unused demo/util.rs
  • 90c4da4 Update README.md
  • 8032191 chore: fix table example
  • c8c0329 chore: self contained examples
  • 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 dependabot bot added the dependencies Pull requests that update a dependency file label Jan 24, 2022
@dependabot dependabot bot force-pushed the dependabot/cargo/tui-0.17.0 branch from 323ee1a to 48ecf58 Compare March 20, 2022 06:18
Bumps [tui](https://github.com/fdehau/tui-rs) from 0.15.0 to 0.17.0.
- [Release notes](https://github.com/fdehau/tui-rs/releases)
- [Changelog](https://github.com/fdehau/tui-rs/blob/master/CHANGELOG.md)
- [Commits](fdehau/tui-rs@v0.15.0...v0.17.0)

---
updated-dependencies:
- dependency-name: tui
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot force-pushed the dependabot/cargo/tui-0.17.0 branch from 48ecf58 to 29052db Compare March 20, 2022 06:29
@dependabot @github
Copy link
Contributor Author

dependabot bot commented on behalf of github Apr 26, 2022

Superseded by #117.

@dependabot dependabot bot closed this Apr 26, 2022
@dependabot dependabot bot deleted the dependabot/cargo/tui-0.17.0 branch April 26, 2022 17:11
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants