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.83 v0.2.85newer

Claude Code v0.2.84

2 entries read diff v0.2.83 → v0.2.84 Markdown
Find
Pick an entry · j / k steps through
2 entries

Changesopen

Technical Updates#

Import Refactoring

  • Updated stream import: Changed from importing the entire stream module to importing only the PassThrough class using destructuring syntax
  • Before: import XG9 from "stream"
  • After: import { PassThrough as zl9 } from "stream"
  • Updated process import: Changed from importing the entire node:process module to importing only the cwd function using destructuring syntax
  • Before: import mA6 from "node:process"
  • After: import { cwd as hz2 } from "node:process"

Related

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

Summary#

This version contains minor technical improvements focused on optimizing imports. The changes reduce the bundle size by importing only the specific functions needed (PassThrough from stream and cwd from process) rather than entire modules. This is a performance optimization that should have no impact on functionality from the user's perspective.

The structural similarity remains at 100%, indicating no changes to the overall architecture or feature set of Claude Code.

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