Release v0.16.0#693
Merged
Merged
Conversation
MarcoPolo
force-pushed
the
marco/release-v0160
branch
2 times, most recently
from
April 20, 2026 17:19
d069864 to
3d617d4
Compare
Contributor
Author
|
Release checker failing because it's expecting a new Go version. I don't want to increase the Go version for this release (it opens a can of worms around crypto tls changes and quic-go), so I'm going to ignore that check for now. Another PR will soon update the Go version and go-libp2p dependency. |
This release introduces support for the partial messages extension. The partial messages extension gives the application precise control on exchanging message metadata and exchanging parts of messages. Unlike normal Gossipsub messages, Partial Messages are not opaque and peers can exchange message metadata separately from message data. An example use case is reconcilling when peers have some or all of a message. This works in a backwards compatible way. Notable changes: - New FanoutOnly topic option (#676). - WithMessageFilter to filter messages early in the notification pipeline (#678). Fixes & improvements: - Structured RPC logging - Fix leaked state with OnNewIncomingStream/OnClosedIncomingStream (with failing test first) - Renamed {Add/Remove}Peer → On{New/Closed}OutboundStream - partialmessages: init fanout if empty (#690) - Log errors when handling RPC in extensions (#668) - Ensure Hello Packet is first RPC sent; set write deadline for outgoing messages - Added Rpc.From() - Threadsafe dynamic direct peer management for GossipSub (#673).
MarcoPolo
force-pushed
the
marco/release-v0160
branch
from
April 20, 2026 22:31
3d617d4 to
ec9288e
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This release introduces support for the partial messages extension. The partial messages extension gives the application precise control on exchanging message metadata and exchanging parts of messages. Unlike normal Gossipsub messages, Partial Messages are not opaque and peers can exchange message metadata separately from message data. An example use case is reconcilling when peers have some or all of a message. This works in a backwards compatible way.
Notable changes:
Fixes & improvements: