test(deps): bump ws to ^8.21.0 in brainstorm-server tests

Clears two dependabot alerts on the test harness's ws dependency:
GHSA-96hv-2xvq-fx4p (high, memory-exhaustion DoS, fixed 8.21.0) and
GHSA-58qx-3vcg-4xpx (medium, uninitialized memory disclosure, fixed
8.20.1). Test-only — the shipped brainstorm server hand-rolls its
WebSocket framing and does not depend on ws. Suite passes (57/57).
This commit is contained in:
Jesse Vincent
2026-06-18 14:57:28 -07:00
committed by Drew Ritter
parent 4f9bd3131e
commit 549dee6f64
2 changed files with 5 additions and 5 deletions

View File

@@ -5,6 +5,6 @@
"test": "node ws-protocol.test.js && node helper.test.js && node browser-launcher.test.js && node auth.test.js && node branding.test.js && node server.test.js && node lifecycle.test.js && bash start-server.test.sh && bash stop-server.test.sh"
},
"dependencies": {
"ws": "^8.19.0"
"ws": "^8.21.0"
}
}