[PR #658] [MERGED] Bump tokio from 0.2.22 to 0.2.23 #955

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

📋 Pull Request Information

Original PR: https://github.com/Rigellute/spotify-tui/pull/658
Author: @dependabot-preview[bot]
Created: 11/13/2020
Status: Merged
Merged: 11/24/2020
Merged by: @Rigellute

Base: masterHead: dependabot/cargo/tokio-0.2.23


📝 Commits (1)

  • 9e9df0d Bump tokio from 0.2.22 to 0.2.23

📊 Changes

1 file changed (+4 additions, -4 deletions)

View changed files

📝 Cargo.lock (+4 -4)

📄 Description

Bumps tokio from 0.2.22 to 0.2.23.

Release notes

Sourced from tokio's releases.

Tokio v0.2.23

Maintenance release.

Fixes

  • time: report correct error for timers that exceed max duration (#2023)
  • time: fix resetting expired timers causing panics (#2587)
  • macros: silence unreachable_code warning in select! (#2678)
  • rt: fix potential leak during runtime shutdown (#2649)
  • sync: fix missing notification during mpsc close (#2854)

Changes

  • io: always re-export std::io (#2606)
  • dependencies: update parking_lot dependency to 0.11.0 (#2676)
  • io: rewrite read_to_end and read_to_string (#2560)
  • coop: reset coop budget when blocking in block_on (#2711)
  • sync: better Debug for Mutex (#2725)
  • net: make UnixListener::poll_accept public (#2880)
  • dep: raise lazy_static to 1.4.0 (#3132)
  • dep: raise slab to 0.4.2 (#3132)

Added

  • io: add io::duplex() as bidirectional reader/writer (#2661)
  • net: introduce split and into_split on UnixDatagram (#2557)
  • net: ensure that unix sockets have both split and into_split (#2687)
  • net: add try_recv/from & try_send/to to UnixDatagram (#1677)
  • net: Add UdpSocket::{try_send,try_send_to} methods (#1979)
  • net: implement ToSocketAddrs for (String, u16) (#2724)
  • io: add ReaderStream (#2714)
  • sync: implement map methods (#2771)
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/658 **Author:** [@dependabot-preview[bot]](https://github.com/apps/dependabot-preview) **Created:** 11/13/2020 **Status:** ✅ Merged **Merged:** 11/24/2020 **Merged by:** [@Rigellute](https://github.com/Rigellute) **Base:** `master` ← **Head:** `dependabot/cargo/tokio-0.2.23` --- ### 📝 Commits (1) - [`9e9df0d`](https://github.com/Rigellute/spotify-tui/commit/9e9df0ddb0046711ef4525f6a021607463b01436) Bump tokio from 0.2.22 to 0.2.23 ### 📊 Changes **1 file changed** (+4 additions, -4 deletions) <details> <summary>View changed files</summary> 📝 `Cargo.lock` (+4 -4) </details> ### 📄 Description Bumps [tokio](https://github.com/tokio-rs/tokio) from 0.2.22 to 0.2.23. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/tokio-rs/tokio/releases">tokio's releases</a>.</em></p> <blockquote> <h2>Tokio v0.2.23</h2> <p>Maintenance release.</p> <h3>Fixes</h3> <ul> <li>time: report correct error for timers that exceed max duration (<a href="https://github-redirect.dependabot.com/tokio-rs/tokio/issues/2023">#2023</a>)</li> <li>time: fix resetting expired timers causing panics (<a href="https://github-redirect.dependabot.com/tokio-rs/tokio/issues/2587">#2587</a>)</li> <li>macros: silence <code>unreachable_code</code> warning in <code>select!</code> (<a href="https://github-redirect.dependabot.com/tokio-rs/tokio/issues/2678">#2678</a>)</li> <li>rt: fix potential leak during runtime shutdown (<a href="https://github-redirect.dependabot.com/tokio-rs/tokio/issues/2649">#2649</a>)</li> <li>sync: fix missing notification during mpsc close (<a href="https://github-redirect.dependabot.com/tokio-rs/tokio/issues/2854">#2854</a>)</li> </ul> <h3>Changes</h3> <ul> <li>io: always re-export <code>std::io</code> (<a href="https://github-redirect.dependabot.com/tokio-rs/tokio/issues/2606">#2606</a>)</li> <li>dependencies: update <code>parking_lot</code> dependency to 0.11.0 (<a href="https://github-redirect.dependabot.com/tokio-rs/tokio/issues/2676">#2676</a>)</li> <li>io: rewrite <code>read_to_end</code> and <code>read_to_string</code> (<a href="https://github-redirect.dependabot.com/tokio-rs/tokio/issues/2560">#2560</a>)</li> <li>coop: reset coop budget when blocking in <code>block_on</code> (<a href="https://github-redirect.dependabot.com/tokio-rs/tokio/issues/2711">#2711</a>)</li> <li>sync: better Debug for Mutex (<a href="https://github-redirect.dependabot.com/tokio-rs/tokio/issues/2725">#2725</a>)</li> <li>net: make <code>UnixListener::poll_accept</code> public (<a href="https://github-redirect.dependabot.com/tokio-rs/tokio/issues/2880">#2880</a>)</li> <li>dep: raise <code>lazy_static</code> to <code>1.4.0</code> (<a href="https://github-redirect.dependabot.com/tokio-rs/tokio/issues/3132">#3132</a>)</li> <li>dep: raise <code>slab</code> to <code>0.4.2</code> (<a href="https://github-redirect.dependabot.com/tokio-rs/tokio/issues/3132">#3132</a>)</li> </ul> <h3>Added</h3> <ul> <li>io: add <code>io::duplex()</code> as bidirectional reader/writer (<a href="https://github-redirect.dependabot.com/tokio-rs/tokio/issues/2661">#2661</a>)</li> <li>net: introduce split and <code>into_split</code> on <code>UnixDatagram</code> (<a href="https://github-redirect.dependabot.com/tokio-rs/tokio/issues/2557">#2557</a>)</li> <li>net: ensure that unix sockets have both <code>split</code> and <code>into_split</code> (<a href="https://github-redirect.dependabot.com/tokio-rs/tokio/issues/2687">#2687</a>)</li> <li>net: add <code>try_recv</code>/<code>from</code> &amp; <code>try_send</code>/<code>to</code> to UnixDatagram (<a href="https://github-redirect.dependabot.com/tokio-rs/tokio/issues/1677">#1677</a>)</li> <li>net: Add <code>UdpSocket::{try_send,try_send_to}</code> methods (<a href="https://github-redirect.dependabot.com/tokio-rs/tokio/issues/1979">#1979</a>)</li> <li>net: implement <code>ToSocketAddrs</code> for <code>(String, u16)</code> (<a href="https://github-redirect.dependabot.com/tokio-rs/tokio/issues/2724">#2724</a>)</li> <li>io: add <code>ReaderStream</code> (<a href="https://github-redirect.dependabot.com/tokio-rs/tokio/issues/2714">#2714</a>)</li> <li>sync: implement map methods (<a href="https://github-redirect.dependabot.com/tokio-rs/tokio/issues/2771">#2771</a>)</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/tokio-rs/tokio/commit/c63057ebc57acb352c3c15ce4b88b7747c24ecf1"><code>c63057e</code></a> chore: prepare v0.2.23 release (<a href="https://github-redirect.dependabot.com/tokio-rs/tokio/issues/3114">#3114</a>)</li> <li><a href="https://github.com/tokio-rs/tokio/commit/1016de28fccf704c713920d3c9631915c9045324"><code>1016de2</code></a> ci: minimal version check (v0.2.x) (<a href="https://github-redirect.dependabot.com/tokio-rs/tokio/issues/3132">#3132</a>)</li> <li><a href="https://github.com/tokio-rs/tokio/commit/d2ad49aa6eb274b0b5c4b9fc05f8e2109ddd3cdf"><code>d2ad49a</code></a> chore: prepare tokio-macros v0.2.6 (<a href="https://github-redirect.dependabot.com/tokio-rs/tokio/issues/3127">#3127</a>)</li> <li><a href="https://github.com/tokio-rs/tokio/commit/85d8029e9bf2982b61b7e7b9b882f17492f35cfc"><code>85d8029</code></a> util: Add <code>TokioContext</code> future (<a href="https://github-redirect.dependabot.com/tokio-rs/tokio/issues/2791">#2791</a>) (<a href="https://github-redirect.dependabot.com/tokio-rs/tokio/issues/2958">#2958</a>)</li> <li><a href="https://github.com/tokio-rs/tokio/commit/b69d4a6108f322ee7010642370592a5e3508cc4d"><code>b69d4a6</code></a> v0.2.x: disable clippy check (<a href="https://github-redirect.dependabot.com/tokio-rs/tokio/issues/2961">#2961</a>)</li> <li><a href="https://github.com/tokio-rs/tokio/commit/a517dbf605db542491408f273388b8da031ec32c"><code>a517dbf</code></a> net: make <code>UnixListener::poll_accept</code> public (<a href="https://github-redirect.dependabot.com/tokio-rs/tokio/issues/2880">#2880</a>)</li> <li><a href="https://github.com/tokio-rs/tokio/commit/c0c7124a4b01892727cd023a651ebb90bcd2e2ad"><code>c0c7124</code></a> sync: fix missing notification during mpsc close (<a href="https://github-redirect.dependabot.com/tokio-rs/tokio/issues/2854">#2854</a>)</li> <li><a href="https://github.com/tokio-rs/tokio/commit/2b96b1773dd31ff923de4bd8adac2adbac447399"><code>2b96b17</code></a> ci: update nightly and fix all sorts of new failures (<a href="https://github-redirect.dependabot.com/tokio-rs/tokio/issues/2852">#2852</a>)</li> <li><a href="https://github.com/tokio-rs/tokio/commit/f0328f78103eb73df0f532b7e69eaca4b4fda6c7"><code>f0328f7</code></a> sync: implement map methods of parking_lot fame (<a href="https://github-redirect.dependabot.com/tokio-rs/tokio/issues/2771">#2771</a>)</li> <li><a href="https://github.com/tokio-rs/tokio/commit/30d4ec0a209c0f71b11d8f358423ec22b1761ff4"><code>30d4ec0</code></a> io: add ReaderStream (<a href="https://github-redirect.dependabot.com/tokio-rs/tokio/issues/2714">#2714</a>)</li> <li>Additional commits viewable in <a href="https://github.com/tokio-rs/tokio/compare/tokio-0.2.22...tokio-0.2.23">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://api.dependabot.com/badges/compatibility_score?dependency-name=tokio&package-manager=cargo&previous-version=0.2.22&new-version=0.2.23)](https://dependabot.com/compatibility-score/?dependency-name=tokio&package-manager=cargo&previous-version=0.2.22&new-version=0.2.23) 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:53:57 +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#955
No description provided.