Group with "allowedVersion": "<13.0.0"
still showing major upgrades to v13 for approval in dependency dashboard. Expected behavior or misconfiguration?
#30967
-
What would you like help with?I would like help with my configuration How are you running Renovate?Self-hosted If you're self-hosting Renovate, tell us which platform (GitHub, GitLab, etc) and which version of Renovate.GitLab Community include:
- remote: https://gitlab.com/renovate-bot/renovate-runner/-/raw/v18.23.0/templates/renovate.gitlab-ci.yml Please tell us more about your question or problemI have config like: {
"extends": [
"config:recommended",
"docker:pinDigests",
"mergeConfidence:all-badges",
":automergeMinor",
":automergeDigest",
":automergeTesters",
":automergeLinters",
":automergeTypes",
":rebaseStalePrs",
":prHourlyLimit1",
":maintainLockFilesWeekly",
":labels(dependencies)"
],
"major": {
"dependencyDashboardApproval": true
},
"rangeStrategy": "bump",
"packageRules": [
{
"description": "Allow MariaDB up to 10.11",
"matchDatasources": ["docker"],
"matchPackageNames": ["amd64/mariadb"],
"allowedVersions": "<11.0"
},
{
"description": "Allow only Solr docker versions compatible with TYPO3 12",
"matchDatasources": ["docker"],
"matchPackageNames": ["typo3solr/ext-solr"],
"allowedVersions": "<13.0.0"
},
{
"description": "Allow only Solr packagist versions compatible with TYPO3 12",
"matchDepTypes": ["require", "require-dev"],
"matchPackageNames": ["apache-solr-for-typo3/solr"],
"allowedVersions": "<13.0.0"
},
{
"description": "Group TYPO3 CMS packages",
"matchDatasources": ["packagist"],
"matchPackageNames": ["/^typo3\\/cms-.+$/"],
"groupName": "TYPO3 CMS",
"allowedVersion": "<13.0.0"
}
]
} Actual behavior: Despite the last ## Pending Approval
These branches will be created by Renovate only once you click their checkbox below.
- [ ] <!-- approve-branch=renovate/major-typo3-cms -->fix(deps): update typo3 cms to v13 (major) (`typo3/cms-backend`, `typo3/cms-core`, `typo3/cms-extbase`, `typo3/cms-frontend`) Expected behavior (possibly based on a misconception on my part): I would have expected (and I am trying to achieve) that versions outside the Strangely enough, this seems to work with the other package rules for My question is: Is this expected behavior, or result of misconfiguration on my behalf? (Or possibly a bug in combining The regex at Logs (if relevant)No response |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 6 replies
-
Hi there, Get your discussion fixed faster by creating a minimal reproduction. This means a repository dedicated to reproducing this issue with the minimal dependencies and config possible. Before we start working on your issue we need to know exactly what's causing the current behavior. A minimal reproduction helps us with this. Discussions without reproductions are less likely to be converted to Issues. Please follow these steps:
Good luck, The Renovate team |
Beta Was this translation helpful? Give feedback.
-
It doesn't look right to me. If you can reproduce it then we'll take a look. |
Beta Was this translation helpful? Give feedback.
Possible Typo: the last package rules has
allowedVersion
and notallowedVersions
..s
is missing