From e2b3ec2843b9d51b46919cb914eefb2eb706aa55 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Tue, 26 Aug 2025 08:30:23 +0000 Subject: [PATCH] Migrate renovate config (#15275) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The Renovate config in this repository needs migrating. Typically this is because one or more configuration options you are using have been renamed. You don't need to merge this PR right away, because Renovate will continue to migrate these fields internally each time it runs. But later some of these fields may be fully deprecated and the migrations removed. So it's a good idea to merge this migration PR soon. #### [PLEASE NOTE](https://docs.renovatebot.com/configuration-options#configmigration): JSON5 config file migrated! All comments & trailing commas were removed. 🔕 **Ignore**: Close this PR and you won't be reminded about config migration again, but one day your current config may no longer be valid. ❓ Got questions? Does something look wrong to you? Please don't hesitate to [request help here](https://redirect.github.com/renovatebot/renovate/discussions). --- This PR was generated by [Mend Renovate](https://mend.io/renovate/). View the [repository job log](https://developer.mend.io/github/astral-sh/uv). --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: konstin --- .github/renovate.json5 | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/.github/renovate.json5 b/.github/renovate.json5 index 45f80a7b2..bb071b1c6 100644 --- a/.github/renovate.json5 +++ b/.github/renovate.json5 @@ -88,7 +88,7 @@ }, { commitMessageTopic: "MSRV", - matchManagers: ["regex"], + matchManagers: ["custom.regex"], matchDepNames: ["msrv"], // We have a rolling support policy for the MSRV // 2 releases back * 6 weeks per release * 7 days per week + 1 @@ -97,7 +97,7 @@ groupName: "MSRV", }, { - matchManagers: ["regex"], + matchManagers: ["custom.regex"], matchDepNames: ["rust"], commitMessageTopic: "Rust", }, @@ -106,7 +106,7 @@ // Update major GitHub actions references in documentation. { customType: "regex", - fileMatch: ["^docs/.*\\.md$"], + managerFilePatterns: ["/^docs/.*\\.md$/"], matchStrings: [ "\\suses: (?[\\w-]+/[\\w-]+)(?/.*)?@(?.+?)\\s", ], @@ -116,22 +116,23 @@ // Minimum supported Rust toolchain version { customType: "regex", - fileMatch: ["(^|/)Cargo\\.toml?$"], + managerFilePatterns: ["/(^|/)Cargo\\.toml?$/"], matchStrings: [ 'rust-version\\s*=\\s*"(?\\d+\\.\\d+(\\.\\d+)?)"', ], depNameTemplate: "msrv", - lookupNameTemplate: "rust-lang/rust", + packageNameTemplate: "rust-lang/rust", datasourceTemplate: "github-releases", }, // Rust toolchain version { - fileMatch: ["(^|/)rust-toolchain\\.toml?$"], + customType: "regex", + managerFilePatterns: ["/(^|/)rust-toolchain\\.toml?$/"], matchStrings: [ 'channel\\s*=\\s*"(?\\d+\\.\\d+(\\.\\d+)?)"', ], depNameTemplate: "rust", - lookupNameTemplate: "rust-lang/rust", + packageNameTemplate: "rust-lang/rust", datasourceTemplate: "github-releases", }, ],