Related
Other releases about the same thing. Found by shared names or similar wording; neither means one caused the other.
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.
What's wrong with this entry?
This release includes minor optimizations to module imports, focusing on more specific named imports rather than default imports. These changes improve code clarity and potentially reduce bundle size.
Other releases about the same thing. Found by shared names or similar wording; neither means one caused the other.
What's wrong with this entry?
stream import: Now imports only Readable as a named import instead of the entire stream module // Before: import vR4 from "stream";
// After: import { Readable as qR4 } from "stream";
PassThrough stream utility: Introduced named import for PassThrough from node:stream import { PassThrough as so1 } from "node:stream";
This suggests enhanced stream processing capabilities, potentially for piping data through transformations without modification.
cwd function // Before: import gb2 from "node:process";
// After: import { cwd as q00 } from "node:process";
This indicates the CLI only needs the current working directory functionality from the process module.
Other releases about the same thing. Found by shared names or similar wording; neither means one caused the other.
What's wrong with this entry?
Version 0.2.34 is a minor optimization release that refactors module imports to use more specific named imports. This approach:
The addition of PassThrough stream support suggests potential improvements in how the CLI handles data streaming internally, though this doesn't introduce any new user-facing commands or features.
Other releases about the same thing. Found by shared names or similar wording; neither means one caused the other.
Published verbatim by Anthropic for v0.2.34. Text is unmodified from the upstream changelog. Everything else on this page came out of the bundle instead, which is why the two lists don't match.
The system prompt was not captured for this release, so this page cannot say whether it moved.