diff --git a/CHANGELOG.md b/CHANGELOG.md index 511120d1..338ea37f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -74,11 +74,22 @@ - Update to [`libp2p-metrics` `v0.12.0`](misc/metrics/CHANGELOG.md#0120). - Update to [`libp2p-swarm` `v0.42.0`](swarm/CHANGELOG.md#0420). - + - Update to [`libp2p-mdns` `v0.43.0`](protocols/mdns/CHANGELOG.md#0430). - + - Update to [`libp2p-gossipsub` `v0.44.0`](protocols/gossipsub/CHANGELOG.md#0440). - + + - Update to [`libp2p-yamux` `v0.43.0`](muxers/yamux/CHANGELOG.md#0430). + + - Update to [`libp2p-mplex` `v0.39.0`](muxers/mplex/CHANGELOG.md#0390). + + - Update to [`libp2p-wasm-ext` `v0.39.0`](transports/wasm-ext/CHANGELOG.md#0390). + + - Update to [`libp2p-plaintext` `v0.39.0`](transports/plaintext/CHANGELOG.md#0390). + + - Update to [`libp2p-noise` `v0.42.0`](transports/noise/CHANGELOG.md#0420). + + - Update to [`libp2p-core` `v0.39.0`](core/CHANGELOG.md#0390). [PR 3191]: https://github.com/libp2p/rust-libp2p/pull/3191 diff --git a/Cargo.toml b/Cargo.toml index 976d9fa0..553bc204 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -93,38 +93,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 libp2p-autonat = { version = "0.10.0", path = "protocols/autonat", optional = true } -libp2p-core = { version = "0.38.0", path = "core" } +libp2p-core = { version = "0.39.0", path = "core" } libp2p-dcutr = { version = "0.9.0", path = "protocols/dcutr", optional = true } libp2p-floodsub = { version = "0.42.0", path = "protocols/floodsub", optional = true } libp2p-identify = { version = "0.42.0", path = "protocols/identify", optional = true } libp2p-kad = { version = "0.43.0", path = "protocols/kad", optional = true } libp2p-metrics = { version = "0.12.0", path = "misc/metrics", optional = true } -libp2p-mplex = { version = "0.38.0", path = "muxers/mplex", optional = true } -libp2p-noise = { version = "0.41.0", path = "transports/noise", optional = true } +libp2p-mplex = { version = "0.39.0", path = "muxers/mplex", optional = true } +libp2p-noise = { version = "0.42.0", path = "transports/noise", optional = true } libp2p-ping = { version = "0.42.0", path = "protocols/ping", optional = true } -libp2p-plaintext = { version = "0.38.0", path = "transports/plaintext", optional = true } +libp2p-plaintext = { version = "0.39.0", path = "transports/plaintext", optional = true } libp2p-pnet = { version = "0.22.2", path = "transports/pnet", optional = true } libp2p-relay = { version = "0.15.0", path = "protocols/relay", optional = true } libp2p-rendezvous = { version = "0.12.0", path = "protocols/rendezvous", optional = true } libp2p-request-response = { version = "0.24.0", path = "protocols/request-response", optional = true } libp2p-swarm = { version = "0.42.0", path = "swarm" } libp2p-uds = { version = "0.37.0", path = "transports/uds", optional = true } -libp2p-wasm-ext = { version = "0.38.0", path = "transports/wasm-ext", optional = true } -libp2p-yamux = { version = "0.42.0", path = "muxers/yamux", optional = true } -multiaddr = { version = "0.16.0" } +libp2p-wasm-ext = { version = "0.39.0", path = "transports/wasm-ext", optional = true } +libp2p-yamux = { version = "0.43.0", path = "muxers/yamux", optional = true } +multiaddr = { version = "0.17.0" } parking_lot = "0.12.0" pin-project = "1.0.0" smallvec = "1.6.1" [target.'cfg(not(any(target_os = "emscripten", target_os = "wasi", target_os = "unknown")))'.dependencies] -libp2p-deflate = { version = "0.38.0", path = "transports/deflate", optional = true } -libp2p-dns = { version = "0.38.0", path = "transports/dns", optional = true } +libp2p-deflate = { version = "0.39.0", path = "transports/deflate", optional = true } +libp2p-dns = { version = "0.39.0", path = "transports/dns", optional = true } libp2p-mdns = { version = "0.43.0", path = "protocols/mdns", optional = true } -libp2p-quic = { version = "0.7.0-alpha", path = "transports/quic", optional = true } -libp2p-tcp = { version = "0.38.0", path = "transports/tcp", optional = true } -libp2p-tls = { version = "0.1.0-alpha", path = "transports/tls", optional = true } -libp2p-webrtc = { version = "0.4.0-alpha", path = "transports/webrtc", optional = true } -libp2p-websocket = { version = "0.40.0", path = "transports/websocket", optional = true } +libp2p-quic = { version = "0.7.0-alpha.2", path = "transports/quic", optional = true } +libp2p-tcp = { version = "0.39.0", path = "transports/tcp", optional = true } +libp2p-tls = { version = "0.1.0-alpha.2", path = "transports/tls", optional = true } +libp2p-webrtc = { version = "0.4.0-alpha.2", path = "transports/webrtc", optional = true } +libp2p-websocket = { version = "0.41.0", path = "transports/websocket", optional = true } [target.'cfg(not(target_os = "unknown"))'.dependencies] libp2p-gossipsub = { version = "0.44.0", path = "protocols/gossipsub", optional = true } diff --git a/core/Cargo.toml b/core/Cargo.toml index 6bac1bc6..e29addd1 100644 --- a/core/Cargo.toml +++ b/core/Cargo.toml @@ -3,7 +3,7 @@ name = "libp2p-core" edition = "2021" rust-version = "1.60.0" description = "Core traits and structs of libp2p" -version = "0.38.0" +version = "0.39.0" authors = ["Parity Technologies "] license = "MIT" repository = "https://github.com/libp2p/rust-libp2p" @@ -21,8 +21,8 @@ futures-timer = "3" instant = "0.1.11" libsecp256k1 = { version = "0.7.0", optional = true } log = "0.4" -multiaddr = { version = "0.16.0" } -multihash = { version = "0.16", default-features = false, features = ["std", "multihash-impl", "identity", "sha2"] } +multiaddr = { version = "0.17.0" } +multihash = { version = "0.17.0", default-features = false, features = ["std", "multihash-impl", "identity", "sha2"] } multistream-select = { version = "0.12.1", path = "../misc/multistream-select" } p256 = { version = "0.11.1", default-features = false, features = ["ecdsa", "std"], optional = true } parking_lot = "0.12.0" @@ -49,7 +49,7 @@ base64 = "0.13.0" criterion = "0.4" libp2p-mplex = { path = "../muxers/mplex" } libp2p-noise = { path = "../transports/noise" } -multihash = { version = "0.16", default-features = false, features = ["arb"] } +multihash = { version = "0.17.0", default-features = false, features = ["arb"] } quickcheck = { package = "quickcheck-ext", path = "../misc/quickcheck-ext" } rmp-serde = "1.0" serde_json = "1.0" @@ -67,7 +67,7 @@ serde = ["multihash/serde-codec", "dep:serde"] name = "peer_id" harness = false -# Passing arguments to the docsrs builder in order to properly document cfg's. +# Passing arguments to the docsrs builder in order to properly document cfg's. # More information: https://docs.rs/about/builds#cross-compiling [package.metadata.docs.rs] all-features = true diff --git a/misc/keygen/Cargo.toml b/misc/keygen/Cargo.toml index 30117398..2482b844 100644 --- a/misc/keygen/Cargo.toml +++ b/misc/keygen/Cargo.toml @@ -14,5 +14,5 @@ clap = { version = "4.0.13", features = ["derive"] } zeroize = "1" serde = { version = "1.0.136", features = ["derive"] } serde_json = "1.0.79" -libp2p-core = { version = "0.38.0", path = "../../core" } +libp2p-core = { version = "0.39.0", path = "../../core" } base64 = "0.13.0" diff --git a/misc/metrics/CHANGELOG.md b/misc/metrics/CHANGELOG.md index 70cfd948..f95163fe 100644 --- a/misc/metrics/CHANGELOG.md +++ b/misc/metrics/CHANGELOG.md @@ -1,5 +1,7 @@ # 0.12.0 [unreleased] +- Update to `libp2p-core` `v0.39.0`. + - Add `connections_establishment_duration` metric. See [PR 3134]. - Update to `libp2p-dcutr` `v0.9.0`. diff --git a/misc/metrics/Cargo.toml b/misc/metrics/Cargo.toml index f1dc7526..972d02fe 100644 --- a/misc/metrics/Cargo.toml +++ b/misc/metrics/Cargo.toml @@ -19,7 +19,7 @@ relay = ["libp2p-relay"] dcutr = ["libp2p-dcutr"] [dependencies] -libp2p-core = { version = "0.38.0", path = "../../core" } +libp2p-core = { version = "0.39.0", path = "../../core" } libp2p-dcutr = { version = "0.9.0", path = "../../protocols/dcutr", optional = true } libp2p-identify = { version = "0.42.0", path = "../../protocols/identify", optional = true } libp2p-kad = { version = "0.43.0", path = "../../protocols/kad", optional = true } diff --git a/muxers/mplex/CHANGELOG.md b/muxers/mplex/CHANGELOG.md index 561453b7..041760df 100644 --- a/muxers/mplex/CHANGELOG.md +++ b/muxers/mplex/CHANGELOG.md @@ -1,3 +1,7 @@ +# 0.39.0 [unreleased] + +- Update to `libp2p-core` `v0.39.0`. + # 0.38.0 - Update to `libp2p-core` `v0.38.0`. diff --git a/muxers/mplex/Cargo.toml b/muxers/mplex/Cargo.toml index 86adc614..0eb7b564 100644 --- a/muxers/mplex/Cargo.toml +++ b/muxers/mplex/Cargo.toml @@ -3,7 +3,7 @@ name = "libp2p-mplex" edition = "2021" rust-version = "1.60.0" description = "Mplex multiplexing protocol for libp2p" -version = "0.38.0" +version = "0.39.0" authors = ["Parity Technologies "] license = "MIT" repository = "https://github.com/libp2p/rust-libp2p" @@ -14,7 +14,7 @@ categories = ["network-programming", "asynchronous"] bytes = "1" futures = "0.3.1" asynchronous-codec = "0.6" -libp2p-core = { version = "0.38.0", path = "../../core" } +libp2p-core = { version = "0.39.0", path = "../../core" } log = "0.4" nohash-hasher = "0.2" parking_lot = "0.12" diff --git a/muxers/yamux/CHANGELOG.md b/muxers/yamux/CHANGELOG.md index 1b8e881c..82fd3850 100644 --- a/muxers/yamux/CHANGELOG.md +++ b/muxers/yamux/CHANGELOG.md @@ -1,3 +1,7 @@ +# 0.43.0 [unreleased] + +- Update to `libp2p-core` `v0.39.0`. + # 0.42.0 - Update to `libp2p-core` `v0.38.0`. diff --git a/muxers/yamux/Cargo.toml b/muxers/yamux/Cargo.toml index 94d3c387..26a8f6bc 100644 --- a/muxers/yamux/Cargo.toml +++ b/muxers/yamux/Cargo.toml @@ -3,7 +3,7 @@ name = "libp2p-yamux" edition = "2021" rust-version = "1.60.0" description = "Yamux multiplexing protocol for libp2p" -version = "0.42.0" +version = "0.43.0" authors = ["Parity Technologies "] license = "MIT" repository = "https://github.com/libp2p/rust-libp2p" @@ -12,7 +12,7 @@ categories = ["network-programming", "asynchronous"] [dependencies] futures = "0.3.1" -libp2p-core = { version = "0.38.0", path = "../../core" } +libp2p-core = { version = "0.39.0", path = "../../core" } parking_lot = "0.12" thiserror = "1.0" yamux = "0.10.0" diff --git a/protocols/autonat/CHANGELOG.md b/protocols/autonat/CHANGELOG.md index 3da1cedb..a39c6b2b 100644 --- a/protocols/autonat/CHANGELOG.md +++ b/protocols/autonat/CHANGELOG.md @@ -1,5 +1,7 @@ # 0.10.0 [unreleased] +- Update to `libp2p-core` `v0.39.0`. + - Require the node's local `PeerId` to be passed into the constructor of `libp2p_autonat::Behaviour`. See [PR 3153]. - Update to `libp2p-request-response` `v0.24.0`. diff --git a/protocols/autonat/Cargo.toml b/protocols/autonat/Cargo.toml index 6fbad657..48903f88 100644 --- a/protocols/autonat/Cargo.toml +++ b/protocols/autonat/Cargo.toml @@ -18,7 +18,7 @@ async-trait = "0.1" futures = "0.3" futures-timer = "3.0" instant = "0.1" -libp2p-core = { version = "0.38.0", path = "../../core" } +libp2p-core = { version = "0.39.0", path = "../../core" } libp2p-swarm = { version = "0.42.0", path = "../../swarm" } libp2p-request-response = { version = "0.24.0", path = "../request-response" } log = "0.4" diff --git a/protocols/dcutr/CHANGELOG.md b/protocols/dcutr/CHANGELOG.md index 39f92d27..7b73ac85 100644 --- a/protocols/dcutr/CHANGELOG.md +++ b/protocols/dcutr/CHANGELOG.md @@ -1,5 +1,7 @@ # 0.9.0 [unreleased] +- Update to `libp2p-core` `v0.39.0`. + - Update to `libp2p-swarm` `v0.42.0`. - Declare `InboundUpgradeError` and `OutboundUpgradeError` as type aliases instead of renames. diff --git a/protocols/dcutr/Cargo.toml b/protocols/dcutr/Cargo.toml index 92d932a9..1a7dcaf1 100644 --- a/protocols/dcutr/Cargo.toml +++ b/protocols/dcutr/Cargo.toml @@ -17,7 +17,7 @@ either = "1.6.0" futures = "0.3.1" futures-timer = "3.0" instant = "0.1.11" -libp2p-core = { version = "0.38.0", path = "../../core" } +libp2p-core = { version = "0.39.0", path = "../../core" } libp2p-swarm = { version = "0.42.0", path = "../../swarm" } log = "0.4" prost-codec = { version = "0.3", path = "../../misc/prost-codec" } diff --git a/protocols/floodsub/CHANGELOG.md b/protocols/floodsub/CHANGELOG.md index 7b7293e6..a15fc849 100644 --- a/protocols/floodsub/CHANGELOG.md +++ b/protocols/floodsub/CHANGELOG.md @@ -1,5 +1,7 @@ # 0.42.0 [unreleased] +- Update to `libp2p-core` `v0.39.0`. + - Update to `libp2p-swarm` `v0.42.0`. - Read and write protocols messages via `prost-codec`. See [PR 3224]. diff --git a/protocols/floodsub/Cargo.toml b/protocols/floodsub/Cargo.toml index 778f949b..8843edad 100644 --- a/protocols/floodsub/Cargo.toml +++ b/protocols/floodsub/Cargo.toml @@ -15,7 +15,7 @@ asynchronous-codec = "0.6" cuckoofilter = "0.5.0" fnv = "1.0" futures = "0.3.1" -libp2p-core = { version = "0.38.0", path = "../../core" } +libp2p-core = { version = "0.39.0", path = "../../core" } libp2p-swarm = { version = "0.42.0", path = "../../swarm" } log = "0.4" prost = "0.11" diff --git a/protocols/gossipsub/CHANGELOG.md b/protocols/gossipsub/CHANGELOG.md index 3aab1bd7..349defd9 100644 --- a/protocols/gossipsub/CHANGELOG.md +++ b/protocols/gossipsub/CHANGELOG.md @@ -1,5 +1,7 @@ # 0.44.0 [unreleased] +- Update to `libp2p-core` `v0.39.0`. + - Update to `libp2p-swarm` `v0.42.0`. # 0.43.0 diff --git a/protocols/gossipsub/Cargo.toml b/protocols/gossipsub/Cargo.toml index 62ba9df9..9a94e5f2 100644 --- a/protocols/gossipsub/Cargo.toml +++ b/protocols/gossipsub/Cargo.toml @@ -12,7 +12,7 @@ categories = ["network-programming", "asynchronous"] [dependencies] libp2p-swarm = { version = "0.42.0", path = "../../swarm" } -libp2p-core = { version = "0.38.0", path = "../../core" } +libp2p-core = { version = "0.39.0", path = "../../core" } bytes = "1.0" byteorder = "1.3.4" fnv = "1.0.7" diff --git a/protocols/identify/CHANGELOG.md b/protocols/identify/CHANGELOG.md index 61032f9b..5478793f 100644 --- a/protocols/identify/CHANGELOG.md +++ b/protocols/identify/CHANGELOG.md @@ -1,5 +1,7 @@ # 0.42.0 [unreleased] +- Update to `libp2p-core` `v0.39.0`. + - Move I/O from `Behaviour` to `Handler`. Handle `Behaviour`'s Identify and Push requests independently by incoming order, previously Push requests were prioritized. see [PR 3208]. diff --git a/protocols/identify/Cargo.toml b/protocols/identify/Cargo.toml index c28e7b20..812d80f7 100644 --- a/protocols/identify/Cargo.toml +++ b/protocols/identify/Cargo.toml @@ -14,7 +14,7 @@ categories = ["network-programming", "asynchronous"] asynchronous-codec = "0.6" futures = "0.3.1" futures-timer = "3.0.2" -libp2p-core = { version = "0.38.0", path = "../../core" } +libp2p-core = { version = "0.39.0", path = "../../core" } libp2p-swarm = { version = "0.42.0", path = "../../swarm" } log = "0.4.1" lru = "0.8.0" diff --git a/protocols/kad/CHANGELOG.md b/protocols/kad/CHANGELOG.md index f126a519..092368cb 100644 --- a/protocols/kad/CHANGELOG.md +++ b/protocols/kad/CHANGELOG.md @@ -1,5 +1,7 @@ # 0.43.0 [unreleased] +- Update to `libp2p-core` `v0.39.0`. + - Update to `libp2p-swarm` `v0.42.0`. # 0.42.0 diff --git a/protocols/kad/Cargo.toml b/protocols/kad/Cargo.toml index bf7a456d..83928873 100644 --- a/protocols/kad/Cargo.toml +++ b/protocols/kad/Cargo.toml @@ -18,7 +18,7 @@ fnv = "1.0" asynchronous-codec = "0.6" futures = "0.3.1" log = "0.4" -libp2p-core = { version = "0.38.0", path = "../../core" } +libp2p-core = { version = "0.39.0", path = "../../core" } libp2p-swarm = { version = "0.42.0", path = "../../swarm" } prost = "0.11" rand = "0.8" diff --git a/protocols/mdns/CHANGELOG.md b/protocols/mdns/CHANGELOG.md index 4ebe5674..6eb10041 100644 --- a/protocols/mdns/CHANGELOG.md +++ b/protocols/mdns/CHANGELOG.md @@ -1,5 +1,7 @@ # 0.43.0 [unreleased] +- Update to `libp2p-core` `v0.39.0`. + - Require the node's local `PeerId` to be passed into the constructor of `libp2p_mdns::Behaviour`. See [PR 3153]. - Update to `libp2p-swarm` `v0.42.0`. diff --git a/protocols/mdns/Cargo.toml b/protocols/mdns/Cargo.toml index 749348e5..d18d7813 100644 --- a/protocols/mdns/Cargo.toml +++ b/protocols/mdns/Cargo.toml @@ -15,7 +15,7 @@ async-io = { version = "1.3.1", optional = true } data-encoding = "2.3.2" futures = "0.3.13" if-watch = "3.0.0" -libp2p-core = { version = "0.38.0", path = "../../core" } +libp2p-core = { version = "0.39.0", path = "../../core" } libp2p-swarm = { version = "0.42.0", path = "../../swarm" } log = "0.4.14" rand = "0.8.3" diff --git a/protocols/ping/CHANGELOG.md b/protocols/ping/CHANGELOG.md index 4dbcb592..6b2ab7b4 100644 --- a/protocols/ping/CHANGELOG.md +++ b/protocols/ping/CHANGELOG.md @@ -1,5 +1,7 @@ # 0.42.0 [unreleased] +- Update to `libp2p-core` `v0.39.0`. + - Update to `libp2p-swarm` `v0.42.0`. # 0.41.0 diff --git a/protocols/ping/Cargo.toml b/protocols/ping/Cargo.toml index 04e708d1..b9b693b9 100644 --- a/protocols/ping/Cargo.toml +++ b/protocols/ping/Cargo.toml @@ -14,7 +14,7 @@ categories = ["network-programming", "asynchronous"] futures = "0.3.1" futures-timer = "3.0.2" instant = "0.1.11" -libp2p-core = { version = "0.38.0", path = "../../core" } +libp2p-core = { version = "0.39.0", path = "../../core" } libp2p-swarm = { version = "0.42.0", path = "../../swarm" } log = "0.4.1" rand = "0.8" diff --git a/protocols/relay/CHANGELOG.md b/protocols/relay/CHANGELOG.md index 1e597b04..803e2fc3 100644 --- a/protocols/relay/CHANGELOG.md +++ b/protocols/relay/CHANGELOG.md @@ -1,5 +1,7 @@ # 0.15.0 [unreleased] +- Update to `libp2p-core` `v0.39.0`. + - Update to `libp2p-swarm` `v0.42.0`. # 0.14.0 diff --git a/protocols/relay/Cargo.toml b/protocols/relay/Cargo.toml index 69e5d3ba..1ff51580 100644 --- a/protocols/relay/Cargo.toml +++ b/protocols/relay/Cargo.toml @@ -17,7 +17,7 @@ either = "1.6.0" futures = "0.3.1" futures-timer = "3" instant = "0.1.11" -libp2p-core = { version = "0.38.0", path = "../../core" } +libp2p-core = { version = "0.39.0", path = "../../core" } libp2p-swarm = { version = "0.42.0", path = "../../swarm" } log = "0.4" pin-project = "1" diff --git a/protocols/rendezvous/CHANGELOG.md b/protocols/rendezvous/CHANGELOG.md index 261377b2..d16191b9 100644 --- a/protocols/rendezvous/CHANGELOG.md +++ b/protocols/rendezvous/CHANGELOG.md @@ -1,5 +1,7 @@ # 0.12.0 [unreleased] +- Update to `libp2p-core` `v0.39.0`. + - Update to `libp2p-swarm` `v0.42.0`. # 0.11.0 diff --git a/protocols/rendezvous/Cargo.toml b/protocols/rendezvous/Cargo.toml index 9a3522ce..8238eaa4 100644 --- a/protocols/rendezvous/Cargo.toml +++ b/protocols/rendezvous/Cargo.toml @@ -16,7 +16,7 @@ bimap = "0.6.1" futures = { version = "0.3", default-features = false, features = ["std"] } futures-timer = "3.0.2" instant = "0.1.11" -libp2p-core = { version = "0.38.0", path = "../../core" } +libp2p-core = { version = "0.39.0", path = "../../core" } libp2p-swarm = { version = "0.42.0", path = "../../swarm" } log = "0.4" prost = "0.11" diff --git a/protocols/request-response/CHANGELOG.md b/protocols/request-response/CHANGELOG.md index 59eb17ac..613e7f6e 100644 --- a/protocols/request-response/CHANGELOG.md +++ b/protocols/request-response/CHANGELOG.md @@ -1,5 +1,7 @@ # 0.24.0 [unreleased] +- Update to `libp2p-core` `v0.39.0`. + - Rename types as per [discussion 2174]. `RequestResponse` has been renamed to `Behaviour`. The `RequestResponse` prefix has been removed from various types like `RequestResponseEvent`. diff --git a/protocols/request-response/Cargo.toml b/protocols/request-response/Cargo.toml index 76c15974..7c8d9f15 100644 --- a/protocols/request-response/Cargo.toml +++ b/protocols/request-response/Cargo.toml @@ -15,7 +15,7 @@ async-trait = "0.1" bytes = "1" futures = "0.3.1" instant = "0.1.11" -libp2p-core = { version = "0.38.0", path = "../../core" } +libp2p-core = { version = "0.39.0", path = "../../core" } libp2p-swarm = { version = "0.42.0", path = "../../swarm" } log = "0.4.11" rand = "0.8" diff --git a/swarm/CHANGELOG.md b/swarm/CHANGELOG.md index e6f0a92c..da77ae72 100644 --- a/swarm/CHANGELOG.md +++ b/swarm/CHANGELOG.md @@ -1,5 +1,7 @@ # 0.42.0 [unreleased] +- Update to `libp2p-core` `v0.39.0`. + - Removed deprecated Swarm constructors. For transition notes see [0.41.0](#0.41.0). See [PR 3170]. - Deprecate functions on `PollParameters` in preparation for `PollParameters` to be removed entirely eventually. See [PR 3153]. diff --git a/swarm/Cargo.toml b/swarm/Cargo.toml index 91a5c2c4..aaca2c37 100644 --- a/swarm/Cargo.toml +++ b/swarm/Cargo.toml @@ -16,7 +16,7 @@ fnv = "1.0" futures = "0.3.1" futures-timer = "3.0.2" instant = "0.1.11" -libp2p-core = { version = "0.38.0", path = "../core" } +libp2p-core = { version = "0.39.0", path = "../core" } libp2p-swarm-derive = { version = "0.31.0", path = "../swarm-derive", optional = true } log = "0.4" pin-project = "1.0.0" diff --git a/transports/deflate/CHANGELOG.md b/transports/deflate/CHANGELOG.md index ff405b88..af6c03c6 100644 --- a/transports/deflate/CHANGELOG.md +++ b/transports/deflate/CHANGELOG.md @@ -1,3 +1,7 @@ +# 0.39.0 [unreleased] + +- Update to `libp2p-core` `v0.39.0`. + # 0.38.0 - Update to `libp2p-core` `v0.38.0`. diff --git a/transports/deflate/Cargo.toml b/transports/deflate/Cargo.toml index dcd2bfcb..96ac149a 100644 --- a/transports/deflate/Cargo.toml +++ b/transports/deflate/Cargo.toml @@ -3,7 +3,7 @@ name = "libp2p-deflate" edition = "2021" rust-version = "1.60.0" description = "Deflate encryption protocol for libp2p" -version = "0.38.0" +version = "0.39.0" authors = ["Parity Technologies "] license = "MIT" repository = "https://github.com/libp2p/rust-libp2p" @@ -12,7 +12,7 @@ categories = ["network-programming", "asynchronous"] [dependencies] futures = "0.3.1" -libp2p-core = { version = "0.38.0", path = "../../core" } +libp2p-core = { version = "0.39.0", path = "../../core" } flate2 = "1.0" [dev-dependencies] diff --git a/transports/dns/CHANGELOG.md b/transports/dns/CHANGELOG.md index 8f1a2828..74c22d9f 100644 --- a/transports/dns/CHANGELOG.md +++ b/transports/dns/CHANGELOG.md @@ -1,3 +1,7 @@ +# 0.39.0 [unreleased] + +- Update to `libp2p-core` `v0.39.0`. + # 0.38.0 - Update to `libp2p-core` `v0.38.0`. diff --git a/transports/dns/Cargo.toml b/transports/dns/Cargo.toml index 1f924d15..7452b20d 100644 --- a/transports/dns/Cargo.toml +++ b/transports/dns/Cargo.toml @@ -3,7 +3,7 @@ name = "libp2p-dns" edition = "2021" rust-version = "1.60.0" description = "DNS transport implementation for libp2p" -version = "0.38.0" +version = "0.39.0" authors = ["Parity Technologies "] license = "MIT" repository = "https://github.com/libp2p/rust-libp2p" @@ -11,7 +11,7 @@ keywords = ["peer-to-peer", "libp2p", "networking"] categories = ["network-programming", "asynchronous"] [dependencies] -libp2p-core = { version = "0.38.0", path = "../../core" } +libp2p-core = { version = "0.39.0", path = "../../core" } log = "0.4.1" futures = "0.3.1" async-std-resolver = { version = "0.22", optional = true } diff --git a/transports/noise/CHANGELOG.md b/transports/noise/CHANGELOG.md index 4deec2a4..ea4ae6ca 100644 --- a/transports/noise/CHANGELOG.md +++ b/transports/noise/CHANGELOG.md @@ -1,8 +1,6 @@ -# 0.41.1 [unreleased] +# 0.42.0 [unreleased] -- Deprecate non-compliant noise implementation. We intend to remove it in a future release without replacement. See [PR 3227]. - -[PR 3227]: https://github.com/libp2p/rust-libp2p/pull/3227 +- Update to `libp2p-core` `v0.39.0`. # 0.41.0 diff --git a/transports/noise/Cargo.toml b/transports/noise/Cargo.toml index 942618d2..69ae3c07 100644 --- a/transports/noise/Cargo.toml +++ b/transports/noise/Cargo.toml @@ -3,7 +3,7 @@ name = "libp2p-noise" edition = "2021" rust-version = "1.60.0" description = "Cryptographic handshake protocol using the noise framework." -version = "0.41.1" +version = "0.42.0" authors = ["Parity Technologies "] license = "MIT" repository = "https://github.com/libp2p/rust-libp2p" @@ -12,7 +12,7 @@ repository = "https://github.com/libp2p/rust-libp2p" bytes = "1" curve25519-dalek = "3.0.0" futures = "0.3.1" -libp2p-core = { version = "0.38.0", path = "../../core" } +libp2p-core = { version = "0.39.0", path = "../../core" } log = "0.4" once_cell = "1.16.0" prost = "0.11" diff --git a/transports/plaintext/CHANGELOG.md b/transports/plaintext/CHANGELOG.md index 2b77e7ea..0254272f 100644 --- a/transports/plaintext/CHANGELOG.md +++ b/transports/plaintext/CHANGELOG.md @@ -1,3 +1,7 @@ +# 0.39.0 [unreleased] + +- Update to `libp2p-core` `v0.39.0`. + # 0.38.0 - Add more specific error reporting and remove `prost::Error` from public API. See [PR 3058]. diff --git a/transports/plaintext/Cargo.toml b/transports/plaintext/Cargo.toml index 78c59fca..7e1318e0 100644 --- a/transports/plaintext/Cargo.toml +++ b/transports/plaintext/Cargo.toml @@ -3,7 +3,7 @@ name = "libp2p-plaintext" edition = "2021" rust-version = "1.60.0" description = "Plaintext encryption dummy protocol for libp2p" -version = "0.38.0" +version = "0.39.0" authors = ["Parity Technologies "] license = "MIT" repository = "https://github.com/libp2p/rust-libp2p" @@ -14,7 +14,7 @@ categories = ["network-programming", "asynchronous"] asynchronous-codec = "0.6" bytes = "1" futures = "0.3.1" -libp2p-core = { version = "0.38.0", path = "../../core" } +libp2p-core = { version = "0.39.0", path = "../../core" } log = "0.4.8" prost = "0.11" unsigned-varint = { version = "0.7", features = ["asynchronous_codec"] } diff --git a/transports/quic/CHANGELOG.md b/transports/quic/CHANGELOG.md index 54c0c689..b6a47a93 100644 --- a/transports/quic/CHANGELOG.md +++ b/transports/quic/CHANGELOG.md @@ -1,5 +1,9 @@ # 0.7.0-alpha.2 [unreleased] +- Update to `libp2p-tls` `v0.2.0`. + +- Update to `libp2p-core` `v0.39.0`. + - Add opt-in support for the `/quic` codepoint, interpreted as QUIC version draft-29. See [PR 3151]. diff --git a/transports/quic/Cargo.toml b/transports/quic/Cargo.toml index 6700fd11..056e7c9c 100644 --- a/transports/quic/Cargo.toml +++ b/transports/quic/Cargo.toml @@ -14,8 +14,8 @@ bytes = "1.2.1" futures = "0.3.15" futures-timer = "3.0.2" if-watch = "3.0.0" -libp2p-core = { version = "0.38.0", path = "../../core" } -libp2p-tls = { version = "0.1.0-alpha", path = "../tls" } +libp2p-core = { version = "0.39.0", path = "../../core" } +libp2p-tls = { version = "0.1.0-alpha.1", path = "../tls" } log = "0.4" parking_lot = "0.12.0" quinn-proto = { version = "0.9.0", default-features = false, features = ["tls-rustls"] } @@ -28,7 +28,7 @@ tokio = { version = "1.21.1", default-features = false, features = ["net", "rt"] tokio = ["dep:tokio", "if-watch/tokio"] async-std = ["dep:async-std", "if-watch/smol"] -# Passing arguments to the docsrs builder in order to properly document cfg's. +# Passing arguments to the docsrs builder in order to properly document cfg's. # More information: https://docs.rs/about/builds#cross-compiling [package.metadata.docs.rs] all-features = true diff --git a/transports/tcp/CHANGELOG.md b/transports/tcp/CHANGELOG.md index 5bc47853..750cebdb 100644 --- a/transports/tcp/CHANGELOG.md +++ b/transports/tcp/CHANGELOG.md @@ -1,3 +1,7 @@ +# 0.39.0 [unreleased] + +- Update to `libp2p-core` `v0.39.0`. + # 0.38.0 - Update to `if-watch` `v3.0.0` and pass through `tokio` and `async-io` features. See [PR 3101]. diff --git a/transports/tcp/Cargo.toml b/transports/tcp/Cargo.toml index 7357464a..e2f4499a 100644 --- a/transports/tcp/Cargo.toml +++ b/transports/tcp/Cargo.toml @@ -3,7 +3,7 @@ name = "libp2p-tcp" edition = "2021" rust-version = "1.60.0" description = "TCP/IP transport protocol for libp2p" -version = "0.38.0" +version = "0.39.0" authors = ["Parity Technologies "] license = "MIT" repository = "https://github.com/libp2p/rust-libp2p" @@ -16,7 +16,7 @@ futures = "0.3.8" futures-timer = "3.0" if-watch = "3.0.0" libc = "0.2.80" -libp2p-core = { version = "0.38.0", path = "../../core" } +libp2p-core = { version = "0.39.0", path = "../../core" } log = "0.4.11" socket2 = { version = "0.4.0", features = ["all"] } tokio = { version = "1.19.0", default-features = false, features = ["net"], optional = true } diff --git a/transports/tls/CHANGELOG.md b/transports/tls/CHANGELOG.md index 69afd520..ea2d1989 100644 --- a/transports/tls/CHANGELOG.md +++ b/transports/tls/CHANGELOG.md @@ -1,3 +1,7 @@ -# 0.1.0 +# 0.1.0-alpha.2 [unreleased] + +- Update to `libp2p-core` `v0.39.0`. + +# 0.1.0-alpha Initial release. diff --git a/transports/tls/Cargo.toml b/transports/tls/Cargo.toml index f0b9e637..9fe34000 100644 --- a/transports/tls/Cargo.toml +++ b/transports/tls/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "libp2p-tls" -version = "0.1.0-alpha" +version = "0.1.0-alpha.2" edition = "2021" rust-version = "1.60.0" description = "TLS configuration based on libp2p TLS specs." @@ -11,7 +11,7 @@ exclude = ["src/test_assets"] [dependencies] futures = { version = "0.3.24", default-features = false } futures-rustls = "0.22.2" -libp2p-core = { version = "0.38.0", path = "../../core" } +libp2p-core = { version = "0.39.0", path = "../../core" } rcgen = "0.10.0" ring = "0.16.20" thiserror = "1.0.36" diff --git a/transports/uds/Cargo.toml b/transports/uds/Cargo.toml index 9dd1321a..8c250b63 100644 --- a/transports/uds/Cargo.toml +++ b/transports/uds/Cargo.toml @@ -12,7 +12,7 @@ categories = ["network-programming", "asynchronous"] [target.'cfg(all(unix, not(target_os = "emscripten")))'.dependencies] async-std = { version = "1.6.2", optional = true } -libp2p-core = { version = "0.38.0", path = "../../core" } +libp2p-core = { version = "0.39.0", path = "../../core" } log = "0.4.1" futures = "0.3.1" tokio = { version = "1.15", default-features = false, features = ["net"], optional = true } @@ -20,7 +20,7 @@ tokio = { version = "1.15", default-features = false, features = ["net"], option [target.'cfg(all(unix, not(target_os = "emscripten")))'.dev-dependencies] tempfile = "3.0" -# Passing arguments to the docsrs builder in order to properly document cfg's. +# Passing arguments to the docsrs builder in order to properly document cfg's. # More information: https://docs.rs/about/builds#cross-compiling [package.metadata.docs.rs] all-features = true diff --git a/transports/wasm-ext/CHANGELOG.md b/transports/wasm-ext/CHANGELOG.md index 958cb511..55883331 100644 --- a/transports/wasm-ext/CHANGELOG.md +++ b/transports/wasm-ext/CHANGELOG.md @@ -1,3 +1,7 @@ +# 0.39.0 [unreleased] + +- Update to `libp2p-core` `v0.39.0`. + # 0.38.0 - Update to `libp2p-core` `v0.38.0`. diff --git a/transports/wasm-ext/Cargo.toml b/transports/wasm-ext/Cargo.toml index 6c004aab..2ec66aaa 100644 --- a/transports/wasm-ext/Cargo.toml +++ b/transports/wasm-ext/Cargo.toml @@ -3,7 +3,7 @@ name = "libp2p-wasm-ext" edition = "2021" rust-version = "1.60.0" description = "Allows passing in an external transport in a WASM environment" -version = "0.38.0" +version = "0.39.0" authors = ["Pierre Krieger "] license = "MIT" repository = "https://github.com/libp2p/rust-libp2p" @@ -13,7 +13,7 @@ categories = ["network-programming", "asynchronous"] [dependencies] futures = "0.3.1" js-sys = "0.3.50" -libp2p-core = { version = "0.38.0", path = "../../core" } +libp2p-core = { version = "0.39.0", path = "../../core" } parity-send-wrapper = "0.1.0" wasm-bindgen = "0.2.42" wasm-bindgen-futures = "0.4.4" diff --git a/transports/webrtc/CHANGELOG.md b/transports/webrtc/CHANGELOG.md index 85f9147a..b5c48297 100644 --- a/transports/webrtc/CHANGELOG.md +++ b/transports/webrtc/CHANGELOG.md @@ -1,3 +1,9 @@ +# 0.4.0-alpha.2 [unreleased] + +- Update to `libp2p-noise` `v0.42.0`. + +- Update to `libp2p-core` `v0.39.0`. + # 0.4.0-alpha - Initial alpha release. \ No newline at end of file diff --git a/transports/webrtc/Cargo.toml b/transports/webrtc/Cargo.toml index 04353757..990d0910 100644 --- a/transports/webrtc/Cargo.toml +++ b/transports/webrtc/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "libp2p-webrtc" -version = "0.4.0-alpha" +version = "0.4.0-alpha.2" authors = ["Parity Technologies "] description = "WebRTC transport for libp2p" repository = "https://github.com/libp2p/rust-libp2p" @@ -18,10 +18,10 @@ futures = "0.3" futures-timer = "3" hex = "0.4" if-watch = "3.0" -libp2p-core = { version = "0.38.0", path = "../../core" } -libp2p-noise = { version = "0.41.0", path = "../../transports/noise" } +libp2p-core = { version = "0.39.0", path = "../../core" } +libp2p-noise = { version = "0.42.0", path = "../../transports/noise" } log = "0.4" -multihash = { version = "0.16", default-features = false, features = ["sha2"] } +multihash = { version = "0.17.0", default-features = false, features = ["sha2"] } prost = "0.11" prost-codec = { version = "0.3.0", path = "../../misc/prost-codec" } rand = "0.8" diff --git a/transports/websocket/CHANGELOG.md b/transports/websocket/CHANGELOG.md index 092ea653..a87b4804 100644 --- a/transports/websocket/CHANGELOG.md +++ b/transports/websocket/CHANGELOG.md @@ -1,3 +1,7 @@ +# 0.41.0 [unreleased] + +- Update to `libp2p-core` `v0.39.0`. + # 0.40.0 - Update to `libp2p-core` `v0.38.0`. diff --git a/transports/websocket/Cargo.toml b/transports/websocket/Cargo.toml index a9d43395..13d32dee 100644 --- a/transports/websocket/Cargo.toml +++ b/transports/websocket/Cargo.toml @@ -3,7 +3,7 @@ name = "libp2p-websocket" edition = "2021" rust-version = "1.60.0" description = "WebSocket transport for libp2p" -version = "0.40.0" +version = "0.41.0" authors = ["Parity Technologies "] license = "MIT" repository = "https://github.com/libp2p/rust-libp2p" @@ -14,7 +14,7 @@ categories = ["network-programming", "asynchronous"] futures-rustls = "0.22" either = "1.5.3" futures = "0.3.1" -libp2p-core = { version = "0.38.0", path = "../../core" } +libp2p-core = { version = "0.39.0", path = "../../core" } log = "0.4.8" parking_lot = "0.12.0" quicksink = "0.1"