Summary
quic-go v0.62.0 was released on 2026-08-30. Since our last checked master SHA (148fd03), 7 new http3/ commits landed, all of which affect files inlined in req's internal/http3/ (modified quic-go code, currently based on v0.60.0). These are HTTP/3 protocol-compliance fixes that need to be synced manually.
No new security advisories since the previously confirmed GHSA-vvgj-x9jq-8cj9 (already verified as not affecting req).
Commits needing sync
| Commit |
Change |
Affected req file |
cb8e1ec |
Normalize request schemes to lowercase (RFC 3986 §3.1) |
internal/http3/headers.go |
a2aaf58 |
Validate :method is non-empty and syntactically valid |
internal/http3/headers.go |
4aac58a |
Reject regular CONNECT requests containing :scheme |
internal/http3/headers.go |
74b7cb7 |
Use Host as fallback when :authority is omitted; reject :authority/Host mismatch |
internal/http3/headers.go |
1818db9 |
Reject duplicate Host header fields |
internal/http3/headers.go |
1e19960 |
Distinguish empty pseudo-header fields from omitted ones (presence tracked via nil-valued map entries) |
internal/http3/headers.go |
eb1fe05 |
Do not gzip-decompress successful CONNECT responses |
internal/http3/stream.go |
go.mod dependency upgrade requires a decision
Upgrading the github.com/quic-go/quic-go dependency from v0.61.0 to v0.62.0 forces the module's go directive from 1.25.0 to 1.26.0 (v0.62.0 requires Go 1.26). This would drop Go 1.25 support, which is currently part of the CI matrix (1.25.x, 1.26.x).
Local verification on Go 1.27 with the upgrade applied: go build ./..., go vet ./..., and the full go test ./... all pass. The blocker is purely the support-policy change (dropping Go 1.25), which needs maintainer sign-off.
Action items
Summary
quic-go v0.62.0 was released on 2026-08-30. Since our last checked master SHA (
148fd03), 7 newhttp3/commits landed, all of which affect files inlined in req'sinternal/http3/(modified quic-go code, currently based on v0.60.0). These are HTTP/3 protocol-compliance fixes that need to be synced manually.No new security advisories since the previously confirmed GHSA-vvgj-x9jq-8cj9 (already verified as not affecting req).
Commits needing sync
cb8e1ecinternal/http3/headers.goa2aaf58:methodis non-empty and syntactically validinternal/http3/headers.go4aac58a:schemeinternal/http3/headers.go74b7cb7Hostas fallback when:authorityis omitted; reject:authority/Hostmismatchinternal/http3/headers.go1818db9Hostheader fieldsinternal/http3/headers.go1e19960internal/http3/headers.goeb1fe05internal/http3/stream.gogo.mod dependency upgrade requires a decision
Upgrading the
github.com/quic-go/quic-godependency from v0.61.0 to v0.62.0 forces the module'sgodirective from1.25.0to1.26.0(v0.62.0 requires Go 1.26). This would drop Go 1.25 support, which is currently part of the CI matrix (1.25.x,1.26.x).Local verification on Go 1.27 with the upgrade applied:
go build ./...,go vet ./..., and the fullgo test ./...all pass. The blocker is purely the support-policy change (dropping Go 1.25), which needs maintainer sign-off.Action items
http3/commits above intointernal/http3/(keeping req customizations)