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.116 v1.0.118newer

Claude Code v1.0.117

1 entries read diff v1.0.116 → v1.0.117 Markdown

Version 1.0.117 contains internal code optimizations with no user-visible changes or new features. This is a maintenance release focused on improving the efficiency of module imports.

Find
Pick an entry · j / k steps through
1 entry

Changesopen

Import Optimization#

The codebase has been refactored to use more specific ES6 named imports instead of default module imports, reducing the amount of code loaded at runtime. This is an internal optimization with no functional impact on CLI behavior or features.

Technical details:

  • Replaced import YJQ from "stream" with import { PassThrough as Jn5 } from "stream" at line 442149
  • Replaced import oAQ from "node:process" with import { cwd as fNA } from "node:process" at line 361348
  • The Transform class continues to be imported from stream (via YJQ.Transform at line 337901)
  • The PassThrough class usage at line 442326 now uses the named import Jn5
  • The cwd function usage at lines 361467 and 361469 now uses the named import fNA

Impact: None. This is purely an internal refactoring that improves code organization and potentially reduces memory footprint, but does not change any CLI functionality, commands, flags, or user-facing behavior.

Related

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

Verbatim
Official · Anthropic

Anthropic’s official release notes

Published verbatim by Anthropic for v1.0.117. 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.

  • Add Ctrl-R history search to recall previous commands like bash/zsh
  • Fix input lag while typing, especially on Windows
  • Add sed command to auto-allowed commands in acceptEdits mode
  • Fix Windows PATH comparison to be case-insensitive for drive letters
  • Add permissions management hint to /add-dir output
System prompt

The system prompt was not captured for this release, so this page cannot say whether it moved.