Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
27 changes: 22 additions & 5 deletions .github/renovate.json5
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,18 @@
'github-actions',
'custom.regex',
],
ignoreDeps: [
// Ignore serde_yaml because it is marked as deprecated. No new releases will be made.
'serde_yaml',
],
packageRules: [
// Only open PRs for major and minor cargo updates. Patch bumps are left to
// the scheduled lockFileMaintenance PR to avoid per-patch PR noise.
Comment on lines +27 to +28
{
matchManagers: [
'cargo',
],
matchUpdateTypes: [
'patch',
],
enabled: false,
},
Comment on lines +29 to +37
// Group console-rs terminal UI crates (must upgrade together for compatibility)
{
groupName: 'console-rs terminal UI',
Expand All @@ -36,10 +43,20 @@
],
matchPackageNames: [
'/^console$/',
'/^indicatif$/',
'/^dialoguer$/',
],
},
// Group the tokio crates with the futures-rs family.
{
groupName: 'tokio-futures',
matchManagers: [
'cargo',
],
matchPackageNames: [
'/^tokio$/',
'/^futures(-.*)?$/',
],
},
],
customManagers: [
{
Expand Down
Loading