From e7b598a15f978f91dacbc50ebbe373130f8176dd Mon Sep 17 00:00:00 2001 From: David Glasser Date: Tue, 29 Oct 2024 15:31:43 -0700 Subject: [PATCH] renovate: pin two more deps for Node reasons (#7972) --- renovate.json5 | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/renovate.json5 b/renovate.json5 index 820fe5c78bc..899f4025f6c 100644 --- a/renovate.json5 +++ b/renovate.json5 @@ -125,5 +125,18 @@ matchPackageNames: ["rollup"], allowedVersions: "4.x", }, + // eslint@9 drops support for node v14. We can take this when we drop node v14 support. + { + matchPackageNames: ["eslint"], + allowedVersions: "8.x", + }, + // uuid@10 drops support for node v14. We can take this when we drop node + // v14 support. (This isn't in the engines property, but they made this + // change in https://github.com/uuidjs/uuid/pull/750 and then later started + // using the new-in-v16 `??=` operator.) + { + matchPackageNames: ["uuid"], + allowedVersions: "9.x", + } ] }