This works for devDependencies, but is not doing the right thing for dependencies. Renovate is making separate MRs for every dependency update. Any help would be appreciated.
You need to add "separateMinorPatch": true either to your entire config or specifically for dependencies, otherwise all non-major updateTypes will be treated as "minor".
Which Renovate are you using?
WhiteSource Renovate
Which platform are you using?
GitLab self-hosted
What would you like to do?
I would like to group together all
x.*.*
updates for devDependencies, and separately group together allx.y.*
updates for dependencies.My current attempt looks like
This works for
devDependencies
, but is not doing the right thing fordependencies
. Renovate is making separate MRs for everydependency
update. Any help would be appreciated.