From 59bba65ac0dddd086b71060578225ef1e11be372 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 2 Mar 2022 14:10:53 +0100 Subject: [PATCH] build(deps): Update async-std-resolver requirement from 0.20 to 0.21 (#2543) * build(deps): Update async-std-resolver requirement from 0.20 to 0.21 Updates the requirements on [async-std-resolver](https://github.com/bluejekyll/trust-dns) to permit the latest version. - [Release notes](https://github.com/bluejekyll/trust-dns/releases) - [Changelog](https://github.com/bluejekyll/trust-dns/blob/main/CHANGELOG.md) - [Commits](https://github.com/bluejekyll/trust-dns/compare/v0.20.0...v0.21.1) --- updated-dependencies: - dependency-name: async-std-resolver dependency-type: direct:production ... Signed-off-by: dependabot[bot] * build(deps): Update trust-dns-resolver requirement from 0.20 to 0.21 Updates the requirements on [trust-dns-resolver](https://github.com/bluejekyll/trust-dns) to permit the latest version. - [Release notes](https://github.com/bluejekyll/trust-dns/releases) - [Changelog](https://github.com/bluejekyll/trust-dns/blob/main/CHANGELOG.md) - [Commits](https://github.com/bluejekyll/trust-dns/compare/v0.20.0...v0.21.1) --- updated-dependencies: - dependency-name: trust-dns-resolver dependency-type: direct:production ... Signed-off-by: dependabot[bot] * transports/dns: Bump patch version Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Max Inden --- CHANGELOG.md | 1 + Cargo.toml | 2 +- transports/dns/CHANGELOG.md | 6 ++++++ transports/dns/Cargo.toml | 6 +++--- 4 files changed, 11 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1db7fe1f37d..a8617cac192 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -46,6 +46,7 @@ - Update individual crates. - Update to [`libp2p-dcutr` `v0.2.0`](protocols/dcutr/CHANGELOG.md). + - Update to [`libp2p-dns` `v0.32.1`](transports/dns/CHANGELOG.md). - Update to [`libp2p-rendezvous` `v0.5.0`](protocols/rendezvous/CHANGELOG.md). - Update to [`libp2p-ping` `v0.35.0`](protocols/ping/CHANGELOG.md). - Update to [`libp2p-identify` `v0.35.0`](protocols/identify/CHANGELOG.md). diff --git a/Cargo.toml b/Cargo.toml index f712bf2eb1f..961c167f640 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -105,7 +105,7 @@ smallvec = "1.6.1" [target.'cfg(not(any(target_os = "emscripten", target_os = "wasi", target_os = "unknown")))'.dependencies] libp2p-deflate = { version = "0.32.0", path = "transports/deflate", optional = true } -libp2p-dns = { version = "0.32.0", path = "transports/dns", optional = true, default-features = false } +libp2p-dns = { version = "0.32.1", path = "transports/dns", optional = true, default-features = false } libp2p-mdns = { version = "0.36.0", path = "protocols/mdns", optional = true } libp2p-tcp = { version = "0.32.0", path = "transports/tcp", default-features = false, optional = true } libp2p-websocket = { version = "0.34.0", path = "transports/websocket", optional = true } diff --git a/transports/dns/CHANGELOG.md b/transports/dns/CHANGELOG.md index 8352f1dab28..3347b67d160 100644 --- a/transports/dns/CHANGELOG.md +++ b/transports/dns/CHANGELOG.md @@ -1,3 +1,9 @@ +# 0.32.1 [unreleased] + +- Update to `trust-dns` `v0.21`. See [PR 2543]. + +[PR 2543]: https://github.com/libp2p/rust-libp2p/pull/2543 + # 0.32.0 [2022-02-22] - Update to `libp2p-core` `v0.32.0`. diff --git a/transports/dns/Cargo.toml b/transports/dns/Cargo.toml index 54954f1a0c9..248e5c2c616 100644 --- a/transports/dns/Cargo.toml +++ b/transports/dns/Cargo.toml @@ -3,7 +3,7 @@ name = "libp2p-dns" edition = "2021" rust-version = "1.56.1" description = "DNS transport implementation for libp2p" -version = "0.32.0" +version = "0.32.1" authors = ["Parity Technologies "] license = "MIT" repository = "https://github.com/libp2p/rust-libp2p" @@ -14,8 +14,8 @@ categories = ["network-programming", "asynchronous"] libp2p-core = { version = "0.32.0", path = "../../core", default-features = false } log = "0.4.1" futures = "0.3.1" -trust-dns-resolver = { version = "0.20", default-features = false, features = ["system-config"] } -async-std-resolver = { version = "0.20", optional = true } +async-std-resolver = { version = "0.21", optional = true } +trust-dns-resolver = { version = "0.21", default-features = false, features = ["system-config"] } smallvec = "1.6.1" [dev-dependencies]