From 71f34075bed8e8b84ab40ede299a6615e9190c93 Mon Sep 17 00:00:00 2001 From: Alan Agius <17563226+alan-agius4@users.noreply.github.com> Date: Wed, 12 Mar 2025 17:21:04 +0000 Subject: [PATCH] ci: update `matchCurrentVersion` RegExp The previous regexp also matches `20.0.0-next` which causes Angular FW packages not to be updated. --- renovate.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/renovate.json b/renovate.json index 230a2f050da8..ce7f8f33aacb 100644 --- a/renovate.json +++ b/renovate.json @@ -35,7 +35,7 @@ "schedule": ["before 4:00am on the first day of the month"] }, { - "matchCurrentVersion": "/0\\.0\\.0-/", + "matchCurrentVersion": "/^[~^]?0\\.0\\.0-/", "enabled": false }, {