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.96 v0.2.98newer

Claude Code v0.2.97

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

Changesopen

#

# Claude Code v0.2.97 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 includes minor internal optimizations to how modules are imported:

Related

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

Changed Imports#

  • Process module: Now imports only the cwd function directly from node:process instead of importing the entire module
  • This change improves efficiency by only loading the specific function needed for getting the current working directory
  • Stream module: Now imports only the PassThrough class directly from the stream module instead of importing the entire module
  • PassThrough streams are used internally for data flow management

Related

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

Technical Details#

These changes represent a shift from default imports to named imports for better tree-shaking and reduced memory footprint:

// Before (v0.2.96)
import process from "node:process";
import stream from "stream";

// After (v0.2.97)
import { cwd } from "node:process";
import { PassThrough } from "stream";

Related

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

Impact#

  • No user-facing changes or new features
  • Internal performance optimization only
  • All existing functionality remains unchanged
  • No breaking changes

This is a maintenance release focused on code optimization with no changes to CLI commands, arguments, or interactive behavior.

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