From 0858380779b273c6ad3228a3eb5b8b3aa0127561 Mon Sep 17 00:00:00 2001 From: Carlos Samouco Date: Wed, 22 Jul 2026 15:10:40 +0100 Subject: [PATCH] Update jsdom peer dependency version range Blockly currently declares jsdom peer support as ^27.4.0, which restricts consumers to the 27.x major line. However the project itself is developed and tested with jsdom@29.1.1. Expanding the peer dependency range to >=27.4.0 <30.0.0 aligns the declared compatibility with the versions currently used by the project while still protecting against future breaking changes in jsdom 30. --- packages/blockly/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/blockly/package.json b/packages/blockly/package.json index 69cabf2dcea..2583a9b7e01 100644 --- a/packages/blockly/package.json +++ b/packages/blockly/package.json @@ -141,6 +141,6 @@ "node": ">=22" }, "peerDependencies": { - "jsdom": "^27.4.0" + "jsdom": ">=27.4.0 <30.0.0" } }