fix(deps): update module github.com/libp2p/go-libp2p to v0.41.1 #3529
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 PR contains the following updates:
v0.30.0
->v0.41.1
Release Notes
libp2p/go-libp2p (github.com/libp2p/go-libp2p)
v0.41.1
Compare Source
What's Changed
7059eb5
conngater: fix incorrect err return value (#3219)74c6860
fix(libp2phttp): bound NewStream timeout (#3225)ccc4849
webrtc: fix memory leak with udpmux.muxedConnection context (#3243)99a511f
connmgr: fix transport association bug (#3221)eb3ff9f
autonatv2: fix server dial data request policy (#3247)8ce45df
Release v0.41.1Full Changelog: libp2p/go-libp2p@v0.41.0...v0.41.1
v0.41.0
Compare Source
⚠︎ Breaking Changes
🔦 Highlights
Overall this is a fairly minor release focused on supporting the go-multiaddr v0.15.0.
What's Changed
Full Changelog: libp2p/go-libp2p@v0.40.0...v0.41.0
v0.40.0
Compare Source
⚠ Breaking Change!
Introducing error codes mandated changing the error types returned by stream resets. All checks that depended on checking the error string or comparing equality with
network.ErrReset
, now need to useerrors.Is(err, network.ErrReset)
. More details below in the error codes section.🔦 Highlights
Error Codes
This releases introduces error codes for Stream Reset and Connection Close. This allows sending for more information to the peer about the error condition causing the abort. go-libp2p has already defined some error codes which are useful for many different use cases. You can find them in:
https://pkg.go.dev/github.com/libp2p/[email protected]/core/network#StreamErrorCode
and: https://pkg.go.dev/github.com/libp2p/[email protected]/core/network#ConnErrorCode
On streams, you can signal an error on reset by using:
On connections, you can signal an error on close by using:
Not all transports support error codes. Most notably, WebTransport has no support for sending error codes at the moment. See the spec: https://github.com/libp2p/specs/pull/623 for more details.
If you want to define custom error codes for your application protocol, you can reserve a block for your application by opening a PR in the specs repo. The above mentioned spec has details on reserving error codes for applications. Until the spec is merged, you must open a PR targeting the spec's branch.
Breaking Change!
This introduces a breaking change for users who checked stream reset errors by testing for equality with
network.ErrReset
aserr == network.ErrReset
. These tests now need to use theerrors.Is(err, network.ErrReset)
test. Stream Resets now return either*network.StreamError
if the stream was reset by remote, or*network.ConnError
if the connection was closed by remote.What's Changed
New Contributors
Full Changelog: libp2p/go-libp2p@v0.39.0...v0.40.0
v0.39.1
Compare Source
What's Changed
extAddr
by @wlynxg in https://github.com/libp2p/go-libp2p/pull/3140New Contributors
Full Changelog: libp2p/go-libp2p@v0.38.1...v0.39.1
v0.39.0
Compare Source
🔦 Highlights
This is a small release. The main thing is updating quic-go to v0.49.0 and enabling specific environments with the new
WithDialerForAddr
option.Changelog
quic.Transport
s @marten-seemann in https://github.com/libp2p/go-libp2p/pull/3122Full Changelog: libp2p/go-libp2p@v0.38.1...v0.39.0
v0.38.3
Compare Source
What's Changed
Full Changelog: libp2p/go-libp2p@v0.38.0...v0.38.3
v0.38.2
Compare Source
What's Changed
a4433e7
Release v0.38.29e08a02
tcpreuse: fix rcmgr accounting when tcp metrics are enabled (#3142)6735dd5
fix(net/nat): data race problem ofextAddr
(#3140)1ebb404
test: fix failing test (#3141)8f09a3e
nat: ignore mapping if external port is 0 (#3094)1529945
tcpreuse: error on using tcpreuse with pnet (#3129)7397e65
chore: Update contribution guidelines (#3134)05b4afe
tcp: fix metrics test build directive (#3052)1a2387c
ci: get back on the main release track of release checker (#3117)051fe11
webtransport: fix docstring comment for getCurrentBucketStartTimeFull Changelog: libp2p/go-libp2p@v0.38.1...v0.38.2
v0.38.1
Compare Source
What's Changed
Refer the the release notes in v0.38.0 for all things new in v0.38.
Full Changelog: libp2p/go-libp2p@v0.38.0...v0.38.1
v0.38.0
Compare Source
Highlights
You can now use the same port for TCP and WebSocket. Refer to the
TestSharedTCPAddr
for an example on how to enable this. Currently this isopt-in. In a future release, we may enable this as default behavior when you
leave the port unspecified or when you explicitly set the same port.
The eventbus will now log error messages when it detects slow consumers. It's
important for slow consumers to not stall the eventbus, as this can cause the
core libp2p node to stall. Previously this was visible via metrics. This should
help identify hard-to-debug issues without requiring metrics to be configured.
What's changed
New Contributors
Full Changelog: libp2p/go-libp2p@v0.37.0...v0.38.0
v0.37.2
Compare Source
What's Changed
908b0bd
Release v0.37.2368d5f6
chore: bump go-multiaddr-dns (#3066)008d62d
chore: bump quic-go to v0.48.2 (#3064)6fa87f6
fix(swarm): check after we split for empty multiaddr (#3063)75538ef
fix(libp2phttp): Return ErrServerClosed on Close (#3050)Full Changelog: libp2p/go-libp2p@v0.37.1...v0.37.2
v0.37.1
Compare Source
Bug Fixes
What's Changed
0606295
refactor(libp2phttp): don't require specific port for the HTTP host example (#3047)ae0d78a
fix: Defer resource usage cleanup until the very end (#3042)df02f4d
chore: update go-multistream to v0.6.0 (#3041)09ae179
fix: obsaddr: do not record observations over relayed conn (#3043)2404f75
webrtc: handshake more connections in parallel (#3040)994b69e
fix: basichost: Use NegotiationTimeout as fallback timeout for NewStream (#3020)Full Changelog: libp2p/go-libp2p@v0.37.0...dont-delete/release-v0371
v0.37.0
Compare Source
Breaking Changes
libp2p.MultiaddrResolver
option now takes an interface rather than aspecific pointer. This decouples the resolver from a specific implementation
and also defines a better interface that is aware of bounds.
ResolverFromMaDNS
that implements this interface from a*madns.Resolver
. The one line diff is essentially:🔦 Highlights
HTTP Peer ID Authentication (#2854)
Authenticate a peer's identity over HTTP. This works on both libp2p stream backed HTTP transports and standard HTTP transports. There is also browser support in the js-libp2p module: https://github.com/libp2p/js-libp2p-http-fetch/tree/main.
See the spec for more details on how it works: https://github.com/libp2p/specs/blob/master/http/peer-id-auth.md
Experimental WithFxOption (#2956)
A new libp2p Config option lets you add custom Fx options to the libp2p constructor. Use this to get access to and provide libp2p services.
For example, this allows you to easily get a reference to the ID Service of a libp2p Node. Refer to this test for a concrete code example: https://github.com/libp2p/go-libp2p/blob/c4c3a34545aab54b5b825a7adbd6a3db2c680afa/fx_options_test.go#L50-L60
In the future we'd like to expose the Fx options libp2p uses to construct itself so that users can better customize their libp2p nodes and integrate it seamlessly into their applications.
Changelog
From v0.36.5 to v0.37.0
Full Changelog: libp2p/go-libp2p@v0.36.5...v0.37.0
New Contributors
v0.36.5
Compare Source
What's Changed
Note
In the previous release, we called out a bug in go1.23 unbuffered timers that deadlocked go-libp2p. This has been fixed in go1.23.2. You can safely update your go.mod's go version to go1.23 now.
Full Changelog: libp2p/go-libp2p@v0.36.4...v0.36.5
v0.36.4
Compare Source
Note
What's Changed
Full Changelog: libp2p/go-libp2p@v0.36.3...v0.36.4
v0.36.3
Compare Source
What's Changed
New Contributors
Full Changelog: libp2p/go-libp2p@v0.36.2...v0.36.3
v0.36.2
Compare Source
What's Changed
Full Changelog: libp2p/go-libp2p@v0.36.1...v0.36.2
v0.36.1
Compare Source
Conn.NewStream
,Network.NewStream
andHost.NewStream
timeout after 15 seconds, if no deadline is specified on the providedctx
.🔦 Highlights
AutoNAT v2
EnableAutoNATV2
option.WebRTC
WebRTC Direct transport is now Non-Experimental
/webrtc-direct
is now enabled by default.Share listening port with QUIC
What's Changed
Notable Users
in README.md by @samyfodil in https://github.com/libp2p/go-libp2p/pull/2870/http-path
by @MarcoPolo in https://github.com/libp2p/go-libp2p/pull/2850New Contributors
Full Changelog: libp2p/go-libp2p@v0.35.0...v0.36.1
v0.36.0
Compare Source
Retracted
What's Changed
Configuration
📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about this update again.
This PR was generated by Mend Renovate. View the repository job log.