2022-12-01 17:23:46 +00:00
|
|
|
{
|
2023-04-17 13:51:48 +00:00
|
|
|
schedule: [
|
2023-08-02 16:11:52 +00:00
|
|
|
'before 5am on the first day of the month',
|
2022-12-05 15:36:14 +00:00
|
|
|
],
|
2023-04-17 13:51:48 +00:00
|
|
|
semanticCommits: 'enabled',
|
2024-01-02 15:56:35 +00:00
|
|
|
commitMessageLowerCase: 'never',
|
2023-04-17 13:51:48 +00:00
|
|
|
configMigration: true,
|
|
|
|
dependencyDashboard: true,
|
2023-09-26 13:16:33 +00:00
|
|
|
customManagers: [
|
2023-03-29 19:33:22 +00:00
|
|
|
{
|
2023-08-22 16:07:34 +00:00
|
|
|
customType: 'regex',
|
2023-04-17 13:51:48 +00:00
|
|
|
fileMatch: [
|
|
|
|
'^rust-toolchain\\.toml$',
|
|
|
|
'Cargo.toml$',
|
|
|
|
'clippy.toml$',
|
2023-09-20 13:59:51 +00:00
|
|
|
'^Makefile$',
|
2023-09-20 14:02:55 +00:00
|
|
|
'^tests/derive_ui.rs$',
|
2023-04-17 13:51:48 +00:00
|
|
|
'\\.clippy.toml$',
|
|
|
|
'^\\.github/workflows/ci.yml$',
|
|
|
|
'^\\.github/workflows/rust-next.yml$',
|
|
|
|
],
|
|
|
|
matchStrings: [
|
2024-02-15 16:03:14 +00:00
|
|
|
'STABLE.*?(?<currentValue>\\d+\\.\\d+(\\.\\d+)?)',
|
|
|
|
'(?<currentValue>\\d+\\.\\d+(\\.\\d+)?).*?STABLE',
|
2023-04-17 13:51:48 +00:00
|
|
|
],
|
2024-02-15 16:03:14 +00:00
|
|
|
depNameTemplate: 'STABLE',
|
2023-04-17 13:51:48 +00:00
|
|
|
packageNameTemplate: 'rust-lang/rust',
|
|
|
|
datasourceTemplate: 'github-releases',
|
2023-04-17 14:54:05 +00:00
|
|
|
},
|
2023-03-29 19:33:22 +00:00
|
|
|
],
|
2023-04-17 13:51:48 +00:00
|
|
|
packageRules: [
|
2023-03-29 19:33:22 +00:00
|
|
|
{
|
2024-03-21 17:20:47 +00:00
|
|
|
commitMessageTopic: 'Rust Stable',
|
2023-04-17 13:51:48 +00:00
|
|
|
matchManagers: [
|
2023-12-03 09:19:35 +00:00
|
|
|
'custom.regex',
|
2023-04-17 13:51:48 +00:00
|
|
|
],
|
|
|
|
matchPackageNames: [
|
2024-02-15 16:03:14 +00:00
|
|
|
'STABLE',
|
2023-04-17 13:51:48 +00:00
|
|
|
],
|
2023-09-26 13:16:47 +00:00
|
|
|
extractVersion: '^(?<version>\\d+\\.\\d+)', // Drop the patch version
|
2023-08-23 14:24:15 +00:00
|
|
|
schedule: [
|
2023-08-23 14:35:47 +00:00
|
|
|
'* * * * *',
|
2023-08-23 14:24:15 +00:00
|
|
|
],
|
2024-04-17 02:46:56 +00:00
|
|
|
automerge: true,
|
2023-03-29 19:33:22 +00:00
|
|
|
},
|
2022-12-01 17:23:46 +00:00
|
|
|
// Goals:
|
|
|
|
// - Keep version reqs low, ignoring compatible normal/build dependencies
|
|
|
|
// - Take advantage of latest dev-dependencies
|
|
|
|
// - Rollup safe upgrades to reduce CI runner load
|
2022-12-01 21:29:31 +00:00
|
|
|
// - Help keep number of versions down by always using latest breaking change
|
2022-12-01 17:23:46 +00:00
|
|
|
// - Have lockfile and manifest in-sync
|
|
|
|
{
|
2023-04-17 13:51:48 +00:00
|
|
|
matchManagers: [
|
|
|
|
'cargo',
|
|
|
|
],
|
|
|
|
matchDepTypes: [
|
|
|
|
'build-dependencies',
|
|
|
|
'dependencies',
|
|
|
|
],
|
|
|
|
matchCurrentVersion: '>=0.1.0',
|
|
|
|
matchUpdateTypes: [
|
|
|
|
'patch',
|
|
|
|
],
|
|
|
|
enabled: false,
|
2022-12-01 17:23:46 +00:00
|
|
|
},
|
|
|
|
{
|
2023-04-17 13:51:48 +00:00
|
|
|
matchManagers: [
|
|
|
|
'cargo',
|
|
|
|
],
|
|
|
|
matchDepTypes: [
|
|
|
|
'build-dependencies',
|
|
|
|
'dependencies',
|
|
|
|
],
|
|
|
|
matchCurrentVersion: '>=1.0.0',
|
|
|
|
matchUpdateTypes: [
|
|
|
|
'minor',
|
2024-01-24 14:40:56 +00:00
|
|
|
'patch',
|
2023-04-17 13:51:48 +00:00
|
|
|
],
|
|
|
|
enabled: false,
|
2022-12-01 17:23:46 +00:00
|
|
|
},
|
|
|
|
{
|
2023-04-17 13:51:48 +00:00
|
|
|
matchManagers: [
|
|
|
|
'cargo',
|
|
|
|
],
|
|
|
|
matchDepTypes: [
|
|
|
|
'dev-dependencies',
|
|
|
|
],
|
|
|
|
matchCurrentVersion: '>=0.1.0',
|
|
|
|
matchUpdateTypes: [
|
|
|
|
'patch',
|
|
|
|
],
|
|
|
|
automerge: true,
|
|
|
|
groupName: 'compatible (dev)',
|
2022-12-01 21:29:31 +00:00
|
|
|
},
|
|
|
|
{
|
2023-04-17 13:51:48 +00:00
|
|
|
matchManagers: [
|
|
|
|
'cargo',
|
|
|
|
],
|
|
|
|
matchDepTypes: [
|
|
|
|
'dev-dependencies',
|
|
|
|
],
|
|
|
|
matchCurrentVersion: '>=1.0.0',
|
|
|
|
matchUpdateTypes: [
|
|
|
|
'minor',
|
2024-01-24 14:40:56 +00:00
|
|
|
'patch',
|
2023-04-17 13:51:48 +00:00
|
|
|
],
|
|
|
|
automerge: true,
|
|
|
|
groupName: 'compatible (dev)',
|
2022-12-01 17:23:46 +00:00
|
|
|
},
|
|
|
|
],
|
|
|
|
}
|