fix: separate allowedVersions into its own packageRule#8420
Merged
Conversation
Renovate does not allow combining matchUpdateTypes and allowedVersions in the same packageRule. Move the pre-release exclusion filter into a dedicated rule that only uses matchPackageNames + allowedVersions. This fixes the config validation error introduced in #8418. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
Contributor
There was a problem hiding this comment.
Pull request overview
Fixes a Renovate config validation error by separating allowedVersions into its own packageRules entry so it no longer conflicts with matchUpdateTypes, while still applying the pre-release filter via Renovate rule merging.
Changes:
- Added a standalone
packageRulesentry applyingallowedVersions: "!/~(alpha|beta|rc)/"to a specific set of packages. - Removed
allowedVersionsfrom the existing patch and minor rules that usematchUpdateTypes.
Add rule #10 to the renovate.json syntax guardrails in copilot instructions, documenting that matchUpdateTypes and allowedVersions cannot be combined in the same packageRules entry. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
4f267af to
8b708b9
Compare
djsly
approved these changes
Apr 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.
Problem
PR #8418 introduced
allowedVersionscombined withmatchUpdateTypesin the same packageRule, which Renovate does not allow. This caused a config validation error:Fix
Moved
allowedVersions: "!/~(alpha|beta|rc)/"into a separate packageRule that only usesmatchPackageNames. Renovate merges all matching rules, so the version filter still applies to both patch and minor updates for these packages.Validation
matchUpdateTypes+allowedVersions