|
11 | 11 | ":maintainLockFilesDisabled",
|
12 | 12 | ":disableRateLimiting",
|
13 | 13 | ],
|
14 |
| - includePaths: [ |
15 |
| - "package.json", |
16 |
| - "packages/**", |
17 |
| - "starters/**", |
18 |
| - "examples/**", |
19 |
| - ], |
| 14 | + includePaths: ["package.json", "packages/**", "starters/**", "examples/**"], |
20 | 15 | ignorePaths: [
|
21 | 16 | "**/node_modules/**",
|
22 | 17 | "**/bower_components/**",
|
|
27 | 22 | "**/__fixtures__/**",
|
28 | 23 | ],
|
29 | 24 | major: {
|
30 |
| - masterIssueApproval: true, |
| 25 | + dependencyDashboardApproval: true, |
31 | 26 | },
|
32 |
| - masterIssue: true, |
| 27 | + dependencyDashboard: true, |
33 | 28 | ignoreDeps: ["react", "react-dom"],
|
34 | 29 | rangeStrategy: "bump",
|
35 | 30 | bumpVersion: null,
|
36 | 31 | semanticCommitScope: null,
|
37 | 32 | prHourlyLimit: 0,
|
| 33 | + // Wait for 3 days to update a package so we can check if it's stable |
| 34 | + stabilityDays: 3, |
38 | 35 | packageRules: [
|
39 | 36 | // these rules define group names
|
40 | 37 | {
|
|
83 | 80 | // not grouped
|
84 | 81 | groupName: "packages (<1.0.0 minor)",
|
85 | 82 | paths: ["package.json", "packages/**"],
|
86 |
| - masterIssueApproval: true, |
| 83 | + dependencyDashboardApproval: true, |
87 | 84 | updateTypes: ["minor"],
|
88 | 85 | packageNames: [
|
89 | 86 | // below is list of packages that use 0.X version range, any minor bump there can contain breaking changes, so we just ignore minor bumps for those packages and will need to bump them manually
|
|
119 | 116 | // not grouped
|
120 | 117 | groupName: "starters and examples (<1.0.0 minor)",
|
121 | 118 | paths: ["starters/**", "examples/**"],
|
122 |
| - masterIssueApproval: true, |
| 119 | + dependencyDashboardApproval: true, |
123 | 120 | updateTypes: ["minor"],
|
124 | 121 | packageNames: [
|
125 | 122 | // below is list of packages that use 0.X version range, any minor bump there can contain breaking changes, so we just ignore minor bumps for those packages and will need to bump them manually
|
|
156 | 153 | groupName: "types",
|
157 | 154 | packagePatterns: ["^@types"],
|
158 | 155 | // only upgrade types with approval as they can break transitives
|
159 |
| - masterIssueApproval: true, |
| 156 | + dependencyDashboardApproval: true, |
160 | 157 | },
|
161 | 158 | ],
|
162 | 159 | timezone: "GMT",
|
|
0 commit comments