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 olderv1.0.14 v1.0.16newer

Claude Code v1.0.15

3 entries read diff v1.0.14 → v1.0.15 Markdown

Version 1.0.15 is a minor update that: 1. Optimizes imports by switching from whole module imports to named imports for stream and node:process modules 2. Adds functionality to close all diff tabs at once, improving workspace management when reviewing multiple file changes

The structural similarity remains at 100%, indicating these are targeted improvements rather than major architectural changes.

Find
Pick an entry · j / k steps through
4 entries

Changesopen

#

# Claude Code v1.0.15 Changelog

Related

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

Removed Imports#

  • Removed direct stream import - Previously imported the entire stream module
  • Removed direct node:process import - Previously imported the entire node:process module

Related

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

Added Imports#

  • Added named import from node:process - Now imports only the cwd function as bI0
  • Added named import from stream - Now imports only the PassThrough class as bK5

This change represents a shift from importing entire modules to importing only the specific functions/classes needed, which is a best practice for reducing bundle size and improving code clarity.

Related

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

Close All Diff Tabs Function#

A new function Tr0 has been added that allows closing all diff tabs:

async function Tr0(A) {
  await yN("closeAllDiffTabs", {}, A, !1);
}

This appears to be a utility function that sends a "closeAllDiffTabs" command, likely used when working with file diffs in the Claude Code interface. Users would benefit from this when they have multiple diff views open and want to close them all at once, helping to clean up their workspace.

Verbatim
No official entry

Not individually listed upstream

v1.0.15 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.