mirror of
https://github.com/clap-rs/clap
synced 2024-11-10 14:54:15 +00:00
chore: Iterate on renovate
This commit is contained in:
parent
388e1f09e7
commit
dd0f8e38fe
1 changed files with 20 additions and 12 deletions
32
.github/renovate.json5
vendored
32
.github/renovate.json5
vendored
|
@ -5,30 +5,38 @@
|
|||
// Goals:
|
||||
// - Keep version reqs low, ignoring compatible normal/build dependencies
|
||||
// - Take advantage of latest dev-dependencies
|
||||
// - Help keep versions down by always using latest breaking change
|
||||
// - Rollup safe upgrades to reduce CI runner load
|
||||
// - Help keep number of versions down by always using latest breaking change
|
||||
// - Have lockfile and manifest in-sync
|
||||
{
|
||||
"matchManagers": ["cargo"],
|
||||
"matchDepTypes": ["build-dependencies", "dependencies"],
|
||||
"matchCurrentVersion": ">=0.1.0",
|
||||
"matchUpdateTypes": ["patch"],
|
||||
"enabled": false,
|
||||
},
|
||||
{
|
||||
"matchManagers": ["cargo"],
|
||||
"matchDepTypes": ["build-dependencies", "dependencies"],
|
||||
"matchCurrentVersion": ">=1.0.0",
|
||||
"matchUpdateTypes": ["minor"],
|
||||
"enabled": false,
|
||||
},
|
||||
{
|
||||
"matchManagers": ["cargo"],
|
||||
"matchDepTypes": ["dev-dependencies"],
|
||||
"matchCurrentVersion": ">=0.1.0",
|
||||
"matchUpdateTypes": ["patch"],
|
||||
"automerge": true,
|
||||
"groupName": "dev",
|
||||
},
|
||||
{
|
||||
"matchManagers": ["cargo"],
|
||||
"matchUpdateTypes": ["major"],
|
||||
},
|
||||
{
|
||||
"matchManagers": ["cargo"],
|
||||
"matchDepTypes": ["dev-dependencies"],
|
||||
"matchCurrentVersion": ">=1.0.0",
|
||||
"matchUpdateTypes": ["minor"],
|
||||
"enabled": false,
|
||||
},
|
||||
{
|
||||
"matchManagers": ["cargo"],
|
||||
"matchDepTypes": ["build-dependencies", "dependencies"],
|
||||
"matchUpdateTypes": ["patch"],
|
||||
"enabled": false,
|
||||
"automerge": true,
|
||||
"groupName": "dev",
|
||||
},
|
||||
],
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue