Skip to content

Release History

DoubleGate edited this page Sep 1, 2026 · 7 revisions

Release History

Full notes for every version live in docs/releases/ and on the releases page. This is the shape of the 2.x line, and what each release was actually about.

v2.4.0 — the tool registry

Four analysis tools that an operation cannot express: xor_key_length, cyclic_pattern, hash_identify, rsa_attack. See Analysis Tools.

No plugin loader, deliberately — node:vm is not a security boundary, and that was measured rather than assumed. Also corrected three documents that described work nobody had done, including a third-party notices file crediting eight ports that were not ports.

v2.3.0 — protocol currency and transports

Protocol revision 2026-07-28 on both stdio and HTTP, served alongside the 2025 era from one set of handlers (MCP SDK v2). A socket transport. npm distribution unblocked.

And the release that found 17 image operations returning Node's shared buffer pool instead of the image — a Buffer is a view, so .buffer is the pool, and a 129-byte PNG came back as a 65,599-byte ArrayBuffer of whatever the process had recently allocated. Reported privately upstream as GHSA-hj7h-fgw7-x6w8. Add Text To Image turned out never to have worked in this fork at all.

Coverage thresholds were raised from 75/70/90/75 to 95/88/96/96 — the old numbers sat twenty points below actual, so the gate could not fail.

v2.2.0 — multi-modal

Generate QR Code, Render Image and the image set return a real MCP image content block; Play Media returns audio. Before this, the html-to-text conversion deleted the payload and these operations returned an empty string — they had never worked over MCP.

Tool annotations on every tool, so a client can skip the approval prompt for a pure operation. The exceptions were measured, not guessed: only HTTP request and DNS over HTTPS reach the network. Plus five prompts and recipe resources.

v2.1.1 — security sweep

55 code-scanning alerts dispositioned: fixed, suppressed with a written justification, or dismissed with a reason.

v2.1.0 — the tool surface

tools/list became an index rather than a catalogue: ~24 tools instead of 527 at the time. See The Tool Surface.

This is also the release whose testing lesson shaped everything after it. Every test before it spoke raw JSON-RPC — which does no schema validation — so three releases had shipped with every one of 524 tools carrying an empty inputSchema, with the suite green throughout.

v2.0.0 — the major

Upstream catch-up v10.19.4 → v11.4.0 (440 → 505 operations). Relicensed to GPL-3.0-or-later. Per-session HTTP transport. 272 security findings closed. The cyberchef_ prefix removal was withdrawn after measurement: it saved 2.6% of the payload against breaking every integration and creating 19 colliding names.

Before 2.0

The 1.x line ran from v1.0.0 to v1.9.0, building the MCP layer itself: streaming and structured errors (1.5), recipe management (1.6), batch and caching and quotas (1.7), the deprecation contract (1.8), worker threads (1.9).

cyberchef-mcp_v1 is frozen but pullable. Its tags stay available, and a v1.9.x maintenance branch ships security-only patches until roughly March 2027 — still under Apache-2.0, since the GPL relicensing applies from v2.0.0 forward.

Versioning

SemVer. Additive features ship off by default so non-major releases stay compatible. Breaking save-state, format or API changes are reserved for a clearly announced major.

Clone this wiki locally