From 044772a1de1bae79cf67cbcb8788e10342c07e2a Mon Sep 17 00:00:00 2001 From: Ryan Ling Date: Thu, 17 Oct 2024 19:51:20 +1100 Subject: [PATCH] Block new pnpm version with busted `fetch` I don't know if this is necessary, feel free to close if not. --- default.json | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/default.json b/default.json index 98cae08..4eb1bc5 100644 --- a/default.json +++ b/default.json @@ -278,6 +278,13 @@ "matchManagers": ["dockerfile"], "schedule": ["before 7:00 on Monday"], "prPriority": 99 + }, + { + "matchDepTypes": ["packageManager"], + "matchManagers": ["npm"], + "matchDepNames": ["pnpm"], + + "allowedVersions": "<= 9.12.0" } ], "branchConcurrentLimit": null,