Source Intelligence
Reading a new release v2.1.251 Analysing changes · 2/5 Deeper second pass · 0/5 agents 427 findings $12.75 so far

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.52 Home All releases olderv0.2.51 v0.2.53newer
Claude Code v0.2.52

Internal Changes

Import Optimizations

  • Refined stream module imports: Changed from importing the entire stream module to specifically importing only the Readable class. This improves bundle size and load times.
  // Before: import BM4 from "stream";
  // After: import { Readable as tE4 } from "stream";
  • Refined process module imports: Changed from importing the entire node:process module to specifically importing only the cwd function. This follows Node.js best practices for named imports.
  // Before: import gc2 from "node:process";
  // After: import { cwd as GV0 } from "node:process";

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