mirror of
https://github.com/anthropics/claude-code.git
synced 2026-06-11 06:43:33 +00:00
Compare commits
2 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
15b5d57170 | ||
|
|
1573399b48 |
38
CHANGELOG.md
38
CHANGELOG.md
@@ -1,5 +1,43 @@
|
||||
# Changelog
|
||||
|
||||
## 2.1.147
|
||||
|
||||
- Added the `Workflow` tool for deterministic multi-agent orchestration. It is off by default — set `CLAUDE_CODE_WORKFLOWS=1` to enable
|
||||
- Pinned background sessions (`Ctrl+T` in `claude agents`) now stay alive when idle, are restarted in place to apply Claude Code updates, and are shed under memory pressure only after non-pinned sessions
|
||||
- Renamed `/simplify` to `/code-review`. It now reports correctness bugs at a chosen effort level (e.g., `/code-review high`); pass `--comment` to post findings as inline GitHub PR comments. The old cleanup-and-fix behavior has been removed
|
||||
- Hardened REPL and Workflow tool sandboxes against prototype-pollution and thenable-based escapes
|
||||
- Improved auto-updater: retries transient network failures, reports specific error categories and OS error codes on failure, and shows the current version when an update fails
|
||||
- Improved diff rendering performance for large file edits
|
||||
- Prompt history no longer records consecutive duplicate entries — recalling a prompt with arrow-up and submitting it again won't add another copy
|
||||
- Fixed enterprise login restrictions (`forceLoginOrgUUID` and `forceLoginMethod` managed-settings) not being enforced against third-party-provider and API-key sessions
|
||||
- Fixed `&` in `!` command output displaying as `&`, which broke copy-pasting URLs from commands like `gcloud auth login` on headless machines
|
||||
- Fixed unknown slash commands silently doing nothing in headless/SDK mode — they now show an error message
|
||||
- Fixed `/help` rendering a broken tab header and showing only one command per page on small terminals when not in fullscreen mode
|
||||
- Fixed shell snapshot dropping user functions whose names start with a single underscore, which broke aliases referencing them
|
||||
- Fixed plugin agents that declare multiple `Agent(...)` types in `tools:` frontmatter dropping all but the last entry
|
||||
- Fixed hook `if` conditions like `PowerShell(git push*)` never matching — only `PowerShell(*)` worked
|
||||
- Fixed PowerShell tool dropping output for commands that rely on the default formatter
|
||||
- Fixed: on Windows, "Yes, and don't ask again" for a PowerShell script invocation now writes a rule that actually matches on subsequent runs
|
||||
- Fixed PowerShell tool failing on Windows with exit code 1 when `pwsh` is installed via winget or the Microsoft Store
|
||||
- Fixed `/effort` opening with the slider on the wrong level — it now starts at your current effort
|
||||
- Fixed paginating MCP servers dropping resources, templates, and prompts past page 1
|
||||
- Fixed full-screen strobing in attached background sessions on Windows Terminal while Claude is streaming
|
||||
- Fixed: on Windows, removing a background-job worktree no longer follows NTFS junctions into the main repo
|
||||
- Fixed `/background` refusing sessions whose only typed input was a skill or custom slash command
|
||||
- Fixed auto mode suppressing `AskUserQuestion` when the user or a skill explicitly relies on it; the auto-mode classifier now sees the user's answers as intent signal
|
||||
- Fixed `/theme` "New custom theme" and color editor dialogs not responding to Esc
|
||||
- Fixed an uncaught exception at the end of streaming sessions when running via the Agent SDK
|
||||
- Fixed a rare hang when waiting for scroll to settle on Windows
|
||||
- Fixed stale and doubled rows in the agent view list on Windows when background session results contain wide (CJK) characters
|
||||
- Fixed pasted text being delivered to agents as an unreadable `[Pasted text #N]` placeholder instead of the actual content
|
||||
- Fixed plugin component counts in `claude plugin details` and `/plugin` being doubled when a plugin's manifest listed paths overlapping its default directories
|
||||
- Fixed backgrounded sessions re-prompting for tool permissions you already granted with "don't ask again"
|
||||
- Fixed GNOME Terminal right-click and middle-click paste not inserting text
|
||||
- Fixed `CLAUDE_CODE_SUBAGENT_MODEL` not applying to teammate processes spawned by agent teams
|
||||
- Fixed slash commands followed by a tab or newline being treated as an unknown command
|
||||
- Fixed several spacing and layout glitches in the `/plugin`, `/status`, `/mobile`, `/sandbox`, and `/permissions` menus
|
||||
- Fixed stripped images prompting the model to repeatedly re-read media that was no longer present
|
||||
|
||||
## 2.1.145
|
||||
|
||||
- Added `claude agents --json` to list live Claude sessions as JSON for scripting (tmux-resurrect, status bars, session pickers)
|
||||
|
||||
71
feed.xml
71
feed.xml
@@ -6,7 +6,48 @@
|
||||
<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-05-19T21:31:01Z</updated>
|
||||
<updated>2026-05-21T20:39:15Z</updated>
|
||||
<entry>
|
||||
<id>https://github.com/anthropics/claude-code/releases/tag/v2.1.147</id>
|
||||
<title>Claude Code v2.1.147</title>
|
||||
<link rel="alternate" type="text/html" href="https://github.com/anthropics/claude-code/releases/tag/v2.1.147"/>
|
||||
<updated>2026-05-21T20:39:15Z</updated>
|
||||
<content type="html"><p>• Added the Workflow tool for deterministic multi-agent orchestration. It is off by default — set CLAUDE_CODE_WORKFLOWS=1 to enable</p>
|
||||
<p>• Pinned background sessions (Ctrl+T in claude agents) now stay alive when idle, are restarted in place to apply Claude Code updates, and are shed under memory pressure only after non-pinned sessions</p>
|
||||
<p>• Renamed /simplify to /code-review. It now reports correctness bugs at a chosen effort level (e.g., /code-review high); pass --comment to post findings as inline GitHub PR comments. The old cleanup-and-fix behavior has been removed</p>
|
||||
<p>• Hardened REPL and Workflow tool sandboxes against prototype-pollution and thenable-based escapes</p>
|
||||
<p>• Improved auto-updater: retries transient network failures, reports specific error categories and OS error codes on failure, and shows the current version when an update fails</p>
|
||||
<p>• Improved diff rendering performance for large file edits</p>
|
||||
<p>• Prompt history no longer records consecutive duplicate entries — recalling a prompt with arrow-up and submitting it again won't add another copy</p>
|
||||
<p>• Fixed enterprise login restrictions (forceLoginOrgUUID and forceLoginMethod managed-settings) not being enforced against third-party-provider and API-key sessions</p>
|
||||
<p>• Fixed &amp; in ! command output displaying as &amp;amp;, which broke copy-pasting URLs from commands like gcloud auth login on headless machines</p>
|
||||
<p>• Fixed unknown slash commands silently doing nothing in headless/SDK mode — they now show an error message</p>
|
||||
<p>• Fixed /help rendering a broken tab header and showing only one command per page on small terminals when not in fullscreen mode</p>
|
||||
<p>• Fixed shell snapshot dropping user functions whose names start with a single underscore, which broke aliases referencing them</p>
|
||||
<p>• Fixed plugin agents that declare multiple Agent(...) types in tools: frontmatter dropping all but the last entry</p>
|
||||
<p>• Fixed hook if conditions like PowerShell(git push*) never matching — only PowerShell(*) worked</p>
|
||||
<p>• Fixed PowerShell tool dropping output for commands that rely on the default formatter</p>
|
||||
<p>• Fixed: on Windows, "Yes, and don't ask again" for a PowerShell script invocation now writes a rule that actually matches on subsequent runs</p>
|
||||
<p>• Fixed PowerShell tool failing on Windows with exit code 1 when pwsh is installed via winget or the Microsoft Store</p>
|
||||
<p>• Fixed /effort opening with the slider on the wrong level — it now starts at your current effort</p>
|
||||
<p>• Fixed paginating MCP servers dropping resources, templates, and prompts past page 1</p>
|
||||
<p>• Fixed full-screen strobing in attached background sessions on Windows Terminal while Claude is streaming</p>
|
||||
<p>• Fixed: on Windows, removing a background-job worktree no longer follows NTFS junctions into the main repo</p>
|
||||
<p>• Fixed /background refusing sessions whose only typed input was a skill or custom slash command</p>
|
||||
<p>• Fixed auto mode suppressing AskUserQuestion when the user or a skill explicitly relies on it; the auto-mode classifier now sees the user's answers as intent signal</p>
|
||||
<p>• Fixed /theme "New custom theme" and color editor dialogs not responding to Esc</p>
|
||||
<p>• Fixed an uncaught exception at the end of streaming sessions when running via the Agent SDK</p>
|
||||
<p>• Fixed a rare hang when waiting for scroll to settle on Windows</p>
|
||||
<p>• Fixed stale and doubled rows in the agent view list on Windows when background session results contain wide (CJK) characters</p>
|
||||
<p>• Fixed pasted text being delivered to agents as an unreadable [Pasted text #N] placeholder instead of the actual content</p>
|
||||
<p>• Fixed plugin component counts in claude plugin details and /plugin being doubled when a plugin's manifest listed paths overlapping its default directories</p>
|
||||
<p>• Fixed backgrounded sessions re-prompting for tool permissions you already granted with "don't ask again"</p>
|
||||
<p>• Fixed GNOME Terminal right-click and middle-click paste not inserting text</p>
|
||||
<p>• Fixed CLAUDE_CODE_SUBAGENT_MODEL not applying to teammate processes spawned by agent teams</p>
|
||||
<p>• Fixed slash commands followed by a tab or newline being treated as an unknown command</p>
|
||||
<p>• Fixed several spacing and layout glitches in the /plugin, /status, /mobile, /sandbox, and /permissions menus</p>
|
||||
<p>• Fixed stripped images prompting the model to repeatedly re-read media that was no longer present</p></content>
|
||||
</entry>
|
||||
<entry>
|
||||
<id>https://github.com/anthropics/claude-code/releases/tag/v2.1.145</id>
|
||||
<title>Claude Code v2.1.145</title>
|
||||
@@ -627,32 +668,4 @@
|
||||
<p>• Fixed embedded grep/find/rg shell wrappers failing when the running binary is deleted mid-session — now falls back to installed tools</p>
|
||||
<p>• Reduced peak file descriptor usage during find in the Bash tool on large directory trees</p></content>
|
||||
</entry>
|
||||
<entry>
|
||||
<id>https://github.com/anthropics/claude-code/releases/tag/v2.1.120</id>
|
||||
<title>Claude Code v2.1.120</title>
|
||||
<link rel="alternate" type="text/html" href="https://github.com/anthropics/claude-code/releases/tag/v2.1.120"/>
|
||||
<updated>2026-05-18T01:52:01Z</updated>
|
||||
<content type="html"><p>• Windows: Git for Windows (Git Bash) is no longer required — when absent, Claude Code uses PowerShell as the shell tool</p>
|
||||
<p>• Added claude ultrareview [target] subcommand to run /ultrareview non-interactively from CI or scripts — prints findings to stdout (--json for raw output) and exits 0 on completion or 1 on failure</p>
|
||||
<p>• Skills can now reference the current effort level with ${CLAUDE_EFFORT} in their content</p>
|
||||
<p>• Set AI_AGENT environment variable for subprocesses so gh can attribute traffic to Claude Code</p>
|
||||
<p>• Spinner tips that recommend installing the desktop app or creating skills/agents are now hidden when you already have them</p>
|
||||
<p>• Show a "use PgUp/PgDn to scroll" hint when the terminal sends arrow keys instead of scroll events</p>
|
||||
<p>• Faster session start when you have many claude.ai connectors configured but not authorized</p>
|
||||
<p>• The auto mode denial message now links to the configuration docs</p>
|
||||
<p>• claude plugin validate now accepts $schema, version, and description at the top level of marketplace.json and $schema in plugin.json</p>
|
||||
<p>• Auto-compact in auto mode now displays auto (lowercase, no token count) instead of a misleading token value</p>
|
||||
<p>• Fixed pressing Esc during a stdio MCP tool call closing the entire server connection (regression in 2.1.105)</p>
|
||||
<p>• Fixed /rewind and other interactive overlays not responding to keyboard input after launching with claude --resume</p>
|
||||
<p>• Fixed terminal scrollback duplication in non-fullscreen mode (resize, dialog dismiss, long sessions)</p>
|
||||
<p>• Fixed DISABLE_TELEMETRY / CLAUDE_CODE_DISABLE_NONESSENTIAL_TRAFFIC not suppressing usage metrics telemetry for API and enterprise users</p>
|
||||
<p>• Fixed false-positive "Dangerous rm operation" permission prompts in auto mode for multi-line bash commands containing both a pipe and a redirect</p>
|
||||
<p>• Fixed long selection menus clipping below the terminal in fullscreen mode — the focused option now stays on screen as you scroll</p>
|
||||
<p>• Fixed Write tool output collapsing instead of expanding when clicking "+N lines" in fullscreen</p>
|
||||
<p>• Fixed slash command picker jumping while typing, and improved highlight to only match contiguous substrings in blue</p>
|
||||
<p>• Fixed /plugin marketplace failing to load when one entry uses an unrecognized source format — that entry is shown but installing it prompts you to update</p>
|
||||
<p>• [VSCode] /usage now opens the native Account &amp; Usage dialog instead of returning plain-text session cost</p>
|
||||
<p>• [VSCode] Voice dictation now respects the language setting in ~/.claude/settings.json</p>
|
||||
<p>• Fixed find in the Bash tool exhausting open file descriptors on large directory trees, causing host-wide crashes (macOS/Linux native builds)</p></content>
|
||||
</entry>
|
||||
</feed>
|
||||
|
||||
Reference in New Issue
Block a user