chore: upgrade dependencies (quic-go v0.61.0, compress v1.19.1, digest v1.2.0) - #514
Merged
Conversation
This was referenced Jul 29, 2026
imroc
commented
Jul 29, 2026
imroc
left a comment
Owner
Author
There was a problem hiding this comment.
Review: Dependency Upgrade — Looks Good ✅
Reviewed this PR as part of the automated PR review loop.
Changes
go.mod/go.sumonly — no source code modifications- 3 direct dependency upgrades:
quic-gov0.60.0 → v0.61.0 (minor, sensitive)klauspost/compressv1.19.0 → v1.19.1 (patch)icholy/digestv1.1.0 → v1.2.0 (minor)
Verification
- CI: Both Go 1.25.x and 1.26.x jobs pass ✅
- Sensitive dependency (quic-go v0.61.0): Verified compatible with the vendored modified code in
internal/http3/—go build ./...,go vet ./..., and full test suite (go test ./..., 22 packages includinginternal/http3andinternal/http2) all pass. - No files in
internal/http3/orinternal/http2/were touched — the vendored modified copies remain at their current upstream sync baseline. go mod tidyleaves no residual changes.
Notes
- Supersedes PR #511 and #513 (both now closed) — same upgrades, consolidated into this PR.
- The vendored modified copies of Go stdlib
net/http,golang.org/x/net/http2, andquic-go(ininternal/http3/) are not upgraded by this PR. Their upstream sync remains a separate manual process. - As a reminder for future upstream sync: when
internal/http3/is next synced to quic-go v0.61.0, ensure all req-specific customizations (dump, middleware, protocol sniffing) are preserved.
No blockers. Since this is the maintainer's own PR, leaving a review comment rather than approving.
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
Upgraded 3 direct dependencies:
github.com/quic-go/quic-gogithub.com/klauspost/compressgithub.com/icholy/digestSensitive dependency verification
quic-go v0.60.0 → v0.61.0 (minor) — upgraded and verified separately before batching other upgrades. This is sensitive because req vendors a modified copy of quic-go in
internal/http3/. After upgrade:go build ./...passesgo vet ./...passesgo test ./internal/http3/... ./internal/http2/...passesgo test ./...passes (22 packages ok, including internal/http3 and internal/http2)quic-go v0.61.0 is compatible with the vendored modified code in
internal/http3/.Dependencies already at latest (no change)
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.0github.com/andybalholm/brotliv1.2.2Verification checklist
go build ./...succeedsgo vet ./...passesgo test ./... -coverprofile=coverage.txtall packages passgo mod tidyleaves no residual changesNotes
go.modandgo.summodified — no source code changesinternal/http3/orinternal/http2/were touchedReminder
The vendored modified copies of Go stdlib
net/http,golang.org/x/net/http2, andquic-go(ininternal/http3/) are not upgraded by this PR — their upstream sync is a separate manual process requiring per-file diff comparison.