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.61 Home All releases olderv2.0.60 v2.0.62newer
Claude Code v2.0.61

Import Statement Modernization

What: Internal code refactoring that reorganizes how Node.js modules are imported.

Details:

  • Converted 16 default imports to named/destructured imports
  • No runtime behavior changes
  • No impact on CLI functionality or performance
  • Evidence: import@16646 at line 16647 in v2.0.60 changed from import eD1 from "node:child_process" to destructured import { spawn as v84, spawnSync as b84 } from "child_process" at line 47888 in v2.0.61

Affected modules:

  • node:child_process
  • node:fs
  • node:os
  • node:path
  • node:process
  • node:util
  • crypto
  • https
  • stream

Note: Users do not need to take any action for this release. All existing commands, flags, and workflows continue to work identically to v2.0.60.

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 v2.0.61 →