fix(deps): update all dependencies #186
Open
+39
−22
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.25.4
->v0.25.5
v0.41.1
->v0.42.0
v3.28.18
->v3.29.0
1.24.3
->1.24.4
v0.33.0
->v0.34.0
Release Notes
evanw/esbuild (github.com/evanw/esbuild)
v0.25.5
Compare Source
Fix a regression with
browser
inpackage.json
(#4187)The fix to #4144 in version 0.25.3 introduced a regression that caused
browser
overrides specified inpackage.json
to fail to override relative path names that end in a trailing slash. That behavior change affected the[email protected]
package. This regression has been fixed, and now has test coverage.Add support for certain keywords as TypeScript tuple labels (#4192)
Previously esbuild could incorrectly fail to parse certain keywords as TypeScript tuple labels that are parsed by the official TypeScript compiler if they were followed by a
?
modifier. These labels includedfunction
,import
,infer
,new
,readonly
, andtypeof
. With this release, these keywords will now be parsed correctly. Here's an example of some affected code:Add CSS prefixes for the
stretch
sizing value (#4184)This release adds support for prefixing CSS declarations such as
div { width: stretch }
. That CSS is now transformed into this depending on what the--target=
setting includes:libp2p/go-libp2p (github.com/libp2p/go-libp2p)
v0.42.0
Compare Source
⚠ 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
false
from 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
EnableAutoNATV2
libp2p 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.ConfirmedAddrsFor notifications, Subscribe to the event
event.EvtHostReachableAddrsChanged
https://pkg.go.dev/github.com/libp2p/go-libp2p/core/event#EvtHostReachableAddrsChangedRate Limiting
We've introduced the package
github.com/libp2p/go-libp2p/x/rate
for rate limiting. The structrate.Limiter
provides 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)
onLimiter
to 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
WithConnRateLimiters
option 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
What's Changed
stream.go
by @Prabhat1308 in https://github.com/libp2p/go-libp2p/pull/3237modernc.org/sqlite
directly by @levisyin in https://github.com/libp2p/go-libp2p/pull/3227purgeStore()
by @vipocenka in https://github.com/libp2p/go-libp2p/pull/3273New Contributors
Full Changelog: libp2p/go-libp2p@v0.41.0...v0.42.0
github/codeql-action (github/codeql-action)
v3.29.0
Compare Source
CodeQL Action Changelog
See the releases page for the relevant changes to the CodeQL CLI and language packs.
3.29.0 - 11 Jun 2025
See the full CHANGELOG.md for more information.
v3.28.19
Compare Source
CodeQL Action Changelog
See the releases page for the relevant changes to the CodeQL CLI and language packs.
3.28.19 - 03 Jun 2025
actions
language, which is currently in public preview.The
actions
extractor has been included in the CodeQL CLI since v2.20.6. If your workflow has enabled theactions
language and you have pinnedyour
tools:
property to a specific version of the CodeQL CLI earlier than v2.20.6, you will need to update to at least CodeQL v2.20.6 or disableactions
analysis.See the full CHANGELOG.md for more information.
golang/go (go)
v1.24.4
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.
👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.
This PR was generated by Mend Renovate. View the repository job log.