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 releases Home olderv0.2.34 v0.2.36newer

Claude Code v0.2.35

5 entries read diff v0.2.34 → v0.2.35 Markdown
Find
Pick an entry · j / k steps through
1 entry

Changesopen

#

# Claude Code v0.2.35 Changelog

Related

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

3 entries

Import Optimizationsopen

#

This version includes minor optimizations to module imports, focusing on more specific imports from Node.js built-in modules:

Related

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

Stream Module Changes#

  • Optimized stream imports: Instead of importing entire modules, the code now imports only the specific classes needed:
  • Changed from import vR4 from "stream" to import { Readable as qR4 } from "stream"
  • Changed from import e20 from "node:stream" to import { PassThrough as so1 } from "node:stream"

Related

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

Process Module Changes#

  • Optimized process imports: Similar optimization for the process module:
  • Changed from import gb2 from "node:process" to import { cwd as q00 } from "node:process"

Related

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

1 entry

Technical Detailsopen

#

These changes represent a move towards more efficient imports by using destructured imports rather than default imports. This can lead to:

  • Smaller bundle sizes through better tree-shaking
  • Clearer code intent by explicitly naming the imported functionality
  • Potential performance improvements by avoiding unnecessary module loading

Related

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

1 entry

Impact on Usersopen

#

These are internal implementation changes with no impact on CLI functionality or user-facing features. All commands and interactions remain unchanged.

Related

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

Verbatim
No official entry

Not individually listed upstream

v0.2.35 does not have its own entry in Anthropic’s official changelog, because prerelease builds are often folded into a neighbouring release. Browse the full changelog for the closest official notes. Everything else on this page came out of the bundle instead, which is why the two lists don't match.

System prompt

The system prompt was not captured for this release, so this page cannot say whether it moved.