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.0.3 Home All releases olderv2.0.2 v2.0.5newer
Claude Code v2.0.3

Rendering function optimization

The internal rendering function BiQ() at line 356972 was refactored to AiQ() at line 356971, removing unnecessary rows and columns parameters that were being passed through but not actively used by the core rendering logic. The function signature changed from accepting 4 parameters (A, B, Q, Z) to just 2 parameters (A, B), and the return value no longer includes rows and columns fields.

Evidence
  • Old: var BiQ = (A, B, Q, Z) => at line 356972 in v2.0.2
  • New: var AiQ = (A, B) => at line 356971 in v2.0.3

See this entry in the whole of v2.0.3 →