go: upgrade to Go 1.25.9 toolchain and grpc v1.82.1 - #42
Merged
Conversation
Upgrade Go toolchain in Dockerfiles from 1.21.6 to 1.25.9 to fix: - CVE-2024-24790: net/netip unexpected behavior for IPv4-mapped addresses - CVE-2025-68121: crypto/tls incorrect certificate validation during TLS session resumption Upgrade google.golang.org/grpc from v1.79.3 to v1.82.1 to fix: - CVE-2026-33186: gRPC-Go authz policy bypass Bump go directives in go.mod files to 1.25.9 to target the patched stdlib. Update go.sum to match. Signed-off-by: xq9mend <xq9mend@users.noreply.github.com>
|
/azp run |
|
No pipelines are associated with this pull request. |
qiluo-msft
approved these changes
Aug 20, 2026
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.
Why
Fix three CVEs:
net/netipunexpected behavior fromIsmethods for IPv4-mapped addresses — requires Go ≥1.25.9crypto/tlsincorrect certificate validation during TLS session resumption — requires Go ≥1.25.9authzpolicy bypass — requiresgoogle.golang.org/grpc≥ v1.82.1What changed
src/deploy/kne/vm/Dockerfile: Go toolchain1.21.6→1.25.9src/libsai-grpc/Dockerfile.saibuilder: Go toolchain1.21.6→1.25.9src/deploy/kne/vm/go.mod:go 1.21→go 1.25.9src/go.mod:go 1.24.0→go 1.25.9;grpc v1.79.3→v1.82.1src/go.sum: updated to matchHow to verify