Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions libp2p/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,13 @@
- Expose swarm builder phase errors.
See [PR 5726](https://github.com/libp2p/rust-libp2p/pull/5726).

- Deprecate `ConnectionHandler::{InboundOpenInfo, OutboundOpenInfo}` associated type.
Previously, users can tag pending substreams with custom data and retrieve the data
after the substream has been negotiated.
But substreams themselves are completely interchangeable, users should instead track
additional data inside `ConnectionHandler` after negotiation.
See [PR 5242](https://github.com/libp2p/rust-libp2p/pull/5242).

## 0.54.1

- Update individual crates.
Expand Down
7 changes: 7 additions & 0 deletions swarm/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,13 @@
- Update default for idle-connection-timeout to 10s.
See [PR 4967](https://github.com/libp2p/rust-libp2p/pull/4967).

- Deprecate `ConnectionHandler::{InboundOpenInfo, OutboundOpenInfo}` associated type.
Previously, users can tag pending substreams with custom data and retrieve the data
after the substream has been negotiated.
But substreams themselves are completely interchangeable, users should instead track
additional data inside `ConnectionHandler` after negotiation.
See [PR 5242](https://github.com/libp2p/rust-libp2p/pull/5242).

## 0.45.1

- Update `libp2p-swarm-derive` to version `0.35.0`, see [PR 5545]
Expand Down
Loading