[cherry-pick v20260505] fix(security): bump Go to 1.25.10 and golang.org/x/net to v0.55.0#8559
Closed
djsly wants to merge 1 commit into
Closed
Conversation
Backport Go 1.25.10 and golang.org/x/net v0.55.0 to official/v20260505 for IcM 796913379. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
Contributor
There was a problem hiding this comment.
Pull request overview
Backports security tooling updates onto official/v20260505 by moving the repository’s Go toolchain baseline to Go 1.25.10 and updating golang.org/x/net to v0.55.0 (plus related x/* transitive updates), aligning CI workflows and fixing a fmt.Sprintf misuse caught by stricter vetting.
Changes:
- Bump
godirectives across all Go modules to 1.25.10 and refresh dependency graphs (go.sum) accordingly. - Update
golang.org/x/netto v0.55.0 (and relatedx/sys,x/text,x/crypto, etc. as pulled by tidy) in root/e2e/aks-node-controller. - Update GitHub Actions workflows to use Go 1.25, and fix
%wusage infmt.Sprintfin e2e config.
Reviewed changes
Copilot reviewed 15 out of 18 changed files in this pull request and generated no comments.
Show a summary per file
| File | Description |
|---|---|
| go.mod | Bumps Go directive to 1.25.10; updates indirect golang.org/x/* versions. |
| go.sum | Refreshes sums for updated golang.org/x/* module versions. |
| e2e/go.mod | Bumps Go directive to 1.25.10; updates x/crypto and indirect x/* deps. |
| e2e/go.sum | Refreshes sums for updated e2e dependency versions. |
| e2e/config/config.go | Fixes invalid %w usage in fmt.Sprintf panic message. |
| aks-node-controller/go.mod | Bumps Go directive to 1.25.10; updates indirect x/sys. |
| aks-node-controller/go.sum | Refreshes sums for updated golang.org/x/* module versions. |
| vhdbuilder/prefetch/go.mod | Bumps Go directive to 1.25.10. |
| vhdbuilder/lister/go.mod | Bumps Go directive to 1.25.10. |
| image-fetcher/go.mod | Bumps Go directive to 1.25.10. |
| hack/tools/go.mod | Bumps Go directive to 1.25.10. |
| .github/workflows/validate-components.yml | Updates setup-go to use Go 1.25 for validation jobs. |
| .github/workflows/shellspec.yaml | Updates setup-go to use Go 1.25. |
| .github/workflows/shellcheck.yml | Updates setup-go to use Go 1.25. |
| .github/workflows/golangci-lint.yml | Updates setup-go to use Go 1.25. |
| .github/workflows/go-test.yml | Updates setup-go to use Go 1.25. |
| .github/workflows/copilot-setup-steps.yml | Updates setup-go to use Go 1.25. |
| .github/workflows/check-coverage.yml | Updates setup-go to use Go 1.25. |
Collaborator
Author
|
Closing in favor of #8572 (recreated from |
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.
Summary
Cherry-pick of #8551 to
official/vv20260505.Bumps the Go toolchain and
golang.org/x/netto address upstream CVEs:net/mail(stdlib)cmd/gopacksubcommand directory traversalcmd/go(stdlib)golang.org/x/netWhy bump to Go 1.25 (and not a 1.24.x patch)
Go 1.24 reached EOL in February 2026 and does NOT receive security backports.
go1.25.10is the only release stream that contains these fixes.golang.org/x/net v0.51.0+also requiresgo 1.25.0in its owngo.mod, so the Go bump is required regardless.Verification
go mod tidysucceeds for every module in the branch.go build ./...clean across every module.go 1.25runners.Release plan
Once merged, two tags are pushed off the resulting commit:
v0.v20260505.<N+1>(AgentBaker module)aks-node-controller/v0.v20260505.<N+1>(aks-node-controller submodule)🤖 Generated with GitHub Copilot CLI