Security: Fix multiple Go dependency CVEs (release-v0.49.x) - #2905
Closed
theakshaypant wants to merge 1 commit into
Closed
Security: Fix multiple Go dependency CVEs (release-v0.49.x)#2905theakshaypant wants to merge 1 commit into
theakshaypant wants to merge 1 commit into
Conversation
- Upgrade Go from 1.26.4 to 1.26.5 (fixes CVE-2026-39822 in stdlib) - Upgrade golang.org/x/text from 0.38.0 to 0.39.0 (fixes CVE-2026-56852) - Upgrade google.golang.org/grpc from 1.81.1 to 1.82.1 (fixes GHSA-hrxh-6v49-42gf) - Upgrade github.com/google/cel-go from 0.28.1 to 0.29.0 (fixes GHSA-gcjh-h69q-9w9g) - Run go mod tidy + go mod vendor to sync all dependencies - All unit tests pass Resolves: SRVKP-13183, SRVKP-13182, SRVKP-13192, SRVKP-11965 Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
|
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## release-v0.49.x #2905 +/- ##
==================================================
Coverage ? 61.54%
==================================================
Files ? 213
Lines ? 17510
Branches ? 0
==================================================
Hits ? 10776
Misses ? 5913
Partials ? 821
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Harness. 🚀 New features to boost your workflow:
|
Member
Author
|
Not needed |
theakshaypant
deleted the
fix/cve-2026-go-deps-release-v0.49.x-attempt-1
branch
August 5, 2026 07:39
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
This PR updates Go and several Go module dependencies on the
release-v0.49.xbranch to address multiple Important/Critical CVEs identified in the GovCloud FedRAMP compliance scan.CVE Details
Changes Made
go.mod: Go version1.26.4→1.26.5go.mod:golang.org/x/textv0.38.0→v0.39.0go.mod:google.golang.org/grpcv1.81.1→v1.82.1go.mod:github.com/google/cel-gov0.28.1→v0.29.0vendor/: Updated viago mod vendorTest Results
Status: ✅ PASSED
Test command:
GOTOOLCHAIN=go1.26.5 go test ./pkg/...Result: All unit tests pass
Build:
GOTOOLCHAIN=go1.26.5 go build ./...succeeds with no errorsVerification Steps
Breaking Changes
None expected. All upgrades are within the same minor version line (patch releases or minor bumps with backward-compatible APIs).
Risk Assessment
Risk: Low — these are security patch releases with no breaking API changes. Build succeeds and all unit tests pass.
Jira Issues
Resolves: SRVKP-13183, SRVKP-13182, SRVKP-13192, SRVKP-11965
🤖 Generated by CVE Fixer Workflow