From cdee541ab93f08e674a53d55be0ad5433fe367e7 Mon Sep 17 00:00:00 2001 From: John McLear Date: Fri, 15 May 2026 19:53:28 +0100 Subject: [PATCH] fix(deps): bump ep_plugin_helpers range to ^0.6.1 (the published version) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Follow-up to the toolbar-select migration (#142). Etherpad's plugin installer resolves the dep range's lower-bound version literally — `^0.6.0` makes it ask npm for `ep_plugin_helpers@0.6.0`, which was never published (the auto-publish workflow bumped straight to `0.6.1`, skipping 0.6.0). CI on main has been red since the merge for this reason. Anchor to the actual published version so the install resolves. --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 152cb8a..0619476 100644 --- a/package.json +++ b/package.json @@ -28,7 +28,7 @@ "url": "https://etherpad.org/" }, "dependencies": { - "ep_plugin_helpers": "^0.6.0" + "ep_plugin_helpers": "^0.6.1" }, "devDependencies": { "eslint": "^8.57.1",