Skip to content

Commit 3b2a192

Browse files
committed
chore: Iterate on renovate
1 parent c3ba2a1 commit 3b2a192

File tree

1 file changed

+18
-10
lines changed

1 file changed

+18
-10
lines changed

.github/renovate.json5

Lines changed: 18 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -5,30 +5,38 @@
55
// Goals:
66
// - Keep version reqs low, ignoring compatible normal/build dependencies
77
// - Take advantage of latest dev-dependencies
8-
// - Help keep versions down by always using latest breaking change
98
// - Rollup safe upgrades to reduce CI runner load
9+
// - Help keep number of versions down by always using latest breaking change
1010
// - Have lockfile and manifest in-sync
1111
{
1212
"matchManagers": ["cargo"],
13-
"matchDepTypes": ["dev-dependencies"],
13+
"matchDepTypes": ["build-dependencies", "dependencies"],
14+
"matchCurrentVersion": ">=0.1.0",
1415
"matchUpdateTypes": ["patch"],
15-
"automerge": true,
16-
"groupName": "dev",
17-
},
18-
{
19-
"matchManagers": ["cargo"],
20-
"matchUpdateTypes": ["major"],
16+
"enabled": false,
2117
},
2218
{
2319
"matchManagers": ["cargo"],
20+
"matchDepTypes": ["build-dependencies", "dependencies"],
21+
"matchCurrentVersion": ">=1.0.0",
2422
"matchUpdateTypes": ["minor"],
2523
"enabled": false,
2624
},
2725
{
2826
"matchManagers": ["cargo"],
29-
"matchDepTypes": ["build-dependencies", "dependencies"],
27+
"matchDepTypes": ["dev-dependencies"],
28+
"matchCurrentVersion": ">=0.1.0",
3029
"matchUpdateTypes": ["patch"],
31-
"enabled": false,
30+
"automerge": true,
31+
"groupName": "dev",
32+
},
33+
{
34+
"matchManagers": ["cargo"],
35+
"matchDepTypes": ["dev-dependencies"],
36+
"matchCurrentVersion": ">=1.0.0",
37+
"matchUpdateTypes": ["minor"],
38+
"automerge": true,
39+
"groupName": "dev",
3240
},
3341
],
3442
}

0 commit comments

Comments
 (0)