Skip to content

Commit 8a45923

Browse files
authoredSep 15, 2020
chore: fix renovate configuration (#26891)
1 parent 933c43d commit 8a45923

File tree

1 file changed

+8
-11
lines changed

1 file changed

+8
-11
lines changed
 

‎renovate.json5

+8-11
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,7 @@
1111
":maintainLockFilesDisabled",
1212
":disableRateLimiting",
1313
],
14-
includePaths: [
15-
"package.json",
16-
"packages/**",
17-
"starters/**",
18-
"examples/**",
19-
],
14+
includePaths: ["package.json", "packages/**", "starters/**", "examples/**"],
2015
ignorePaths: [
2116
"**/node_modules/**",
2217
"**/bower_components/**",
@@ -27,14 +22,16 @@
2722
"**/__fixtures__/**",
2823
],
2924
major: {
30-
masterIssueApproval: true,
25+
dependencyDashboardApproval: true,
3126
},
32-
masterIssue: true,
27+
dependencyDashboard: true,
3328
ignoreDeps: ["react", "react-dom"],
3429
rangeStrategy: "bump",
3530
bumpVersion: null,
3631
semanticCommitScope: null,
3732
prHourlyLimit: 0,
33+
// Wait for 3 days to update a package so we can check if it's stable
34+
stabilityDays: 3,
3835
packageRules: [
3936
// these rules define group names
4037
{
@@ -83,7 +80,7 @@
8380
// not grouped
8481
groupName: "packages (<1.0.0 minor)",
8582
paths: ["package.json", "packages/**"],
86-
masterIssueApproval: true,
83+
dependencyDashboardApproval: true,
8784
updateTypes: ["minor"],
8885
packageNames: [
8986
// 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,7 +116,7 @@
119116
// not grouped
120117
groupName: "starters and examples (<1.0.0 minor)",
121118
paths: ["starters/**", "examples/**"],
122-
masterIssueApproval: true,
119+
dependencyDashboardApproval: true,
123120
updateTypes: ["minor"],
124121
packageNames: [
125122
// 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,7 +153,7 @@
156153
groupName: "types",
157154
packagePatterns: ["^@types"],
158155
// only upgrade types with approval as they can break transitives
159-
masterIssueApproval: true,
156+
dependencyDashboardApproval: true,
160157
},
161158
],
162159
timezone: "GMT",

0 commit comments

Comments
 (0)
Please sign in to comment.