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 tui-textarea from 0.5.2 to 0.6.0 #299

Closed
wants to merge 1 commit into from

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Aug 7, 2024

Bumps tui-textarea from 0.5.2 to 0.6.0.

Release notes

Sourced from tui-textarea's releases.

v0.6.0

  • 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.

v0.5.3

  • &TextArea now implements Widget trait. (#78)
    • Now the reference can be passed to ratatui::terminal::Frame::render_widget method call directly.
      // v0.5.2 or earlier
      f.render_widget(textarea.widget(), rect);
      // v0.5.3 or later
      f.render_widget(&textarea, rect);

    • This means that TextArea::widget method is no longer necessary. To maintain the compatibility the method is not removed but using it starts to report a deprecation warning from v0.5.3.
  • Fix a cursor can leave the viewport on horizontal scroll when line number is displayed. (#77)
  • Support some key combinations added at termion v4 for termion feature. (#68)
    • termion::event::Key::CtrlLeft
    • termion::event::Key::CtrlRight
    • termion::event::Key::CtrlUp
    • termion::event::Key::CtrlDown
    • termion::event::Key::CtrlHome
    • termion::event::Key::CtrlEnd
    • termion::event::Key::AltLeft
    • termion::event::Key::AltRight
    • termion::event::Key::AltUp
    • termion::event::Key::AltDown
    • termion::event::Key::ShiftLeft
    • termion::event::Key::ShiftRight
    • termion::event::Key::ShiftUp
    • termion::event::Key::ShiftDown
  • Fix the border color is not applied in single_line example. (#79, thanks @​fmorroni)
  • Improve vim example's Vim emulation.
    • Fix the range of text selection on e mapping in operator-pending mode. (#76)
    • Fix the text selection on y, d, c mappings in visual mode is not inclusive.
Changelog

Sourced from tui-textarea's changelog.

v0.6.0 - 07 Aug 2024

  • 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 - 03 Aug 2024

  • &TextArea now implements Widget trait. (#78)
    • Now the reference can be passed to ratatui::terminal::Frame::render_widget method call directly.
      // v0.5.2 or earlier
      f.render_widget(textarea.widget(), rect);
      // v0.5.3 or later
      f.render_widget(&textarea, rect);

    • This means that TextArea::widget method is no longer necessary. To maintain the compatibility the method is not removed but using it starts to report a deprecation warning from v0.5.3.
  • Fix a cursor can leave the viewport on horizontal scroll when line number is displayed. (#77)
  • Support some key combinations added at termion v4 for termion feature. (#68)
    • termion::event::Key::CtrlLeft
    • termion::event::Key::CtrlRight
    • termion::event::Key::CtrlUp
    • termion::event::Key::CtrlDown
    • termion::event::Key::CtrlHome
    • termion::event::Key::CtrlEnd
    • termion::event::Key::AltLeft
    • termion::event::Key::AltRight
    • termion::event::Key::AltUp
    • termion::event::Key::AltDown
    • termion::event::Key::ShiftLeft
    • termion::event::Key::ShiftRight
    • termion::event::Key::ShiftUp
    • termion::event::Key::ShiftDown
  • Fix the border color is not applied in single_line example. (#79, thanks @​fmorroni)
  • Improve vim example's Vim emulation.
    • Fix the range of text selection on e mapping in operator-pending mode. (#76)
    • Fix the text selection on y, d, c mappings in visual mode is not inclusive.

[Changes][v0.5.3]

Commits
  • 7a8c020 bump up version to v0.6.0
  • 9b86d54 fix fuzzing test cases to follow ratatui v0.28
  • abc2b7d fix deprecated node version warning from codecov/codecov-action@v3
  • 9650a11 fix warnings and compile errors due to ratatui v0.28 update
  • 5d77bf8 update ratatui dependency from 0.27 to 0.28
  • 150ee9d add more tests for search feature
  • 474b5f3 add tests for search feature
  • 1a639ed update changelog for v0.5.3 changes
  • e0c0737 bump up version to v0.5.3
  • 3a9d143 caveat on conversion from termion's key event into Input (#68)
  • 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 requested a review from lquerel as a code owner August 7, 2024 22:03
@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Aug 7, 2024
@dependabot dependabot bot requested a review from jsuereth as a code owner August 7, 2024 22:03
Bumps [tui-textarea](https://github.com/rhysd/tui-textarea) from 0.5.2 to 0.6.0.
- [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.5.2...v0.6.0)

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

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot force-pushed the dependabot/cargo/tui-textarea-0.6.0 branch from 8382e0c to 3ac9a9b Compare August 7, 2024 22:07
Copy link

codecov bot commented Aug 7, 2024

Codecov Report

All modified and coverable lines are covered by tests ✅

Project coverage is 72.4%. Comparing base (4886aaf) to head (3ac9a9b).

Additional details and impacted files
@@          Coverage Diff          @@
##            main    #299   +/-   ##
=====================================
  Coverage   72.4%   72.4%           
=====================================
  Files         44      44           
  Lines       2891    2891           
=====================================
+ Hits        2094    2095    +1     
+ Misses       797     796    -1     

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.

Copy link
Contributor Author

dependabot bot commented on behalf of github Aug 8, 2024

Superseded by #303.

@dependabot dependabot bot closed this Aug 8, 2024
@dependabot dependabot bot deleted the dependabot/cargo/tui-textarea-0.6.0 branch August 8, 2024 21:10
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