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.26 v1.0.28newer

Claude Code v1.0.27

7 entries read diff v1.0.26 → v1.0.27 Markdown
Find
Pick an entry · j / k steps through
8 entries

Changesopen

#

# Claude Code v1.0.27 Changelog

Related

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

Working Directory Management Improvements#

  • Enhanced directory addition feedback: The /add-dir command now provides more detailed and specific error messages when adding working directories
  • Clear message when no path is provided: "Please provide a directory path."
  • Specific error when path doesn't exist: "Path [path] was not found."
  • Helpful suggestion for non-directory paths: "[path] is not a directory. Did you mean to add the parent directory [parent]?"
  • Informative message for already accessible directories: "[path] is already accessible within the existing working directory [existing]."
  • Success confirmation: "Added [path] as a working directory."

Configuration Support#

  • Additional directories from configuration: Claude Code now reads additional working directories from the configuration file
  • Directories specified in permissions.additionalDirectories are automatically added at startup
  • These are processed alongside command-line --add-dir arguments

Terminal Title Generation#

  • Fixed unnecessary API calls: Terminal title generation now skips processing for local command output (messages starting with <local-command-stdout>)
  • Disabled prompt caching: Changed enablePromptCaching from true to false for terminal title requests to improve performance

Import Reorganization#

  • Replaced direct stream import with PassThrough from stream
  • Changed from node:process import to specific cwd import from node:process
  • Removed unused path.resolve import

Related

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

Code Refactoring#

  • Refactored directory addition logic to use a result-based pattern instead of direct success/message returns
  • Improved error handling and message formatting for directory operations
  • Better separation of concerns between directory validation and permission context updates

Related

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

Adding Working Directories#

# Add a directory to the working set
claude --add-dir /path/to/project

# Multiple directories can be added
claude --add-dir /project1 --add-dir /project2

# Directories from config are automatically included
# In your config file:
# permissions:
# additionalDirectories:
# - /home/user/projects
# - /opt/shared/code

Related

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

Error Handling Examples#

# Missing path
claude --add-dir
# Output: Please provide a directory path.

# Non-existent path
claude --add-dir /fake/path
# Output: Path /fake/path was not found.

# File instead of directory
claude --add-dir /etc/passwd
# Output: /etc/passwd is not a directory. Did you mean to add the parent directory /etc?

# Already accessible directory
claude --add-dir /home/user/project/src  # (when /home/user/project is already added)
# Output: /home/user/project/src is already accessible within the existing working directory /home/user/project.
Verbatim
Official · Anthropic

Anthropic’s official release notes

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

  • Streamable HTTP MCP servers are now supported
  • Remote MCP servers (SSE and HTTP) now support OAuth
  • MCP resources can now be @-mentioned
  • /resume slash command to switch conversations within Claude Code
System prompt

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