Skip to content

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Feb 1, 2022

Bumps tui from 0.16.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)))
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)))
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)

Bumps [tui](https://github.com/fdehau/tui-rs) from 0.16.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.16.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 added the dependencies Pull requests that update a dependency file label Feb 1, 2022
@coveralls
Copy link

Pull Request Test Coverage Report for Build 1777866526

  • 0 of 0 changed or added relevant lines in 0 files are covered.
  • No unchanged relevant lines lost coverage.
  • Overall coverage remained the same at 38.764%

Totals Coverage Status
Change from base Build 1643721144: 0.0%
Covered Lines: 196
Relevant Lines: 360

💛 - Coveralls

@dependabot @github
Copy link
Contributor Author

dependabot bot commented on behalf of github May 1, 2022

Superseded by #25.

@dependabot dependabot bot closed this May 1, 2022
@dependabot dependabot bot deleted the dependabot/cargo/tui-0.17.0 branch May 1, 2022 11:06
@coveralls
Copy link

coveralls commented Nov 28, 2024

Pull Request Test Coverage Report for Build 1777866526

Warning: This coverage report may be inaccurate.

This pull request's base commit is no longer the HEAD commit of its target branch. This means it includes changes from outside the original pull request, including, potentially, unrelated coverage changes.

Details

  • 0 of 0 changed or added relevant lines in 0 files are covered.
  • No unchanged relevant lines lost coverage.
  • Overall coverage remained the same at 38.764%

Totals Coverage Status
Change from base Build 1643721144: 0.0%
Covered Lines: 196
Relevant Lines: 360

💛 - Coveralls

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.

2 participants