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.72 Home All releases olderv2.1.71 v2.1.73newer
Claude Code v2.1.72

  • Removed python --version and python3 --version from the auto-allowed command list, ensuring these commands go through normal permission checks (search for "docker ps" in the reduced allowlist)
  • Fixed voice mode availability check to use a simple boolean state instead of calling an external function, preventing potential errors (search for "voiceEnabled")
  • Fixed carriage return handling in text input to not treat \r preceded by a backslash as a submit trigger (search for "replace(/(?<=[^\\\r\n])\r$/")
  • Improved mouse input handling to filter out raw mouse escape sequences that lack a key name, preventing spurious input events (search for "^\[<\d+;\d+;\d+[Mm]")
  • Fixed tmux clipboard detection — mouse reporting is now disabled in tmux sessions to prevent conflicts (search for "process.env.TMUX" in function o_8)
  • Auto mode classifier now checks requiresUserInteraction on tools before sending to classifier, preventing interactive tools from being auto-approved (search for "requiresUserInteraction")
  • TaskOutput tool's block parameter now accepts string booleans ("true"/"false") in addition to actual booleans, improving compatibility (search for "preprocess" near "block")

See this entry in the whole of v2.1.72 →