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.46 Home All releases olderv2.0.45 v2.0.47newer
Claude Code v2.0.46

Date Format Token Validation

What: Implemented validation for deprecated uppercase date format tokens

Details:

  • Function vB9() at line 458852 now validates year tokens (Y, YY, YYYY)
  • Warns users when using deprecated uppercase tokens that should be lowercase
  • Prevents confusion between ISO week-numbering years (Y) and calendar years (y)
  • Previously stubbed in v2.0.45 (vB9 = () => {} at line 458887), now fully implemented
  • Part of date-fns Unicode token validation system
  • Evidence: Implementation added at vB9() at line 458852, used in format validation at line 458914

See this entry in the whole of v2.0.46 →