renovate: Treat git-ref Cargo dependency bumps like major version bumps - #236
Merged
Merged
Conversation
Cargo dependencies pinned via `git = "...", rev = "<sha>"` (e.g. bootc-mount in bcvk) have no semver, so Renovate always classifies an upstream change as a "digest" update rather than major/minor/patch. Without this rule those bumps get silently folded into the weekly grouped "Rust" PR, even though a git-ref bump can carry arbitrary breaking changes just like a major version bump does. Clear the groupName for these updates so each dependency gets its own individual PR, same as a major version bump getting pulled out of the routine grouped update. Verified via dry-run against the real renovate:42 image that two pending git-ref updates land in separate branches, not a single shared PR. Assisted-by: AI Signed-off-by: Colin Walters <[email protected]>
cgwalters
force-pushed
the
split-digest-bumps
branch
from
July 28, 2026 18:07
12e44ea to
709cdfc
Compare
jeckersb
approved these changes
Jul 28, 2026
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.
Cargo dependencies pinned via
git = "...", rev = "<sha>"(e.g. bootc-mount in bcvk) have no semver, so Renovate always classifies an upstream change as a "digest" update rather than major/minor/patch. Without this rule those bumps get silently folded into the weekly grouped "Rust" PR, even though a git-ref bump can carry arbitrary breaking changes just like a major version bump does.Clear the groupName for these updates so each dependency gets its own individual PR, same as a major version bump getting pulled out of the routine grouped update. Verified via dry-run against the real renovate:42 image that two pending git-ref updates land in separate branches, not a single shared PR.
Assisted-by: AI