From bbd07eecaa09830f4e111f85d3c768b3d66b26db Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20H=C3=B8ydahl?= Date: Thu, 13 Aug 2026 17:36:21 +0200 Subject: [PATCH 1/2] Renovate: match consistent-versions plugin by depName so the 2.32.0 pin applies For Gradle plugins matchPackageNames matches the plugin marker artifact (com.palantir.consistent-versions:com.palantir.consistent-versions.gradle.plugin), not the plugin id, so the pin never matched and solrbot opened PRs like #4734. The plugin id is the depName, so use matchDepNames instead. --- .github/renovate.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/renovate.json b/.github/renovate.json index 29900462983..f0a9db502ed 100644 --- a/.github/renovate.json +++ b/.github/renovate.json @@ -12,7 +12,7 @@ "packageRules": [ { "description": "Pin com.palantir.consistent-versions to 2.32.0; newer versions require Java 17 but branch_9x builds with Java 11", - "matchPackageNames": ["com.palantir.consistent-versions"], + "matchDepNames": ["com.palantir.consistent-versions"], "allowedVersions": "2.32.0" }, { From 8ea1b9d8b9a44097ac56d895b950724983de3269 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20H=C3=B8ydahl?= Date: Thu, 13 Aug 2026 17:36:31 +0200 Subject: [PATCH 2/2] Renovate: replace deprecated matchPackagePrefixes with matchPackageNames globs Same semantics; matchPackagePrefixes is deprecated and only works via Renovate's automatic config migration. --- .github/renovate.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/renovate.json b/.github/renovate.json index f0a9db502ed..795e56e50aa 100644 --- a/.github/renovate.json +++ b/.github/renovate.json @@ -22,17 +22,17 @@ }, { "description": "Keep org.apache.hadoop on 3.4.x; 3.5.0 requires Java 17 but branch_9x builds with Java 11", - "matchPackagePrefixes": ["org.apache.hadoop:"], + "matchPackageNames": ["org.apache.hadoop:**"], "allowedVersions": "<3.5.0" }, { "description": "Pin dev.langchain4j to 0.35.0; 0.36.2 requires Java 17 but branch_9x builds with Java 11", - "matchPackagePrefixes": ["dev.langchain4j:"], + "matchPackageNames": ["dev.langchain4j:**"], "allowedVersions": "0.35.0" }, { "description": "Keep Error Prone on 2.31.0; the build hard-pins it to 2.31.0 for JDK11 compatibility on branch_9x", - "matchPackagePrefixes": ["com.google.errorprone:"], + "matchPackageNames": ["com.google.errorprone:**"], "allowedVersions": "2.31.0" }, {