Skip to content

Commit d4507e0

Browse files
committed
renovate: Fix rangeStrategy for rust updates
This wasn't working before, because the `pinAllExceptPeerDependencies` config overwrote it. By moving it into `packageRules` we can give it priority.
1 parent 9922cc9 commit d4507e0

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

.github/renovate.json

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,7 @@
1414
"reviewersSampleSize": 1
1515
},
1616
"rust": {
17-
"dependencyDashboardApproval": true,
18-
"rangeStrategy": "bump"
17+
"dependencyDashboardApproval": true
1918
},
2019
"postUpdateOptions": ["yarnDedupeFewer"],
2120
"packageRules": [{
@@ -24,6 +23,9 @@
2423
}, {
2524
"matchPackageNames": ["@percy/cli", "webpack"],
2625
"extends": ["schedule:weekly"]
26+
}, {
27+
"matchLanguages": ["rust"],
28+
"rangeStrategy": "bump"
2729
}, {
2830
"matchLanguages": ["rust"],
2931
"matchUpdateTypes": ["lockFileMaintenance"],

0 commit comments

Comments
 (0)