Skip to content

Commit 273072d

Browse files
chore(config): migrate config renovate.json (#7636)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
1 parent b93b559 commit 273072d

File tree

1 file changed

+43
-14
lines changed

1 file changed

+43
-14
lines changed

renovate.json

+43-14
Original file line numberDiff line numberDiff line change
@@ -1,79 +1,108 @@
11
{
22
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
3-
"extends": ["config:recommended", "schedule:weekly"],
3+
"extends": [
4+
"config:recommended",
5+
"schedule:weekly"
6+
],
47
"dependencyDashboard": true,
58
"prConcurrentLimit": 20,
69
"prHourlyLimit": 200,
7-
"labels": ["dependencies"],
10+
"labels": [
11+
"dependencies"
12+
],
813
"lockFileMaintenance": {
914
"enabled": true,
1015
"recreateWhen": "always",
11-
"rebaseStalePrs": true,
16+
"rebaseWhen": "behind-base-branch",
1217
"branchTopic": "Cargo.lock update",
1318
"commitMessageAction": "Update Cargo.lock",
14-
"schedule": ["before 4am on monday"],
19+
"schedule": [
20+
"before 4am on monday"
21+
],
1522
"prBodyDefinitions": {
1623
"Change": "All locks refreshed"
1724
}
1825
},
1926
"packageRules": [
2027
{
21-
"matchUpdateTypes": ["patch"],
28+
"matchUpdateTypes": [
29+
"patch"
30+
],
2231
"matchCurrentVersion": "<1.0.0",
2332
"enabled": false,
2433
"description": "Patch updates to 0.x.y crates are compatible and handled by lockFileMaintenance"
2534
},
2635
{
27-
"matchUpdateTypes": ["minor", "patch"],
36+
"matchUpdateTypes": [
37+
"minor",
38+
"patch"
39+
],
2840
"matchCurrentVersion": ">=1.0.0",
2941
"enabled": false,
3042
"description": "Minor and patch updates to x.y.z crates are compatible and handled by lockFileMaintenance"
3143
},
3244
{
3345
"description": "IGNORE: Windows 0.59 is pending on https://github.com/gfx-rs/wgpu/pull/6876",
34-
"matchPackageNames": ["windows", "windows-core"],
46+
"matchPackageNames": [
47+
"windows",
48+
"windows-core"
49+
],
3550
"matchCurrentVersion": "<0.59.0",
3651
"enabled": false
3752
},
3853
{
3954
"description": "IGNORE: Winit 0.30 is pending a major refactor. https://github.com/gfx-rs/wgpu/pull/5709",
40-
"matchPackageNames": ["winit"],
55+
"matchPackageNames": [
56+
"winit"
57+
],
4158
"matchCurrentVersion": "<0.30.0",
4259
"enabled": false
4360
},
4461
{
4562
"description": "IGNORE: glutin 0.32 depends on winit 0.30",
46-
"matchPackageNames": ["glutin"],
63+
"matchPackageNames": [
64+
"glutin"
65+
],
4766
"matchCurrentVersion": "<0.32.0",
4867
"enabled": false
4968
},
5069
{
5170
"description": "IGNORE: glutin-winit 0.5 depends on winit 0.30",
52-
"matchPackageNames": ["glutin-winit"],
71+
"matchPackageNames": [
72+
"glutin-winit"
73+
],
5374
"matchCurrentVersion": "<0.5.0",
5475
"enabled": false
5576
},
5677
{
5778
"description": "IGNORE: glutin 0.32 depends on winit 0.30, and previous version depend on rwh 0.5",
58-
"matchPackageNames": ["raw-window-handle"],
79+
"matchPackageNames": [
80+
"raw-window-handle"
81+
],
5982
"matchCurrentVersion": "<0.6.0",
6083
"enabled": false
6184
},
6285
{
6386
"description": "IGNORE: libfuzzer-sys 0.4.8 has a broken build on Windows.",
64-
"matchPackageNames": ["libfuzzer-sys"],
87+
"matchPackageNames": [
88+
"libfuzzer-sys"
89+
],
6590
"matchCurrentVersion": "<0.5.0",
6691
"enabled": false
6792
},
6893
{
6994
"description": "PERMA IGNORE: rustc-hash 2.0 is a different algorithm.",
70-
"matchPackageNames": ["rustc-hash"],
95+
"matchPackageNames": [
96+
"rustc-hash"
97+
],
7198
"matchCurrentVersion": "<2",
7299
"enabled": false
73100
},
74101
{
75102
"description": "PERMA IGNORE: Deno packages are rolled up explicitly by the Deno team, in lockstep with deno_webgpu.",
76-
"matchPackageNames": ["deno_*"],
103+
"matchPackageNames": [
104+
"deno_*"
105+
],
77106
"enabled": false
78107
}
79108
]

0 commit comments

Comments
 (0)