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

Update tui-textarea requirement from 0.6.1 to 0.7.0 #19

Closed
wants to merge 1 commit into from

Conversation

dependabot[bot]
Copy link
Contributor

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

Updates the requirements on tui-textarea to permit the latest version.

Release notes

Sourced from tui-textarea's releases.

v0.7.0

Changelog

Sourced from tui-textarea's changelog.

v0.7.0 - 2024-10-22

[Changes][v0.7.0]

v0.6.1 - 2024-08-08

  • Add TextArea::selection_range method to get the range of the current selection. Please read the document for more details. (#81, thanks @​achristmascarl)
    let mut textarea = TextArea::from(["aaa"]);
    // It returns None when the text selection is not ongoing
    assert_eq!(textarea.selection_range(), None);
    textarea.start_selection();
    assert_eq!(textarea.selection_range(), Some(((0, 0), (0, 0))));
    textarea.move_cursor(CursorMove::Forward);
    assert_eq!(textarea.selection_range(), Some(((0, 0), (0, 1))));
    // The first element of the pair is always smaller than the second one.
    textarea.start_selection();
    textarea.move_cursor(CursorMove::Back);
    assert_eq!(textarea.selection_range(), Some(((0, 0), (0, 1))));

  • Fix depending on the incorrect version of termion crate when tuirs-termion feature is enabled. Since tui crate depends on older version of termion crate v1.5.6, tui-textarea should depend on the same version but actually it depended on the latest version v4.0.0.
    • If you use tui-textarea with tui crate and termion crate, please ensure that your project also depends on termion v1.5. Otherwise your project accidentally depends on multiple versions of termion crate.

[Changes][v0.6.1]

v0.6.0 - 2024-08-07

  • BREAKING: Update ratatui crate dependency from v0.27 to v0.28.
  • BREAKING: Update crossterm crate dependency from v0.27 to v0.28 because ratatui crate depends on the new version.
    • Note: If you use tui crate, crossterm crate dependency remains at v0.25.

[Changes][v0.6.0]

v0.5.3 - 2024-08-03

  • &TextArea now implements Widget trait. (#78)
    • Now the reference can be passed to ratatui::terminal::Frame::render_widget method call directly.

... (truncated)

Commits
  • f2de5ff bump up version to v0.7.0
  • e56b6e0 update fuzz deps and fix warnings in fuzz targets
  • 413c4f6 Update Ratatui to 0.29.0 (#86)
  • 2cae64b do not depend on implicit features
  • b849170 improve description of feature gates in readme document
  • d4342dc update changelog for v0.6.1 changes
  • See full diff in compare view

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 dependencies Pull requests that update a dependency file rust Pull requests that update Rust code labels Oct 28, 2024
Updates the requirements on [tui-textarea](https://github.com/rhysd/tui-textarea) to permit the latest version.
- [Release notes](https://github.com/rhysd/tui-textarea/releases)
- [Changelog](https://github.com/rhysd/tui-textarea/blob/main/CHANGELOG.md)
- [Commits](rhysd/tui-textarea@v0.6.1...v0.7.0)

---
updated-dependencies:
- dependency-name: tui-textarea
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot force-pushed the dependabot/cargo/tui-textarea-0.7.0 branch from 6e71cea to f45a2ec Compare October 30, 2024 01:33
@honhimW
Copy link
Owner

honhimW commented Oct 30, 2024

@dependabot show tui-textarea ignore conditions

Copy link
Contributor Author

dependabot bot commented on behalf of github Oct 30, 2024

No ignore conditions found for the dependency tui-textarea

@honhimW
Copy link
Owner

honhimW commented Oct 30, 2024

@dependabot close
some of other ratatui libraries are not yet suport ratatui:0.29.0

@dependabot dependabot bot closed this Oct 30, 2024
@dependabot dependabot bot deleted the dependabot/cargo/tui-textarea-0.7.0 branch October 30, 2024 09:08
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.

1 participant