Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .npmrc
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
package-lock=false
package-lock=false
minimummin-release-age=3
6 changes: 6 additions & 0 deletions pyproject.toml

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I know we don't yet support or use uv but would you mind adding a config for that too? Just to think ahead.

[tool.uv]
exclude-newer = "3 days"

Original file line number Diff line number Diff line change
Expand Up @@ -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"
19 changes: 17 additions & 2 deletions renovate.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,19 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": ["config:recommended"]
}
"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"
}
]
}
Loading