From 90eae74bd596aa32a496739678bfba7a27b6ec3e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A1s=20Felleg?= Date: Thu, 18 Jun 2026 15:11:16 +0200 Subject: [PATCH 1/4] build: use dependency cooldown logic MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: András Felleg --- pyproject.toml | 3 +++ renovate.json | 13 +++++++++++-- 2 files changed, 14 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index f4f03b0b..8afd9e78 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -61,3 +61,6 @@ packages = ["ibm_platform_services"] [tool.black] line-length = 120 skip-string-normalization = true + +[tool.pip.install] +uploaded-prior-to = "P3D" diff --git a/renovate.json b/renovate.json index 9995802c..3437e114 100644 --- a/renovate.json +++ b/renovate.json @@ -1,4 +1,13 @@ { "$schema": "https://docs.renovatebot.com/renovate-schema.json", - "extends": ["config:recommended"] -} \ No newline at end of file + "extends": ["config:recommended"], + "packageRules": [ + { + "internalChecksFilter": "strict", + "matchManagers": ["pep621"], + "matchDatasources": ["pypi"], + "minimumReleaseAge": "3 days", + "description": "Wait 3 days before updating Python dependencies" + } + ] +} From a82b37bbd61c975e7373ce9dea6f3aed4fe4ee18 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A1s=20Felleg?= Date: Mon, 22 Jun 2026 12:49:47 +0200 Subject: [PATCH 2/4] build: extend renovate config MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: András Felleg --- renovate.json | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/renovate.json b/renovate.json index 3437e114..fc132da5 100644 --- a/renovate.json +++ b/renovate.json @@ -1,13 +1,18 @@ { "$schema": "https://docs.renovatebot.com/renovate-schema.json", "extends": ["config:recommended"], - "packageRules": [ + "prConcurrentLimit": 4, + "reviewers": ["Norbert-Biczo", "Lidia-Tarcza", "Andras-Felleg"], + "packageRules": [ { - "internalChecksFilter": "strict", "matchManagers": ["pep621"], "matchDatasources": ["pypi"], "minimumReleaseAge": "3 days", "description": "Wait 3 days before updating Python dependencies" + }, + { + "matchManagers": ["npm"], + "extends": ["security:minimumReleaseAgeNpm"] } ] } From 8543792eabaaf8ed3ea6fa5f0c9f61505fd66512 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A1s=20Felleg?= Date: Mon, 22 Jun 2026 21:17:31 +0200 Subject: [PATCH 3/4] fix: correct reviewers in config MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: András Felleg --- renovate.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/renovate.json b/renovate.json index fc132da5..6488d362 100644 --- a/renovate.json +++ b/renovate.json @@ -2,7 +2,7 @@ "$schema": "https://docs.renovatebot.com/renovate-schema.json", "extends": ["config:recommended"], "prConcurrentLimit": 4, - "reviewers": ["Norbert-Biczo", "Lidia-Tarcza", "Andras-Felleg"], + "reviewers": ["pyrooka", "diatrcz", "Andris28"], "packageRules": [ { "matchManagers": ["pep621"], From eb88137904f588a6851538a93c2b724c242637e3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A1s=20Felleg?= Date: Fri, 26 Jun 2026 10:05:02 +0200 Subject: [PATCH 4/4] fix: add missed configs MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: András Felleg --- .npmrc | 3 ++- pyproject.toml | 3 +++ renovate.json | 3 ++- 3 files changed, 7 insertions(+), 2 deletions(-) diff --git a/.npmrc b/.npmrc index 9cf94950..5fd054a7 100644 --- a/.npmrc +++ b/.npmrc @@ -1 +1,2 @@ -package-lock=false \ No newline at end of file +package-lock=false +minimummin-release-age=3 diff --git a/pyproject.toml b/pyproject.toml index 8afd9e78..6688f409 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -64,3 +64,6 @@ skip-string-normalization = true [tool.pip.install] uploaded-prior-to = "P3D" + +[tool.uv] +exclude-newer = "3 days" diff --git a/renovate.json b/renovate.json index 6488d362..e0f86ff1 100644 --- a/renovate.json +++ b/renovate.json @@ -12,7 +12,8 @@ }, { "matchManagers": ["npm"], - "extends": ["security:minimumReleaseAgeNpm"] + "extends": ["security:minimumReleaseAgeNpm"], + "description": "Wait 3 days before updating semantic release dependencies" } ] }