From 77b7ba5fb972a11c22f5fdd6e451329b5cd89976 Mon Sep 17 00:00:00 2001 From: Jason Plumb Date: Fri, 11 Aug 2023 14:32:41 -0700 Subject: [PATCH 1/3] limit a couple of renovate packages until gradle plugin is ready --- renovate.json | 6 ------ renovate.json5 | 22 ++++++++++++++++++++++ 2 files changed, 22 insertions(+), 6 deletions(-) delete mode 100644 renovate.json create mode 100644 renovate.json5 diff --git a/renovate.json b/renovate.json deleted file mode 100644 index 39a2b6e9a..000000000 --- a/renovate.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "$schema": "https://docs.renovatebot.com/renovate-schema.json", - "extends": [ - "config:base" - ] -} diff --git a/renovate.json5 b/renovate.json5 new file mode 100644 index 000000000..ff95aa273 --- /dev/null +++ b/renovate.json5 @@ -0,0 +1,22 @@ +{ + "$schema": "https://docs.renovatebot.com/renovate-schema.json", + "extends": [ + "config:base" + ], + "packageRules": [ + { + // 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"], + "matchCurrentVersion": "2.6.0", + "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"], + "matchCurrentVersion": "1.5.0", + "enabled": false + } + ] +} From f5d80976a618160d4fc8dbd5e4a6056a775fde92 Mon Sep 17 00:00:00 2001 From: jason plumb <75337021+breedx-splk@users.noreply.github.com> Date: Mon, 14 Aug 2023 08:06:31 -0700 Subject: [PATCH 2/3] Update renovate.json5 Co-authored-by: Trask Stalnaker --- renovate.json5 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/renovate.json5 b/renovate.json5 index ff95aa273..d1a14bc3a 100644 --- a/renovate.json5 +++ b/renovate.json5 @@ -8,7 +8,7 @@ // 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"], - "matchCurrentVersion": "2.6.0", + "matchUpdateTypes": ["major", "minor"], "enabled": false }, { From afa3265e0774df1aa67656ab42da26bbdb970ee2 Mon Sep 17 00:00:00 2001 From: jason plumb <75337021+breedx-splk@users.noreply.github.com> Date: Mon, 14 Aug 2023 08:06:38 -0700 Subject: [PATCH 3/3] Update renovate.json5 Co-authored-by: Trask Stalnaker --- renovate.json5 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/renovate.json5 b/renovate.json5 index d1a14bc3a..d22bd27ed 100644 --- a/renovate.json5 +++ b/renovate.json5 @@ -15,7 +15,7 @@ // 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"], - "matchCurrentVersion": "1.5.0", + "matchUpdateTypes": ["major", "minor"], "enabled": false } ]