Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): bump the cargo-dependencies group across 1 directory with 7 updates #95

Closed

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Oct 28, 2024

Bumps the cargo-dependencies group with 7 updates in the / directory:

Package From To
ratatui 0.28.1 0.29.0
thiserror 1.0.64 1.0.65
tui-input 0.10.1 0.11.0
tui-popup 0.5.0 0.6.0
ansi-to-tui 6.0.0 7.0.0
tui-big-text 0.6.0 0.7.0
termbg 0.5.2 0.6.0

Updates ratatui from 0.28.1 to 0.29.0

Release notes

Sourced from ratatui's releases.

v0.29.0

v0.29.0 - 2024-10-21

"Food will come, Remy. Food always comes to those who love to cook." – Gusteau

We are excited to announce the new version of ratatui - a Rust library that's all about cooking up TUIs 👨‍🍳🐀

Release highlights: https://ratatui.rs/highlights/v029/

⚠️ List of breaking changes can be found here.

Features

  • 3a43274 (color) Add hsluv support by @​du-ob in #1333

  • 4c4851c (example) Add drawing feature to the canvas example by @​orhun in #1429

    rec_20241018T235208

    fun fact: I had to do 35 pushups for this...


  • e5a7609 (line) Impl From for Line by @​joshka in #1373 [breaking]

    BREAKING-CHANGES:Line now implements From<Cow<str>

    As this adds an extra conversion, ambiguous inferred values may no longer compile.

    // given:
    struct Foo { ... }
    impl From<Foo> for String { ... }
    impl From<Foo> for Cow<str> { ... }
    let foo = Foo { ... };
    let line = Line::from(foo); // now fails due to ambiguous type inference
    // replace with
    let line = Line::from(String::from(foo));

    Fixes:ratatui/ratatui#1367


... (truncated)

Changelog

Sourced from ratatui's changelog.

v0.29.0 - 2024-10-21

Features

  • 3a43274 (color) Add hsluv support by @​du-ob in #1333

  • 4c4851c (example) Add drawing feature to the canvas example by @​orhun in #1429

    rec_20241018T235208

    fun fact: I had to do 35 pushups for this...


  • e5a7609 (line) Impl From for Line by @​joshka in #1373 [breaking]

    BREAKING-CHANGES:Line now implements From<Cow<str>

    As this adds an extra conversion, ambiguous inferred values may no longer compile.

    // given:
    struct Foo { ... }
    impl From<Foo> for String { ... }
    impl From<Foo> for Cow<str> { ... }
    let foo = Foo { ... };
    let line = Line::from(foo); // now fails due to ambiguous type inference
    // replace with
    let line = Line::from(String::from(foo));

    Fixes:ratatui/ratatui#1367


  • 2805ddd (logo) Add a Ratatui logo widget by @​joshka in #1307

    This is a simple logo widget that can be used to render the Ratatui logo in the terminal. It is used in the examples/ratatui-logo.rs example, and may be used in your applications' help or about screens.

    use ratatui::{Frame, widgets::RatatuiLogo};
    fn draw(frame: &mut Frame) {
    frame.render_widget(RatatuiLogo::tiny(), frame.area());

... (truncated)

Commits
  • 2873217 chore(release): prepare for 0.29.0 (#1444)
  • 6515097 chore(cargo): check in Cargo.lock (#1434)
  • 4c4851c feat(example): add drawing feature to the canvas example (#1429)
  • 4f5503d fix(color)!: hsl and hsluv are now clamped before conversion (#1436)
  • 611086e fix: sparkline docs / doc tests (#1437)
  • 514d273 fix(terminal): use the latest, resized area when clearing (#1427)
  • 60cc15b feat!: add support for empty bar style to Sparkline (#1326)
  • a52ee82 fix(text): truncate based on alignment (#1432)
  • 381ec75 docs(readme): reduce the length (#1431)
  • f6f7794 chore: remove leftover prelude refs / glob imports from example code (#1430)
  • Additional commits viewable in compare view

Updates thiserror from 1.0.64 to 1.0.65

Release notes

Sourced from thiserror's releases.

1.0.65

  • Ensure OUT_DIR is left with deterministic contents after build script execution (#325)
Commits

Updates tui-input from 0.10.1 to 0.11.0

Release notes

Sourced from tui-input's releases.

v0.11.0

What's Changed

Full Changelog: sayanarijit/tui-input@v0.10.1...v0.11.0

Commits

Updates tui-popup from 0.5.0 to 0.6.0

Release notes

Sourced from tui-popup's releases.

tui-popup-v0.6.0

🐛 Bug Fixes

  • Broken links from move to tui-widgets

tui-popup-v0.5.1

🐛 Bug Fixes

  • Broken links from move to tui-widgets
Changelog

Sourced from tui-popup's changelog.

Changelog

All notable changes to this project will be documented in this file.

[0.3.1] - 2024-10-20

🚀 Features

  • (cards) Add new tui-cards library for playing cards

🐛 Bug Fixes

  • Broken links from move to tui-widgets

Other

  • Remove patch from main Cargo.toml file that was pointing at a local path (#38)

  • (deps) Update rstest requirement from 0.22.0 to 0.23.0 (#41)

    Updates the requirements on rstest to permit the latest version.

... (truncated)

Commits
  • e65caad chore: update to use ratatui 0.29 (#43)
  • 7be6cd3 chore: release (#39)
  • e7942b7 build(deps): update rstest requirement from 0.22.0 to 0.23.0 (#41)
  • 8f25dde fix(tui-scrollview): make scroll_view buffer area the same as its content (#37)
  • 18e3c03 build: remove patch from main Cargo.toml file that was pointing at a local pa...
  • 6437247 docs: update readme
  • 9591f2f feat: add tui-box-text widget
  • 89ac0fe docs: demo horizontal scrolling and mark TODO as done
  • 2994cce docs: use ratatui 0.28.1 methods for examples
  • 7e38003 fix: broken links from move to tui-widgets
  • Additional commits viewable in compare view

Updates ansi-to-tui from 6.0.0 to 7.0.0

Changelog

Sourced from ansi-to-tui's changelog.

7.0.0 - 2024-10-24

Other

  • (bump) Update lockfile and bump ratatui version to 0.29

3.0.0 (2023-03-21)

Commit Statistics

  • 6 commits contributed to the release.
  • 5 days passed between releases.
  • 0 commits were understood as conventional.
  • 0 issues like '(#ID)' were seen in commit messages

Commit Details

  • Uncategorized
    • [update] Changelog and readme (8b38176)
    • Update version (7617608)
    • Move to ratatui (0446f08)
    • [feat] Bump version and update CHANGELOG.md (eec6f86)
    • [fix] properly reset styles (50f5be0)
    • [fix] Properly set background colors (f827e25)

2.0.1 (2023-03-16)

Commit Statistics

  • 11 commits contributed to the release over the course of 214 calendar days.
  • 238 days passed between releases.
  • 0 commits were understood as conventional.
  • 0 issues like '(#ID)' were seen in commit messages

Commit Details

  • Uncategorized

... (truncated)

Commits

Updates tui-big-text from 0.6.0 to 0.7.0

Release notes

Sourced from tui-big-text's releases.

tui-big-text-v0.7.0

🐛 Bug Fixes

  • Broken links from move to tui-widgets

tui-big-text-v0.6.1

🐛 Bug Fixes

  • Broken links from move to tui-widgets
Commits
  • e65caad chore: update to use ratatui 0.29 (#43)
  • 7be6cd3 chore: release (#39)
  • e7942b7 build(deps): update rstest requirement from 0.22.0 to 0.23.0 (#41)
  • 8f25dde fix(tui-scrollview): make scroll_view buffer area the same as its content (#37)
  • 18e3c03 build: remove patch from main Cargo.toml file that was pointing at a local pa...
  • 6437247 docs: update readme
  • 9591f2f feat: add tui-box-text widget
  • 89ac0fe docs: demo horizontal scrolling and mark TODO as done
  • 2994cce docs: use ratatui 0.28.1 methods for examples
  • 7e38003 fix: broken links from move to tui-widgets
  • Additional commits viewable in compare view

Updates termbg from 0.5.2 to 0.6.0

Changelog

Sourced from termbg's changelog.

v0.6.0 - 2024-10-21

  • [Fixed] Stdin is blocked #29
Commits

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 show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

…h 7 updates

Bumps the cargo-dependencies group with 7 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [ratatui](https://github.com/ratatui/ratatui) | `0.28.1` | `0.29.0` |
| [thiserror](https://github.com/dtolnay/thiserror) | `1.0.64` | `1.0.65` |
| [tui-input](https://github.com/sayanarijit/tui-input) | `0.10.1` | `0.11.0` |
| [tui-popup](https://github.com/joshka/tui-widgets) | `0.5.0` | `0.6.0` |
| [ansi-to-tui](https://github.com/uttarayan21/ansi-to-tui) | `6.0.0` | `7.0.0` |
| [tui-big-text](https://github.com/joshka/tui-widgets) | `0.6.0` | `0.7.0` |
| [termbg](https://github.com/dalance/termbg) | `0.5.2` | `0.6.0` |



Updates `ratatui` from 0.28.1 to 0.29.0
- [Release notes](https://github.com/ratatui/ratatui/releases)
- [Changelog](https://github.com/ratatui/ratatui/blob/main/CHANGELOG.md)
- [Commits](ratatui/ratatui@v0.28.1...v0.29.0)

Updates `thiserror` from 1.0.64 to 1.0.65
- [Release notes](https://github.com/dtolnay/thiserror/releases)
- [Commits](dtolnay/thiserror@1.0.64...1.0.65)

Updates `tui-input` from 0.10.1 to 0.11.0
- [Release notes](https://github.com/sayanarijit/tui-input/releases)
- [Commits](sayanarijit/tui-input@v0.10.1...v0.11.0)

Updates `tui-popup` from 0.5.0 to 0.6.0
- [Release notes](https://github.com/joshka/tui-widgets/releases)
- [Changelog](https://github.com/joshka/tui-widgets/blob/main/CHANGELOG.md)
- [Commits](joshka/tui-widgets@tui-popup-v0.5.0...tui-popup-v0.6.0)

Updates `ansi-to-tui` from 6.0.0 to 7.0.0
- [Changelog](https://github.com/ratatui/ansi-to-tui/blob/master/CHANGELOG.md)
- [Commits](https://github.com/uttarayan21/ansi-to-tui/commits/v7.0.0)

Updates `tui-big-text` from 0.6.0 to 0.7.0
- [Release notes](https://github.com/joshka/tui-widgets/releases)
- [Changelog](https://github.com/joshka/tui-widgets/blob/main/CHANGELOG.md)
- [Commits](joshka/tui-widgets@tui-big-text-v0.6.0...tui-big-text-v0.7.0)

Updates `termbg` from 0.5.2 to 0.6.0
- [Changelog](https://github.com/dalance/termbg/blob/master/CHANGELOG.md)
- [Commits](dalance/termbg@v0.5.2...v0.6.0)

---
updated-dependencies:
- dependency-name: ratatui
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: cargo-dependencies
- dependency-name: thiserror
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo-dependencies
- dependency-name: tui-input
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: cargo-dependencies
- dependency-name: tui-popup
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: cargo-dependencies
- dependency-name: ansi-to-tui
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: cargo-dependencies
- dependency-name: tui-big-text
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: cargo-dependencies
- dependency-name: termbg
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: cargo-dependencies
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot requested a review from orhun as a code owner October 28, 2024 06:03
@dependabot dependabot bot added dependencies Pull requests that update a dependency file rust Pull requests that update Rust code labels Oct 28, 2024
Copy link
Contributor Author

dependabot bot commented on behalf of github Nov 4, 2024

Looks like these dependencies are updatable in another way, so this is no longer needed.

@dependabot dependabot bot closed this Nov 4, 2024
@dependabot dependabot bot deleted the dependabot/cargo/cargo-dependencies-36dea9eb5b branch November 4, 2024 05:12
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 rust Pull requests that update Rust code
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants