[PR #1062] [MERGED] Bump tokio from 0.2.13 to 0.2.16 #1929

Closed
opened 2026-03-16 03:43:24 +03:00 by kerem · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/hickory-dns/hickory-dns/pull/1062
Author: @dependabot-preview[bot]
Created: 4/6/2020
Status: Merged
Merged: 4/7/2020
Merged by: @bluejekyll

Base: masterHead: dependabot/cargo/tokio-0.2.16


📝 Commits (2)

  • 088c615 Bump tokio from 0.2.13 to 0.2.16
  • 482e55c fix depabot mistake

📊 Changes

11 files changed (+28 additions, -28 deletions)

View changed files

📝 Cargo.lock (+17 -17)
📝 bin/Cargo.toml (+1 -1)
📝 crates/client/Cargo.toml (+1 -1)
📝 crates/https/Cargo.toml (+1 -1)
📝 crates/native-tls/Cargo.toml (+1 -1)
📝 crates/openssl/Cargo.toml (+2 -2)
📝 crates/proto/Cargo.toml (+1 -1)
📝 crates/resolver/Cargo.toml (+1 -1)
📝 crates/rustls/Cargo.toml (+1 -1)
📝 crates/server/Cargo.toml (+1 -1)
📝 tests/integration-tests/Cargo.toml (+1 -1)

📄 Description

Bumps tokio from 0.2.13 to 0.2.16.

Release notes

Sourced from tokio's releases.

Tokio 0.2.16

This release fixes a regression in tokio::sync and a bug in tokio::fs::copy. It also adds a new APIs to tokio::time and tokio::io.

Fixes

  • sync: fix a regression where Mutex, Semaphore, and RwLock futures no longer implement Sync (#2375)
  • fs: fix fs::copy not copying file permissions (#2354)

Added

  • time: added deadline method to delay_queue::Expired (#2300)
  • io: added StreamReader (#2052)

Tokio v0.2.15

Fixes a queue regression and adds a new disarm fn to mpsc::Sender.

Fixes

  • rt: fix queue regression (#2362).

Added

  • sync: Add disarm to mpsc::Sender (#2358).

Tokio v0.2.14

This release introduces automatic cooperative task yielding. This article describes the new functionality in more detail.

Fixes

  • rt: concurrency bug in scheduler (#2273).
  • rt: concurrency bug with shell runtime (#2333).
  • test-util: correct pause/resume of time (#2253).
  • time: DelayQueue correct wakeup after insert (#2285).

Added

  • io: impl RawFd, AsRawHandle for std io types (#2335).
  • rt: automatic cooperative task yielding (#2160, #2343, #2349).
  • sync: RwLock::into_inner (#2321).

Changed

  • sync: semaphore, mutex internals rewritten to avoid allocations (#2325).
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)
  • Automerge options (never/patch/minor, and dev/runtime dependencies)
  • 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/hickory-dns/hickory-dns/pull/1062 **Author:** [@dependabot-preview[bot]](https://github.com/apps/dependabot-preview) **Created:** 4/6/2020 **Status:** ✅ Merged **Merged:** 4/7/2020 **Merged by:** [@bluejekyll](https://github.com/bluejekyll) **Base:** `master` ← **Head:** `dependabot/cargo/tokio-0.2.16` --- ### 📝 Commits (2) - [`088c615`](https://github.com/hickory-dns/hickory-dns/commit/088c615886a907a74691e05bbed548cd2cad7922) Bump tokio from 0.2.13 to 0.2.16 - [`482e55c`](https://github.com/hickory-dns/hickory-dns/commit/482e55c7b4b97dfd61c41753497d7a767c3592f4) fix depabot mistake ### 📊 Changes **11 files changed** (+28 additions, -28 deletions) <details> <summary>View changed files</summary> 📝 `Cargo.lock` (+17 -17) 📝 `bin/Cargo.toml` (+1 -1) 📝 `crates/client/Cargo.toml` (+1 -1) 📝 `crates/https/Cargo.toml` (+1 -1) 📝 `crates/native-tls/Cargo.toml` (+1 -1) 📝 `crates/openssl/Cargo.toml` (+2 -2) 📝 `crates/proto/Cargo.toml` (+1 -1) 📝 `crates/resolver/Cargo.toml` (+1 -1) 📝 `crates/rustls/Cargo.toml` (+1 -1) 📝 `crates/server/Cargo.toml` (+1 -1) 📝 `tests/integration-tests/Cargo.toml` (+1 -1) </details> ### 📄 Description Bumps [tokio](https://github.com/tokio-rs/tokio) from 0.2.13 to 0.2.16. <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 0.2.16</h2> <p>This release fixes a regression in <code>tokio::sync</code> and a bug in <code>tokio::fs::copy</code>. It also adds a new APIs to <code>tokio::time</code> and <code>tokio::io</code>.</p> <h3>Fixes</h3> <ul> <li>sync: fix a regression where <code>Mutex</code>, <code>Semaphore</code>, and <code>RwLock</code> futures no longer implement <code>Sync</code> (<a href="https://github-redirect.dependabot.com/tokio-rs/tokio/issues/2375">#2375</a>)</li> <li>fs: fix <code>fs::copy</code> not copying file permissions (<a href="https://github-redirect.dependabot.com/tokio-rs/tokio/issues/2354">#2354</a>)</li> </ul> <h3>Added</h3> <ul> <li>time: added <code>deadline</code> method to <code>delay_queue::Expired</code> (<a href="https://github-redirect.dependabot.com/tokio-rs/tokio/issues/2300">#2300</a>)</li> <li>io: added <code>StreamReader</code> (<a href="https://github-redirect.dependabot.com/tokio-rs/tokio/issues/2052">#2052</a>)</li> </ul> <h2>Tokio v0.2.15</h2> <p>Fixes a queue regression and adds a new disarm fn to <code>mpsc::Sender</code>.</p> <h3>Fixes</h3> <ul> <li>rt: fix queue regression (<a href="https://github-redirect.dependabot.com/tokio-rs/tokio/issues/2362">#2362</a>).</li> </ul> <h3>Added</h3> <ul> <li>sync: Add disarm to <code>mpsc::Sender</code> (<a href="https://github-redirect.dependabot.com/tokio-rs/tokio/issues/2358">#2358</a>).</li> </ul> <h2>Tokio v0.2.14</h2> <p>This release introduces automatic cooperative task yielding. <a href="https://tokio.rs/blog/2020-04-preemption/">This</a> article describes the new functionality in more detail.</p> <h3>Fixes</h3> <ul> <li>rt: concurrency bug in scheduler (<a href="https://github-redirect.dependabot.com/tokio-rs/tokio/issues/2273">#2273</a>).</li> <li>rt: concurrency bug with shell runtime (<a href="https://github-redirect.dependabot.com/tokio-rs/tokio/issues/2333">#2333</a>).</li> <li>test-util: correct pause/resume of time (<a href="https://github-redirect.dependabot.com/tokio-rs/tokio/issues/2253">#2253</a>).</li> <li>time: <code>DelayQueue</code> correct wakeup after <code>insert</code> (<a href="https://github-redirect.dependabot.com/tokio-rs/tokio/issues/2285">#2285</a>).</li> </ul> <h3>Added</h3> <ul> <li>io: impl <code>RawFd</code>, <code>AsRawHandle</code> for std io types (<a href="https://github-redirect.dependabot.com/tokio-rs/tokio/issues/2335">#2335</a>).</li> <li>rt: automatic cooperative task yielding (<a href="https://github-redirect.dependabot.com/tokio-rs/tokio/issues/2160">#2160</a>, <a href="https://github-redirect.dependabot.com/tokio-rs/tokio/issues/2343">#2343</a>, <a href="https://github-redirect.dependabot.com/tokio-rs/tokio/issues/2349">#2349</a>).</li> <li>sync: <code>RwLock::into_inner</code> (<a href="https://github-redirect.dependabot.com/tokio-rs/tokio/issues/2321">#2321</a>).</li> </ul> <h3>Changed</h3> <ul> <li>sync: semaphore, mutex internals rewritten to avoid allocations (<a href="https://github-redirect.dependabot.com/tokio-rs/tokio/issues/2325">#2325</a>).</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/tokio-rs/tokio/commit/d883ac0fa0c65fdc25bedf5566cb76c236fae3f7"><code>d883ac0</code></a> chore: prepare tokio 0.2.16 release</li> <li><a href="https://github.com/tokio-rs/tokio/commit/1121a8eb23f6f0edd9f41cdc08331d40e18105ee"><code>1121a8e</code></a> sync: ensure Mutex, RwLock, and Semaphore futures are Send + Sync (<a href="https://github-redirect.dependabot.com/tokio-rs/tokio/issues/2375">#2375</a>)</li> <li><a href="https://github.com/tokio-rs/tokio/commit/6fa40b6e2060b253dd32df326440fa6196763412"><code>6fa40b6</code></a> doc: Fix readme link (<a href="https://github-redirect.dependabot.com/tokio-rs/tokio/issues/2370">#2370</a>)</li> <li><a href="https://github.com/tokio-rs/tokio/commit/e10471dc3af90f3467a3eb6f970e1a322c247d08"><code>e10471d</code></a> io: Add StreamReader (<a href="https://github-redirect.dependabot.com/tokio-rs/tokio/issues/2052">#2052</a>)</li> <li><a href="https://github.com/tokio-rs/tokio/commit/0245515e4d71baa243c181b27f37299f02d46b08"><code>0245515</code></a> examples: add comment about dependency gotcha (<a href="https://github-redirect.dependabot.com/tokio-rs/tokio/issues/2355">#2355</a>)</li> <li><a href="https://github.com/tokio-rs/tokio/commit/03cb3b6ca12627041f153e018ef099dda921d11a"><code>03cb3b6</code></a> Expose time::deplay_queue::Expired::deadline (<a href="https://github-redirect.dependabot.com/tokio-rs/tokio/issues/2300">#2300</a>)</li> <li><a href="https://github.com/tokio-rs/tokio/commit/3eaa1885c314345f3fa0022e8a04af4f159f2365"><code>3eaa188</code></a> fs: Copy file permissions (<a href="https://github-redirect.dependabot.com/tokio-rs/tokio/issues/2354">#2354</a>)</li> <li><a href="https://github.com/tokio-rs/tokio/commit/cf4cbc142bd8198d2112cf671c120740fdc4e132"><code>cf4cbc1</code></a> test: Added read_error() and write_error() (<a href="https://github-redirect.dependabot.com/tokio-rs/tokio/issues/2337">#2337</a>)</li> <li><a href="https://github.com/tokio-rs/tokio/commit/215d7d4c5f3aa5b436183b8d8abfb9701f34a17d"><code>215d7d4</code></a> util: documentation example for LengthDelimitedCodec (<a href="https://github-redirect.dependabot.com/tokio-rs/tokio/issues/2339">#2339</a>)</li> <li><a href="https://github.com/tokio-rs/tokio/commit/2a8d917d2c8c310262e81731ca994a17e5f11c3c"><code>2a8d917</code></a> chore: Prepare <code>0.2.15</code> release (<a href="https://github-redirect.dependabot.com/tokio-rs/tokio/issues/2365">#2365</a>)</li> <li>Additional commits viewable in <a href="https://github.com/tokio-rs/tokio/compare/tokio-0.2.13...tokio-0.2.16">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.13&new-version=0.2.16)](https://dependabot.com/compatibility-score/?dependency-name=tokio&package-manager=cargo&previous-version=0.2.13&new-version=0.2.16) 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) - Automerge options (never/patch/minor, and dev/runtime dependencies) - 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-03-16 03:43:24 +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/hickory-dns#1929
No description provided.