build(deps): Bump the all-go group across 8 directories with 23 updates
Type: Pull Request
State: Merged
Association: Contributor
Comments: 2
(10 months ago)
(10 months ago)
(10 months ago)
by tac0turtle
T:dependencies
Bumps the all-go group with 5 updates in the / directory:
| Package | From | To |
|---|---|---|
| github.com/celestiaorg/go-header | 0.6.6 |
0.7.0 |
| github.com/ipfs/go-datastore | 0.8.2 |
0.8.3 |
| github.com/libp2p/go-libp2p-kad-dht | 0.33.1 |
0.34.0 |
| github.com/libp2p/go-libp2p-pubsub | 0.14.1 |
0.14.2 |
| github.com/spf13/pflag | 1.0.6 |
1.0.7 |
Bumps the all-go group with 5 updates in the /apps/testapp directory:
| Package | From | To |
|---|---|---|
| github.com/ipfs/go-datastore | 0.8.2 |
0.8.3 |
| github.com/libp2p/go-libp2p-kad-dht | 0.33.1 |
0.34.0 |
| github.com/libp2p/go-libp2p-pubsub | 0.14.1 |
0.14.2 |
| github.com/spf13/pflag | 1.0.6 |
1.0.7 |
| github.com/filecoin-project/go-jsonrpc | 0.7.1 |
0.8.0 |
Bumps the all-go group with 2 updates in the /da directory: github.com/rs/zerolog and github.com/filecoin-project/go-jsonrpc.
Bumps the all-go group with 5 updates in the /execution/evm directory:
| Package | From | To |
|---|---|---|
| github.com/prometheus/client_golang | 1.20.5 |
1.23.0 |
| github.com/spf13/pflag | 1.0.6 |
1.0.7 |
| github.com/ethereum/go-ethereum | 1.15.0 |
1.16.2 |
| github.com/golang-jwt/jwt/v5 | 5.2.2 |
5.3.0 |
| github.com/testcontainers/testcontainers-go/modules/compose | 0.37.0 |
0.38.0 |
Bumps the all-go group with 2 updates in the /execution/grpc directory: golang.org/x/net and google.golang.org/protobuf.
Bumps the all-go group with 5 updates in the /sequencers/single directory:
| Package | From | To |
|---|---|---|
| github.com/celestiaorg/go-header | 0.6.6 |
0.7.0 |
| github.com/ipfs/go-datastore | 0.8.2 |
0.8.3 |
| github.com/libp2p/go-libp2p-kad-dht | 0.33.1 |
0.34.0 |
| github.com/libp2p/go-libp2p-pubsub | 0.14.1 |
0.14.2 |
| github.com/spf13/pflag | 1.0.6 |
1.0.7 |
Bumps the all-go group with 9 updates in the /test/docker-e2e directory:
| Package | From | To |
|---|---|---|
| github.com/prometheus/client_golang | 1.20.5 |
1.23.0 |
| github.com/rs/zerolog | 1.33.0 |
1.34.0 |
| github.com/spf13/cobra | 1.8.1 |
1.9.1 |
| github.com/spf13/viper | 1.19.0 |
1.20.1 |
| google.golang.org/protobuf | 1.36.6 |
1.36.7 |
| github.com/celestiaorg/tastora | 0.2.1 |
0.2.2 |
| cosmossdk.io/math | 1.4.0 |
1.5.3 |
| github.com/celestiaorg/go-square/v2 | 2.2.0 |
2.3.1 |
| github.com/moby/moby | 27.5.1+incompatible |
28.3.3+incompatible |
Bumps the all-go group with 11 updates in the /test/e2e directory:
| Package | From | To |
|---|---|---|
| github.com/celestiaorg/go-header | 0.6.6 |
0.7.0 |
| github.com/ipfs/go-datastore | 0.8.2 |
0.8.3 |
| github.com/libp2p/go-libp2p-pubsub | 0.14.1 |
0.14.2 |
| github.com/multiformats/go-multiaddr | 0.16.0 |
0.16.1 |
| github.com/spf13/pflag | 1.0.6 |
1.0.7 |
| golang.org/x/crypto | 0.40.0 |
0.41.0 |
| golang.org/x/net | 0.42.0 |
0.43.0 |
| google.golang.org/protobuf | 1.36.6 |
1.36.7 |
| github.com/ethereum/go-ethereum | 1.15.0 |
1.16.2 |
| github.com/golang-jwt/jwt/v5 | 5.2.2 |
5.3.0 |
| github.com/testcontainers/testcontainers-go/modules/compose | 0.37.0 |
0.38.0 |
Updates github.com/celestiaorg/go-header from 0.6.6 to 0.7.0
Release notes
Sourced from github.com/celestiaorg/go-header's releases.
v0.7.0
v0.7.0 release brings high-performance dynamic Tail maintenance for Syncer, also known as header pruning.
Notable Changes
Syncer
These new fields were introduced to Syncer's config:
// PruningWindow defines the duration within which headers are retained before being pruned. // Default is 337 hours. PruningWindow time.Duration // SyncFromHash is the hash of the header from which Syncer should start syncing. // Zero value to disable. Value updates up and down the chain are gracefully handled by Syncer. // // By default, Syncer maintains PruningWindow number of headers. SyncFromHash overrides this default, // allowing any user to specify a custom starting point. // // SyncFromHash has higher priority than SyncFromHeight. SyncFromHash string // SyncFromHeight is the height of the header from which Syncer should start syncing. // Zero value to disable. Value updates up and down the chain are gracefully handled by Syncer. // // By default, Syncer maintains PruningWindow number of headers. SyncFromHeight overrides this default, // allowing any user to specify a custom starting point. // // SyncFromHeight has lower priority than SyncFromHash. SyncFromHeight uint64Store
store.Store.DeleteTomethod (celestiaorg/go-header#275)store.Store.OnDeletemethod, which allows users to register individual header deletion handlers. This will enable users to execute farewell logic when headers are removed, e.g., cleanup data committed in the header but stored separately. (celestiaorg/go-header#320)- Unsafe store recovery tools (celestiaorg/go-header#325)
Breaks
store.Store.Initandstore.Initwere removed. Initialization is now performed lazily using the first header given tostore.Append(celestiaorg/go-header#274)What's Changed
- chore(CODEOWNERS): remove
@cristalolegby@cristalolegin celestiaorg/go-header#288- chore(sync): improve bifurcation logs by
@Wondertanin celestiaorg/go-header#291- Pruning Meta PR by
@Wondertanin celestiaorg/go-header#292- fix(store): support intermittent writes for batch by
@Wondertanin celestiaorg/go-header#296- fix(store): Tail aware HasAt by
@Wondertanin celestiaorg/go-header#298- fix(sync): move tail only if head changes by
@Wondertanin celestiaorg/go-header#293- chore: bump deps by
@Wondertanin celestiaorg/go-header#299- chore: bump libp2p by
@Wondertanin celestiaorg/go-header#300- fix(syncer): check tail hash via len by
@Wondertanin celestiaorg/go-header#309- fix(headertest): correctly initialize Tail by
@Wondertanin celestiaorg/go-header#308- feat(store)!: OnDelete method by
@Wondertanin celestiaorg/go-header#304- chore(store|sync): error wrappings by
@Wondertanin celestiaorg/go-header#310
... (truncated)
Commits
9b03087feat(store): store recovery tools (#325)38be935perf(store): batch reads (#331)bc5064bfix(sync): allow estimation errors (#329)aa4ae28fix(sync): subj init death loop (#324)5c305adfeat(store): allow partial init (#327)105a106perf(store): pass batch through context (#328)03ded0dmisc(store): various fixes and chores (#330)5776877fix(store): stop long receding/advancing on Stop (#326)27b8dfeperf(store): almost readless parallel deletes (#320)21b31ffchore(syncer): improved logging (#315)- Additional commits viewable in compare view
Updates github.com/ipfs/go-datastore from 0.8.2 to 0.8.3
Release notes
Sourced from github.com/ipfs/go-datastore's releases.
v0.8.3
What's Changed
- ci: uci/copy-templates by
@web3-botin ipfs/go-datastore#234- upgrade to latest opentelemetry packages by
@gammazeroin ipfs/go-datastore#240- replace gopkg.in/check.v1 with github.com/stretchr/testify by
@gammazeroin ipfs/go-datastore#241- Replace
uber-go/multierrwitherrors.Joinby@gammazeroin ipfs/go-datastore#242- sort using slices.Sort by
@gammazeroin ipfs/go-datastore#243Full Changelog: https://github.com/ipfs/go-datastore/compare/v0.8.2...v0.8.3
Commits
fe275e4new version (#245)b135befsort using slices.Sort (#243)ac3ba45Replaceuber-go/multierrwitherrors.Join(#242)4fb7cfbreplace gopkg.in/check.v1 with github.com/stretchr/testify (#241)8b21663upgrade to latest opentelemetry packages (#240)bee84ceci: uci/copy-templates (#234)- See full diff in compare view
Updates github.com/libp2p/go-libp2p from 0.41.1 to 0.42.0
Release notes
Sourced from github.com/libp2p/go-libp2p's releases.
v0.42.0
⚠ Breaking Changes
Added a new method,
VerifySourceAddress(net.Addr) bool, to the Resource Manager interface. For more details see the Source Address Verification section.For custom implementation which want to opt out of Source Address Verification and keep the existing behavior, return
falsefrom the method.🔦 Highlights
Per Address Reachability via AutoNAT v2
libp2p hosts can now determine reachability for individual addresses using AutoNATV2. To opt in to reachability checking use the
EnableAutoNATV2libp2p option. Using this nodes can now determine their IPv4, IPv6, and browser address reachability separately. In a future release, AutoRelay will use this information and make appropriate relay reservations accordingly. https://pkg.go.dev/github.com/libp2p/go-libp2p#EnableAutoNATv2To query addresses by their reachability,
ConfirmedAddrs() (reachable, unreachable, unknown []ma.Multiaddr)that provides Reachability information per host address. https://pkg.go.dev/github.com/libp2p/go-libp2p/p2p/host/basic#BasicHost.ConfirmedAddrs For notifications, Subscribe to the eventevent.EvtHostReachableAddrsChangedhttps://pkg.go.dev/github.com/libp2p/go-libp2p/core/event#EvtHostReachableAddrsChangedRate Limiting
We've introduced the package
github.com/libp2p/go-libp2p/x/ratefor rate limiting. The structrate.Limiterprovides Global, Network Specific, and Subnet Specific rate limiting. The Subnet specific rate limits allows for better DoS Protection by rate limiting malicious IPs. https://pkg.go.dev/github.com/libp2p/go-libp2p/x/rateUse
Limit(f func(s network.Stream)) func(s network.Stream)onLimiterto limit specific stream handlers. For example, within libp2p, the Identify Service uses this asids.Host.SetStreamHandler(IDPush, ids.rateLimiter.Limit(ids.handlePush))to rate limit the number of times peers can perform identify push.For non Stream use cases use the
Allow(ip)method on the limiter.Connection Rate Limiting
New connection requests are now rate limited per IP. By default we allow 1 connection every 5 seconds from an IP address with a burst of 16 connections per IP. The burst is high enough that this should only block malicious peers.
To configure the connection rate limits, use the
WithConnRateLimitersoption on the Resource Manager. https://pkg.go.dev/github.com/libp2p/go-libp2p/p2p/host/resource-manager#WithConnRateLimitersSource Address Verification for QUIC
This release introduces Source Address Verification for QUIC, preventing DoS attacks by spoofing IP addresses. See: https://www.rfc-editor.org/rfc/rfc9000.html#section-8 for details.
We are now gating incoming QUIC connections before the handshake is started. This further improves DoS protection by not wasting CPU on handshaking QUIC connections which would have been dropped by the Resource Manager.
Other changes
- WebRTC Direct peers can now send messages of up to 256 kB (see spec: libp2p/specs#628)
- Refactored the addressing code within BasicHost and moved it into Address Manager. In a future release, this will be exposed to users with an improved Address API for the libp2p Host.
What's Changed
- addrsmanager: extract out addressing logic from basichost by
@sukunrtin libp2p/go-libp2p#3075- fix: fix incorrect nil return value by
@huochexizhanin libp2p/go-libp2p#3219- fix(libp2phttp): bound NewStream timeout by
@algorandskiyin libp2p/go-libp2p#3225- webrtc: fix memory leak with udpmux.muxedConnection context by
@sukunrtin libp2p/go-libp2p#3243- connmgr: fix transport association bug by
@sukunrtin libp2p/go-libp2p#3221- connmgr: remove WithEmergencyTrim by
@sukunrtin libp2p/go-libp2p#3217- fix: Add wrapped error type in
stream.goby@Prabhat1308in libp2p/go-libp2p#3237- autonatv2: fix server dial data request policy by
@sukunrtin libp2p/go-libp2p#3247- autonatv2: explicitly handle dns addrs by
@sukunrtin libp2p/go-libp2p#3249
... (truncated)
Commits
000582cRelease v0.42.0 (#3318)150f67bchore: update deps (#3312)b0cc650ci: use go-check for golangci-lint (#3309)90633f6mocknet: notify listeners on listen (#3310)2d45a88autonatv2: add metrics (#3308)b06bfecMerge pull request #3295 from libp2p/uci-golangci-lint735a7f0fix: revive in p2p transport tcp2d4d2eefix: golangci lint configuration198e27fchore: run gofmt335c75aMerge branch 'master' into uci-golangci-lint- Additional commits viewable in compare view
Updates github.com/libp2p/go-libp2p-kad-dht from 0.33.1 to 0.34.0
Release notes
Sourced from github.com/libp2p/go-libp2p-kad-dht's releases.
v0.34.0
What's Changed
- chore(deps): bump github.com/pion/interceptor from 0.1.37 to 0.1.39 by
@dependabot[bot] in libp2p/go-libp2p-kad-dht#1089- chore: bump boxo by
@guillaumemichelin libp2p/go-libp2p-kad-dht#1091- refactor(providers): migrate providers/ to records/ by
@guillaumemichelin libp2p/go-libp2p-kad-dht#1094- fix: move non-error log to warning level by
@lidelin libp2p/go-libp2p-kad-dht#1119- feat(crawler): configurable protocol messenger by
@guillaumemichelin libp2p/go-libp2p-kad-dht#1128- chore: update dependencies by
@guillaumemichelin libp2p/go-libp2p-kad-dht#1129- chore: release v0.34.0 by
@guillaumemichelin libp2p/go-libp2p-kad-dht#1130Full Changelog: https://github.com/libp2p/go-libp2p-kad-dht/compare/v0.33.1...v0.34.0
Commits
3c81035chore: release v0.34.0 (#1130)424801eupdate dependencies (#1129)5dafe49make crawler protocol messenger configurable (#1128)944883efix: move non-error log to warning level (#1119)0532e1cmigrate providers package (#1094)dc0dee4bump boxo version (#1091)eaa3f59chore(deps): bump github.com/pion/interceptor from 0.1.37 to 0.1.39 (#1089)- See full diff in compare view
Updates github.com/libp2p/go-libp2p-pubsub from 0.14.1 to 0.14.2
Release notes
Sourced from github.com/libp2p/go-libp2p-pubsub's releases.
v0.14.2
What's Changed
- Fix race when calling Preprocess and msg ID generator by
@MarcoPoloin libp2p/go-libp2p-pubsub#627- Fix test races and enable race tests in CI by
@MarcoPoloin libp2p/go-libp2p-pubsub#626- Skip 32-bit tests in CI by
@MarcoPoloin libp2p/go-libp2p-pubsub#628Full Changelog: https://github.com/libp2p/go-libp2p-pubsub/compare/v0.14.1...v0.14.2
Commits
Updates github.com/multiformats/go-multiaddr from 0.16.0 to 0.16.1
Release notes
Sourced from github.com/multiformats/go-multiaddr's releases.
v0.16.1
What's Changed
- reduce allocations in Bytes() and manet methods by
@sukunrtin multiformats/go-multiaddr#280Full Changelog: https://github.com/multiformats/go-multiaddr/compare/v0.16.0...v0.16.1
Commits
3b99966Release v0.16.1 (#281)c94fa40reduce allocations in Bytes() and manet methods (#280)- See full diff in compare view
Updates github.com/spf13/pflag from 1.0.6 to 1.0.7
Release notes
Sourced from github.com/spf13/pflag's releases.
v1.0.7
What's Changed
- Fix defaultIsZeroValue check for generic Value types by
@MidnightRocketin spf13/pflag#422- feat: Use structs for errors returned by pflag. by
@eth-pin spf13/pflag#425- Fix typos by
@co63ocin spf13/pflag#428- fix #423 : Add helper function and some documentation to parse shorthand go test flags. by
@valdarin spf13/pflag#424- add support equivalent to golang flag.TextVar(), also fixes the test failure as described in #368 by
@hujun-openin spf13/pflag#418- add support for Func() and BoolFunc() #426 by
@LeGECin spf13/pflag#429- fix: correct argument length check in FlagSet.Parse by
@ShawnJeffersonWangin spf13/pflag#409- fix usage message for func flags, fix arguments order by
@LeGECin spf13/pflag#431- Add support for time.Time flags by
@max-frankin spf13/pflag#348New Contributors
@MidnightRocketmade their first contribution in spf13/pflag#422@eth-pmade their first contribution in spf13/pflag#425@co63ocmade their first contribution in spf13/pflag#428@valdarmade their first contribution in spf13/pflag#424@hujun-openmade their first contribution in spf13/pflag#418@LeGECmade their first contribution in spf13/pflag#429@ShawnJeffersonWangmade their first contribution in spf13/pflag#409@max-frankmade their first contribution in spf13/pflag#348Full Changelog: https://github.com/spf13/pflag/compare/v1.0.6...v1.0.7
Commits
f9cbdd9Merge pull request #348 from max-frank/add-time-flag-supporte3be2ebReduce duplication by forwarding to sibling functions7cc25e3Don't exportTimeValue(yet)d15848dRemove unnecessary time test stderr dev null redirectc5ce22eUse time.Time for expectations in time flag tests1992c5aAdd support for time.Time flags1c62fb2Merge pull request #431 from LeGEC/430-fix-usage-message-for-func-flags1a4b5b2fix discrepancy in order of arguments for Func() and BoolFunc() #4334730aa0fix help message for Func and BoolFunc flags #430f4c97c2minor: fix typos in comments- Additional commits viewable in compare view
Updates golang.org/x/crypto from 0.40.0 to 0.41.0
Commits
ef5341bgo.mod: update golang.org/x dependenciesb999374acme: fix pebble subprocess output data racec247deax509roots/fallback: store bundle certs directly in DER1fda731acme: increase pebble test waitForServer attempts1b4c3d2x509roots/fallback: update bundleb903b53acme: capture pebble test subprocess stdout/stderr- See full diff in compare view
Updates golang.org/x/net from 0.42.0 to 0.43.0
Commits
e74bc31go.mod: update golang.org/x dependenciesaf6926ehttp2: remove references to defunct http2.golang.org test server- See full diff in compare view
Updates google.golang.org/protobuf from 1.36.6 to 1.36.7
Updates github.com/ipfs/go-datastore from 0.8.2 to 0.8.3
Release notes
Sourced from github.com/ipfs/go-datastore's releases.
v0.8.3
What's Changed
- ci: uci/copy-templates by
@web3-botin ipfs/go-datastore#234- upgrade to latest opentelemetry packages by
@gammazeroin ipfs/go-datastore#240- replace gopkg.in/check.v1 with github.com/stretchr/testify by
@gammazeroin ipfs/go-datastore#241- Replace
uber-go/multierrwitherrors.Joinby@gammazeroin ipfs/go-datastore#242- sort using slices.Sort by
@gammazeroin ipfs/go-datastore#243Full Changelog: https://github.com/ipfs/go-datastore/compare/v0.8.2...v0.8.3
Commits
fe275e4new version (#245)b135befsort using slices.Sort (#243)ac3ba45Replaceuber-go/multierrwitherrors.Join(#242)4fb7cfbreplace gopkg.in/check.v1 with github.com/stretchr/testify (#241)8b21663upgrade to latest opentelemetry packages (#240)bee84ceci: uci/copy-templates (#234)- See full diff in compare view
Updates golang.org/x/net from 0.42.0 to 0.43.0
Commits
e74bc31go.mod: update golang.org/x dependenciesaf6926ehttp2: remove references to defunct http2.golang.org test server- See full diff in compare view
Updates google.golang.org/protobuf from 1.36.6 to 1.36.7
Updates github.com/ipfs/go-datastore from 0.8.2 to 0.8.3
Release notes
Sourced from github.com/ipfs/go-datastore's releases.
v0.8.3
What's Changed
- ci: uci/copy-templates by
@web3-botin ipfs/go-datastore#234- upgrade to latest opentelemetry packages by
@gammazeroin ipfs/go-datastore#240- replace gopkg.in/check.v1 with github.com/stretchr/testify by
@gammazeroin ipfs/go-datastore#241- Replace
uber-go/multierrwitherrors.Joinby@gammazeroin ipfs/go-datastore#242- sort using slices.Sort by
@gammazeroin ipfs/go-datastore#243Full Changelog: https://github.com/ipfs/go-datastore/compare/v0.8.2...v0.8.3
Commits
fe275e4new version (#245)b135befsort using slices.Sort (#243)ac3ba45Replaceuber-go/multierrwitherrors.Join(#242)4fb7cfbreplace gopkg.in/check.v1 with github.com/stretchr/testify (#241)8b21663upgrade to latest opentelemetry packages (#240)bee84ceci: uci/copy-templates (#234)- See full diff in compare view
Updates google.golang.org/protobuf from 1.36.6 to 1.36.7
Updates github.com/libp2p/go-libp2p from 0.41.1 to 0.43.0
Release notes
Sourced from github.com/libp2p/go-libp2p's releases.
v0.42.0
⚠ Breaking Changes
Added a new method,
VerifySourceAddress(net.Addr) bool, to the Resource Manager interface. For more details see the Source Address Verification section.For custom implementation which want to opt out of Source Address Verification and keep the existing behavior, return
falsefrom the method.🔦 Highlights
Per Address Reachability via AutoNAT v2
libp2p hosts can now determine reachability for individual addresses using AutoNATV2. To opt in to reachability checking use the
EnableAutoNATV2libp2p option. Using this nodes can now determine their IPv4, IPv6, and browser address reachability separately. In a future release, AutoRelay will use this information and make appropriate relay reservations accordingly. https://pkg.go.dev/github.com/libp2p/go-libp2p#EnableAutoNATv2To query addresses by their reachability,
ConfirmedAddrs() (reachable, unreachable, unknown []ma.Multiaddr)that provides Reachability information per host address. https://pkg.go.dev/github.com/libp2p/go-libp2p/p2p/host/basic#BasicHost.ConfirmedAddrs For notifications, Subscribe to the eventevent.EvtHostReachableAddrsChangedhttps://pkg.go.dev/github.com/libp2p/go-libp2p/core/event#EvtHostReachableAddrsChangedRate Limiting
We've introduced the package
github.com/libp2p/go-libp2p/x/ratefor rate limiting. The structrate.Limiterprovides Global, Network Specific, and Subnet Specific rate limiting. The Subnet specific rate limits allows for better DoS Protection by rate limiting malicious IPs. https://pkg.go.dev/github.com/libp2p/go-libp2p/x/rateUse
Limit(f func(s network.Stream)) func(s network.Stream)onLimiterto limit specific stream handlers. For example, within libp2p, the Identify Service uses this asids.Host.SetStreamHandler(IDPush, ids.rateLimiter.Limit(ids.handlePush))to rate limit the number of times peers can perform identify push.For non Stream use cases use the
Allow(ip)method on the limiter.Connection Rate Limiting
New connection requests are now rate limited per IP. By default we allow 1 connection every 5 seconds from an IP address with a burst of 16 connections per IP. The burst is high enough that this should only block malicious peers.
To configure the connection rate limits, use the
WithConnRateLimitersoption on the Resource Manager. https://pkg.go.dev/github.com/libp2p/go-libp2p/p2p/host/resource-manager#WithConnRateLimitersSource Address Verification for QUIC
This release introduces Source Address Verification for QUIC, preventing DoS attacks by spoofing IP addresses. See: https://www.rfc-editor.org/rfc/rfc9000.html#section-8 for details.
We are now gating incoming QUIC connections before the handshake is started. This further improves DoS protection by not wasting CPU on handshaking QUIC connections which would have been dropped by the Resource Manager.
Other changes
- WebRTC Direct peers can now send messages of up to 256 kB (see spec: libp2p/specs#628)
- Refactored the addressing code within BasicHost and moved it into Address Manager. In a future release, this will be exposed to users with an improved Address API for the libp2p Host.
What's Changed
- addrsmanager: extract out addressing logic from basichost by
@sukunrtin libp2p/go-libp2p#3075- fix: fix incorrect nil return value by
@huochexizhanin libp2p/go-libp2p#3219- fix(libp2phttp): bound NewStream timeout by
@algorandskiyin libp2p/go-libp2p#3225- webrtc: fix memory leak with udpmux.muxedConnection context by
@sukunrtin libp2p/go-libp2p#3243- connmgr: fix transport association bug by
@sukunrtin libp2p/go-libp2p#3221- connmgr: remove WithEmergencyTrim by
@sukunrtin libp2p/go-libp2p#3217- fix: Add wrapped error type in
stream.goby@Prabhat1308in libp2p/go-libp2p#3237- autonatv2: fix server dial data request policy by
@sukunrtin libp2p/go-libp2p#3247- autonatv2: explicitly handle dns addrs by
@sukunrtin libp2p/go-libp2p#3249
... (truncated)
Commits
000582cRelease v0.42.0 (#3318)150f67bchore: update deps (#3312)b0cc650ci: use go-check for golangci-lint (#3309)90633f6mocknet: notify listeners on listen (#3310)2d45a88autonatv2: add metrics (#3308)b06bfecMerge pull request #3295 from libp2p/uci-golangci-lint735a7f0fix: revive in p2p transport tcp2d4d2eefix: golangci lint configuration198e27fchore: run gofmt335c75aMerge branch 'master' into uci-golangci-lint- Additional commits viewable in compare view
Updates github.com/ipfs/go-datastore from 0.8.2 to 0.8.3
Release notes
Sourced from github.com/ipfs/go-datastore's releases.
v0.8.3
What's Changed
- ci: uci/copy-templates by
@web3-botin ipfs/go-datastore#234- upgrade to latest opentelemetry packages by
@gammazeroin ipfs/go-datastore#240- replace gopkg.in/check.v1 with github.com/stretchr/testify by
@gammazeroin ipfs/go-datastore#241- Replace
uber-go/multierrwitherrors.Joinby@gammazeroin ipfs/go-datastore#242- sort using slices.Sort by
@gammazeroin ipfs/go-datastore#243Full Changelog: https://github.com/ipfs/go-datastore/compare/v0.8.2...v0.8.3
Commits
fe275e4new version (#245)b135befsort using slices.Sort (#243)ac3ba45Replaceuber-go/multierrwitherrors.Join(#242)4fb7cfbreplace gopkg.in/check.v1 with github.com/stretchr/testify (#241)8b21663upgrade to latest opentelemetry packages (#240)bee84ceci: uci/copy-templates (#234)- See full diff in compare view
Updates github.com/libp2p/go-libp2p-kad-dht from 0.33.1 to 0.34.0
Release notes
Sourced from github.com/libp2p/go-libp2p-kad-dht's releases.
v0.34.0
What's Changed
- chore(deps): bump github.com/pion/interceptor from 0.1.37 to 0.1.39 by
@dependabot[bot] in libp2p/go-libp2p-kad-dht#1089- chore: bump boxo by
@guillaumemichelin libp2p/go-libp2p-kad-dht#1091- refactor(providers): migrate providers/ to records/ by
@guillaumemichelin libp2p/go-libp2p-kad-dht#1094- fix: move non-error log to warning level by
@lidelin libp2p/go-libp2p-kad-dht#1119- feat(crawler): configurable protocol messenger by
@guillaumemichelin libp2p/go-libp2p-kad-dht#1128- chore: update dependencies by
@guillaumemichelin libp2p/go-libp2p-kad-dht#1129- chore: release v0.34.0 by
@guillaumemichelin libp2p/go-libp2p-kad-dht#1130Full Changelog: https://github.com/libp2p/go-libp2p-kad-dht/compare/v0.33.1...v0.34.0
Commits
3c81035chore: release v0.34.0 (#1130)424801eupdate dependencies (#1129)5dafe49make crawler protocol messenger configurable (#1128)944883efix: move non-error log to warning level (#1119)0532e1cmigrate providers package (#1094)dc0dee4bump boxo version (#1091)eaa3f59chore(deps): bump github.com/pion/interceptor from 0.1.37 to 0.1.39 (#1089)- See full diff in compare view
Updates github.com/libp2p/go-libp2p-pubsub from 0.14.1 to 0.14.2
Release notes
Sourced from github.com/libp2p/go-libp2p-pubsub's releases.
v0.14.2
What's Changed
- Fix race when calling Preprocess and msg ID generator by
@MarcoPoloin libp2p/go-libp2p-pubsub#627- Fix test races and enable race tests in CI by
@MarcoPoloin libp2p/go-libp2p-pubsub#626- Skip 32-bit tests in CI by
@MarcoPoloin libp2p/go-libp2p-pubsub#628Full Changelog: https://github.com/libp2p/go-libp2p-pubsub/compare/v0.14.1...v0.14.2
Description has been truncated
Pull Request Statistics
3
20
+1204
-1395
Package Dependencies
github.com/celestiaorg/go-header
go
0.6.6 → 0.7.0
Minor
github.com/libp2p/go-libp2p-pubsub
go
0.14.1 → 0.14.2
Patch
github.com/libp2p/go-libp2p-kad-dht
go
0.33.1 → 0.34.0
Minor
github.com/ipfs/go-datastore
go
0.8.2 → 0.8.3
Patch
Technical Details
| ID: | 5289742 |
| UUID: | 2753252403 |
| Node ID: | PR_kwDOFABrEc6kG0wz |
| Host: | GitHub |
| Repository: | evstack/ev-node |
| Merge State: | Unknown |