fix: use pnpm instead of npm in updatePlugins.sh#7468
Conversation
The script used npm outdated which doesn't work with pnpm workspaces, and pnpm install which doesn't update existing packages. Changed to pnpm outdated and pnpm update respectively. Fixes #6670 Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
Review Summary by QodoFix plugin update detection in pnpm workspaces
WalkthroughsDescription• Replace npm outdated with pnpm outdated for workspace compatibility • Change pnpm install to pnpm update for proper package updates • Fixes plugin update detection in pnpm workspaces Diagramflowchart LR
A["updatePlugins.sh"] -->|"npm outdated"| B["❌ Fails in pnpm workspaces"]
A -->|"pnpm outdated"| C["✓ Detects outdated plugins"]
D["pnpm install"] -->|"doesn't update"| E["❌ Packages unchanged"]
F["pnpm update"] -->|"updates packages"| G["✓ Plugins updated"]
File Changes1. bin/updatePlugins.sh
|
Code Review by Qodo
1. updatePlugins.sh lacks regression test
|
| OUTDATED=$(pnpm outdated --depth=0 | awk '{print $1}' | grep '^ep_') || { | ||
| echo "All plugins are up-to-date" | ||
| exit 0 | ||
| } | ||
| set -- ${OUTDATED} | ||
| echo "Updating plugins: $*" | ||
| exec pnpm install "$@" | ||
| exec pnpm update "$@" |
There was a problem hiding this comment.
1. updateplugins.sh lacks regression test 📘 Rule violation ☼ Reliability
This PR changes the plugin update logic but does not add or update any regression test to ensure the bug fix remains verifiable. Without a test, a future change could revert the pnpm-based behavior and reintroduce the failure to detect/upgrade plugins.
Agent Prompt
## Issue description
The fix in `bin/updatePlugins.sh` has no regression test to ensure outdated plugins are detected and upgraded (and to fail if the script is reverted back to the broken behavior).
## Issue Context
Add a test that simulates `pnpm outdated` output and asserts the script:
- prints `All plugins are up-to-date` when nothing matches `^ep_`
- invokes `pnpm update` with the expected `ep_*` plugin names when updates are available
## Fix Focus Areas
- bin/updatePlugins.sh[5-11]
ⓘ Copy this prompt and use it to remediate the issue with your preferred AI generation tools
- Use --filter ep_etherpad-lite so pnpm operates on the right workspace - Exclude ep_etherpad-lite from the plugin list - Handle pnpm outdated exit codes correctly (returns 1 when outdated) Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
|
Hi @JohnMcLear, nice to see you back in there ! This PR doesn't seem to fix the bug. Running 2.7.2 i can see some plugins updates or available in admin panel :
But running |

Summary
updatePlugins.shusednpm outdatedwhich doesn't work with pnpm workspaces, so it never detected outdated pluginspnpm installinstead ofpnpm update, which doesn't update existing packagesTest plan
bin/updatePlugins.sh, verify it updatesFixes #6670
🤖 Generated with Claude Code