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 v1.0.128 Home All releases olderv1.0.127 v2.0.0newer
Claude Code v1.0.128

Optimized Credential Storage

What: Refactored credential storage from factory functions to singleton objects with memoized read operations.

Details:

  • Keychain storage (Hy1) and plaintext storage (pZ1) now singleton objects
  • Read operations memoized to avoid redundant file/keychain access
  • Storage path computation cached via jV0() helper
  • Explicit cache invalidation after update() or delete() ensures correctness
  • Improved performance through reduced object allocation and I/O operations
  • No user-visible changes to behavior
  • Evidence: Keychain singleton at line 378779, plaintext singleton at line 378823, path memoization at line 378818

See this entry in the whole of v1.0.128 →