Skip to content

Release History

github-actions[bot] edited this page Sep 4, 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.8.1 — testing what we actually ship

No runtime code changed. What changed is what CI measures, and two of those were wrong in ways a green pipeline hid completely.

CI tested Node 24 while the image shipped Node 26.8.1. The runtime users actually get was never exercised by a test — and nothing reported it, because 24 is a perfectly valid version to test on. It just is not the one that ships.

Bumping everything to 26 would have inverted the bug rather than fixed it: engines declares >=24 <27, so 24 is supported for anyone installing from npm, and an untested floor is precisely what was wrong. The test gates now run both boundaries — 24 (the floor) and 26 (what ships) — with fail-fast: false, because when the Node version is the variable under test, "which ones broke" is the whole result.

And the performance benchmarks were measured on Node 22, which engines does not permit at all. The numbers posted to every pull request came from a runtime this project does not support, on a V8 two majors behind the one it ships. Missed by the v2.0.0 plan's "all 7 workflows" bump and hidden for eight releases, because a warning is not a failure and nobody reads a green job's log.

Also three GitHub Pages actions force-run on deprecated Node 20, now on their Node-24 majors.

What was left alone is documented with evidence rather than silently skipped: @astronautlabs/amf declares engines: ^14 but 0.0.6 is the latest published version and the operations were verified to work on 26.8.1; and a category of log lines that match the word "warning" without being warnings — echoed inputs, runner noise, and the audit trail firing on purpose in tests.

v2.8.0 — ARM, and 30% smaller

Images for linux/arm64 as well as linux/amd64, and the image itself down from 643 MB to 453 MB — 1,190 packages to 432.

The build ran npm ci and then rm -rf on a hardcoded list of nine package globs, against a tree of 1,310 paths of which 885 were dev-only: typescript, @rolldown, @octokit, @babel, lightningcss. Attack surface as much as weight. Replaced with a real npm prune --omit=dev, verified by re-running all 2,289 operation tests against production-only dependencies.

The prune is also what made arm64 possible: it removes every x64-locked binary in the tree, leaving a production tree that is pure JavaScript and WebAssembly. That is why the emulated arm64 build takes 4m46s rather than the 30–60 minutes it was expected to.

Two defects found on the way: a local build shipped 240 MB of Docusaurus that CI never saw (.dockerignore matches only the context root), and the developer's own saved recipes were being baked into the image.

Also CYBERCHEF_OFFLINE=true. 502 of the 504 operations never touched a network anyway; this makes the other two fail closed instead of hanging until the OS gives up. Checked against the recipe rather than the tool name — cyberchef_bake carrying HTTP request is a network call. See Configuration.

Three of the plan's eight features turned out to be already shipped in v2.6.0. The <50 MB image target is unreachable and is reported as such rather than quietly missed.

v2.7.0 — observability

A dependency-free Prometheus endpoint at /metrics (off by default — see Configuration for why it is opt-in when the health probes are not), OpenTelemetry spans following the MCP semantic conventions, and trace correlation on every log line.

It adds one package, and that was the release's main decision: the OTel API, not the SDK. Measured at 1 package / 2.6 MB / +9 ms against the SDK's 71 packages / 50 MB / +100 ms — which would have handed back more than half of v2.6.0's startup work on every stdio launch, for users collecting nothing. You supply the SDK, so every OTLP backend works rather than the three the plan named.

Tool arguments are never recorded. The conventions mark them Opt-In, and for this server the arguments are the sensitive material.

Ships a 25-panel Grafana dashboard, 9 alert rules, a Helm ServiceMonitor and PrometheusRule, and a runnable Prometheus + Grafana stack — all of it executed against a live server rather than reviewed. Building the dashboard is what found the bugs: per-tool counters that could decrease (and so would have made rate() invent traffic), counters that read zero forever on a default deployment, a duplicated # HELP line that fails an entire scrape, and caller-controlled metric labels that anyone could have used to explode a shared Prometheus.

v2.6.0 — deployable, and seven times faster to start

Cold start ~1300 ms → ~185 ms. 88% of it was one import pulling in all 504 operation implementations before answering anything, on a path only three tools need. A background warm-up was tried, measured, and removed — module loading blocks the event loop, so "in the background" is not something it can be.

Health probes and a drain that loses no requests during a rolling update. Liveness deliberately stays healthy while draining: a liveness failure there gets the pod killed mid-drain.

A Helm chart and Compose file, where the chart refuses to render configurations the server would reject at startup. Conflict detection on saved recipes — two replicas sharing one file had been silently discarding each other's writes. And a 5 s deadline plus a circuit breaker on JWKS calls, so an issuer outage no longer turns every request into two outbound ones.

The plan's centrepiece — a Redis session store with affinity and sticky sessions — was dropped: MCP 2026-07-28 removed protocol-level sessions, so there was nothing to externalise.

v2.5.0 — authorization and multi-tenancy

OAuth 2.1 Resource Server on HTTP: RFC 9728 Protected Resource Metadata, JWKS bearer validation, and RFC 8707 audience binding — the check that stops a token minted for another service being replayed here. Scope-based RBAC with three scopes, where the scope a tool needs is derived from its annotations rather than a table that goes stale. Audit logging.

Multi-tenancy across the operation cache, recipe store, concurrency pool and audit trail, with the tenant read from a claim on an already-verified token — never from a header the caller controls. Without it, any caller on a shared HTTP deployment could read and delete any other caller's recipes.

Also fixed a rate limiter that had never limited anything since v1.7.0: it was keyed on a per-request UUID, so every call looked like a first-time caller. Measured at 0 denials in 1000 requests against a limit of 5.

Not applied to stdio, deliberately — the specification says stdio SHOULD NOT use OAuth, because a bearer token protects nothing when the client already owns the process.

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 → 504 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