Source Intelligence

DisclaimerUnofficial, and not affiliated with Anthropic. Nearly all of this is read straight out of what ships: npm bundles, captured prompts, published docs. Anthropic's own notes go in verbatim, marked as theirs. The rest is my reading, and every entry carries the strings behind it. If one looks wrong, vote it down and say why.

All of v2.1.248 Home All releases olderv2.1.247 v2.1.250newer
Claude Code v2.1.248

Published-page markup parser no longer shares regex state between parses

You'll notice
Useful2 Signal2
Artifacts

Two published artifact pages parsed at once can no longer corrupt each other's validation.

What

The parser that decides what markup a published artifact page may contain now builds its matching state fresh per call, closing a class of bug where two parses running together could corrupt each other's position. What is accepted is unchanged: a doctype, the same base href shape, utf-8 charset only, and the expected root mount element.

Evidence

<!doctype[ \t\n\f\r]+html[ \t\n\f\r]*>

Strings lifted out of the shipped bundle, so the claim above can be checked against them.

See this entry in the whole of v2.1.248 →