diff --git a/core/CHANGELOG.md b/core/CHANGELOG.md index 003120954e7..898031c006e 100644 --- a/core/CHANGELOG.md +++ b/core/CHANGELOG.md @@ -326,7 +326,7 @@ See [PR 4568]. - Remove `TInEvent` and `TOutEvent` trait parameters on most public types. `TInEvent` and `TOutEvent` are implied through `THandler` and thus - superflucious. Both are removed in favor of a derivation through `THandler` + superfluous. Both are removed in favor of a derivation through `THandler` (see [PR 2183]). - Require `ConnectionHandler::{InEvent,OutEvent,Error}` to implement `Debug` @@ -445,7 +445,7 @@ See [PR 4568]. - New configurable connection limits for established connections and dedicated connection counters. Removed the connection limit dedicated to outgoing pending connection _per peer_. Connection limits are now - represented by `u32` intead of `usize` types. + represented by `u32` instead of `usize` types. [PR 1848](https://github.com/libp2p/rust-libp2p/pull/1848/). - Update `multihash`. diff --git a/docs/maintainer-handbook.md b/docs/maintainer-handbook.md index 0b090901216..7c96629c9b0 100644 --- a/docs/maintainer-handbook.md +++ b/docs/maintainer-handbook.md @@ -13,7 +13,7 @@ Take care to not merge the configuration change too early because it will block ## Mergify We utilize mergify as a merge-queue and overall automation bot on the repository. -The configuration file is [.github/mergify.yml](../.github/mergify.yml). +The configuration file is [mergify](../.github/mergify.yml). The main feature is the `send-it` label. Once a PR fulfills all merge requirements (approvals, passing CI, etc), applying the `send-it` labels activates mergify's merge-queue. @@ -63,6 +63,6 @@ For the most part, the labels we use on issues are pretty self-explanatory. - `decision-pending`: Documents that the issue is blocked. Maintainers are encouraged to provide their input on issues marked with this label. -- `need/author-input`: Integrates with our [.github/workflows/stale.yml](../.github/workflows/stale.yml) workflow. +- `need/author-input`: Integrates with our [workflows](../.github/workflows/stale.yml). Any issue tagged with this label will be auto-closed due to inactivity after a certain time. diff --git a/interop-tests/README.md b/interop-tests/README.md index c2805ddf707..04ef96286c3 100644 --- a/interop-tests/README.md +++ b/interop-tests/README.md @@ -39,7 +39,7 @@ To run the webrtc-direct test, you'll need the `chromedriver` in your `$PATH`, c # Running all interop tests locally with Compose To run this test against all released libp2p versions you'll need to have the -(libp2p/test-plans)[https://github.com/libp2p/test-plans] checked out. Then do +[libp2p/test-plans](https://github.com/libp2p/test-plans) checked out. Then do the following (from the root directory of this repository): 1. Build the image: `docker build -t rust-libp2p-head . -f interop-tests/Dockerfile`. diff --git a/protocols/gossipsub/CHANGELOG.md b/protocols/gossipsub/CHANGELOG.md index 20be0410036..6cb7bd62031 100644 --- a/protocols/gossipsub/CHANGELOG.md +++ b/protocols/gossipsub/CHANGELOG.md @@ -39,7 +39,7 @@ - Fix `cargo clippy` warnings in `rustc 1.84.0-beta.1`. See [PR 5700](https://github.com/libp2p/rust-libp2p/pull/5700). -- Fixe an issue where an `InsufficientPeers` error could occur under certain conditions, despite having peers subscribed to a topic. +- Fix an issue where an `InsufficientPeers` error could occur under certain conditions, despite having peers subscribed to a topic. See [PR 5793](https://github.com/libp2p/rust-libp2p/pull/5793). @@ -75,7 +75,7 @@ - Deprecate `gossipsub::Config::idle_timeout` in favor of `SwarmBuilder::idle_connection_timeout`. See [PR 4648]. -