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 v0.2.34 Home All releases olderv0.2.33 v0.2.35newer
Claude Code v0.2.34

Changes

Stream Module Updates

  • Optimized stream import: Now imports only Readable as a named import instead of the entire stream module
  // Before: import vR4 from "stream";
  // After:  import { Readable as qR4 } from "stream";
  • Added PassThrough stream utility: Introduced named import for PassThrough from node:stream
  import { PassThrough as so1 } from "node:stream";

This suggests enhanced stream processing capabilities, potentially for piping data through transformations without modification.

Process Module Updates

  • Optimized process import: Changed from default import to named import of cwd function
  // Before: import gb2 from "node:process";
  // After:  import { cwd as q00 } from "node:process";

This indicates the CLI only needs the current working directory functionality from the process module.

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 v0.2.34 →