Skip to content

Use lockfileMaintence for non-breaking changes #7629

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
Merged
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
19 changes: 15 additions & 4 deletions renovate.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,18 +5,29 @@
"prConcurrentLimit": 20,
"prHourlyLimit": 200,
"labels": ["dependencies"],
"lockFileMaintenance": {
"enabled": true,
"recreateWhen": "always",
"rebaseStalePrs": true,
"branchTopic": "Cargo.lock update",
"commitMessageAction": "Update Cargo.lock",
"schedule": ["before 4am on monday"],
"prBodyDefinitions": {
"Change": "All locks refreshed"
}
},
"packageRules": [
{
"matchUpdateTypes": ["patch"],
"matchCurrentVersion": "<1.0.0",
"groupName": "Minor Updates",
"description": "Patch updates to 0.x.y crates are treated as compatible by cargo"
"enabled": false,
"description": "Patch updates to 0.x.y crates are compatible and handled by lockFileMaintenance"
},
{
"matchUpdateTypes": ["minor", "patch"],
"matchCurrentVersion": ">=1.0.0",
"groupName": "Minor Updates",
"description": "Minor and patch updates to x.y.z crates are treated as compatible by cargo"
"enabled": false,
"description": "Minor and patch updates to x.y.z crates are compatible and handled by lockFileMaintenance"
},
{
"description": "IGNORE: Windows 0.59 is pending on https://github.com/gfx-rs/wgpu/pull/6876",
Expand Down