diff --git a/.npmrc b/.npmrc index 9cf9495..5fd054a 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 54c51ce..84106cd 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -61,3 +61,9 @@ packages = ["ibm_platform_services"] [tool.black] line-length = 120 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 9995802..e0f86ff 100644 --- a/renovate.json +++ b/renovate.json @@ -1,4 +1,19 @@ { "$schema": "https://docs.renovatebot.com/renovate-schema.json", - "extends": ["config:recommended"] -} \ No newline at end of file + "extends": ["config:recommended"], + "prConcurrentLimit": 4, + "reviewers": ["pyrooka", "diatrcz", "Andris28"], + "packageRules": [ + { + "matchManagers": ["pep621"], + "matchDatasources": ["pypi"], + "minimumReleaseAge": "3 days", + "description": "Wait 3 days before updating Python dependencies" + }, + { + "matchManagers": ["npm"], + "extends": ["security:minimumReleaseAgeNpm"], + "description": "Wait 3 days before updating semantic release dependencies" + } + ] +}