[PR #1367] [CLOSED] Bump tokio from 1.0.1 to 1.1.0 #2263

Closed
opened 2026-03-16 08:29:01 +03:00 by kerem · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/hickory-dns/hickory-dns/pull/1367
Author: @dependabot-preview[bot]
Created: 1/25/2021
Status: Closed

Base: mainHead: dependabot/cargo/tokio-1.1.0


📝 Commits (1)

  • 90d8a1e Bump tokio from 1.0.1 to 1.1.0

📊 Changes

12 files changed (+15 additions, -15 deletions)

View changed files

📝 Cargo.lock (+2 -2)
📝 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 (+2 -2)
📝 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)
📝 util/Cargo.toml (+1 -1)

📄 Description

Bumps tokio from 1.0.1 to 1.1.0.

Release notes

Sourced from tokio's releases.

Tokio v1.1.0

Added

  • net: add try_read_buf and try_recv_buf (#3351)
  • mpsc: Add Sender::try_reserve function (#3418)
  • sync: add RwLock try_read and try_write methods (#3400)
  • io: add ReadBuf::inner_mut (#3443)

Changed

  • macros: improve select! error message (#3352)
  • io: keep track of initialized bytes in read_to_end (#3426)
  • runtime: consolidate errors for context missing (#3441)

Fixed

  • task: wake LocalSet on spawn_local (#3369)
  • sync: fix panic in broadcast::Receiver drop (#3434)

Documented

  • stream: link to new Stream wrappers in tokio-stream (#3343)
  • docs: mention that test-util feature is not enabled with full (#3397)
  • process: add documentation to process::Child fields (#3437)
  • io: clarify AsyncFd docs about changes of the inner fd (#3430)
  • net: update datagram docs on splitting (#3448)
  • time: document that Sleep is not Unpin (#3457)
  • sync: add link to PollSemaphore (#3456)
  • task: add LocalSet example (#3438)
  • sync: improve bounded mpsc documentation (#3458)

Tokio v1.0.2

Fixed

  • io: soundness in read_to_end (#3428).
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/1367 **Author:** [@dependabot-preview[bot]](https://github.com/apps/dependabot-preview) **Created:** 1/25/2021 **Status:** ❌ Closed **Base:** `main` ← **Head:** `dependabot/cargo/tokio-1.1.0` --- ### 📝 Commits (1) - [`90d8a1e`](https://github.com/hickory-dns/hickory-dns/commit/90d8a1e09626b7a13dbab9c616fcb0bd73eb25f3) Bump tokio from 1.0.1 to 1.1.0 ### 📊 Changes **12 files changed** (+15 additions, -15 deletions) <details> <summary>View changed files</summary> 📝 `Cargo.lock` (+2 -2) 📝 `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` (+2 -2) 📝 `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) 📝 `util/Cargo.toml` (+1 -1) </details> ### 📄 Description Bumps [tokio](https://github.com/tokio-rs/tokio) from 1.0.1 to 1.1.0. <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 v1.1.0</h2> <h3>Added</h3> <ul> <li>net: add <code>try_read_buf</code> and <code>try_recv_buf</code> (<a href="https://github-redirect.dependabot.com/tokio-rs/tokio/issues/3351">#3351</a>)</li> <li>mpsc: Add <code>Sender::try_reserve</code> function (<a href="https://github-redirect.dependabot.com/tokio-rs/tokio/issues/3418">#3418</a>)</li> <li>sync: add <code>RwLock</code> <code>try_read</code> and <code>try_write</code> methods (<a href="https://github-redirect.dependabot.com/tokio-rs/tokio/issues/3400">#3400</a>)</li> <li>io: add <code>ReadBuf::inner_mut</code> (<a href="https://github-redirect.dependabot.com/tokio-rs/tokio/issues/3443">#3443</a>)</li> </ul> <h3>Changed</h3> <ul> <li>macros: improve <code>select!</code> error message (<a href="https://github-redirect.dependabot.com/tokio-rs/tokio/issues/3352">#3352</a>)</li> <li>io: keep track of initialized bytes in <code>read_to_end</code> (<a href="https://github-redirect.dependabot.com/tokio-rs/tokio/issues/3426">#3426</a>)</li> <li>runtime: consolidate errors for context missing (<a href="https://github-redirect.dependabot.com/tokio-rs/tokio/issues/3441">#3441</a>)</li> </ul> <h3>Fixed</h3> <ul> <li>task: wake <code>LocalSet</code> on <code>spawn_local</code> (<a href="https://github-redirect.dependabot.com/tokio-rs/tokio/issues/3369">#3369</a>)</li> <li>sync: fix panic in broadcast::Receiver drop (<a href="https://github-redirect.dependabot.com/tokio-rs/tokio/issues/3434">#3434</a>)</li> </ul> <h3>Documented</h3> <ul> <li>stream: link to new <code>Stream</code> wrappers in <code>tokio-stream</code> (<a href="https://github-redirect.dependabot.com/tokio-rs/tokio/issues/3343">#3343</a>)</li> <li>docs: mention that <code>test-util</code> feature is not enabled with full (<a href="https://github-redirect.dependabot.com/tokio-rs/tokio/issues/3397">#3397</a>)</li> <li>process: add documentation to process::Child fields (<a href="https://github-redirect.dependabot.com/tokio-rs/tokio/issues/3437">#3437</a>)</li> <li>io: clarify <code>AsyncFd</code> docs about changes of the inner fd (<a href="https://github-redirect.dependabot.com/tokio-rs/tokio/issues/3430">#3430</a>)</li> <li>net: update datagram docs on splitting (<a href="https://github-redirect.dependabot.com/tokio-rs/tokio/issues/3448">#3448</a>)</li> <li>time: document that <code>Sleep</code> is not <code>Unpin</code> (<a href="https://github-redirect.dependabot.com/tokio-rs/tokio/issues/3457">#3457</a>)</li> <li>sync: add link to <code>PollSemaphore</code> (<a href="https://github-redirect.dependabot.com/tokio-rs/tokio/issues/3456">#3456</a>)</li> <li>task: add <code>LocalSet</code> example (<a href="https://github-redirect.dependabot.com/tokio-rs/tokio/issues/3438">#3438</a>)</li> <li>sync: improve bounded <code>mpsc</code> documentation (<a href="https://github-redirect.dependabot.com/tokio-rs/tokio/issues/3458">#3458</a>)</li> </ul> <h2>Tokio v1.0.2</h2> <h3>Fixed</h3> <ul> <li>io: soundness in <code>read_to_end</code> (<a href="https://github-redirect.dependabot.com/tokio-rs/tokio/issues/3428">#3428</a>).</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/tokio-rs/tokio/commit/35b1a4d0b3a411f52ffc97010b9b002e53bd0d84"><code>35b1a4d</code></a> chore: prepare Tokio 1.1.0 (<a href="https://github-redirect.dependabot.com/tokio-rs/tokio/issues/3462">#3462</a>)</li> <li><a href="https://github.com/tokio-rs/tokio/commit/6da5087b06f1ca2f1f374e52908a97d2c37c8cd3"><code>6da5087</code></a> sync: improve bounded mpsc documentation (<a href="https://github-redirect.dependabot.com/tokio-rs/tokio/issues/3458">#3458</a>)</li> <li><a href="https://github.com/tokio-rs/tokio/commit/c6f08120d0e8764f5ff4d474ded342c85d9b188d"><code>c6f0812</code></a> task: add LocalSet example (<a href="https://github-redirect.dependabot.com/tokio-rs/tokio/issues/3438">#3438</a>)</li> <li><a href="https://github.com/tokio-rs/tokio/commit/29bd5fad5ca0100b4b72bda350b0f7bf37e86127"><code>29bd5fa</code></a> sync: add link to PollSemaphore (<a href="https://github-redirect.dependabot.com/tokio-rs/tokio/issues/3456">#3456</a>)</li> <li><a href="https://github.com/tokio-rs/tokio/commit/f2a048d9904d447bc5dde182d82b47b64ad85e45"><code>f2a048d</code></a> time: document that Sleep is not Unpin (<a href="https://github-redirect.dependabot.com/tokio-rs/tokio/issues/3457">#3457</a>)</li> <li><a href="https://github.com/tokio-rs/tokio/commit/198363f4f1a71cb98ffc0e9eaac335f669a5e1de"><code>198363f</code></a> chore: prepare tokio-util 0.6.2 (<a href="https://github-redirect.dependabot.com/tokio-rs/tokio/issues/3453">#3453</a>)</li> <li><a href="https://github.com/tokio-rs/tokio/commit/5b7c7d565aa6ae995b665e36f2ce60160e59ad98"><code>5b7c7d5</code></a> io: use a sealed trait to constrain VecWithInitialized (<a href="https://github-redirect.dependabot.com/tokio-rs/tokio/issues/3450">#3450</a>)</li> <li><a href="https://github.com/tokio-rs/tokio/commit/117fc2ef3e948c92dd5359d3a479906ed7a5ceb4"><code>117fc2e</code></a> tests: fix ping pong saturation (<a href="https://github-redirect.dependabot.com/tokio-rs/tokio/issues/3390">#3390</a>)</li> <li><a href="https://github.com/tokio-rs/tokio/commit/c4f66ed121f2d7a05afb720d864fdc8f903aed0a"><code>c4f66ed</code></a> util: fix panics on updating DelayQueue entries (<a href="https://github-redirect.dependabot.com/tokio-rs/tokio/issues/3270">#3270</a>)</li> <li><a href="https://github.com/tokio-rs/tokio/commit/7d5b12c50947929326bdfaadb78155ee6593f209"><code>7d5b12c</code></a> sync: fix panic in broadcast::Receiver drop (<a href="https://github-redirect.dependabot.com/tokio-rs/tokio/issues/3434">#3434</a>)</li> <li>Additional commits viewable in <a href="https://github.com/tokio-rs/tokio/compare/tokio-1.0.1...tokio-1.1.0">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=1.0.1&new-version=1.1.0)](https://dependabot.com/compatibility-score/?dependency-name=tokio&package-manager=cargo&previous-version=1.0.1&new-version=1.1.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) - 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 08:29:01 +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#2263
No description provided.