Fix snippets/golang build and bump grpc to v1.82.1 (GHSA-hrxh-6v49-42gf) - #339
Open
lcbill wants to merge 1 commit into
Open
Fix snippets/golang build and bump grpc to v1.82.1 (GHSA-hrxh-6v49-42gf)#339lcbill wants to merge 1 commit into
lcbill wants to merge 1 commit into
Conversation
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
Two things, and the second is a prerequisite for the first.
snippets/golangdoes not build on masterThe module pins
go-limacharlie/limacharlieat pseudo-versionv0.0.0-20260726172822-e1078d02bc52, and that revision no longer exists upstream:Verified by building a clean
origin/masterworktree —go build ./...fails there. Because the module graph cannot resolve,go getfor grpc aborted too, which is why this advisory could not be remediated without fixing the pin first.Repointed to the latest published revision,
v0.0.0-20260730214850-66dd27031dd3(this neededgo mod edit -require=, sincego getresolves the existing broken pin before applying an upgrade).Test plan
go build ./...— passes (fails on clean master, see above)go vet ./...— passes< 1.82.1affected rangegodirective unchangedNotes
Only
snippets/golang/go.modandgo.sumchange. The transitive upgrades (otel contrib, x/oauth2, genproto, envoy) are MVS consequences of the two direct bumps.