From 5d784d1175ca423f4ccc9d112077027effdd83aa Mon Sep 17 00:00:00 2001 From: Leonardo Matos Date: Tue, 28 Jul 2026 04:01:09 -0300 Subject: [PATCH] fix(renovate): pin storefront-template to the beta channel 2.0.0-next.0..3 are leftovers from Feb-Apr/2020, deprecated on npm, but semver ranks them above every beta because prerelease ids compare alphanumerically (next > beta). npm normally hides this by preferring the `latest` dist-tag, so it only surfaces when a tagged version has not reached the public registry yet -- exactly what happened while 2.0.0-beta.299 was stuck in GitHub Packages. Co-Authored-By: Claude Opus 5 --- .github/renovate.json | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/renovate.json b/.github/renovate.json index 1a51e3a7c..07fbdcefb 100644 --- a/.github/renovate.json +++ b/.github/renovate.json @@ -24,6 +24,12 @@ ], "groupName": "all non-major dependencies", "groupSlug": "all-minor-patch" + }, + { + "matchPackageNames": [ + "@ecomplus/storefront-template" + ], + "allowedVersions": "/-beta\\./" } ] }