fix: bump klauspost/compress and grpc to patch GO-2026-5841 and GO-2026-6061 - #337
Open
claude[bot] wants to merge 3 commits into
Open
fix: bump klauspost/compress and grpc to patch GO-2026-5841 and GO-2026-6061#337claude[bot] wants to merge 3 commits into
claude[bot] wants to merge 3 commits into
Conversation
saifsmailbox98
marked this pull request as ready for review
July 28, 2026 05:03
Contributor
|
| Filename | Overview |
|---|---|
| go.mod | Updates the targeted indirect dependencies and compatible transitive requirements; no concrete changed-code failure was identified. |
| go.sum | Adds checksums corresponding to the upgraded dependency graph without altering application behavior directly. |
Reviews (1): Last reviewed commit: "fix: bump klauspost/compress and grpc to..." | Re-trigger Greptile
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.
Requested by Saifur Rahman · Slack thread
Description 📣
Before: The Go Vulnerability Scan CI job (
govulncheck) fails on every push tomainwith:After:
govulncheck's module scan clears both advisories, so the job passes.What changed: Bumped two indirect dependencies to the versions that patch the flagged advisories:
github.com/klauspost/compressv1.17.8 → v1.18.7 (fixes GO-2026-5841)google.golang.org/grpcv1.79.3 → v1.82.1 (fixes GO-2026-6061)The grpc bump pulls in three unavoidable transitive updates required to compile (
golang.org/x/oauth2v0.35.0→v0.36.0 and twogoogle.golang.org/genproto/googleapis/{api,rpc}timestamps). The diff is limited togo.modandgo.sum(+29/-5); the workflow allowlist was intentionally NOT touched, since the workflow reserves it for advisories with no available fix.Type ✨
Tests 🛠️
go build ./...passes locally.Generated by Claude Code