From 0384fa1c5d8aabc2d820ea2d09d14cdabdbf5038 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Wed, 7 May 2025 13:59:51 +0000 Subject: [PATCH] chore(config): migrate config .github/renovate.json5 --- .github/renovate.json5 | 24 +++++++++--------------- 1 file changed, 9 insertions(+), 15 deletions(-) diff --git a/.github/renovate.json5 b/.github/renovate.json5 index 1725e3e..b6f87c8 100644 --- a/.github/renovate.json5 +++ b/.github/renovate.json5 @@ -8,13 +8,13 @@ customManagers: [ { customType: 'regex', - fileMatch: [ - '^rust-toolchain\\.toml$', - 'Cargo.toml$', - 'clippy.toml$', - '\\.clippy.toml$', - '^\\.github/workflows/ci.yml$', - '^\\.github/workflows/rust-next.yml$', + managerFilePatterns: [ + '/^rust-toolchain\\.toml$/', + '/Cargo.toml$/', + '/clippy.toml$/', + '/\\.clippy.toml$/', + '/^\\.github/workflows/ci.yml$/', + '/^\\.github/workflows/rust-next.yml$/', ], matchStrings: [ 'MSRV.*?(?\\d+\\.\\d+(\\.\\d+)?)', @@ -34,19 +34,13 @@ matchPackageNames: [ 'rust', ], - minimumReleaseAge: '126 days', // 3 releases * 6 weeks per release * 7 days per week + minimumReleaseAge: '126 days', internalChecksFilter: 'strict', - extractVersion: '^(?\\d+\\.\\d+)', // Drop the patch version + extractVersion: '^(?\\d+\\.\\d+)', schedule: [ '* * * * *', ], }, - // Goals: - // - Keep version reqs low, ignoring compatible normal/build dependencies - // - Take advantage of latest dev-dependencies - // - 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',