From 883d68193f36e717f1f0ec80b26b6f7a0718c5b4 Mon Sep 17 00:00:00 2001 From: Mend Renovate Date: Mon, 11 Nov 2024 05:20:58 +0100 Subject: [PATCH] chore(config): migrate renovate config (#6192) 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. 🔕 **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/jaegertracing/jaeger). Signed-off-by: Yuri Shkuro Co-authored-by: Yuri Shkuro --- renovate.json | 77 ++++++++++++++++++++++++++++++++++++--------------- 1 file changed, 55 insertions(+), 22 deletions(-) diff --git a/renovate.json b/renovate.json index 6c65125efb0..ee3da55b62c 100644 --- a/renovate.json +++ b/renovate.json @@ -11,7 +11,9 @@ "gomodTidy", "gomodUpdateImportPaths" ], - "suppressNotifications": ["prEditedNotification"], + "suppressNotifications": [ + "prEditedNotification" + ], "packageRules": [ { "matchFileNames": [ @@ -27,17 +29,30 @@ "docker-compose/opensearch/v2/docker-compose.yml", "plugin/storage/scylladb/docker-compose.yml" ], - "matchUpdateTypes": ["major", "patch", "digest"], + "matchUpdateTypes": [ + "major", + "patch", + "digest" + ], "enabled": false }, { - "matchManagers": ["github-actions"], + "matchManagers": [ + "github-actions" + ], "groupName": "github-actions deps", - "schedule": ["on the first day of the month"] + "schedule": [ + "on the first day of the month" + ] }, { - "matchManagers": ["github-actions"], - "matchUpdateTypes": ["patch", "digest"], + "matchManagers": [ + "github-actions" + ], + "matchUpdateTypes": [ + "patch", + "digest" + ], "enabled": false }, { @@ -53,31 +68,49 @@ ] }, { - "matchManagers": ["gomod"], - "matchPackagePrefixes": ["go.opentelemetry.io/collector"], - "groupName": "All OTEL Collector packages" + "groupName": "All OTEL Collector packages", + "matchManagers": [ + "gomod" + ], + "matchPackageNames": [ + "go.opentelemetry.io/collector{/,}**" + ] }, { - "matchManagers": ["gomod"], - "matchPackagePrefixes": [ - "github.com/open-telemetry/opentelemetry-collector-contrib" + "groupName": "All OTEL Collector contrib packages", + "matchManagers": [ + "gomod" ], - "groupName": "All OTEL Collector contrib packages" + "matchPackageNames": [ + "github.com/open-telemetry/opentelemetry-collector-contrib{/,}**" + ] }, { - "matchManagers": ["gomod"], - "matchSourceUrlPrefixes": ["google.golang.org"], - "groupName": "All google.golang.org packages" + "groupName": "All google.golang.org packages", + "matchManagers": [ + "gomod" + ], + "matchSourceUrls": [ + "google.golang.org{/,}**" + ] }, { - "matchManagers": ["gomod"], - "matchPackagePrefixes": ["golang.org/x"], - "groupName": "All golang.org/x packages" + "groupName": "All golang.org/x packages", + "matchManagers": [ + "gomod" + ], + "matchPackageNames": [ + "golang.org/x{/,}**" + ] }, { - "matchManagers": ["gomod"], - "matchPackagePrefixes": ["github.com/prometheus"], - "groupName": "All github.com/prometheus packages" + "groupName": "All github.com/prometheus packages", + "matchManagers": [ + "gomod" + ], + "matchPackageNames": [ + "github.com/prometheus{/,}**" + ] } ] }