chore(deps): migrate to eslint 10 to clear the brace-expansion DoS advisory - #1900
Conversation
…visory (#1838) eslint 9 pulled `minimatch@3` → `brace-expansion@1.1.16`, which carries GHSA-mh99-v99m-4gvg (high, DoS via unbounded expansion length). It appeared in all five lockfiles — the root plus each of the four clients, none of which is an npm workspace, so all five had to move together. Deferred from the pre-2.0.0 sweep because it is dev-scope, not attacker- controlled, and a major bump across five packages was the wrong thing to attempt immediately before an irreversible publish. This is that work. ## What moved - `eslint` `^9.39.4/5` → `^10.8.0` and `@eslint/js` → `^10.0.1`, in all five manifests. - `eslint-plugin-react-hooks` `^7.0.1` → `^7.1.1` in web and tui. Required, not cosmetic: 7.0.1's peer range stops at `^9.0.0`, so installing it alongside eslint 10 fails `ERESOLVE`. - Everything else already declared eslint 10 support and stayed put: `typescript-eslint@^8.56.1` (`^8.57 || ^9 || ^10`), `eslint-plugin-react-refresh@^0.5.2` (`^9 || ^10`), `eslint-plugin-storybook@^10.2.19` (`>=8`). ## Config migration None was needed. All five configs were already flat (`eslint.config.js` with `defineConfig`/`globalIgnores` from `eslint/config`), which is the format v10 keeps and the only one it still supports. The root config's `core/` and shared- surface blocks — including the `_`-prefix `argsIgnorePattern` / `varsIgnorePattern` / `caughtErrorsIgnorePattern` — are unchanged and still gate `lint:core` and `lint:shared`. No rule was disabled, downgraded, or scoped away to make the new eslint pass. v10 surfaced 21 real violations across three rules; all 21 are fixed in the code. ### `preserve-caught-error` (new in `eslint:recommended`) — 15 sites A `throw new Error(msg)` inside a `catch` silently drops the original error. Each now passes `{ cause }`, so the underlying failure survives into the chain. Messages are unchanged, so nothing that asserts on them moves. 12 in `core/`, 2 in `clients/cli`, 1 in `test-servers/src`. ### `no-useless-assignment` (new in `eslint:recommended`) — 2 sites `clients/cli/src/cli.ts`'s `optionArgs` and `test-servers/src/test-server-oauth` 's `valid` were initialized and then unconditionally overwritten on every path. Both are now declared without the dead initializer; TypeScript's definite- assignment analysis covers the remaining paths. ### `react-hooks/set-state-in-effect` — 8 sites (web) These were false negatives the plugin fixed in 7.1.0, not a rule we newly opted into: `set-state-in-effect` has been `error` in `flat/recommended` since 7.0.1, and the web config has always extended it. Every one was the same anti-pattern — resetting or re-syncing local state from a prop inside a `useEffect`, which paints the stale value for one frame and then renders again to correct it. All eight now use a new `useValueChange(value, onChange)` hook (`clients/web/src/hooks/useValueChange.ts`), which is React's documented "adjusting state during render": compare against the previous render's value with `Object.is` and call back *during* render, so React discards the in-progress output before it reaches the DOM. - `MrtrConversation`, `ProtocolEntry`, `TaskCard` — mirror `isListExpanded`. - `NetworkEntry` — same mirror, plus the "Reveal in Network" force-open. The reveal's rAF scroll stays an effect (real external-system work); only the `setIsExpanded(true)` moved. `isExpanded` is now seeded from `isListExpanded || revealed`, since a render-time sync fires on change and so cannot cover an entry that mounts already revealed. - `PromptArgumentsForm`, `ResourceTemplatePanel` — reset on template/prompt switch. - `ServerConfigModal` — reset on open. Keyed on `opened ? initial : undefined`, which collapses "opened flipped" and "initial changed while open" into one value; `initial` is already memoized, so it cannot thrash. `useValueChange` has its own test file, and `ServerConfigModal` gains an open→edit→close→reopen test (the close leg was previously untested, which is what left the new guard uncovered). ## Advisory delta `npm audit`, per package, before → after: | Package | before | after | | ------------------- | -------------------------- | -------------------------- | | root | 9 (1 low, 6 mod, 2 high) | 8 (1 low, 6 mod, 1 high) | | `clients/web` | 19 (3 low, 6 mod, 6 high, 4 crit) | 17 (3 low, 6 mod, 4 high, 4 crit) | | `clients/cli` | 6 (2 low, 4 high) | 4 (2 low, 2 high) | | `clients/tui` | 4 (1 low, 3 high) | 2 (1 low, 1 high) | | `clients/launcher` | 3 (3 high) | 1 (1 high) | `brace-expansion` is gone from all five — `eslint@10` resolves `minimatch@10` → `brace-expansion@5.0.9`. Dropping `@eslint/eslintrc` (removed in v10) also took `js-yaml` with it, clearing GHSA-52cp-r559-cp3m (high) from all four clients as a bonus. The remainder are unrelated and tracked separately. `npm run ci` passes end to end — validate, the per-file ≥90 coverage gate, the build gate, all five smokes (including `smoke:tui`, run locally on a real TTY), and 462 Storybook tests. Also documents the effect rule in AGENTS.md and mirrors it into `.github/copilot-instructions.md`, since it is now something a reviewer cites. Claude-Session: https://claude.ai/code/session_01YAt8rqxysNbhYWLhoRm3fU Co-authored-by: Claude Opus 5 (1M context) <noreply@anthropic.com>
There was a problem hiding this comment.
Pull request overview
This PR migrates the repo’s dev tooling from ESLint 9 → ESLint 10 across the root and all four client packages to eliminate the brace-expansion@1.x dependency advisory, while also fixing newly-surfaced lint violations (notably preserving caught errors and removing render-stale state syncing in React).
Changes:
- Bumped
eslint/@eslint/jsto v10 across the root and all client manifests + lockfiles (non-workspace layout). - Preserved error context by attaching
{ cause }when rethrowing from catches in core/cli/test-server parsing and runtime paths. - Replaced
useEffect(() => setState(prop), [prop])patterns in the web client with a newuseValueChangehook, adding targeted tests and documenting the new rule inAGENTS.md+.github/copilot-instructions.md.
Reviewed changes
Copilot reviewed 28 out of 33 changed files in this pull request and generated 1 comment.
Show a summary per file
| File | Description |
|---|---|
| test-servers/src/test-server-oauth.ts | Removes useless initializer by relying on definite assignment for valid. |
| test-servers/src/load-config.ts | Preserves parse failure context by rethrowing with { cause }. |
| package.json | Bumps root ESLint dependencies to v10. |
| package-lock.json | Updates root lockfile to reflect ESLint v10 dependency graph (including brace-expansion@5). |
| core/mcp/node/config.ts | Preserves configuration-load error context via { cause } in thrown Errors. |
| core/mcp/inspectorClient.ts | Preserves underlying failures for several runtime errors via { cause }. |
| core/mcp/import/serverJson.ts | Preserves JSON parse error context via { cause }. |
| core/mcp/import/clientConfig.ts | Preserves JSON parse error context via { cause }. |
| core/auth/utils.ts | Preserves URL parse error context via { cause }. |
| core/auth/node/runner-oauth-callback.ts | Preserves callback URL parse error context via { cause }. |
| core/auth/discovery.ts | Preserves MCP server URL parse error context via { cause }. |
| clients/web/src/hooks/useValueChange.ts | Adds render-time value-change hook for safe prop→state syncing without effects. |
| clients/web/src/hooks/useValueChange.test.tsx | Adds unit tests covering first render, changes, overrides, and Object.is semantics. |
| clients/web/src/components/groups/TaskCard/TaskCard.tsx | Replaces effect-based list expand syncing with useValueChange. |
| clients/web/src/components/groups/ServerConfigModal/ServerConfigModal.tsx | Replaces effect-based form reset with useValueChange keyed by open state + memoized initial value. |
| clients/web/src/components/groups/ServerConfigModal/ServerConfigModal.test.tsx | Adds coverage for open→edit→close→reopen reset behavior. |
| clients/web/src/components/groups/ResourceTemplatePanel/ResourceTemplatePanel.tsx | Replaces template-switch reset effect with useValueChange(uriTemplate, …). |
| clients/web/src/components/groups/ProtocolEntry/ProtocolEntry.tsx | Replaces effect-based expand syncing with useValueChange. |
| clients/web/src/components/groups/PromptArgumentsForm/PromptArgumentsForm.tsx | Replaces effect-based completion reset with useValueChange(name, …). |
| clients/web/src/components/groups/NetworkEntry/NetworkEntry.tsx | Replaces effect-based expand syncing with useValueChange, preserving reveal ordering and keeping scroll as an effect. |
| clients/web/src/components/groups/MrtrConversation/MrtrConversation.tsx | Replaces effect-based expand syncing with useValueChange. |
| clients/web/package.json | Bumps web ESLint deps to v10 and eslint-plugin-react-hooks to a v10-compatible peer range. |
| clients/web/package-lock.json | Updates web lockfile for ESLint v10 and related dependency graph changes. |
| clients/tui/package.json | Bumps tui ESLint deps to v10 and eslint-plugin-react-hooks for peer compatibility. |
| clients/tui/package-lock.json | Updates tui lockfile for ESLint v10 dependency graph. |
| clients/launcher/package.json | Bumps launcher ESLint deps to v10. |
| clients/launcher/package-lock.json | Updates launcher lockfile for ESLint v10 dependency graph. |
| clients/cli/src/handlers/run-method.ts | Preserves JSON parse failure context via { cause }. |
| clients/cli/src/cli.ts | Removes useless initializer for optionArgs and preserves JSON parse failure context via { cause }. |
| clients/cli/package.json | Bumps cli ESLint deps to v10. |
| clients/cli/package-lock.json | Updates cli lockfile for ESLint v10 dependency graph. |
| AGENTS.md | Documents the “no set-state-in-effect” rule and the useValueChange approach. |
| .github/copilot-instructions.md | Mirrors the state/effects guidance into the Copilot review distillation. |
Files not reviewed (4)
- clients/cli/package-lock.json: Generated file
- clients/launcher/package-lock.json: Generated file
- clients/tui/package-lock.json: Generated file
- clients/web/package-lock.json: Generated file
| * Call `onChange(next)` during render whenever `value` differs from the value | ||
| * seen on the previous render of this component. Nothing is called on the first | ||
| * render — seed the dependent state with `useState` instead. | ||
| * |
There was a problem hiding this comment.
Good catch — done in 8a39b0e.
You are right that this is worse than a normal stale-dependency mistake: because the callback is what updates state, an unstable value is an infinite render loop, not just a wasted render. The hook now says so explicitly, and the AGENTS.md rule (plus its copilot-instructions.md mirror) carries the same clause, so the guidance and the review checklist agree.
The recommendation is the one you suggested — pass a primitive key derived from the data (an id, a name, a URI) where one exists, otherwise something already memoized. Every caller in this PR already does: isListExpanded/revealed are booleans, name and uriTemplate are strings, and ServerConfigModal's opened ? initial : undefined keys off an initial that is already useMemod over [initialId, initialConfig, mode].
Deliberately not adding a runtime guard (e.g. a dev-mode "changed N renders in a row" warning): the stability requirement is the same one a useEffect dependency array carries and we do not guard those either, and the failure here is immediate and loud rather than silent, so a doc contract is proportionate.
Copilot review on #1900: the hook compares with `Object.is`, so an object or array literal rebuilt in the component body compares unequal every render. Because the callback is what updates state, that is not merely a wasted render — it is an infinite loop. Every current caller passes a primitive (`boolean`, `string`) or an already- memoized value, so nothing changes behaviorally. But the hazard was implicit, and the next caller is the one it would bite. Documented on the hook itself, and one clause added to the AGENTS.md rule with its mirror in `.github/copilot-instructions.md`. No runtime guard: the requirement is the same one a `useEffect` dependency array carries, and here the failure is loud and immediate rather than silent. `npm run ci` passes. Claude-Session: https://claude.ai/code/session_01YAt8rqxysNbhYWLhoRm3fU Co-authored-by: Claude Opus 5 (1M context) <noreply@anthropic.com>
There was a problem hiding this comment.
Pull request overview
Copilot reviewed 28 out of 33 changed files in this pull request and generated no new comments.
Files not reviewed (4)
- clients/cli/package-lock.json: Generated file
- clients/launcher/package-lock.json: Generated file
- clients/tui/package-lock.json: Generated file
- clients/web/package-lock.json: Generated file
Suppressed comments (1)
clients/cli/src/cli.ts:982
- In this JSON.parse error path, the message uses
(e as Error).message. IfJSON.parsethrows a non-Error value, this can produce an unhelpful...: undefinedmessage. Since this block was touched (adding{ cause: e }), it’s a good spot to switch to the safere instanceof Error ? e.message : String(e)pattern (as used elsewhere in the PR).
try {
parsed = JSON.parse(options.toolArgsJson);
} catch (e) {
throw new Error(
`--tool-args-json is not valid JSON: ${(e as Error).message}`,
{ cause: e },
);
…or (#1838) Copilot review round 2 on #1900: the `--tool-args-json` parse handler formatted its message with `(e as Error).message`. A `catch` binding is `unknown`, so that cast is an assertion rather than a check — a thrown non-Error would render `--tool-args-json is not valid JSON: undefined`, which points the user at nothing. `JSON.parse` does only throw `SyntaxError` today, so this is not a live bug. But the cast is the kind AGENTS.md asks us not to leave unjustified, the same handler was already being touched here to add `{ cause: e }`, and every other site in this PR uses the guarded form. Now it does too. `npm run ci` passes. Claude-Session: https://claude.ai/code/session_01YAt8rqxysNbhYWLhoRm3fU Co-authored-by: Claude Opus 5 (1M context) <noreply@anthropic.com>
|
Round 2 responses. Suppressed comment — One sibling was deliberately left alone: Round 1 —
|
There was a problem hiding this comment.
Pull request overview
Copilot reviewed 28 out of 33 changed files in this pull request and generated no new comments.
Files not reviewed (4)
- clients/cli/package-lock.json: Generated file
- clients/launcher/package-lock.json: Generated file
- clients/tui/package-lock.json: Generated file
- clients/web/package-lock.json: Generated file
Suppressed comments (1)
clients/web/src/hooks/useValueChange.ts:17
useValueChangeinvokesonChangeduring render. WithStrictModeenabled (clients/web/src/main.tsx:21-32), renders can be replayed/aborted in development, so a non-idempotent callback could fire more than once. The hook’s docstring should explicitly require thatonChangebe free of external side effects (and ideally only schedule React state updates).
* This is React's documented "adjusting state during render" pattern
* (https://react.dev/reference/react/useState#storing-information-from-previous-renders),
* and it is the supported way to reset or re-sync local state from a prop.
*
Copilot review round 3 on #1900: `onChange` is called during render, so it is bound by render-phase purity — and the web client mounts under `StrictMode`, which deliberately double-renders in development. A callback doing anything external would run an unpredictable number of times, and concurrent React can abandon an in-progress render entirely. Every current caller already passes a callback that only calls `setState`, so nothing changes. But "runs during render" is the whole point of the hook and the constraint that follows from it was left implicit. Stated on the hook, with the same clause in the AGENTS.md rule and its `.github/copilot-instructions.md` mirror. All three now point at `NetworkEntry` as the worked example of the split: the reveal's force-open is a state update and lives in `useValueChange`, while its `requestAnimationFrame` scroll stays a `useEffect`. `npm run ci` passes. Claude-Session: https://claude.ai/code/session_01YAt8rqxysNbhYWLhoRm3fU Co-authored-by: Claude Opus 5 (1M context) <noreply@anthropic.com>
|
Round 3 response. Suppressed comment — Every current caller already passes a The hook now spells out the prohibition (no fetches, DOM writes, logging, ref mutation, or parent callbacks), and the AGENTS.md rule and its
|
There was a problem hiding this comment.
Pull request overview
Copilot reviewed 28 out of 33 changed files in this pull request and generated no new comments.
Files not reviewed (4)
- clients/cli/package-lock.json: Generated file
- clients/launcher/package-lock.json: Generated file
- clients/tui/package-lock.json: Generated file
- clients/web/package-lock.json: Generated file
Resolves the dependency conflicts introduced by #1899 (the vitest/Storybook security untangle), which regenerated all four client lockfiles. package.json resolution is a union of both PRs' intents: - Kept from #1899: vitest / @vitest/* 4.1.10, Storybook 10.5.5 (+ @chromatic-com/storybook 5.2.1), and the deliberate `zod: "~4.3.6"` hold on clients/web (4.4.3 OOMs web's `tsc -b`, tracked as #1896). cli/tui/root keep their pre-existing `^4.3.6`, which resolves to 4.4.3 exactly as on v2/main. - Kept from this branch: eslint ^10.8.0 and @eslint/js ^10.0.1 in every client and at the root. - eslint-plugin-react-hooks resolved to ^7.1.1, intentionally DROPPING #1899's `~7.0.1` hold. That last point is the one semantic decision here. #1899 pinned eslint-plugin-react-hooks to ~7.0.1 (issue #1897) because 7.1.1 enables `react-hooks/set-state-in-effect`, which failed on 8 pre-existing violations. This PR supersedes that hold on both counts: 7.0.1's peer range stops at eslint ^9, so it ERESOLVEs against eslint 10, and this PR already fixed all 8 violations by introducing the `useValueChange` hook. Restoring the hold would break the install, and keeping it would preserve a constraint we no longer need — so #1897 is closed out by this branch rather than carried forward. Lockfiles were not hand-merged — they were reset to v2/main's regenerated versions and re-resolved with a root `npm install` (postinstall cascade). Verified with `npm run ci` from the root: validate, the per-file >=90 coverage gate, verify:build-gate, all smokes (smoke:tui included, run locally with a real TTY), and the Storybook play functions all pass. Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01YAt8rqxysNbhYWLhoRm3fU
|
Merged How the
That last one is the only judgement call, so calling it out explicitly: #1899 held the plugin at Lockfiles were not hand-merged: they were reset to Full |
Closes #1838
eslint 9 pulled
minimatch@3→brace-expansion@1.1.16, which carriesGHSA-mh99-v99m-4gvg (high, DoS via unbounded expansion length). It appeared in
all five lockfiles — the root plus each of the four clients, none of which is an
npm workspace, so all five had to move together.
Deferred from the pre-2.0.0 sweep because it is dev-scope, not attacker-
controlled, and a major bump across five packages was the wrong thing to attempt
immediately before an irreversible publish. This is that work.
What moved
eslint^9.39.4/5→^10.8.0and@eslint/js→^10.0.1, in all fivemanifests.
eslint-plugin-react-hooks^7.0.1→^7.1.1in web and tui. Required, notcosmetic: 7.0.1's peer range stops at
^9.0.0, so installing it alongsideeslint 10 fails
ERESOLVE.typescript-eslint@^8.56.1(^8.57 || ^9 || ^10),eslint-plugin-react-refresh@^0.5.2(^9 || ^10),eslint-plugin-storybook@^10.2.19(>=8).Config migration
None was needed. All five configs were already flat (
eslint.config.jswithdefineConfig/globalIgnoresfromeslint/config), which is the format v10keeps and the only one it still supports. The root config's
core/and shared-surface blocks — including the
_-prefixargsIgnorePattern/varsIgnorePattern/caughtErrorsIgnorePattern— are unchanged and still gatelint:coreandlint:shared.No rule was disabled, downgraded, or scoped away to make the new eslint pass.
v10 surfaced 21 real violations across three rules; all 21 are fixed in the code.
preserve-caught-error(new ineslint:recommended) — 15 sitesA
throw new Error(msg)inside acatchsilently drops the original error.Each now passes
{ cause }, so the underlying failure survives into the chain.Messages are unchanged, so nothing that asserts on them moves. 12 in
core/,2 in
clients/cli, 1 intest-servers/src.no-useless-assignment(new ineslint:recommended) — 2 sitesclients/cli/src/cli.ts'soptionArgsandtest-servers/src/test-server-oauth's
validwere initialized and then unconditionally overwritten on every path.Both are now declared without the dead initializer; TypeScript's definite-
assignment analysis covers the remaining paths.
react-hooks/set-state-in-effect— 8 sites (web)These were false negatives the plugin fixed in 7.1.0, not a rule we newly opted
into:
set-state-in-effecthas beenerrorinflat/recommendedsince 7.0.1,and the web config has always extended it. Every one was the same anti-pattern —
resetting or re-syncing local state from a prop inside a
useEffect, whichpaints the stale value for one frame and then renders again to correct it.
All eight now use a new
useValueChange(value, onChange)hook(
clients/web/src/hooks/useValueChange.ts), which is React's documented"adjusting state during render": compare against the previous render's value
with
Object.isand call back during render, so React discards thein-progress output before it reaches the DOM.
MrtrConversation,ProtocolEntry,TaskCard— mirrorisListExpanded.NetworkEntry— same mirror, plus the "Reveal in Network" force-open. Thereveal's rAF scroll stays an effect (real external-system work); only the
setIsExpanded(true)moved.isExpandedis now seeded fromisListExpanded || revealed, since a render-time sync fires on change and socannot cover an entry that mounts already revealed.
PromptArgumentsForm,ResourceTemplatePanel— reset on template/promptswitch.
ServerConfigModal— reset on open. Keyed onopened ? initial : undefined,which collapses "opened flipped" and "initial changed while open" into one
value;
initialis already memoized, so it cannot thrash.useValueChangehas its own test file, andServerConfigModalgains anopen→edit→close→reopen test (the close leg was previously untested, which is
what left the new guard uncovered).
Advisory delta
npm audit, per package, before → after:clients/webclients/cliclients/tuiclients/launcherbrace-expansionis gone from all five —eslint@10resolvesminimatch@10→brace-expansion@5.0.9. Dropping@eslint/eslintrc(removed in v10) also tookjs-yamlwith it, clearing GHSA-52cp-r559-cp3m (high) from all four clients asa bonus. The remainder are unrelated and tracked separately.
npm run cipasses end to end — validate, the per-file ≥90 coverage gate, thebuild gate, all five smokes (including
smoke:tui, run locally on a real TTY),and 462 Storybook tests.
Also documents the effect rule in AGENTS.md and mirrors it into
.github/copilot-instructions.md, since it is now something a reviewer cites.Test plan
npm run cifrom the repo root, green end to end:validate— format-coverage + typecheck-coverage guards,test:scripts, thecore//shared lint gate, then all four clients'format:check+lint+typecheck+build+ unit tests.coverage— the per-file ≥90 gate on all four dimensions, web (unit +integration), cli, tui, launcher.
verify:build-gate— the browser-externalized-builtin build gate.smoke— launcher dispatch, cli over stdio, tui (real TTY, local), prod web,and the headless-Chromium boot smoke.
Lint was also run per surface to confirm each one is clean under eslint 10 and
not merely unreachable:
lint:core,lint:shared, andeslint .in each ofweb, cli, tui, and launcher.
No UI behavior changes, so no screenshots — the eight
useValueChangeconversions are render-timing refactors of existing resets, covered by the
existing component tests plus the two added above.
🤖 Generated with Claude Code
https://claude.ai/code/session_01YAt8rqxysNbhYWLhoRm3fU