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.47 v0.2.49newer

Claude Code v0.2.48

2 entries read diff v0.2.47 → v0.2.48 Markdown

Version 0.2.48 is a maintenance release focused on internal code organization. The changes involve switching from default imports to named imports for Node.js built-in modules, which is a best practice for better tree-shaking and clearer code intentions. These changes do not affect any user-facing functionality, CLI arguments, or interactive features.

Find
Pick an entry · j / k steps through
1 entry

Changesopen

#

# Claude Code v0.2.48 Changelog

Related

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

3 entries

Import Changesopen

#

This release contains minor internal refactoring of module imports with no user-facing changes:

Related

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

Refactored Imports#

  • Stream module: Changed from default import to named import
  • Before: import PE4 from "stream"
  • After: import { Readable as $E4 } from "stream"
  • Process module: Changed from default import to named import
  • Before: import Vc2 from "node:process"
  • After: import { cwd as yw0 } from "node:process"

Related

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

Technical Details#

  • Structural similarity: 100%
  • Total changes: 2 additions, 2 deletions
  • 122 internal renames (no functional impact)

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