From a165a3a8a680c5b3de13b74493b5ba8b91a1ffa5 Mon Sep 17 00:00:00 2001 From: Jason Plumb Date: Fri, 20 Oct 2023 08:30:37 -0700 Subject: [PATCH 1/2] move renovate config to .github --- renovate.json5 | 40 ---------------------------------------- 1 file changed, 40 deletions(-) delete mode 100644 renovate.json5 diff --git a/renovate.json5 b/renovate.json5 deleted file mode 100644 index 0193b347..00000000 --- a/renovate.json5 +++ /dev/null @@ -1,40 +0,0 @@ -{ - "$schema": "https://docs.renovatebot.com/renovate-schema.json", - "extends": [ - "config:base" - ], - "packageRules": [ - { - "matchPackageNames": [ - "io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom-alpha", - "io.opentelemetry.instrumentation:opentelemetry-instrumentation-api-semconv", - "io.opentelemetry.instrumentation:opentelemetry-okhttp-3.0" - ], - // Renovate's default behavior is only to update from unstable -> unstable if it's for the - // major.minor.patch, under the assumption that you would want to update to the stable version - // of that release instead of the unstable version for a future release (but there's never any - // stable version of opentelemetry-instrumentation-bom-alpha so this logic doesn't apply - "ignoreUnstable": false - }, - { - // navigation-fragment 2.7.0 and above require android api 34+, which we are not ready for - // yet due to android gradle plugin only supporting min 33. - "matchPackagePrefixes": ["androidx.navigation"], - "matchUpdateTypes": ["major", "minor"], - "enabled": false - }, - { - // navigation-fragment 2.7.0 and above require android api 34+, which we are not ready for - // yet due to android gradle plugin only supporting min 33. - "matchPackageNames": ["androidx.browser:browser"], - "matchUpdateTypes": ["major", "minor"], - "enabled": false - }, - { - // somehow renovate gets confused by the android property in gradle.properties, - // so let's just exclude it and hopefully clean up the dashboard - "matchPackageNames": ["string:rum.version"], - "enabled": false - } - ] -} From caeec792f69e5b31e4b1e89ad0a93ed43258274a Mon Sep 17 00:00:00 2001 From: Jason Plumb Date: Fri, 20 Oct 2023 09:03:33 -0700 Subject: [PATCH 2/2] re-add --- .github/renovate.json5 | 40 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100644 .github/renovate.json5 diff --git a/.github/renovate.json5 b/.github/renovate.json5 new file mode 100644 index 00000000..0193b347 --- /dev/null +++ b/.github/renovate.json5 @@ -0,0 +1,40 @@ +{ + "$schema": "https://docs.renovatebot.com/renovate-schema.json", + "extends": [ + "config:base" + ], + "packageRules": [ + { + "matchPackageNames": [ + "io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom-alpha", + "io.opentelemetry.instrumentation:opentelemetry-instrumentation-api-semconv", + "io.opentelemetry.instrumentation:opentelemetry-okhttp-3.0" + ], + // Renovate's default behavior is only to update from unstable -> unstable if it's for the + // major.minor.patch, under the assumption that you would want to update to the stable version + // of that release instead of the unstable version for a future release (but there's never any + // stable version of opentelemetry-instrumentation-bom-alpha so this logic doesn't apply + "ignoreUnstable": false + }, + { + // navigation-fragment 2.7.0 and above require android api 34+, which we are not ready for + // yet due to android gradle plugin only supporting min 33. + "matchPackagePrefixes": ["androidx.navigation"], + "matchUpdateTypes": ["major", "minor"], + "enabled": false + }, + { + // navigation-fragment 2.7.0 and above require android api 34+, which we are not ready for + // yet due to android gradle plugin only supporting min 33. + "matchPackageNames": ["androidx.browser:browser"], + "matchUpdateTypes": ["major", "minor"], + "enabled": false + }, + { + // somehow renovate gets confused by the android property in gradle.properties, + // so let's just exclude it and hopefully clean up the dashboard + "matchPackageNames": ["string:rum.version"], + "enabled": false + } + ] +}