chore: upgrade dependencies (quic-go v0.61.0, compress v1.19.1, digest v1.2.0) - #513
Open
imroc wants to merge 1 commit into
Open
chore: upgrade dependencies (quic-go v0.61.0, compress v1.19.1, digest v1.2.0)#513imroc wants to merge 1 commit into
imroc wants to merge 1 commit into
Conversation
imroc
commented
Jul 28, 2026
imroc
left a comment
Owner
Author
There was a problem hiding this comment.
Automated review (PR Review Loop):
Scope: go.mod / go.sum only — no source files touched.
- quic-go v0.60.0 → v0.61.0 (minor, sensitive)
- klauspost/compress v1.19.0 → v1.19.1 (patch)
- icholy/digest v1.1.0 → v1.2.0 (minor)
Verification:
- CI passes on both Go 1.25.x and 1.26.x.
- quic-go v0.61.0 was previously validated against the vendored
internal/http3/in the dependency upgrade loop (build + vet + test all green, includinginternal/http2andinternal/http3packages). - No changes to
internal/http3/,internal/http2/, or modified stdlib files.
Note: This PR supersedes #511 (which contains the quic-go and compress upgrades without digest). #511 can be closed once this merges.
No blockers. Self-approve limitation noted (author is repo owner).
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.
Dependency Upgrades
This PR upgrades 3 direct dependencies. Supersedes PR #511 (which was missing the
icholy/digestupgrade).github.com/quic-go/quic-gogithub.com/klauspost/compressgithub.com/icholy/digestSensitive dependency verification
quic-go v0.61.0 was upgraded and verified individually before upgrading the rest. Despite
quic-gobeing vendored/modified ininternal/http3/(synced to v0.60.0), the build and all tests pass — thego.moddependency upgrade is compatible with the existing modifiedinternal/http3/code.Unchanged dependencies
The following sensitive dependencies were already at the latest version:
github.com/refraction-networking/utlsv1.8.2golang.org/x/netv0.57.0golang.org/x/cryptov0.54.0golang.org/x/textv0.40.0golang.org/x/sysv0.47.0Verification
go build ./...passesgo vet ./...passesgo test ./...passes (all packages OK, includinginternal/http2andinternal/http3)go mod tidy— no residual changesgo.modandgo.summodified — no source code changesNote on modified upstream code
This PR only upgrades
go.mod/go.sumdependencies. The manually synced upstream code ininternal/http3/(modified quic-go) andinternal/http2/(modifiedgolang.org/x/net/http2) are not touched. Upstream sync of modified code is a separate manual process.