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.123 Home All releases olderv1.0.122 v1.0.124newer
Claude Code v1.0.123

Code Optimization

What: Refactored module imports to use named exports instead of namespace imports

Details:

  • Changed import OFQ from "stream" to import { PassThrough as so5 } from "stream" at line 444692
  • Changed import $9Q from "node:process" to import { cwd as $7A } from "node:process" at line 357152
  • These changes improve bundle optimization and tree-shaking by importing only the specific functions needed rather than entire modules
  • No functional changes to the CLI behavior or available commands
  • Evidence: Import refactoring at lines 357152 and 444692

Impact: This is purely an internal optimization that may slightly reduce the CLI's memory footprint and startup time, but users will not notice any behavioral differences.

Related

Other releases about the same thing. Found by shared names or similar wording; neither means one caused the other.

See this entry in the whole of v1.0.123 →