[PR #911] Bump crossterm from 0.20.0 to 0.22.1 #1088

Open
opened 2026-02-28 14:54:25 +03:00 by kerem · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/Rigellute/spotify-tui/pull/911
Author: @dependabot[bot]
Created: 11/1/2021
Status: 🔄 Open

Base: masterHead: dependabot/cargo/crossterm-0.22.1


📝 Commits (1)

  • 7d56f65 Bump crossterm from 0.20.0 to 0.22.1

📊 Changes

2 files changed (+31 additions, -6 deletions)

View changed files

📝 Cargo.lock (+30 -5)
📝 Cargo.toml (+1 -1)

📄 Description

Bumps crossterm from 0.20.0 to 0.22.1.

Changelog

Sourced from crossterm's changelog.

Version 0.22.1

  • Update yanked version crossterm-winapi and move to crossterm-winapi 0.9.0.
  • Changed panic to error when calling disable-mouse capture without setting it first.
  • Update bitflags dependency.

Version 0.22

  • Fix serde Color serialisation/deserialization inconsistency.
  • Update crossterm-winapi 0.8.1 to fix panic for certain mouse events

Version 0.21

  • Expose is_raw function.
  • Add 'purge' option on unix system, this clears the entire screen buffer.
  • Improve serialisation for color enum values.

Version 0.20

  • Update from signal-hook with 'mio-feature flag' to signal-hook-mio 0.2.1.
  • Manually implements Eq, PartialEq and Hash for KeyEvent improving equality checks and hash calculation.
  • crossterm::ErrorKind to io::Error.
  • Added Cursor Shape Support.
  • Add support for function keys F13...F20.
  • Support taking any Display in SetTitle command.
  • Remove lazy_static dependency.
  • Remove extra Clone bounds in the style module.
  • Add MoveToRow command.
  • Remove writer parameter from execute_winapi

Version 0.19

  • Use single thread for async event reader.
  • Patch timeout handling for event polling this was not working correctly.
  • Add unix support for more key combinations mainly complex ones with ALT/SHIFT/CTRL.
  • Derive PartialEq and Eq for ContentStyle
  • Fix windows resize event size, this used to be the buffer size but is screen size now.
  • Change Command::ansi_code to Command::write_ansi, this way the ansi code will be written to given formatter.

Version 0.18.2

  • Fix panic when only setting bold and redirecting stdout.
  • Use tty_fd for set/get terminal attributes

Version 0.18.1

  • Fix enabling ANSI support when stdout is redirected
  • Update crossterm-winapi to 0.6.2

Version 0.18.0

  • Fix get position bug
  • Fix windows 8 or lower write to user-given stdout instead of stdout.
  • Make MoveCursor(Left/Right/Up/Dow) command with input 0 not move.
  • Switch to futures-core to reduce dependencies.
  • Command API restricts to only accept std::io::Write
  • Make supports_ansi public
  • Implement ALT + numbers windows systems.

... (truncated)

Commits

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)

🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/Rigellute/spotify-tui/pull/911 **Author:** [@dependabot[bot]](https://github.com/apps/dependabot) **Created:** 11/1/2021 **Status:** 🔄 Open **Base:** `master` ← **Head:** `dependabot/cargo/crossterm-0.22.1` --- ### 📝 Commits (1) - [`7d56f65`](https://github.com/Rigellute/spotify-tui/commit/7d56f655863ecf963139796b732a9b6dca834811) Bump crossterm from 0.20.0 to 0.22.1 ### 📊 Changes **2 files changed** (+31 additions, -6 deletions) <details> <summary>View changed files</summary> 📝 `Cargo.lock` (+30 -5) 📝 `Cargo.toml` (+1 -1) </details> ### 📄 Description Bumps [crossterm](https://github.com/crossterm-rs/crossterm) from 0.20.0 to 0.22.1. <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/crossterm-rs/crossterm/blob/master/CHANGELOG.md">crossterm's changelog</a>.</em></p> <blockquote> <h1>Version 0.22.1</h1> <ul> <li>Update yanked version crossterm-winapi and move to crossterm-winapi 0.9.0.</li> <li>Changed panic to error when calling disable-mouse capture without setting it first.</li> <li>Update bitflags dependency.</li> </ul> <h1>Version 0.22</h1> <ul> <li>Fix serde Color serialisation/deserialization inconsistency.</li> <li>Update crossterm-winapi 0.8.1 to fix panic for certain mouse events</li> </ul> <h1>Version 0.21</h1> <ul> <li>Expose <code>is_raw</code> function.</li> <li>Add 'purge' option on unix system, this clears the entire screen buffer.</li> <li>Improve serialisation for color enum values.</li> </ul> <h1>Version 0.20</h1> <ul> <li>Update from signal-hook with 'mio-feature flag' to signal-hook-mio 0.2.1.</li> <li>Manually implements Eq, PartialEq and Hash for KeyEvent improving equality checks and hash calculation.</li> <li><code>crossterm::ErrorKind</code> to <code>io::Error</code>.</li> <li>Added Cursor Shape Support.</li> <li>Add support for function keys F13...F20.</li> <li>Support taking any Display in <code>SetTitle</code> command.</li> <li>Remove lazy_static dependency.</li> <li>Remove extra Clone bounds in the style module.</li> <li>Add <code>MoveToRow</code> command.</li> <li>Remove writer parameter from execute_winapi</li> </ul> <h1>Version 0.19</h1> <ul> <li>Use single thread for async event reader.</li> <li>Patch timeout handling for event polling this was not working correctly.</li> <li>Add unix support for more key combinations mainly complex ones with ALT/SHIFT/CTRL.</li> <li>Derive <code>PartialEq</code> and <code>Eq</code> for ContentStyle</li> <li>Fix windows resize event size, this used to be the buffer size but is screen size now.</li> <li>Change <code>Command::ansi_code</code> to <code>Command::write_ansi</code>, this way the ansi code will be written to given formatter.</li> </ul> <h1>Version 0.18.2</h1> <ul> <li>Fix panic when only setting bold and redirecting stdout.</li> <li>Use <code>tty_fd</code> for set/get terminal attributes</li> </ul> <h1>Version 0.18.1</h1> <ul> <li>Fix enabling ANSI support when stdout is redirected</li> <li>Update crossterm-winapi to 0.6.2</li> </ul> <h1>Version 0.18.0</h1> <ul> <li>Fix get position bug</li> <li>Fix windows 8 or lower write to user-given stdout instead of stdout.</li> <li>Make MoveCursor(Left/Right/Up/Dow) command with input 0 not move.</li> <li>Switch to futures-core to reduce dependencies.</li> <li>Command API restricts to only accept <code>std::io::Write</code></li> <li>Make <code>supports_ansi</code> public</li> <li>Implement ALT + numbers windows systems.</li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li>See full diff in <a href="https://github.com/crossterm-rs/crossterm/commits">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=crossterm&package-manager=cargo&previous-version=0.20.0&new-version=0.22.1)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) 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-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> 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) </details> --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/spotify-tui#1088
No description provided.