From 09ed20193b4473b10348b8fe8d00c5014d19ac06 Mon Sep 17 00:00:00 2001 From: Ryan Waskiewicz Date: Mon, 15 Jan 2024 10:07:53 -0500 Subject: [PATCH] chore(repo): prevent renovate from upgrating open (#5218) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Open v10 has a single breaking change, in that it requires Node v18+ to be used. Stencil v4 still supports Node 16, and must continue to use Open v9 as a result. We cannot drop support for Node 16 without a breaking change, so we’ll hold off on this work until Stencil v5. --- renovate.json5 | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/renovate.json5 b/renovate.json5 index caec41eb314..787512a2f53 100644 --- a/renovate.json5 +++ b/renovate.json5 @@ -144,6 +144,11 @@ matchPackageNames: ['rollup'], matchPackagePrefixes: ['@rollup'], groupName: 'rollup,' + }, + // TODO(STENCIL-1088): remove once support for Node v16 is dropped + { + matchPackageNames: ['open'], + allowedVersions: '<10', } ], // Never rebase the branch or update it unless manually requested to avoid noisy PR emails