Skip to content

Commit

Permalink
build(deps): Update async-std-resolver requirement from 0.20 to 0.21 (#…
Browse files Browse the repository at this point in the history
…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](bluejekyll/trust-dns@v0.20.0...v0.21.1)

---
updated-dependencies:
- dependency-name: async-std-resolver
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>

* 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](bluejekyll/trust-dns@v0.20.0...v0.21.1)

---
updated-dependencies:
- dependency-name: trust-dns-resolver
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>

* transports/dns: Bump patch version

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Max Inden <mail@max-inden.de>
  • Loading branch information
dependabot[bot] and mxinden authored Mar 2, 2022
1 parent b919d00 commit 59bba65
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 4 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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).
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }
Expand Down
6 changes: 6 additions & 0 deletions transports/dns/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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`.
Expand Down
6 changes: 3 additions & 3 deletions transports/dns/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 <admin@parity.io>"]
license = "MIT"
repository = "https://github.com/libp2p/rust-libp2p"
Expand All @@ -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]
Expand Down

0 comments on commit 59bba65

Please sign in to comment.