mirror of https://github.com/astral-sh/uv
Migrate renovate config (#15275)
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 <konstin@mailbox.org>
This commit is contained in:
parent
75741082f7
commit
e2b3ec2843
|
|
@ -88,7 +88,7 @@
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
commitMessageTopic: "MSRV",
|
commitMessageTopic: "MSRV",
|
||||||
matchManagers: ["regex"],
|
matchManagers: ["custom.regex"],
|
||||||
matchDepNames: ["msrv"],
|
matchDepNames: ["msrv"],
|
||||||
// We have a rolling support policy for the MSRV
|
// We have a rolling support policy for the MSRV
|
||||||
// 2 releases back * 6 weeks per release * 7 days per week + 1
|
// 2 releases back * 6 weeks per release * 7 days per week + 1
|
||||||
|
|
@ -97,7 +97,7 @@
|
||||||
groupName: "MSRV",
|
groupName: "MSRV",
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
matchManagers: ["regex"],
|
matchManagers: ["custom.regex"],
|
||||||
matchDepNames: ["rust"],
|
matchDepNames: ["rust"],
|
||||||
commitMessageTopic: "Rust",
|
commitMessageTopic: "Rust",
|
||||||
},
|
},
|
||||||
|
|
@ -106,7 +106,7 @@
|
||||||
// Update major GitHub actions references in documentation.
|
// Update major GitHub actions references in documentation.
|
||||||
{
|
{
|
||||||
customType: "regex",
|
customType: "regex",
|
||||||
fileMatch: ["^docs/.*\\.md$"],
|
managerFilePatterns: ["/^docs/.*\\.md$/"],
|
||||||
matchStrings: [
|
matchStrings: [
|
||||||
"\\suses: (?<depName>[\\w-]+/[\\w-]+)(?<path>/.*)?@(?<currentValue>.+?)\\s",
|
"\\suses: (?<depName>[\\w-]+/[\\w-]+)(?<path>/.*)?@(?<currentValue>.+?)\\s",
|
||||||
],
|
],
|
||||||
|
|
@ -116,22 +116,23 @@
|
||||||
// Minimum supported Rust toolchain version
|
// Minimum supported Rust toolchain version
|
||||||
{
|
{
|
||||||
customType: "regex",
|
customType: "regex",
|
||||||
fileMatch: ["(^|/)Cargo\\.toml?$"],
|
managerFilePatterns: ["/(^|/)Cargo\\.toml?$/"],
|
||||||
matchStrings: [
|
matchStrings: [
|
||||||
'rust-version\\s*=\\s*"(?<currentValue>\\d+\\.\\d+(\\.\\d+)?)"',
|
'rust-version\\s*=\\s*"(?<currentValue>\\d+\\.\\d+(\\.\\d+)?)"',
|
||||||
],
|
],
|
||||||
depNameTemplate: "msrv",
|
depNameTemplate: "msrv",
|
||||||
lookupNameTemplate: "rust-lang/rust",
|
packageNameTemplate: "rust-lang/rust",
|
||||||
datasourceTemplate: "github-releases",
|
datasourceTemplate: "github-releases",
|
||||||
},
|
},
|
||||||
// Rust toolchain version
|
// Rust toolchain version
|
||||||
{
|
{
|
||||||
fileMatch: ["(^|/)rust-toolchain\\.toml?$"],
|
customType: "regex",
|
||||||
|
managerFilePatterns: ["/(^|/)rust-toolchain\\.toml?$/"],
|
||||||
matchStrings: [
|
matchStrings: [
|
||||||
'channel\\s*=\\s*"(?<currentValue>\\d+\\.\\d+(\\.\\d+)?)"',
|
'channel\\s*=\\s*"(?<currentValue>\\d+\\.\\d+(\\.\\d+)?)"',
|
||||||
],
|
],
|
||||||
depNameTemplate: "rust",
|
depNameTemplate: "rust",
|
||||||
lookupNameTemplate: "rust-lang/rust",
|
packageNameTemplate: "rust-lang/rust",
|
||||||
datasourceTemplate: "github-releases",
|
datasourceTemplate: "github-releases",
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue