From 2d9ae3800f39fcbbc55e5305b4e2a33ed76cbe5a Mon Sep 17 00:00:00 2001 From: Max Inden Date: Mon, 1 May 2023 04:56:32 +0200 Subject: [PATCH] chore: prepare patch releases on top of v0.51.3 Note that this does not release v0.51.4, i.e. there is no patch release of the meta crate `libp2p`. Pull-Request: #3854. --- core/CHANGELOG.md | 2 +- identity/CHANGELOG.md | 2 +- misc/allow-block-list/CHANGELOG.md | 2 +- muxers/yamux/CHANGELOG.md | 2 +- protocols/gossipsub/CHANGELOG.md | 2 +- protocols/identify/CHANGELOG.md | 2 +- protocols/kad/CHANGELOG.md | 2 +- protocols/request-response/CHANGELOG.md | 2 +- swarm/CHANGELOG.md | 2 +- transports/noise/CHANGELOG.md | 2 +- 10 files changed, 10 insertions(+), 10 deletions(-) diff --git a/core/CHANGELOG.md b/core/CHANGELOG.md index 9cd4ca30..f2507ded 100644 --- a/core/CHANGELOG.md +++ b/core/CHANGELOG.md @@ -1,4 +1,4 @@ -## 0.39.2 - unreleased +## 0.39.2 - Deprecate `upgrade::from_fn` without replacement as it is not used within `rust-libp2p`. If you depend on it, we suggest you vendor it. diff --git a/identity/CHANGELOG.md b/identity/CHANGELOG.md index 50876f4c..0d2851ac 100644 --- a/identity/CHANGELOG.md +++ b/identity/CHANGELOG.md @@ -1,4 +1,4 @@ -## 0.1.2 - unreleased +## 0.1.2 - Add `impl From for PublicKey` so that `PublicKey::from(ed25519::PublicKey)` works. See [PR 3805]. diff --git a/misc/allow-block-list/CHANGELOG.md b/misc/allow-block-list/CHANGELOG.md index 52633fb6..68566e5b 100644 --- a/misc/allow-block-list/CHANGELOG.md +++ b/misc/allow-block-list/CHANGELOG.md @@ -1,4 +1,4 @@ -## 0.1.1 - unreleased +## 0.1.1 - Correctly unblock and disallow peer in `unblock_peer` and `disallow_peer` functions. See [PR 3789]. diff --git a/muxers/yamux/CHANGELOG.md b/muxers/yamux/CHANGELOG.md index 6cd334b4..eb235887 100644 --- a/muxers/yamux/CHANGELOG.md +++ b/muxers/yamux/CHANGELOG.md @@ -1,4 +1,4 @@ -## 0.43.1 - unreleased +## 0.43.1 - Drop `Yamux` prefix from all types. Users are encouraged to import the `yamux` module and refer to types via `yamux::Muxer`, `yamux::Config` etc. diff --git a/protocols/gossipsub/CHANGELOG.md b/protocols/gossipsub/CHANGELOG.md index 8e292b87..c1e688c1 100644 --- a/protocols/gossipsub/CHANGELOG.md +++ b/protocols/gossipsub/CHANGELOG.md @@ -1,4 +1,4 @@ -## 0.44.4 - unreleased +## 0.44.4 - Deprecate `metrics`, `protocol`, `subscription_filter`, `time_cache` modules to make them private. See [PR 3777]. - Honor the `gossipsub::Config::support_floodsub` in all cases. diff --git a/protocols/identify/CHANGELOG.md b/protocols/identify/CHANGELOG.md index 1869db55..3915f92f 100644 --- a/protocols/identify/CHANGELOG.md +++ b/protocols/identify/CHANGELOG.md @@ -1,4 +1,4 @@ -## 0.42.2 - unreleased +## 0.42.2 - Do not implicitly dial a peer upon `identify::Behaviour::push`. Previously, we would dial each peer in the provided list. diff --git a/protocols/kad/CHANGELOG.md b/protocols/kad/CHANGELOG.md index cb33d9d6..123acbf5 100644 --- a/protocols/kad/CHANGELOG.md +++ b/protocols/kad/CHANGELOG.md @@ -1,4 +1,4 @@ -## 0.43.3 - unreleased +## 0.43.3 - Preserve existing `KeepAlive::Until` timeout instead of continuously setting new `KeepAlive::Until(Instant::now() + self.config.idle_timeout)`. See [PR 3801]. diff --git a/protocols/request-response/CHANGELOG.md b/protocols/request-response/CHANGELOG.md index ac237dbd..ecb524d7 100644 --- a/protocols/request-response/CHANGELOG.md +++ b/protocols/request-response/CHANGELOG.md @@ -1,4 +1,4 @@ -## 0.24.1 - unreleased +## 0.24.1 - Deprecate `handler`, `codec` modules to make them private. See [PR 3847]. diff --git a/swarm/CHANGELOG.md b/swarm/CHANGELOG.md index 03d128d7..7198f898 100644 --- a/swarm/CHANGELOG.md +++ b/swarm/CHANGELOG.md @@ -1,4 +1,4 @@ -## 0.42.2 - unreleased +## 0.42.2 - Add `ConnectionEvent::{is_outbound,is_inbound}`. See [PR 3625]. diff --git a/transports/noise/CHANGELOG.md b/transports/noise/CHANGELOG.md index f9c51382..a2809467 100644 --- a/transports/noise/CHANGELOG.md +++ b/transports/noise/CHANGELOG.md @@ -1,4 +1,4 @@ -## 0.42.2 - unreleased +## 0.42.2 - Deprecate all noise handshakes apart from XX. This deprecates `NoiseConfig` and `NoiseAuthenticated` in favor of a new `libp2p_noise::Config` struct.