From 878791927cba7b8aea288a78dc90c6b635624b8f Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Sun, 8 Jun 2025 14:32:13 +0000 Subject: [PATCH 1/4] Add renovate.json --- renovate.json | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 renovate.json diff --git a/renovate.json b/renovate.json new file mode 100644 index 000000000..93afd4a43 --- /dev/null +++ b/renovate.json @@ -0,0 +1,6 @@ +{ + "$schema": "https://docs.renovatebot.com/renovate-schema.json", + "extends": [ + "config:recommended" + ] +} From ce40db214f6c61d65a7da61a3c67508a9e7c75f0 Mon Sep 17 00:00:00 2001 From: Mihai Criveti Date: Sun, 8 Jun 2025 15:46:02 +0100 Subject: [PATCH 2/4] Update renovate.json Custom config for renovate --- renovate.json | 53 +++++++++++++++++++++++++++++++++++++++++++++++---- 1 file changed, 49 insertions(+), 4 deletions(-) diff --git a/renovate.json b/renovate.json index 93afd4a43..3c5d73311 100644 --- a/renovate.json +++ b/renovate.json @@ -1,6 +1,51 @@ { - "$schema": "https://docs.renovatebot.com/renovate-schema.json", - "extends": [ - "config:recommended" - ] + "$schema": "https://docs.renovatebot.com/renovate-schema.json", + "extends": [ + "config:base", + ":weekly" + ], + "prHourlyLimit": 1, + "prConcurrentLimit": 1, + "dependencyDashboard": true, + "prCreation": "not-pending", + "rebaseWhen": "behind-base-branch", + "packageRules": [ + { + "description": "🚫 Never bump Python major", + "matchPackageNames": [ + "python", + "python/**" + ], + "matchManagers": [ + "pip_requirements", + "dockerfile", + "docker-compose", + "github-actions" + ], + "matchUpdateTypes": [ + "major" + ], + "enabled": false + }, + { + "description": "🚫 Pin CodeMirror to 5.x", + "matchPackageNames": [ + "codemirror" + ], + "matchUpdateTypes": [ + "major" + ], + "enabled": false + }, + { + "description": "🚫 Pin Tailwind to 2.x", + "matchPackageNames": [ + "tailwindcss" + ], + "matchUpdateTypes": [ + "major" + ], + "enabled": false + } + ] } From 11fb69a7fc998f5b752fbe7800259fc57bd81bef Mon Sep 17 00:00:00 2001 From: Mihai Criveti Date: Sun, 8 Jun 2025 15:51:53 +0100 Subject: [PATCH 3/4] Update renovate.json --- renovate.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/renovate.json b/renovate.json index 3c5d73311..f118aa05d 100644 --- a/renovate.json +++ b/renovate.json @@ -2,7 +2,7 @@ "$schema": "https://docs.renovatebot.com/renovate-schema.json", "extends": [ "config:base", - ":weekly" + "schedule:daily" ], "prHourlyLimit": 1, "prConcurrentLimit": 1, From 74359347c4ef5aaca36ff95a0d88ba03f8206317 Mon Sep 17 00:00:00 2001 From: Mihai Criveti Date: Sun, 8 Jun 2025 15:58:31 +0100 Subject: [PATCH 4/4] Update renovate.json Fix renovate config --- renovate.json | 30 +++++++----------------------- 1 file changed, 7 insertions(+), 23 deletions(-) diff --git a/renovate.json b/renovate.json index f118aa05d..6b90f758e 100644 --- a/renovate.json +++ b/renovate.json @@ -11,41 +11,25 @@ "rebaseWhen": "behind-base-branch", "packageRules": [ { - "description": "🚫 Never bump Python major", + "description": "🚫 Block Python updates beyond 3.12", "matchPackageNames": [ - "python", - "python/**" + "python" ], - "matchManagers": [ - "pip_requirements", - "dockerfile", - "docker-compose", - "github-actions" - ], - "matchUpdateTypes": [ - "major" - ], - "enabled": false + "allowedVersions": "<=3.12" }, { - "description": "🚫 Pin CodeMirror to 5.x", + "description": "🚫 Stay on CodeMirror 5.x", "matchPackageNames": [ "codemirror" ], - "matchUpdateTypes": [ - "major" - ], - "enabled": false + "allowedVersions": "<6.0.0" }, { - "description": "🚫 Pin Tailwind to 2.x", + "description": "🚫 Stay on Tailwind CSS 2.x", "matchPackageNames": [ "tailwindcss" ], - "matchUpdateTypes": [ - "major" - ], - "enabled": false + "allowedVersions": "<3.0.0" } ] }