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.117 Home All releases olderv1.0.116 v1.0.118newer
Claude Code v1.0.117

Import Optimization

The codebase has been refactored to use more specific ES6 named imports instead of default module imports, reducing the amount of code loaded at runtime. This is an internal optimization with no functional impact on CLI behavior or features.

Technical details:

  • Replaced import YJQ from "stream" with import { PassThrough as Jn5 } from "stream" at line 442149
  • Replaced import oAQ from "node:process" with import { cwd as fNA } from "node:process" at line 361348
  • The Transform class continues to be imported from stream (via YJQ.Transform at line 337901)
  • The PassThrough class usage at line 442326 now uses the named import Jn5
  • The cwd function usage at lines 361467 and 361469 now uses the named import fNA

Impact: None. This is purely an internal refactoring that improves code organization and potentially reduces memory footprint, but does not change any CLI functionality, commands, flags, or user-facing behavior.

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.117 →