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.
This is a maintenance release with no user-facing changes. The update consists entirely of internal code refactoring—specifically, modernizing import statements to use ES module named imports instead of default imports for Node.js built-in modules.
What's wrong with this entry?
This release refactors how Node.js built-in modules are imported throughout the codebase:
import fs from "node:fs") to named imports (e.g., import { readFileSync, existsSync } from "node:fs").node:child_process, node:fs, node:os, node:path, node:process, node:util, crypto, https, stream, path, child_processThe diff shows 15 removed import statements and 15 added import statements with restructured named imports. Structural similarity is 99.9% with 8,487 internal variable renames typical of minification differences.
Strings lifted out of the shipped bundle, so the claim above can be checked against them.
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?
Users upgrading from v2.1.4 should experience no behavioral differences. This release appears to be a housekeeping update to improve code consistency and potentially enable tree-shaking optimizations in the bundler.
Published verbatim by Anthropic for v2.1.5. 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.
CLAUDE_CODE_TMPDIR environment variable to override the temp directory used for internal temp files, useful for environments with custom temp directory requirementsNo change to the system prompt since v2.1.4.
Agent SDK, print mode