From 31f33dd903a95a98f27e7037dec132db1ee638a3 Mon Sep 17 00:00:00 2001 From: jupblb Date: Mon, 1 Jun 2026 21:00:08 +0200 Subject: [PATCH 1/2] Disable Renovate for com.google.protobuf:* Maven deps --- .github/renovate.json | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/.github/renovate.json b/.github/renovate.json index 83d13088..614c3b38 100644 --- a/.github/renovate.json +++ b/.github/renovate.json @@ -7,5 +7,13 @@ ], "nix": { "enabled": true - } + }, + "packageRules": [ + { + "description": "Bump manually in lock-step with flake.nix's protoc.", + "matchManagers": ["maven"], + "matchPackageNames": ["com.google.protobuf:*"], + "enabled": false + } + ] } From fe985a684a9174d1f97753d8a45bc39cf095e66d Mon Sep 17 00:00:00 2001 From: jupblb Date: Mon, 1 Jun 2026 21:08:31 +0200 Subject: [PATCH 2/2] Pin Renovate to Kotlin 2.0.x for low consumer floor --- .github/renovate.json | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/renovate.json b/.github/renovate.json index 614c3b38..489e04f9 100644 --- a/.github/renovate.json +++ b/.github/renovate.json @@ -14,6 +14,12 @@ "matchManagers": ["maven"], "matchPackageNames": ["com.google.protobuf:*"], "enabled": false + }, + { + "description": "Stay on Kotlin 2.0.x to keep the consumer floor low.", + "matchManagers": ["maven"], + "matchPackageNames": ["org.jetbrains.kotlin:*"], + "allowedVersions": "<2.1.0" } ] }