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.21 v1.0.23newer

Claude Code v1.0.22

15 entries read diff v1.0.21 → v1.0.22 Markdown
Find
Pick an entry · j / k steps through
7 entries

Changesopen

#

# Claude Code v1.0.22 Changelog

Related

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

MCP Resource Management Commands#

Two new commands have been added for working with MCP (Model Context Protocol) resources:

  • listMcpResources - Lists all available resources from configured MCP servers
  # List all resources from all MCP servers
  claude listMcpResources
  
  # List resources from a specific server
  claude listMcpResources --server myserver
  • readMcpResource - Reads a specific resource from an MCP server
  # Read a resource by server name and URI
  claude readMcpResource --server myserver --uri my-resource-uri

Related

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

Enhanced Permission Modes#

  • Added new permission mode: plan - Allows planning mode for complex operations
  • Added defaultMode configuration option in permissions settings
  • Added disableBypassPermissionsMode option to prevent bypassing permissions entirely
  • Permission modes now available: acceptEdits, bypassPermissions, default, plan

Related

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

XDG Base Directory Support#

Claude Code now follows the XDG Base Directory specification for better organization of files:

  • State files: $XDG_STATE_HOME/claude/ (defaults to ~/.local/state/claude/)
  • Cache files: $XDG_CACHE_HOME/claude/ (defaults to ~/.cache/claude/)
  • Data files: $XDG_DATA_HOME/claude/ (defaults to ~/.local/share/claude/)
  • Executables: ~/.local/bin/claude

The application will automatically migrate existing files from the old location (~/.claude/) to the new XDG-compliant locations on first run.

Jupyter Notebook Enhancements#

  • Cell ID Support: Notebooks now support reading individual cells by their ID
  # Read a specific cell from a notebook
  claude notebook-read notebook.ipynb --cell-id cell-123
  • Large cell outputs are now truncated with a helpful message indicating how to read the full output
  • Improved cell metadata handling with proper cell IDs

Related

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

Command History Navigation#

  • Enhanced history navigation with better state management
  • History now properly tracks command length for improved user experience
  • More robust handling of empty commands and history state

Related

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

Session Management#

  • Session message retrieval is now asynchronous for better performance
  • Improved session file handling with async operations
  • Better error handling for session loading and storage

Related

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

1 entry

Bug Fixesopen

#

  • Fixed duplicate imports and removed unused stream imports
  • Removed redundant Unicode sanitization variable declarations
  • Cleaned up unused launcher script variables
  • Fixed permission mode resolution to respect configuration settings

Related

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

1 entry

Technical Changesopen

#

  • Updated version to 1.0.22
  • Improved code organization with better module separation
  • Enhanced error messages for MCP operations
  • Better type safety in permission mode handling
  • Streamlined directory structure initialization

Related

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

1 entry

Migration Notesopen

#

When upgrading to v1.0.22, Claude Code will automatically:

  1. Check for existing files in ~/.claude/
  2. Create new XDG-compliant directory structure
  3. Migrate your existing data to the new locations
  4. Create a migration marker to prevent repeated migrations

Your existing configurations, sessions, and data will be preserved during the migration.

Verbatim
Official · Anthropic

Anthropic’s official release notes

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

  • SDK: Renamed total_cost to total_cost_usd
System prompt

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