mirror of
https://github.com/anthropics/claude-code.git
synced 2026-06-13 00:13:29 +00:00
Compare commits
2 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
feabcc3c2b | ||
|
|
d1e174252d |
29
CHANGELOG.md
29
CHANGELOG.md
@@ -1,5 +1,34 @@
|
||||
# Changelog
|
||||
|
||||
## 2.1.165
|
||||
|
||||
- Bug fixes and reliability improvements
|
||||
|
||||
## 2.1.163
|
||||
|
||||
- Added `requiredMinimumVersion` and `requiredMaximumVersion` managed settings — Claude Code refuses to start if its version is outside the allowed range and directs the user to an approved version
|
||||
- Added `/plugin list` command to list installed plugins, with `--enabled`/`--disabled` filters
|
||||
- Added a "c to copy" shortcut to `/btw` that copies the raw markdown answer to the clipboard, preserving formatting when pasted elsewhere
|
||||
- Hooks: Stop and SubagentStop hooks can now return `hookSpecificOutput.additionalContext` to give Claude feedback and keep the turn going without being labeled a hook error
|
||||
- Skills: added `\$` escape syntax to include a literal `$` before a digit in command bodies
|
||||
- stdio MCP servers now receive the same `CLAUDE_CODE_SESSION_ID` as hooks/Bash on `--resume`
|
||||
- Fixed `claude -p` hanging forever after its final result when a backgrounded command never exits — background shells are now stopped ~5s after the result once stdin closes
|
||||
- Fixed `claude -p` failing with "ANTHROPIC_API_KEY required" on Bedrock/Vertex/Foundry when `CI=true` and no Anthropic API key is set
|
||||
- Fixed bash commands failing under bazel and EDR-protected Go workflows: `$TMPDIR` was overridden to `/tmp/claude-{uid}` for all commands instead of only sandboxed ones (regression in 2.1.154)
|
||||
- Fixed Bash commands failing on Windows with "EEXIST: file already exists" on the session-env directory when it has the read-only attribute or is inside OneDrive
|
||||
- Fixed org-managed permission rules not applying for the entire session when the managed settings fetch completed during startup on a fresh config directory
|
||||
- Fixed background sessions in `claude agents` losing their running background tasks when reattached after a Claude Code update
|
||||
- Fixed terminal misalignment and a multi-second hang when exiting the agent view by pressing Esc
|
||||
- Fixed clicking Stop on a background-task chip in the desktop app not clearing the chip when the underlying process was already gone
|
||||
- Fixed keyboard input becoming permanently unresponsive after a paste operation whose end marker is dropped by the terminal
|
||||
- Fixed hook `if: "Bash(...)"` conditions firing on every Bash command containing `$()` or `$VAR`; the pattern now matches against commands inside subshells and backticks too
|
||||
- Fixed deny rules on home-directory paths (e.g. `Read(~/Desktop/**)`) not blocking Bash commands that reference the path via `$HOME`
|
||||
- Fixed a stray "(no content)" line left in the transcript after closing panel dialogs like /mcp and /plugins
|
||||
- Background agent sessions now update to a new Claude Code version in the background, so opening a session after an update no longer waits on a cold restart
|
||||
- Clearer descriptions for built-in commands and skills in the / menu
|
||||
- The subscription-switch suggestion now shows in the startup announcement slot instead of a toast
|
||||
- `claude agents` dispatching from the state-grouped view now starts the session in the directory the agent view was opened from
|
||||
|
||||
## 2.1.162
|
||||
|
||||
- `claude agents --json` now includes `waitingFor` showing what a waiting session is blocked on (e.g. permission prompt)
|
||||
|
||||
123
feed.xml
123
feed.xml
@@ -6,7 +6,42 @@
|
||||
<author><name>Anthropic</name></author>
|
||||
<link rel="alternate" type="text/html" href="https://github.com/anthropics/claude-code/blob/main/CHANGELOG.md"/>
|
||||
<link rel="self" type="application/atom+xml" href="https://raw.githubusercontent.com/anthropics/claude-code/main/feed.xml"/>
|
||||
<updated>2026-06-03T21:31:28Z</updated>
|
||||
<updated>2026-06-05T05:44:59Z</updated>
|
||||
<entry>
|
||||
<id>https://github.com/anthropics/claude-code/releases/tag/v2.1.165</id>
|
||||
<title>Claude Code v2.1.165</title>
|
||||
<link rel="alternate" type="text/html" href="https://github.com/anthropics/claude-code/releases/tag/v2.1.165"/>
|
||||
<updated>2026-06-05T05:44:59Z</updated>
|
||||
<content type="html"><p>• Bug fixes and reliability improvements</p></content>
|
||||
</entry>
|
||||
<entry>
|
||||
<id>https://github.com/anthropics/claude-code/releases/tag/v2.1.163</id>
|
||||
<title>Claude Code v2.1.163</title>
|
||||
<link rel="alternate" type="text/html" href="https://github.com/anthropics/claude-code/releases/tag/v2.1.163"/>
|
||||
<updated>2026-06-04T21:52:45Z</updated>
|
||||
<content type="html"><p>• Added requiredMinimumVersion and requiredMaximumVersion managed settings — Claude Code refuses to start if its version is outside the allowed range and directs the user to an approved version</p>
|
||||
<p>• Added /plugin list command to list installed plugins, with --enabled/--disabled filters</p>
|
||||
<p>• Added a "c to copy" shortcut to /btw that copies the raw markdown answer to the clipboard, preserving formatting when pasted elsewhere</p>
|
||||
<p>• Hooks: Stop and SubagentStop hooks can now return hookSpecificOutput.additionalContext to give Claude feedback and keep the turn going without being labeled a hook error</p>
|
||||
<p>• Skills: added \$ escape syntax to include a literal $ before a digit in command bodies</p>
|
||||
<p>• stdio MCP servers now receive the same CLAUDE_CODE_SESSION_ID as hooks/Bash on --resume</p>
|
||||
<p>• Fixed claude -p hanging forever after its final result when a backgrounded command never exits — background shells are now stopped ~5s after the result once stdin closes</p>
|
||||
<p>• Fixed claude -p failing with "ANTHROPIC_API_KEY required" on Bedrock/Vertex/Foundry when CI=true and no Anthropic API key is set</p>
|
||||
<p>• Fixed bash commands failing under bazel and EDR-protected Go workflows: $TMPDIR was overridden to /tmp/claude-{uid} for all commands instead of only sandboxed ones (regression in 2.1.154)</p>
|
||||
<p>• Fixed Bash commands failing on Windows with "EEXIST: file already exists" on the session-env directory when it has the read-only attribute or is inside OneDrive</p>
|
||||
<p>• Fixed org-managed permission rules not applying for the entire session when the managed settings fetch completed during startup on a fresh config directory</p>
|
||||
<p>• Fixed background sessions in claude agents losing their running background tasks when reattached after a Claude Code update</p>
|
||||
<p>• Fixed terminal misalignment and a multi-second hang when exiting the agent view by pressing Esc</p>
|
||||
<p>• Fixed clicking Stop on a background-task chip in the desktop app not clearing the chip when the underlying process was already gone</p>
|
||||
<p>• Fixed keyboard input becoming permanently unresponsive after a paste operation whose end marker is dropped by the terminal</p>
|
||||
<p>• Fixed hook if: "Bash(...)" conditions firing on every Bash command containing $() or $VAR; the pattern now matches against commands inside subshells and backticks too</p>
|
||||
<p>• Fixed deny rules on home-directory paths (e.g. Read(~/Desktop/**)) not blocking Bash commands that reference the path via $HOME</p>
|
||||
<p>• Fixed a stray "(no content)" line left in the transcript after closing panel dialogs like /mcp and /plugins</p>
|
||||
<p>• Background agent sessions now update to a new Claude Code version in the background, so opening a session after an update no longer waits on a cold restart</p>
|
||||
<p>• Clearer descriptions for built-in commands and skills in the / menu</p>
|
||||
<p>• The subscription-switch suggestion now shows in the startup announcement slot instead of a toast</p>
|
||||
<p>• claude agents dispatching from the state-grouped view now starts the session in the directory the agent view was opened from</p></content>
|
||||
</entry>
|
||||
<entry>
|
||||
<id>https://github.com/anthropics/claude-code/releases/tag/v2.1.162</id>
|
||||
<title>Claude Code v2.1.162</title>
|
||||
@@ -529,90 +564,4 @@
|
||||
<p>• Improved hook configuration error: configuring a prompt- or agent-type hook for SessionStart/Setup/SubagentStart now shows a clear "use a command-type hook instead" error</p>
|
||||
<p>• Removed stale /model claude-sonnet-4-20250514 suggestion from Usage Policy refusal messages</p></content>
|
||||
</entry>
|
||||
<entry>
|
||||
<id>https://github.com/anthropics/claude-code/releases/tag/v2.1.141</id>
|
||||
<title>Claude Code v2.1.141</title>
|
||||
<link rel="alternate" type="text/html" href="https://github.com/anthropics/claude-code/releases/tag/v2.1.141"/>
|
||||
<updated>2026-05-18T01:52:01Z</updated>
|
||||
<content type="html"><p>• Added terminalSequence field to hook JSON output so hooks can emit desktop notifications, window titles, and bells without a controlling terminal</p>
|
||||
<p>• Added CLAUDE_CODE_PLUGIN_PREFER_HTTPS to clone GitHub plugin sources over HTTPS instead of SSH, for environments without a GitHub SSH key</p>
|
||||
<p>• Added ANTHROPIC_WORKSPACE_ID environment variable for workload identity federation — scopes the minted token to a specific workspace when the federation rule covers more than one</p>
|
||||
<p>• Added claude agents --cwd &lt;path&gt; to scope the session list to a directory</p>
|
||||
<p>• /feedback can now include recent sessions (last 24 hours or 7 days) for issues spanning more than the current session</p>
|
||||
<p>• Rewind menu: added "Summarize up to here" to compress earlier context while keeping recent turns intact</p>
|
||||
<p>• Auto mode permission dialog now explains when a permissions.ask rule caused the prompt</p>
|
||||
<p>• Restored the "view diff in your IDE" option on file-edit permission prompts when an IDE is connected</p>
|
||||
<p>• Background agents launched via /bg or ←← now preserve the current permission mode instead of reverting to default</p>
|
||||
<p>• claude agents: agents that finish work but leave a background shell running now move to Completed instead of staying under Working</p>
|
||||
<p>• Improved spinner feedback during long thinking periods — the spinner now warms to amber after 10 seconds to signal Claude is still working</p>
|
||||
<p>• Improved plugin menu navigation: →/Tab switch tabs, ↑ moves to the tab strip, and tab headers and search box are clickable in fullscreen mode</p>
|
||||
<p>• Fixed background side-queries sending an unavailable Haiku model ID on Bedrock/Vertex/Foundry/gateway when no ANTHROPIC_SMALL_FAST_MODEL override is set — now falls back to the main-loop model</p>
|
||||
<p>• Fixed claude daemon status and /doctor on Windows throwing when the daemon pipe key file is locked or unreadable — now shows the underlying error instead of an opaque failure</p>
|
||||
<p>• Fixed claude agents showing the agent-type list instead of the dashboard when launched through a wrapper that adds flags</p>
|
||||
<p>• Fixed claude agents opening a crashed session firing redundant dispatches when the working directory was deleted</p>
|
||||
<p>• Fixed background jobs on a custom ANTHROPIC_BASE_URL gateway not getting auto-named — the namer now uses the main model when no Haiku model is configured</p>
|
||||
<p>• Fixed /model in one session silently changing the autocompact threshold in other concurrent sessions</p>
|
||||
<p>• Fixed switching permission mode while a tool-permission prompt is open not auto-dismissing the prompt when the new setting permits the tool</p>
|
||||
<p>• Fixed pressing Enter while a permission/dialog prompt is open also submitting text in the input box</p>
|
||||
<p>• Fixed hooks receiving a non-existent transcript_path after EnterWorktree switches the working directory</p>
|
||||
<p>• Fixed markdown tables with cell wrapping falling back to the vertical key-value layout instead of rendering as a bordered grid (regression in 2.1.136)</p>
|
||||
<p>• Fixed cancelled prompts being removed from Up-arrow history when auto-restored into the input box, avoiding duplicate entries</p>
|
||||
<p>• Fixed prompts cancelled with Ctrl+C/Esc before any response being dropped from Up-arrow history</p>
|
||||
<p>• Fixed Ctrl+C not interrupting a running turn while in vim INSERT/VISUAL mode</p>
|
||||
<p>• Fixed alternative chat:submit keybindings (e.g. meta+enter, ctrl+enter) not working when enter is rebound to chat:newline</p>
|
||||
<p>• Fixed prompt suggestions being silently disabled when an output style was configured</p>
|
||||
<p>• Fixed spinnerVerbs setting not being honored in turn-completion messages</p>
|
||||
<p>• Fixed AskUserQuestion popup hiding the last line of preceding chat content</p>
|
||||
<p>• Fixed Web Search status showing "Did 0 searches" when searches returned errors</p>
|
||||
<p>• Fixed multi-line statusline output dropping or corrupting rows when any line exceeds terminal width</p>
|
||||
<p>• Fixed light-ansi theme using invisible white for diff context lines on light backgrounds — now uses black</p>
|
||||
<p>• Fixed error overlay dumping minified bundle source that hid the original error message</p>
|
||||
<p>• Fixed pressing Enter after typing a feedback survey rating digit submitting it as a chat message instead of the rating</p>
|
||||
<p>• Fixed pressing x on a selected subagent in the agent panel typing into the prompt instead of stopping the agent</p>
|
||||
<p>• Fixed session title being derived from plugin monitor notifications before the user's first prompt</p>
|
||||
<p>• Fixed "Allowed by PermissionRequest hook" repeating once per tool call under a collapsed read/search group</p>
|
||||
<p>• Fixed /tui silently dropping running background shells and subagents — now refuses and asks to wait for them to finish</p>
|
||||
<p>• Fixed welcome banner showing "API Usage Billing" on Bedrock, Vertex, Foundry, and other third-party providers — now shows the provider name</p>
|
||||
<p>• Fixed /mcp server list not keeping the focused server visible in short terminals in fullscreen mode</p>
|
||||
<p>• Fixed redaction in /feedback bundles producing invalid JSON for quoted values like session IDs</p>
|
||||
<p>• Fixed desktop and third-party provider sessions incorrectly inheriting apiKeyHelper/ANTHROPIC_AUTH_TOKEN from host managed-settings</p>
|
||||
<p>• Fixed early analytics events being silently dropped when fired before logger initialization</p>
|
||||
<p>• Fixed claude plugin install failing for plugins whose marketplace ref no longer exists upstream when a sha is also pinned</p>
|
||||
<p>• Fixed plugin details pane showing 0 MCP servers for plugins that declare them via .mcp.json</p>
|
||||
<p>• Fixed plugin MCP servers with unset config variables showing a generic connection failure instead of a "config issue" message with a fix-it hint; malformed .mcp.json entries no longer drop other MCP servers</p>
|
||||
<p>• Fixed MCP server configs using POSIX shell parameter expansions (e.g. ${var%pattern}) being incorrectly flagged as missing environment variables</p>
|
||||
<p>• Fixed MCP HTTP/SSE servers returning 403 on connect showing as "failed" instead of "needs auth"</p>
|
||||
<p>• Fixed remote MCP servers disconnecting unnecessarily when the optional server-events stream failed to reconnect — tool calls continue over POST</p>
|
||||
<p>• Fixed Remote Control MCP connectors all failing with 401 when the worker session token rotated mid-session</p>
|
||||
<p>• Fixed Remote Control automatically re-enrolling a trusted device when the server rejects a stale token, instead of looping through /login</p>
|
||||
<p>• Fixed a race where early OTel spans could be silently dropped in SDK/headless mode with beta tracing enabled</p>
|
||||
<p>• Fixed custom voice:pushToTalk keybindings and "space": null unbinds being silently ignored</p>
|
||||
<p>• Fixed Windows Alt+V image paste reporting "no image found" when the clipboard contains a screenshot</p>
|
||||
<p>• Fixed SDK "Claude Code native binary not found" on Linux when both glibc and musl platform packages are installed</p>
|
||||
<p>• Bedrock: awsCredentialExport now always runs when configured instead of being skipped when ambient AWS credentials resolve, fixing auth for cross-account access</p>
|
||||
<p>• [VSCode] Fixed in-chat mic showing no feedback when the microphone produced only silence — now shows "No audio detected"</p>
|
||||
<p>• [VSCode] Voice mode: the WSL error now suggests installing sox libsox-fmt-pulse for WSLg users</p>
|
||||
<p>• claude agents: launching a session no longer fails when the pre-warmed background worker is unhealthy — now falls back to a fresh launch</p>
|
||||
<p>• claude agents no longer shows empty placeholder sessions left over from backgrounding a fresh REPL, and shows onboarding text when entered via ← with no other agents</p>
|
||||
<p>• Empty idle background sessions left over from ← are now automatically retired by the daemon after 5 minutes</p></content>
|
||||
</entry>
|
||||
<entry>
|
||||
<id>https://github.com/anthropics/claude-code/releases/tag/v2.1.140</id>
|
||||
<title>Claude Code v2.1.140</title>
|
||||
<link rel="alternate" type="text/html" href="https://github.com/anthropics/claude-code/releases/tag/v2.1.140"/>
|
||||
<updated>2026-05-18T01:52:01Z</updated>
|
||||
<content type="html"><p>• Improved Agent tool subagent_type matching to accept case- and separator-insensitive values (e.g. "Code Reviewer" resolves to code-reviewer)</p>
|
||||
<p>• Updated agent color palette</p>
|
||||
<p>• Fixed /goal silently hanging when disableAllHooks or allowManagedHooksOnly is set — now shows a clear message instead of an indicator that never resolves</p>
|
||||
<p>• Fixed a regression in settings hot-reload where symlinked settings files caused misattributed change events and spurious ConfigChange hooks</p>
|
||||
<p>• Fixed claude --bg failing with "connection dropped mid-request" when the background service was about to idle-exit</p>
|
||||
<p>• Fixed background service startup failing on machines with enterprise endpoint security by allowing more time</p>
|
||||
<p>• Fixed remote managed settings not retrying on 401 — now retries once with a force-refreshed token</p>
|
||||
<p>• Fixed managed extraKnownMarketplaces auto-update policy not being persisted to known_marketplaces.json</p>
|
||||
<p>• Fixed /loop scheduling redundant wakeups to poll for background tasks that already notify on completion</p>
|
||||
<p>• Fixed a recurring event-loop stall on Windows when a missing executable (e.g. gh) triggered synchronous where.exe re-spawns on every check</p>
|
||||
<p>• Fixed Read tool calls failing validation when offset is passed as a whitespace-padded or +-prefixed string</p>
|
||||
<p>• Fixed native terminal cursor not staying at the input caret when the terminal loses focus</p>
|
||||
<p>• Plugins now warn when a default component folder (e.g. commands/) is silently ignored because plugin.json sets the matching key. Shown in /doctor, claude plugin list, and /plugin.</p></content>
|
||||
</entry>
|
||||
</feed>
|
||||
|
||||
Reference in New Issue
Block a user