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 ratatui from 0.24.0 to 0.25.0 #348

Merged
merged 2 commits into from Jan 27, 2024

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Jan 1, 2024

Bumps ratatui from 0.24.0 to 0.25.0.

Release notes

Sourced from ratatui's releases.

v0.25.0

We are thrilled to announce the new version of ratatui - a Rust library that's all about cooking up TUIs 🐭

In this version, we made improvements on widgets such as List, Table and Layout and changed some of the defaults for a better user experience. Also, we renewed our website and updated our documentation/tutorials to get started with ratatui: https://ratatui.rs πŸš€

✨ Release highlights: https://ratatui.rs/highlights/v025/

⚠️ List of breaking changes can be found here.

πŸ’– We also enabled GitHub Sponsors for our organization, consider sponsoring us if you like ratatui: https://github.com/sponsors/ratatui-org

Features

  • aef4956 (list) List::new now accepts IntoIterator<Item = Into<ListItem>> (#672) [breaking]

    This allows to build list like
    
    List::new([&quot;Item 1&quot;, &quot;Item 2&quot;])
    

  • 8bfd666 (paragraph) Add line_count and line_width unstable helper methods

    This is an unstable feature that may be removed in the future
    
  • 1229b96 (rect) Add offset method (#533)

    The offset method creates a new Rect that is moved by the amount
    specified in the x and y direction. These values can be positive or
    negative. This is useful for manual layout tasks.
    
    let rect = area.offset(Offset { x: 10, y -10 });

  • edacaf7 (buffer) Deprecate Cell::symbol field (#624)

    The Cell::symbol field is now accessible via a getter method (`symbol()`). This will
    allow us to make future changes to the Cell internals such as replacing `String` with
    

... (truncated)

Changelog

Sourced from ratatui's changelog.

0.25.0 - 2023-12-18

We are thrilled to announce the new version of ratatui - a Rust library that's all about cooking up TUIs 🐭

In this version, we made improvements on widgets such as List, Table and Layout and changed some of the defaults for a better user experience. Also, we renewed our website and updated our documentation/tutorials to get started with ratatui: https://ratatui.rs πŸš€

✨ Release highlights: https://ratatui.rs/highlights/v025/

⚠️ List of breaking changes can be found here.

πŸ’– We also enabled GitHub Sponsors for our organization, consider sponsoring us if you like ratatui: https://github.com/sponsors/ratatui-org

Features

  • aef4956 (list) List::new now accepts IntoIterator<Item = Into<ListItem>> (#672) [breaking]

    This allows to build list like
    
    List::new([&quot;Item 1&quot;, &quot;Item 2&quot;])
    

  • 8bfd666 (paragraph) Add line_count and line_width unstable helper methods

    This is an unstable feature that may be removed in the future
    
  • 1229b96 (rect) Add offset method (#533)

    The offset method creates a new Rect that is moved by the amount
    specified in the x and y direction. These values can be positive or
    negative. This is useful for manual layout tasks.
    
    let rect = area.offset(Offset { x: 10, y -10 });

  • edacaf7 (buffer) Deprecate Cell::symbol field (#624)

... (truncated)

Commits
  • 7f58848 chore(release): prepare for 0.25.0 (#699)
  • a15c3b2 docs: remove deprecated table constructor from breaking changes (#698)
  • 41c44a4 docs(frame): add docs about resize events (#697)
  • 1b8b626 docs(examples): add animation and FPS counter to colors_rgb (#583)
  • 5bf4f52 feat: implement From trait for termion to Style related structs (#692)
  • f4c8de0 docs(chart): document chart module (#696)
  • 910ad00 chore(rustfmt): enable format_code_in_doc_comments (#695)
  • b282a06 refactor!: remove items deprecated since 0.10 (#691)
  • b8f71c0 feat(widgets/chart): add option to set the position of legend (#378)
  • 113b4b7 docs: Rename template links to remove ratatui from name πŸ“š (#690)
  • 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 show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @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 1, 2024
@dependabot dependabot bot force-pushed the dependabot/cargo/ratatui-0.25.0 branch from 53666aa to 2dc076f Compare January 1, 2024 02:53
Bumps [ratatui](https://github.com/ratatui-org/ratatui) from 0.24.0 to 0.25.0.
- [Release notes](https://github.com/ratatui-org/ratatui/releases)
- [Changelog](https://github.com/ratatui-org/ratatui/blob/main/CHANGELOG.md)
- [Commits](ratatui-org/ratatui@v0.24.0...v0.25.0)

---
updated-dependencies:
- dependency-name: ratatui
  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/ratatui-0.25.0 branch from 2dc076f to dad91dd Compare January 1, 2024 02:54
@cyqsimon cyqsimon merged commit 9e0dc2b into main Jan 27, 2024
7 of 11 checks passed
@dependabot dependabot bot deleted the dependabot/cargo/ratatui-0.25.0 branch January 27, 2024 16:22
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.

None yet

1 participant