chore(antd-go): bump grpc to 1.82.1 (GO-2026-6061) - #227
Open
Nic-dorman wants to merge 1 commit into
Open
Conversation
Same advisory that turned indelible master red: GO-2026-6061 (xDS RBAC + HTTP/2 transport server vulnerabilities in google.golang.org/grpc < 1.82.1) is reachable from antd-go's client code per govulncheck. Bump to 1.82.1; go mod tidy also moves the go directive to 1.25.0 and the otel/x/genproto indirects. No code changes. Verified: go build + full test suite green; govulncheck ./... now reports 0 reachable vulnerabilities. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
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.
Same advisory that turned indelible master red (fixed there in WithAutonomi/indelible#149): GO-2026-6061 — xDS RBAC + HTTP/2 transport server vulnerabilities in
google.golang.org/grpc< 1.82.1. Unlike indelible, antd-go requires grpc directly (v1.78.0), and localgovulncheck ./...confirms reachable call paths (11 example traces viaGrpcClient.Close,metaFromHeader, and the generateddataServiceClient.StreamPublicstubs). Our push-only Security Scanning job iscontinue-on-error: true, so it would never have gone red on its own — hence the proactive bump.Fix:
go get google.golang.org/grpc@v1.82.1+go mod tidy. The tidy also moves thegodirective to 1.25.0 (required by grpc 1.82.1) and the otel/x/genproto indirects to matching versions. No code changes. CI'ssetup-goreadsgo-version-file: antd-go/go.mod, so the toolchain bump flows through automatically.Verified:
go build ./...+ full test suite green;govulncheck ./...now reports 0 reachable vulnerabilities (remaining import/module-level findings have no call path, which the CI job does not fail on).🤖 Generated with Claude Code