[release-1.23] Bump golang.org/x/net to v0.53.0#6303
Merged
k8s-ci-robot merged 1 commit intoMay 12, 2026
Merged
Conversation
GO-2026-4918: Infinite loop in HTTP/2 transport when given bad SETTINGS_MAX_FRAME_SIZE in net/http/internal/http2 in golang.org/x/net. Fixed in golang.org/x/net v0.53.0. Ran 'go get golang.org/x/net@v0.53.0 && go mod tidy', which also brought along transitive bumps to x/crypto, x/mod, x/sys, x/term, x/text, and x/tools.
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## release-1.23 #6303 +/- ##
================================================
- Coverage 43.74% 43.74% -0.01%
================================================
Files 289 289
Lines 25475 25475
================================================
- Hits 11145 11143 -2
- Misses 13527 13529 +2
Partials 803 803 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
Contributor
|
/retest |
Contributor
|
LGTM label has been added. DetailsGit tree hash: 9c62c65c30299e2ba67660950e1d2c854fbf2cd0 |
Contributor
|
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: willie-yao The full list of commands accepted by this bot can be found here. The pull request process is described here DetailsNeeds approval from an approver in each of these files:
Approvers can indicate their approval by writing |
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.
What this PR does / why we need it:
Fixes the Trivy / govulncheck security scan failure on
release-1.23by bumpinggolang.org/x/netfromv0.52.0tov0.53.0.The scan reports a single vulnerability on this branch:
The traces show the vulnerable code is reachable via
azure.CustomPutPatchHeaderPolicy.Do→exported.Request.Next→http2.Transport.RoundTrip(and variants), so this is not a false positive.Which issue(s) this PR fixes:
Fixes the failing
Trivy (release-1.23)job in https://github.com/kubernetes-sigs/cluster-api-provider-azure/actions/runs/25745708187/job/75608228241Special notes for your reviewer:
Generated with
go get golang.org/x/net@v0.53.0 && go mod tidy. The MVS resolution also pulled in compatible minor bumps to othergolang.org/x/*modules (x/crypto,x/mod,x/sys,x/term,x/text,x/tools).go build ./...andgovulncheck ./...both pass locally.Release note: