[PR #829] [CLOSED] Bump crossterm from 0.19.0 to 0.20.0 #1045

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

📋 Pull Request Information

Original PR: https://github.com/Rigellute/spotify-tui/pull/829
Author: @dependabot-preview[bot]
Created: 6/11/2021
Status: Closed

Base: masterHead: dependabot/cargo/crossterm-0.20.0


📝 Commits (1)

  • 77e6624 Bump crossterm from 0.19.0 to 0.20.0

📊 Changes

2 files changed (+35 additions, -21 deletions)

View changed files

📝 Cargo.lock (+34 -20)
📝 Cargo.toml (+1 -1)

📄 Description

Bumps crossterm from 0.19.0 to 0.20.0.

Release notes

Sourced from crossterm's releases.

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
Changelog

Sourced from crossterm's changelog.

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.

Version 0.17.7

  • Fix cursor position retrieval bug linux.

Version 0.17.6

  • Add functionality to retrieve color based on passed ansi code.
  • Switch from 'futures' to 'futures-util' crate to reduce dependency count
  • Mio 0.7 update
  • signal-hook update
  • Make windows raw_mode act on CONIN$
  • Added From Trait to Color::Rgb Enum
  • Implement Color::try_from()
  • Implement styler traits for &'a str

... (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)
  • @dependabot use these labels will set the current labels as the default for future PRs for this repo and language
  • @dependabot use these reviewers will set the current reviewers as the default for future PRs for this repo and language
  • @dependabot use these assignees will set the current assignees as the default for future PRs for this repo and language
  • @dependabot use this milestone will set the current milestone as the default for future PRs for this repo and language
  • @dependabot badge me will comment on this PR with code to add a "Dependabot enabled" badge to your readme

Additionally, you can set the following in your Dependabot dashboard:

  • Update frequency (including time of day and day of week)
  • Pull request limits (per update run and/or open at any time)
  • Out-of-range updates (receive only lockfile updates, if desired)
  • Security updates (receive only security updates, if desired)

🔄 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/829 **Author:** [@dependabot-preview[bot]](https://github.com/apps/dependabot-preview) **Created:** 6/11/2021 **Status:** ❌ Closed **Base:** `master` ← **Head:** `dependabot/cargo/crossterm-0.20.0` --- ### 📝 Commits (1) - [`77e6624`](https://github.com/Rigellute/spotify-tui/commit/77e6624a8f704b945fd2ac14e31266ee6a2f94f8) Bump crossterm from 0.19.0 to 0.20.0 ### 📊 Changes **2 files changed** (+35 additions, -21 deletions) <details> <summary>View changed files</summary> 📝 `Cargo.lock` (+34 -20) 📝 `Cargo.toml` (+1 -1) </details> ### 📄 Description Bumps [crossterm](https://github.com/crossterm-rs/crossterm) from 0.19.0 to 0.20.0. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/crossterm-rs/crossterm/releases">crossterm's releases</a>.</em></p> <blockquote> <h2>0.20</h2> <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> </blockquote> </details> <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.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> <h1>Version 0.17.7</h1> <ul> <li>Fix cursor position retrieval bug linux.</li> </ul> <h1>Version 0.17.6</h1> <ul> <li>Add functionality to retrieve color based on passed ansi code.</li> <li>Switch from 'futures' to 'futures-util' crate to reduce dependency count</li> <li>Mio 0.7 update</li> <li>signal-hook update</li> <li>Make windows raw_mode act on CONIN$</li> <li>Added From<!-- raw HTML omitted --> Trait to Color::Rgb Enum</li> <li>Implement Color::try_from()</li> <li>Implement styler traits for <code>&amp;'a str</code></li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/crossterm-rs/crossterm/commit/d69f73ff2e3fe687b88e0a10b679ebe462ff29bf"><code>d69f73f</code></a> update docs</li> <li><a href="https://github.com/crossterm-rs/crossterm/commit/2fb3026fbfe0a4fbf6227edf29622c0f27b9c409"><code>2fb3026</code></a> merge</li> <li><a href="https://github.com/crossterm-rs/crossterm/commit/0e8be6a891ed93f08a43cc4defd06325a72a3a00"><code>0e8be6a</code></a> Unify <code>Colorize</code> and <code>Styler</code> as <code>Stylize</code> (<a href="https://github-redirect.dependabot.com/crossterm-rs/crossterm/issues/571">#571</a>)</li> <li><a href="https://github.com/crossterm-rs/crossterm/commit/e1260446e94e9a8f7809fef61dc1369b6f8d6e12"><code>e126044</code></a> Remove writer parameter from execute_winapi (<a href="https://github-redirect.dependabot.com/crossterm-rs/crossterm/issues/570">#570</a>)</li> <li><a href="https://github.com/crossterm-rs/crossterm/commit/e45008367a98b44e4a96f849681a89a0ef1ba2b1"><code>e450083</code></a> Added Rusty Rain to list of used by (<a href="https://github-redirect.dependabot.com/crossterm-rs/crossterm/issues/574">#574</a>)</li> <li><a href="https://github.com/crossterm-rs/crossterm/commit/374cae21dbe64c1c148a457774efffa03d428d8e"><code>374cae2</code></a> clippy</li> <li><a href="https://github.com/crossterm-rs/crossterm/commit/00371b16c6d071cd0894f6002b730973ce044946"><code>00371b1</code></a> fmt</li> <li><a href="https://github.com/crossterm-rs/crossterm/commit/6d690aa138551765d60f6b256db4b39596a97f6b"><code>6d690aa</code></a> switch to release winapi</li> <li><a href="https://github.com/crossterm-rs/crossterm/commit/3309a3cdeb7c449de4935506b38887df00799c50"><code>3309a3c</code></a> Merge branch 'master' of github.com:crossterm-rs/crossterm into 0.20</li> <li><a href="https://github.com/crossterm-rs/crossterm/commit/f495bbd87b05b641527491c9b81d0f3a88b4959e"><code>f495bbd</code></a> changelog</li> <li>Additional commits viewable in <a href="https://github.com/crossterm-rs/crossterm/compare/0.19...0.20">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://api.dependabot.com/badges/compatibility_score?dependency-name=crossterm&package-manager=cargo&previous-version=0.19.0&new-version=0.20.0)](https://dependabot.com/compatibility-score/?dependency-name=crossterm&package-manager=cargo&previous-version=0.19.0&new-version=0.20.0) 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) - `@dependabot use these labels` will set the current labels as the default for future PRs for this repo and language - `@dependabot use these reviewers` will set the current reviewers as the default for future PRs for this repo and language - `@dependabot use these assignees` will set the current assignees as the default for future PRs for this repo and language - `@dependabot use this milestone` will set the current milestone as the default for future PRs for this repo and language - `@dependabot badge me` will comment on this PR with code to add a "Dependabot enabled" badge to your readme Additionally, you can set the following in your Dependabot [dashboard](https://app.dependabot.com): - Update frequency (including time of day and day of week) - Pull request limits (per update run and/or open at any time) - Out-of-range updates (receive only lockfile updates, if desired) - Security updates (receive only security updates, if desired) </details> --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
kerem 2026-02-28 14:54:16 +03:00
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#1045
No description provided.