Skip to content

Commit

Permalink
*: Update multihash and multiaddr (#2469)
Browse files Browse the repository at this point in the history
Co-authored-by: Max Inden <mail@max-inden.de>
  • Loading branch information
vmx and mxinden committed Feb 3, 2022
1 parent 1b6ffb1 commit a2c93fc
Show file tree
Hide file tree
Showing 49 changed files with 229 additions and 89 deletions.
26 changes: 23 additions & 3 deletions CHANGELOG.md
Expand Up @@ -45,9 +45,29 @@
## Version 0.43.0 [unreleased]

- Update individual crates.
- `libp2p-core`
- `libp2p-gossipsub`
- `libp2p-metrics`
- Update to `libp2p-autonat` `v0.2.0`.
- Update to `libp2p-core` `v0.32.0`.
- Update to `libp2p-deflate` `v0.32.0`.
- Update to `libp2p-dns` `v0.32.0`.
- Update to `libp2p-floodsub` `v0.34.0`.
- Update to `libp2p-gossipsub` `v0.36.0`.
- Update to `libp2p-identify` `v0.34.0`.
- Update to `libp2p-kad` `v0.35.0`.
- Update to `libp2p-mdns` `v0.35.0`.
- Update to `libp2p-metrics` `v0.4.0`.
- Update to `libp2p-mplex` `v0.32.0`.
- Update to `libp2p-noise` `v0.35.0`.
- Update to `libp2p-ping` `v0.34.0`.
- Update to `libp2p-plaintext` `v0.32.0`.
- Update to `libp2p-relay` `v0.7.0`.
- Update to `libp2p-rendezvous` `v0.4.0`.
- Update to `libp2p-request-response` `v0.16.0`.
- Update to `libp2p-swarm` `v0.34.0`.
- Update to `libp2p-tcp` `v0.32.0`.
- Update to `libp2p-uds` `v0.32.0`.
- Update to `libp2p-wasm-ext` `v0.32.0`.
- Update to `libp2p-websocket` `v0.34.0`.
- Update to `libp2p-yamux` `v0.36.0`.

## Version 0.42.1 [2022-02-02]

Expand Down
44 changes: 22 additions & 22 deletions Cargo.toml
Expand Up @@ -76,38 +76,38 @@ getrandom = "0.2.3" # Explicit dependency to be used in `wasm-bindgen` feature
instant = "0.1.11" # Explicit dependency to be used in `wasm-bindgen` feature
lazy_static = "1.2"

libp2p-autonat = { version = "0.1.0", path = "protocols/autonat", optional = true }
libp2p-core = { version = "0.31.1", path = "core", default-features = false }
libp2p-floodsub = { version = "0.33.0", path = "protocols/floodsub", optional = true }
libp2p-autonat = { version = "0.2.0", path = "protocols/autonat", optional = true }
libp2p-core = { version = "0.32.0", path = "core", default-features = false }
libp2p-floodsub = { version = "0.34.0", path = "protocols/floodsub", optional = true }
libp2p-gossipsub = { version = "0.36.0", path = "./protocols/gossipsub", optional = true }
libp2p-identify = { version = "0.33.0", path = "protocols/identify", optional = true }
libp2p-kad = { version = "0.34.0", path = "protocols/kad", optional = true }
libp2p-identify = { version = "0.34.0", path = "protocols/identify", optional = true }
libp2p-kad = { version = "0.35.0", path = "protocols/kad", optional = true }
libp2p-metrics = { version = "0.4.0", path = "misc/metrics", optional = true }
libp2p-mplex = { version = "0.31.0", path = "muxers/mplex", optional = true }
libp2p-noise = { version = "0.34.0", path = "transports/noise", optional = true }
libp2p-ping = { version = "0.33.0", path = "protocols/ping", optional = true }
libp2p-plaintext = { version = "0.31.0", path = "transports/plaintext", optional = true }
libp2p-mplex = { version = "0.32.0", path = "muxers/mplex", optional = true }
libp2p-noise = { version = "0.35.0", path = "transports/noise", optional = true }
libp2p-ping = { version = "0.34.0", path = "protocols/ping", optional = true }
libp2p-plaintext = { version = "0.32.0", path = "transports/plaintext", optional = true }
libp2p-pnet = { version = "0.22.0", path = "transports/pnet", optional = true }
libp2p-relay = { version = "0.6.1", path = "protocols/relay", optional = true }
libp2p-rendezvous = { version = "0.3.0", path = "protocols/rendezvous", optional = true }
libp2p-request-response = { version = "0.15.0", path = "protocols/request-response", optional = true }
libp2p-swarm = { version = "0.33.0", path = "swarm" }
libp2p-relay = { version = "0.7.0", path = "protocols/relay", optional = true }
libp2p-rendezvous = { version = "0.4.0", path = "protocols/rendezvous", optional = true }
libp2p-request-response = { version = "0.16.0", path = "protocols/request-response", optional = true }
libp2p-swarm = { version = "0.34.0", path = "swarm" }
libp2p-swarm-derive = { version = "0.26.1", path = "swarm-derive" }
libp2p-uds = { version = "0.31.0", path = "transports/uds", optional = true }
libp2p-wasm-ext = { version = "0.31.0", path = "transports/wasm-ext", default-features = false, optional = true }
libp2p-yamux = { version = "0.35.0", path = "muxers/yamux", optional = true }
multiaddr = { version = "0.13.0" }
libp2p-uds = { version = "0.32.0", path = "transports/uds", optional = true }
libp2p-wasm-ext = { version = "0.32.0", path = "transports/wasm-ext", default-features = false, optional = true }
libp2p-yamux = { version = "0.36.0", path = "muxers/yamux", optional = true }
multiaddr = { version = "0.14.0" }
parking_lot = "0.11.0"
pin-project = "1.0.0"
rand = "0.7.3" # Explicit dependency to be used in `wasm-bindgen` feature
smallvec = "1.6.1"

[target.'cfg(not(any(target_os = "emscripten", target_os = "wasi", target_os = "unknown")))'.dependencies]
libp2p-deflate = { version = "0.31.0", path = "transports/deflate", optional = true }
libp2p-dns = { version = "0.31.0", path = "transports/dns", optional = true, default-features = false }
libp2p-mdns = { version = "0.34.0", path = "protocols/mdns", optional = true }
libp2p-tcp = { version = "0.31.1", path = "transports/tcp", default-features = false, optional = true }
libp2p-websocket = { version = "0.33.0", path = "transports/websocket", optional = true }
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-mdns = { version = "0.35.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 }

[dev-dependencies]
async-std = { version = "1.6.2", features = ["attributes"] }
Expand Down
6 changes: 5 additions & 1 deletion core/CHANGELOG.md
@@ -1,4 +1,8 @@
# 0.31.1 [unreleased]
# 0.32.0 [unreleased]

- Update to `multiaddr` `v0.14.0`.

- Update to `multihash` `v0.16.0`.

- Implement `Display` on `DialError`. See [PR 2456].

Expand Down
8 changes: 4 additions & 4 deletions core/Cargo.toml
Expand Up @@ -3,7 +3,7 @@ name = "libp2p-core"
edition = "2021"
rust-version = "1.56.1"
description = "Core traits and structs of libp2p"
version = "0.31.1"
version = "0.32.0"
authors = ["Parity Technologies <admin@parity.io>"]
license = "MIT"
repository = "https://github.com/libp2p/rust-libp2p"
Expand All @@ -22,8 +22,8 @@ instant = "0.1.11"
lazy_static = "1.2"
libsecp256k1 = { version = "0.7.0", optional = true }
log = "0.4"
multiaddr = { version = "0.13.0" }
multihash = { version = "0.14", default-features = false, features = ["std", "multihash-impl", "identity", "sha2"] }
multiaddr = { version = "0.14.0" }
multihash = { version = "0.16", default-features = false, features = ["std", "multihash-impl", "identity", "sha2"] }
multistream-select = { version = "0.11", path = "../misc/multistream-select" }
p256 = { version = "0.10.0", default-features = false, features = ["ecdsa"], optional = true }
parking_lot = "0.11.0"
Expand Down Expand Up @@ -51,7 +51,7 @@ libp2p-noise = { path = "../transports/noise" }
libp2p-tcp = { path = "../transports/tcp" }
serde_json = "1.0"
rmp-serde = "1.0"
multihash = { version = "0.14", default-features = false, features = ["arb"] }
multihash = { version = "0.16", default-features = false, features = ["arb"] }
quickcheck = "0.9.0"
rand07 = { package = "rand", version = "0.7" }

Expand Down
12 changes: 12 additions & 0 deletions misc/metrics/CHANGELOG.md
@@ -1,5 +1,17 @@
# 0.4.0 [unreleased]

- Update to `libp2p-core` `v0.32.0`.

- Update to `libp2p-swarm` `v0.34.0`.

- Update to `libp2p-ping` `v0.34.0`.

- Update to `libp2p-identify` `v0.34.0`.

- Update to `libp2p-relay` `v0.7.0`.

- Update to `libp2p-kad` `v0.35.0`.

- Move from `open-metrics-client` to `prometheus-client` (see [PR 2442]).

[PR 2442]: https://github.com/libp2p/rust-libp2p/pull/2442
Expand Down
12 changes: 6 additions & 6 deletions misc/metrics/Cargo.toml
Expand Up @@ -18,13 +18,13 @@ ping = ["libp2p-ping"]
relay = ["libp2p-relay"]

[dependencies]
libp2p-core = { version = "0.31.0", path = "../../core", default-features = false }
libp2p-core = { version = "0.32.0", path = "../../core", default-features = false }
libp2p-gossipsub = { version = "0.36.0", path = "../../protocols/gossipsub", optional = true }
libp2p-identify = { version = "0.33.0", path = "../../protocols/identify", optional = true }
libp2p-kad = { version = "0.34.0", path = "../../protocols/kad", optional = true }
libp2p-ping = { version = "0.33.0", path = "../../protocols/ping", optional = true }
libp2p-relay = { version = "0.6.0", path = "../../protocols/relay", optional = true }
libp2p-swarm = { version = "0.33.0", path = "../../swarm" }
libp2p-identify = { version = "0.34.0", path = "../../protocols/identify", optional = true }
libp2p-kad = { version = "0.35.0", path = "../../protocols/kad", optional = true }
libp2p-ping = { version = "0.34.0", path = "../../protocols/ping", optional = true }
libp2p-relay = { version = "0.7.0", path = "../../protocols/relay", optional = true }
libp2p-swarm = { version = "0.34.0", path = "../../swarm" }
prometheus-client = "0.15.0"

[dev-dependencies]
Expand Down
2 changes: 1 addition & 1 deletion misc/peer-id-generator/Cargo.toml
Expand Up @@ -12,5 +12,5 @@ categories = ["network-programming", "asynchronous"]
publish = false

[dependencies]
libp2p-core = { path = "../../core", default-features = false, version = "0.31.0"}
libp2p-core = { path = "../../core", default-features = false, version = "0.32.0"}
num_cpus = "1.8"
4 changes: 4 additions & 0 deletions muxers/mplex/CHANGELOG.md
@@ -1,3 +1,7 @@
# 0.32.0 [unreleased]

- Update to `libp2p-core` `v0.32.0`.

# 0.31.0 [2022-01-27]

- Update dependencies.
Expand Down
4 changes: 2 additions & 2 deletions muxers/mplex/Cargo.toml
Expand Up @@ -3,7 +3,7 @@ name = "libp2p-mplex"
edition = "2021"
rust-version = "1.56.1"
description = "Mplex multiplexing protocol for libp2p"
version = "0.31.0"
version = "0.32.0"
authors = ["Parity Technologies <admin@parity.io>"]
license = "MIT"
repository = "https://github.com/libp2p/rust-libp2p"
Expand All @@ -14,7 +14,7 @@ categories = ["network-programming", "asynchronous"]
bytes = "1"
futures = "0.3.1"
asynchronous-codec = "0.6"
libp2p-core = { version = "0.31.0", path = "../../core", default-features = false }
libp2p-core = { version = "0.32.0", path = "../../core", default-features = false }
log = "0.4"
nohash-hasher = "0.2"
parking_lot = "0.11"
Expand Down
4 changes: 4 additions & 0 deletions muxers/yamux/CHANGELOG.md
@@ -1,3 +1,7 @@
# 0.36.0 [unreleased]

- Update to `libp2p-core` `v0.32.0`.

# 0.35.0 [2022-01-27]

- Update dependencies.
Expand Down
4 changes: 2 additions & 2 deletions muxers/yamux/Cargo.toml
Expand Up @@ -3,7 +3,7 @@ name = "libp2p-yamux"
edition = "2021"
rust-version = "1.56.1"
description = "Yamux multiplexing protocol for libp2p"
version = "0.35.0"
version = "0.36.0"
authors = ["Parity Technologies <admin@parity.io>"]
license = "MIT"
repository = "https://github.com/libp2p/rust-libp2p"
Expand All @@ -12,7 +12,7 @@ categories = ["network-programming", "asynchronous"]

[dependencies]
futures = "0.3.1"
libp2p-core = { version = "0.31.0", path = "../../core", default-features = false }
libp2p-core = { version = "0.32.0", path = "../../core", default-features = false }
parking_lot = "0.11"
thiserror = "1.0"
yamux = "0.10.0"
8 changes: 8 additions & 0 deletions protocols/autonat/CHANGELOG.md
@@ -1,3 +1,11 @@
# 0.2.0 [unreleased]

- Update to `libp2p-core` `v0.32.0`.

- Update to `libp2p-swarm` `v0.34.0`.

- Update to `libp2p-request-response` `v0.16.0`.

# 0.1.0 [2022-01-27]

- Initial release.
8 changes: 4 additions & 4 deletions protocols/autonat/Cargo.toml
Expand Up @@ -3,7 +3,7 @@ name = "libp2p-autonat"
edition = "2021"
rust-version = "1.56.1"
description = "NAT and firewall detection for libp2p"
version = "0.1.0"
version = "0.2.0"
authors = ["David Craven <david@craven.ch>", "Elena Frank <elena.frank@protonmail.com>"]
license = "MIT"
repository = "https://github.com/libp2p/rust-libp2p"
Expand All @@ -18,9 +18,9 @@ async-trait = "0.1"
futures = "0.3"
futures-timer = "3.0"
instant = "0.1"
libp2p-core = { version = "0.31.0", path = "../../core", default-features = false }
libp2p-swarm = { version = "0.33.0", path = "../../swarm" }
libp2p-request-response = { version = "0.15.0", path = "../request-response" }
libp2p-core = { version = "0.32.0", path = "../../core", default-features = false }
libp2p-swarm = { version = "0.34.0", path = "../../swarm" }
libp2p-request-response = { version = "0.16.0", path = "../request-response" }
log = "0.4"
rand = "0.8"
prost = "0.9"
Expand Down
6 changes: 6 additions & 0 deletions protocols/floodsub/CHANGELOG.md
@@ -1,3 +1,9 @@
# 0.34.0 [unreleased]

- Update to `libp2p-core` `v0.32.0`.

- Update to `libp2p-swarm` `v0.34.0`.

# 0.33.0 [2022-01-27]

- Update dependencies.
Expand Down
6 changes: 3 additions & 3 deletions protocols/floodsub/Cargo.toml
Expand Up @@ -3,7 +3,7 @@ name = "libp2p-floodsub"
edition = "2021"
rust-version = "1.56.1"
description = "Floodsub protocol for libp2p"
version = "0.33.0"
version = "0.34.0"
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"]
cuckoofilter = "0.5.0"
fnv = "1.0"
futures = "0.3.1"
libp2p-core = { version = "0.31.0", path = "../../core", default-features = false }
libp2p-swarm = { version = "0.33.0", path = "../../swarm" }
libp2p-core = { version = "0.32.0", path = "../../core", default-features = false }
libp2p-swarm = { version = "0.34.0", path = "../../swarm" }
log = "0.4"
prost = "0.9"
rand = "0.7"
Expand Down
4 changes: 4 additions & 0 deletions protocols/gossipsub/CHANGELOG.md
@@ -1,5 +1,9 @@
# 0.36.0 [unreleased]

- Update to `libp2p-core` `v0.32.0`.

- Update to `libp2p-swarm` `v0.34.0`.

- Move from `open-metrics-client` to `prometheus-client` (see [PR 2442]).

[PR 2442]: https://github.com/libp2p/rust-libp2p/pull/2442
Expand Down
4 changes: 2 additions & 2 deletions protocols/gossipsub/Cargo.toml
Expand Up @@ -11,8 +11,8 @@ keywords = ["peer-to-peer", "libp2p", "networking"]
categories = ["network-programming", "asynchronous"]

[dependencies]
libp2p-swarm = { version = "0.33.0", path = "../../swarm" }
libp2p-core = { version = "0.31.0", path = "../../core", default-features = false }
libp2p-swarm = { version = "0.34.0", path = "../../swarm" }
libp2p-core = { version = "0.32.0", path = "../../core", default-features = false }
bytes = "1.0"
byteorder = "1.3.4"
fnv = "1.0.7"
Expand Down
6 changes: 6 additions & 0 deletions protocols/identify/CHANGELOG.md
@@ -1,3 +1,9 @@
# 0.34.0 [unreleased]

- Update to `libp2p-core` `v0.32.0`.

- Update to `libp2p-swarm` `v0.34.0`.

# 0.33.0 [2022-01-27]

- Update dependencies.
Expand Down
6 changes: 3 additions & 3 deletions protocols/identify/Cargo.toml
Expand Up @@ -3,7 +3,7 @@ name = "libp2p-identify"
edition = "2021"
rust-version = "1.56.1"
description = "Nodes identifcation protocol for libp2p"
version = "0.33.0"
version = "0.34.0"
authors = ["Parity Technologies <admin@parity.io>"]
license = "MIT"
repository = "https://github.com/libp2p/rust-libp2p"
Expand All @@ -13,8 +13,8 @@ categories = ["network-programming", "asynchronous"]
[dependencies]
futures = "0.3.1"
futures-timer = "3.0.2"
libp2p-core = { version = "0.31.0", path = "../../core", default-features = false }
libp2p-swarm = { version = "0.33.0", path = "../../swarm" }
libp2p-core = { version = "0.32.0", path = "../../core", default-features = false }
libp2p-swarm = { version = "0.34.0", path = "../../swarm" }
log = "0.4.1"
lru = "0.7.2"
prost = "0.9"
Expand Down
6 changes: 6 additions & 0 deletions protocols/kad/CHANGELOG.md
@@ -1,3 +1,9 @@
# 0.35.0 [unreleased]

- Update to `libp2p-core` `v0.32.0`.

- Update to `libp2p-swarm` `v0.34.0`.

# 0.34.0 [2022-01-27]

- Update dependencies.
Expand Down
6 changes: 3 additions & 3 deletions protocols/kad/Cargo.toml
Expand Up @@ -3,7 +3,7 @@ name = "libp2p-kad"
edition = "2021"
rust-version = "1.56.1"
description = "Kademlia protocol for libp2p"
version = "0.34.0"
version = "0.35.0"
authors = ["Parity Technologies <admin@parity.io>"]
license = "MIT"
repository = "https://github.com/libp2p/rust-libp2p"
Expand All @@ -18,8 +18,8 @@ fnv = "1.0"
asynchronous-codec = "0.6"
futures = "0.3.1"
log = "0.4"
libp2p-core = { version = "0.31.0", path = "../../core", default-features = false }
libp2p-swarm = { version = "0.33.0", path = "../../swarm" }
libp2p-core = { version = "0.32.0", path = "../../core", default-features = false }
libp2p-swarm = { version = "0.34.0", path = "../../swarm" }
prost = "0.9"
rand = "0.7.2"
sha2 = "0.10.0"
Expand Down
6 changes: 6 additions & 0 deletions protocols/mdns/CHANGELOG.md
@@ -1,3 +1,9 @@
# 0.35.0 [unreleased]

- Update to `libp2p-core` `v0.32.0`.

- Update to `libp2p-swarm` `v0.34.0`.

# 0.34.0 [2022-01-27]

- Update dependencies.
Expand Down

0 comments on commit a2c93fc

Please sign in to comment.