From e42a2acc9c23f32fcbcfd0644713bbe6f1f2cae2 Mon Sep 17 00:00:00 2001 From: Markus Pesch Date: Sun, 19 Jul 2026 13:14:39 +0200 Subject: [PATCH] fix(renovate): use allowedVersions to block open-policy-agent/regal v1+ Replace matchNewValue with allowedVersions constraint to properly prevent Renovate from creating update branches for major versions. The previous enabled/matchNewValue approach did not prevent branch creation for already existing PRs. --- renovate.json | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/renovate.json b/renovate.json index e214143..0a9697e 100644 --- a/renovate.json +++ b/renovate.json @@ -6,9 +6,8 @@ ], "packageRules": [ { - "enabled": false, - "matchPackageNames": ["open-policy-agent/regal"], - "matchNewValue": "^2" + "allowedVersions": "<1.0.0", + "matchPackageNames": ["open-policy-agent/regal"] } ] } \ No newline at end of file