[PR #1210] [MERGED] Bump async-std from 1.6.3 to 1.6.4 #2088

Closed
opened 2026-03-16 05:42:20 +03:00 by kerem · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/hickory-dns/hickory-dns/pull/1210
Author: @dependabot-preview[bot]
Created: 9/21/2020
Status: Merged
Merged: 9/22/2020
Merged by: @bluejekyll

Base: mainHead: dependabot/cargo/async-std-1.6.4


📝 Commits (1)

  • 00c020f Bump async-std from 1.6.3 to 1.6.4

📊 Changes

2 files changed (+72 additions, -52 deletions)

View changed files

📝 Cargo.lock (+70 -50)
📝 crates/async-std-resolver/Cargo.toml (+2 -2)

📄 Description

Bumps async-std from 1.6.3 to 1.6.4.

Release notes

Sourced from async-std's releases.

v1.6.4

Added

  • Added UdpSocket::peek and UdpSocket::peek_from (#853)

Changed

Fixed

  • Ensure UnixStream::into_raw_fd doesn't close the file descriptor (#855)
  • Fixed wasm builds and ensured better dependency management depending on the compile target (#863)
Changelog

Sourced from async-std's changelog.

[1.6.4] - 2020-09-16

Added

  • Added UdpSocket::peek and UdpSocket::peek_from (#853)

Changed

Fixed

  • Ensure UnixStream::into_raw_fd doesn't close the file descriptor (#855)
  • Fixed wasm builds and ensured better dependency management depending on the compile target (#863)
Commits
  • 55fb871 chore: release v1.6.4
  • 352c54b feat: move executor to async-global-executo
  • e9cb238 fix wasm and nostd builds
  • 6a6623c Merge pull request #869 from jimblandy/buf-writer-doc-fix
  • a9580a9 Merge pull request #872 from TaKO8Ki/fix-clippy-warnings
  • f731959 Merge pull request #866 from Keruspe/smol04
  • 1aa148d Merge pull request #874 from humancalico/patch-1
  • efaeadc (typo) s/panicing/panicking
  • 15798bd update to smol 1.0 subcrates
  • 04bb83f fix clippy warnings
  • Additional commits viewable in compare view

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/1210 **Author:** [@dependabot-preview[bot]](https://github.com/apps/dependabot-preview) **Created:** 9/21/2020 **Status:** ✅ Merged **Merged:** 9/22/2020 **Merged by:** [@bluejekyll](https://github.com/bluejekyll) **Base:** `main` ← **Head:** `dependabot/cargo/async-std-1.6.4` --- ### 📝 Commits (1) - [`00c020f`](https://github.com/hickory-dns/hickory-dns/commit/00c020f0989dad613833c5f397bed9152ab9a5fd) Bump async-std from 1.6.3 to 1.6.4 ### 📊 Changes **2 files changed** (+72 additions, -52 deletions) <details> <summary>View changed files</summary> 📝 `Cargo.lock` (+70 -50) 📝 `crates/async-std-resolver/Cargo.toml` (+2 -2) </details> ### 📄 Description Bumps [async-std](https://github.com/async-rs/async-std) from 1.6.3 to 1.6.4. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/async-rs/async-std/releases">async-std's releases</a>.</em></p> <blockquote> <h2>v1.6.4</h2> <h2>Added</h2> <ul> <li>Added <code>UdpSocket::peek</code> and <code>UdpSocket::peek_from</code> (<a href="https://github-redirect.dependabot.com/async-rs/async-std/pull/853">#853</a>)</li> </ul> <h2>Changed</h2> <ul> <li> <p>Extracted the executor into <a href="https://github.com/async-rs/async-global-executor">async-global-executor</a> (<a href="https://github-redirect.dependabot.com/async-rs/async-std/pull/867">#867</a>)</p> </li> <li> <p>Updated various dependencies</p> </li> </ul> <h2>Fixed</h2> <ul> <li>Ensure <code>UnixStream::into_raw_fd</code> doesn't close the file descriptor (<a href="https://github-redirect.dependabot.com/async-rs/async-std/issues/855">#855</a>)</li> <li>Fixed wasm builds and ensured better dependency management depending on the compile target (<a href="https://github-redirect.dependabot.com/async-rs/async-std/pull/863">#863</a>)</li> </ul> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/async-rs/async-std/blob/master/CHANGELOG.md">async-std's changelog</a>.</em></p> <blockquote> <h1>[1.6.4] - 2020-09-16</h1> <h2>Added</h2> <ul> <li>Added <code>UdpSocket::peek</code> and <code>UdpSocket::peek_from</code> (<a href="https://github-redirect.dependabot.com/async-rs/async-std/pull/853">#853</a>)</li> </ul> <h2>Changed</h2> <ul> <li> <p>Extracted the executor into <a href="https://github.com/async-rs/async-global-executor">async-global-executor</a> (<a href="https://github-redirect.dependabot.com/async-rs/async-std/pull/867">#867</a>)</p> </li> <li> <p>Updated various dependencies</p> </li> </ul> <h2>Fixed</h2> <ul> <li>Ensure <code>UnixStream::into_raw_fd</code> doesn't close the file descriptor (<a href="https://github-redirect.dependabot.com/async-rs/async-std/issues/855">#855</a>)</li> <li>Fixed wasm builds and ensured better dependency management depending on the compile target (<a href="https://github-redirect.dependabot.com/async-rs/async-std/pull/863">#863</a>)</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/async-rs/async-std/commit/55fb871ab88158f85d422f6d6937cdbb9f864756"><code>55fb871</code></a> chore: release v1.6.4</li> <li><a href="https://github.com/async-rs/async-std/commit/352c54bfe6701bbe782f2b80100056e497fa3e30"><code>352c54b</code></a> feat: move executor to async-global-executo</li> <li><a href="https://github.com/async-rs/async-std/commit/e9cb238f49b6097c3dc3d6f06a6a54f22dc955d4"><code>e9cb238</code></a> fix wasm and nostd builds</li> <li><a href="https://github.com/async-rs/async-std/commit/6a6623cfad30a787a997d10f740a9ff94eb178b1"><code>6a6623c</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/async-rs/async-std/issues/869">#869</a> from jimblandy/buf-writer-doc-fix</li> <li><a href="https://github.com/async-rs/async-std/commit/a9580a9f76ef3dbb5f8905abfb9a3c2db06ca516"><code>a9580a9</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/async-rs/async-std/issues/872">#872</a> from TaKO8Ki/fix-clippy-warnings</li> <li><a href="https://github.com/async-rs/async-std/commit/f7319591a35f0386d7aa76436d2fd6b884aa3d22"><code>f731959</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/async-rs/async-std/issues/866">#866</a> from Keruspe/smol04</li> <li><a href="https://github.com/async-rs/async-std/commit/1aa148df9f29e0db2cb2c38f28c96b484d14a52e"><code>1aa148d</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/async-rs/async-std/issues/874">#874</a> from humancalico/patch-1</li> <li><a href="https://github.com/async-rs/async-std/commit/efaeadce888532f5d8d2d34ff9be483382da84ef"><code>efaeadc</code></a> (typo) s/panicing/panicking</li> <li><a href="https://github.com/async-rs/async-std/commit/15798bd72b46909c8de282aa24a14ba66af77fab"><code>15798bd</code></a> update to smol 1.0 subcrates</li> <li><a href="https://github.com/async-rs/async-std/commit/04bb83f86efaece670f9c54e9fd834590f6ca759"><code>04bb83f</code></a> fix clippy warnings</li> <li>Additional commits viewable in <a href="https://github.com/async-rs/async-std/compare/v1.6.3...v1.6.4">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://api.dependabot.com/badges/compatibility_score?dependency-name=async-std&package-manager=cargo&previous-version=1.6.3&new-version=1.6.4)](https://dependabot.com/compatibility-score/?dependency-name=async-std&package-manager=cargo&previous-version=1.6.3&new-version=1.6.4) 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 05:42:20 +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#2088
No description provided.