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.116 v0.2.118newer

Claude Code v0.2.117

8 entries read diff v0.2.116 → v0.2.117 Markdown
Find
Pick an entry · j / k steps through
9 entries

Changesopen

#

# Claude Code v0.2.117 Changelog

Related

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

Background Task Management 🚀#

A new tasks command has been added to list and manage background tasks. This allows you to:

  • View all running background tasks
  • Monitor task status (running, completed, or failed)
  • View stdout/stderr output from tasks in real-time
  • Kill running tasks

Usage:

claude tasks

The interface shows:

  • Task ID, status, runtime, and command
  • Live stdout output (last 5 lines)
  • Live stderr output (last line)
  • Exit codes for completed tasks

Related

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

Long-Running Command Handling ⏱️#

When executing commands that take a long time, Claude Code now presents three options:

  1. Continue waiting - Keep waiting for the command to complete
  2. Run in the background - Move the command to a background task
  3. Kill command - Terminate the command

This prevents the CLI from being blocked by long-running processes.

Enhanced Print Mode (--print) 📄#

The print mode has been significantly improved with new options:

Session Management:

  • --continue - Continue the most recent conversation
  • --resume <session-id> - Resume a specific conversation by UUID

System Prompts:

  • --system-prompt <prompt> - Replace the default system prompt
  • --append-system-prompt <prompt> - Append to the existing system prompt

Examples:

# Continue last conversation
claude --print --continue "What were we discussing?"

# Resume specific session
claude --print --resume 550e8400-e29b-41d4-a716-446655440000 "Let's continue"

# Custom system prompt
claude --print --system-prompt "You are a Python expert" "Write a sorting algorithm"

Related

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

Output Truncation#

Large command outputs are now intelligently truncated to prevent overwhelming the display:

  • Shows the first and last portions of output
  • Displays line count for truncated sections
  • Format: [X lines truncated] in the middle

Related

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

Stream Processing#

Added PassThrough stream support for better handling of streaming data in background tasks.

Related

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

Import Path Corrections#

  • Fixed Node.js process import to use named imports (import { cwd } from "node:process")
  • Properly scoped crypto imports for UUID generation

Related

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

Code Organization#

  • Removed obsolete functions (A50, FZ6) related to model override handling
  • Consolidated message formatting utilities (MR5, $Z6)
  • Improved task output management with dedicated truncation logic

Related

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

Performance#

  • More efficient handling of long-running processes
  • Better memory management for large command outputs
  • Streamlined background task monitoring

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 v0.2.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.

  • Breaking change: --print JSON output now returns nested message objects, for forwards-compatibility as we introduce new metadata fields
  • Introduced settings.cleanupPeriodDays
  • Introduced CLAUDE_CODE_API_KEY_HELPER_TTL_MS env var
  • Introduced --debug mode
System prompt

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