From 887eb9d7852010596bda1f0b125acee8af035055 Mon Sep 17 00:00:00 2001 From: Trask Stalnaker Date: Sun, 11 Feb 2024 23:08:53 -0800 Subject: [PATCH] Fix Renovate not applying logback patch versions (#10500) --- .github/renovate.json5 | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/renovate.json5 b/.github/renovate.json5 index 748bd7b0c7..9121065131 100644 --- a/.github/renovate.json5 +++ b/.github/renovate.json5 @@ -5,6 +5,11 @@ ], "ignorePaths": ["instrumentation/**"], "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": [ { "matchPackagePrefixes": ["ch.qos.logback:"],