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.234 Home All releases olderv2.1.233 v2.1.235newer
Claude Code v2.1.234

Git remote hostnames validated more strictly

You'll notice
Useful2 Signal2
Git

Hostnames pulled from git remotes are validated more strictly so a crafted URL can't look like a flag.

What

A hostname parsed out of a git remote URL must now consist only of letters, digits, dots and hyphens and must not start with a hyphen, on top of the existing checks for a dot and an alphabetic top-level domain. This stops a crafted remote URL from producing a host that later looks like a command-line option.

Evidence

/^[A-Za-z0-9.-]+$/

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.234 →