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.93 v0.2.96newer

Claude Code v0.2.94

3 entries read diff v0.2.93 → v0.2.94 Markdown
Find
Pick an entry · j / k steps through
1 entry

Changesopen

#

# Claude Code v0.2.94 Changelog

Related

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

4 entries

Import Optimizationsopen

#

This release focuses on optimizing module imports for better performance and cleaner code structure.

Related

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

Changes#

Improved Import Specificity

The CLI now uses more targeted imports instead of importing entire modules:

  • Process Module: Instead of importing the entire node:process module, the CLI now imports only the cwd function directly:
  // Before: import YP6 from "node:process"
  // After:  import { cwd as Ti0 } from "node:process"

This change reduces memory footprint by only loading the specific functionality needed for getting the current working directory.

  • Stream Module: Similarly, the stream module import has been optimized to import only the PassThrough class:
  // Before: import Uz4 from "stream"
  // After:  import { PassThrough as MW8 } from "stream"

The PassThrough stream is used internally for piping data between different parts of the CLI without transformation.

Related

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

Technical Details#

  • Bundle Size: These targeted imports help reduce the overall bundle size and improve startup performance
  • No Functional Changes: This update maintains 100% structural similarity with the previous version - all functionality remains identical
  • Internal Refactoring: 138 internal variable renames were performed as part of the build process (standard minification behavior)

Related

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

Summary#

Version 0.2.94 is a performance-focused release that optimizes how the CLI loads Node.js built-in modules. Users won't notice any behavioral changes, but the CLI should have slightly improved startup times and reduced memory usage due to more efficient module loading.

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.94 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.