|
1 | 1 | { |
2 | 2 | "$schema": "https://docs.renovatebot.com/renovate-schema.json", |
3 | | - "extends": ["config:recommended", "schedule:weekly"], |
| 3 | + "extends": [ |
| 4 | + "config:recommended", |
| 5 | + "schedule:weekly" |
| 6 | + ], |
4 | 7 | "dependencyDashboard": true, |
5 | 8 | "prConcurrentLimit": 20, |
6 | 9 | "prHourlyLimit": 200, |
7 | | - "labels": ["dependencies"], |
| 10 | + "labels": [ |
| 11 | + "dependencies" |
| 12 | + ], |
8 | 13 | "lockFileMaintenance": { |
9 | 14 | "enabled": true, |
10 | 15 | "recreateWhen": "always", |
11 | | - "rebaseStalePrs": true, |
| 16 | + "rebaseWhen": "behind-base-branch", |
12 | 17 | "branchTopic": "Cargo.lock update", |
13 | 18 | "commitMessageAction": "Update Cargo.lock", |
14 | | - "schedule": ["before 4am on monday"], |
| 19 | + "schedule": [ |
| 20 | + "before 4am on monday" |
| 21 | + ], |
15 | 22 | "prBodyDefinitions": { |
16 | 23 | "Change": "All locks refreshed" |
17 | 24 | } |
18 | 25 | }, |
19 | 26 | "packageRules": [ |
20 | 27 | { |
21 | | - "matchUpdateTypes": ["patch"], |
| 28 | + "matchUpdateTypes": [ |
| 29 | + "patch" |
| 30 | + ], |
22 | 31 | "matchCurrentVersion": "<1.0.0", |
23 | 32 | "enabled": false, |
24 | 33 | "description": "Patch updates to 0.x.y crates are compatible and handled by lockFileMaintenance" |
25 | 34 | }, |
26 | 35 | { |
27 | | - "matchUpdateTypes": ["minor", "patch"], |
| 36 | + "matchUpdateTypes": [ |
| 37 | + "minor", |
| 38 | + "patch" |
| 39 | + ], |
28 | 40 | "matchCurrentVersion": ">=1.0.0", |
29 | 41 | "enabled": false, |
30 | 42 | "description": "Minor and patch updates to x.y.z crates are compatible and handled by lockFileMaintenance" |
31 | 43 | }, |
32 | 44 | { |
33 | 45 | "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 | + ], |
35 | 50 | "matchCurrentVersion": "<0.59.0", |
36 | 51 | "enabled": false |
37 | 52 | }, |
38 | 53 | { |
39 | 54 | "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 | + ], |
41 | 58 | "matchCurrentVersion": "<0.30.0", |
42 | 59 | "enabled": false |
43 | 60 | }, |
44 | 61 | { |
45 | 62 | "description": "IGNORE: glutin 0.32 depends on winit 0.30", |
46 | | - "matchPackageNames": ["glutin"], |
| 63 | + "matchPackageNames": [ |
| 64 | + "glutin" |
| 65 | + ], |
47 | 66 | "matchCurrentVersion": "<0.32.0", |
48 | 67 | "enabled": false |
49 | 68 | }, |
50 | 69 | { |
51 | 70 | "description": "IGNORE: glutin-winit 0.5 depends on winit 0.30", |
52 | | - "matchPackageNames": ["glutin-winit"], |
| 71 | + "matchPackageNames": [ |
| 72 | + "glutin-winit" |
| 73 | + ], |
53 | 74 | "matchCurrentVersion": "<0.5.0", |
54 | 75 | "enabled": false |
55 | 76 | }, |
56 | 77 | { |
57 | 78 | "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 | + ], |
59 | 82 | "matchCurrentVersion": "<0.6.0", |
60 | 83 | "enabled": false |
61 | 84 | }, |
62 | 85 | { |
63 | 86 | "description": "IGNORE: libfuzzer-sys 0.4.8 has a broken build on Windows.", |
64 | | - "matchPackageNames": ["libfuzzer-sys"], |
| 87 | + "matchPackageNames": [ |
| 88 | + "libfuzzer-sys" |
| 89 | + ], |
65 | 90 | "matchCurrentVersion": "<0.5.0", |
66 | 91 | "enabled": false |
67 | 92 | }, |
68 | 93 | { |
69 | 94 | "description": "PERMA IGNORE: rustc-hash 2.0 is a different algorithm.", |
70 | | - "matchPackageNames": ["rustc-hash"], |
| 95 | + "matchPackageNames": [ |
| 96 | + "rustc-hash" |
| 97 | + ], |
71 | 98 | "matchCurrentVersion": "<2", |
72 | 99 | "enabled": false |
73 | 100 | }, |
74 | 101 | { |
75 | 102 | "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 | + ], |
77 | 106 | "enabled": false |
78 | 107 | } |
79 | 108 | ] |
|
0 commit comments