From 77d920e4610b610e3ba918daebdc47d82a6e1b21 Mon Sep 17 00:00:00 2001 From: Alan Agius Date: Thu, 29 Apr 2021 20:25:17 +0200 Subject: [PATCH] ci: replace `matchCurrentVersion` RegExp negate with semver version (#41886) While RegExp negation should work as per documentation https://docs.renovatebot.com/configuration-options/#matchcurrentversion it appears that in this case it is not working. See the following commit https://github.com/angular/angular/pull/41884/commits/076f13da867d2bc46b41bd49f09ccb49e00a4095, therefore we work around this by using a semver version that excludes anything which doesn't match `>= 1`. PR Close #41886 --- renovate.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/renovate.json b/renovate.json index a1df8f1e47..23b53df894 100644 --- a/renovate.json +++ b/renovate.json @@ -126,7 +126,7 @@ "minor", "patch" ], - "matchCurrentVersion": "!/^0\\./", + "matchCurrentVersion": ">=1", "groupName": "all non-major dependencies", "groupSlug": "all-minor-patch", "schedule": [