|
6 | 6 | configMigration: true,
|
7 | 7 | dependencyDashboard: false,
|
8 | 8 | ignorePaths: [
|
9 |
| - "**/tests/**", |
| 9 | + '**/tests/**', |
10 | 10 | ],
|
11 | 11 | customManagers: [
|
12 | 12 | {
|
|
18 | 18 | '\bMSRV:1\b.*?(?<currentValue>\\d+\\.\\d+(\\.\\d+)?)',
|
19 | 19 | '(?<currentValue>\\d+\\.\\d+(\\.\\d+)?).*?\bMSRV:1\b',
|
20 | 20 | ],
|
21 |
| - depNameTemplate: 'MSRV:1', // Support 1 version of rustc |
| 21 | + depNameTemplate: 'MSRV:1', |
22 | 22 | packageNameTemplate: 'rust-lang/rust',
|
23 | 23 | datasourceTemplate: 'github-releases',
|
24 | 24 | },
|
|
31 | 31 | '\bMSRV:3\b.*?(?<currentValue>\\d+\\.\\d+(\\.\\d+)?)',
|
32 | 32 | '(?<currentValue>\\d+\\.\\d+(\\.\\d+)?).*?\bMSRV:3\b',
|
33 | 33 | ],
|
34 |
| - depNameTemplate: 'MSRV:3', // Support 3 versions of rustc |
| 34 | + depNameTemplate: 'MSRV:3', |
35 | 35 | packageNameTemplate: 'rust-lang/rust',
|
36 | 36 | datasourceTemplate: 'github-releases',
|
37 | 37 | },
|
|
40 | 40 | {
|
41 | 41 | commitMessageTopic: 'MSRV (1 version)',
|
42 | 42 | matchManagers: [
|
43 |
| - 'regex', |
| 43 | + 'custom.regex', |
44 | 44 | ],
|
45 | 45 | matchPackageNames: [
|
46 | 46 | 'MSRV:1',
|
|
53 | 53 | {
|
54 | 54 | commitMessageTopic: 'MSRV (3 versions)',
|
55 | 55 | matchManagers: [
|
56 |
| - 'regex', |
| 56 | + 'custom.regex', |
57 | 57 | ],
|
58 | 58 | matchPackageNames: [
|
59 | 59 | 'MSRV:3',
|
60 | 60 | ],
|
61 |
| - "extractVersion": "^(?<version>\\d+\\.\\d+)", // Drop the patch version |
| 61 | + extractVersion: '^(?<version>\\d+\\.\\d+)', |
62 | 62 | schedule: [
|
63 | 63 | '* * * * *',
|
64 | 64 | ],
|
65 |
| - minimumReleaseAge: '85 days', // 2 releases back * 6 weeks per release * 7 days per week + 1 |
| 65 | + minimumReleaseAge: '85 days', |
66 | 66 | internalChecksFilter: 'strict',
|
67 | 67 | groupName: 'msrv',
|
68 | 68 | },
|
|
76 | 76 | ],
|
77 | 77 | groupName: 'gix',
|
78 | 78 | },
|
79 |
| - // Goals: |
80 |
| - // - Rollup safe upgrades to reduce CI runner load |
81 |
| - // - Have lockfile and manifest in-sync (implicit rules) |
82 | 79 | {
|
83 | 80 | matchManagers: [
|
84 | 81 | 'cargo',
|
|
0 commit comments