chore: Update non-major dependencies - #1563
Merged
Merged
Conversation
Contributor
Author
ℹ️ Artifact update noticeFile name: tests/go.modIn order to perform the update(s) described in the table above, Renovate ran the
Details:
|
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## master #1563 +/- ##
=======================================
Coverage 72.71% 72.71%
=======================================
Files 412 412
Lines 26791 26791
=======================================
Hits 19482 19482
Misses 7307 7307
Partials 2 2 ☔ View full report in Codecov by Harness. 🚀 New features to boost your workflow:
|
renovate
Bot
force-pushed
the
renovate/non-major-dependencies
branch
from
September 21, 2026 23:52
0eeadd9 to
2926e9f
Compare
Contributor
Author
Edited/Blocked NotificationRenovate will not automatically rebase this PR, because it does not recognize the last commit author and assumes somebody else may have edited the PR. You can manually request rebase by checking the rebase/retry box above. |
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
v7.17.1, urfave/cli/v3v3.13.0, and genproto digest updates), keeping the framework on current non-major releases.google.golang.org/grpcis pinned to the patched pre-releasev1.85.0-dev.0.20260825072537-93e31b48545ein both the root andtestsmodules, replacing the vulnerablev1.84.0reported bygovulncheck(GO-2026-6443), so thegovulncheckCI job passes again.allowedVersionsguard ongoogle.golang.org/grpc, so the vulnerablev1.84.0cannot be re-introduced by a future non-major update.Why
Renovate moved
google.golang.org/grpctov1.84.0as part of this non-major batch, and that release is flagged under GO-2026-6443 / CVE-2026-84445, which fails thegovulncheckCI job for the whole branch. gRPC is a direct dependency of the framework, so every application that dials a server throughfacades.Grpc()resolves the same module version.The fix pins both modules to the patched pre-release and adds a Renovate guard so the vulnerable version cannot slip back in. Runtime behavior is unchanged for applications: the same client code keeps working, and it now compiles and connects against a gRPC build without the reported vulnerability.