Fix Renovate not applying logback patch versions (#10500)

This commit is contained in:
Trask Stalnaker 2024-02-11 23:08:53 -08:00 committed by GitHub
parent 57438e6557
commit 887eb9d785
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 5 additions and 0 deletions

View File

@ -5,6 +5,11 @@
], ],
"ignorePaths": ["instrumentation/**"], "ignorePaths": ["instrumentation/**"],
"baseBranches": ["main", "release/v1.32.x"], "baseBranches": ["main", "release/v1.32.x"],
// needed in order to get patch-only updates in package rules below
// unfortunately you can't combine updateTypes and separateMinorPatch in the same package rule
// so we have to apply it globally here, see
// https://github.com/renovatebot/renovate/discussions/8399#discussioncomment-305798
"separateMinorPatch": true,
"packageRules": [ "packageRules": [
{ {
"matchPackagePrefixes": ["ch.qos.logback:"], "matchPackagePrefixes": ["ch.qos.logback:"],