Skip to content

Commit e55fa8c

Browse files
chore: Configure Renovate (#24)
* Add renovate.json * Configure Renovate for Rust dependencies --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: thieman <travis.thieman@datadoghq.com>
1 parent d1d0b4c commit e55fa8c

1 file changed

Lines changed: 34 additions & 0 deletions

File tree

renovate.json

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
{
2+
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
3+
"extends": [
4+
"config:recommended",
5+
"group:allNonMajor",
6+
"schedule:weekly"
7+
],
8+
"prConcurrentLimit": 5,
9+
"prHourlyLimit": 2,
10+
"minimumReleaseAge": "7 days",
11+
"osvVulnerabilityAlerts": true,
12+
"packageRules": [
13+
{
14+
"matchManagers": ["cargo"],
15+
"versioning": "cargo"
16+
},
17+
{
18+
"matchManagers": ["cargo"],
19+
"matchCurrentVersion": "/^0\\.[0-9]/",
20+
"matchUpdateTypes": ["minor"],
21+
"groupName": "cargo pre-1.0 breaking updates",
22+
"prBodyNotes": [
23+
"**Cargo breaking update (pre-v1.0)** — `0.x` → `0.y` is a breaking change in Cargo's semver. Before merging, verify the workspace compiles and check upstream release notes for removed features or API changes."
24+
]
25+
},
26+
{
27+
"matchManagers": ["cargo"],
28+
"matchUpdateTypes": ["major"],
29+
"prBodyNotes": [
30+
"**Cargo major update** — Before merging, verify the workspace compiles and check upstream release notes for removed features or API changes."
31+
]
32+
}
33+
]
34+
}

0 commit comments

Comments
 (0)