From 07dcea57eef5cbfafd04a18bd928be987f56ad2f Mon Sep 17 00:00:00 2001 From: GitHub Actions Date: Tue, 4 Nov 2025 00:57:10 +0000 Subject: [PATCH 1/9] chore: Update CHANGELOG.md --- CHANGELOG.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7f1590b3e..a49924589 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## 2.0.32 + +- Un-deprecate output styles based on community feedback +- Added `companyAnnouncements` setting for displaying announcements on startup +- Fixed hook progress messages not updating correctly during PostToolUse hook execution + ## 2.0.31 - Windows: native installation uses shift+tab as shortcut for mode switching, instead of alt+m From 84b97165dd84122f74614731e84b9de878791416 Mon Sep 17 00:00:00 2001 From: GitHub Actions Date: Tue, 4 Nov 2025 22:34:37 +0000 Subject: [PATCH 2/9] chore: Update CHANGELOG.md --- CHANGELOG.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index a49924589..835fb0d85 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## 2.0.33 + +- Native binary installs now launch quicker. +- Fixed `claude doctor` incorrectly detecting Homebrew vs npm-global installations by properly resolving symlinks +- Fixed `claude mcp serve` exposing tools with incompatible outputSchemas + ## 2.0.32 - Un-deprecate output styles based on community feedback From 3af8ef29be10d2f0dc98ee5db4ae7e9558ff48e5 Mon Sep 17 00:00:00 2001 From: James Trew Date: Tue, 4 Nov 2025 20:46:10 -0500 Subject: [PATCH 3/9] fix: use portable shebang in plugin hooks MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Replace #!/bin/bash with #!/usr/bin/env bash for better portability across systems 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- .../explanatory-output-style/hooks-handlers/session-start.sh | 2 +- plugins/learning-output-style/hooks-handlers/session-start.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/explanatory-output-style/hooks-handlers/session-start.sh b/plugins/explanatory-output-style/hooks-handlers/session-start.sh index cd2cad828..05547bed4 100755 --- a/plugins/explanatory-output-style/hooks-handlers/session-start.sh +++ b/plugins/explanatory-output-style/hooks-handlers/session-start.sh @@ -1,4 +1,4 @@ -#!/bin/bash +#!/usr/bin/env bash # Output the explanatory mode instructions as additionalContext # This mimics the deprecated Explanatory output style diff --git a/plugins/learning-output-style/hooks-handlers/session-start.sh b/plugins/learning-output-style/hooks-handlers/session-start.sh index fb4b8d5d3..0489074ab 100755 --- a/plugins/learning-output-style/hooks-handlers/session-start.sh +++ b/plugins/learning-output-style/hooks-handlers/session-start.sh @@ -1,4 +1,4 @@ -#!/bin/bash +#!/usr/bin/env bash # Output the learning mode instructions as additionalContext # This combines the unshipped Learning output style with explanatory functionality From 7a05427a4b02a0b0bc6ab671d89a75adf90d7f1c Mon Sep 17 00:00:00 2001 From: GitHub Actions Date: Wed, 5 Nov 2025 21:07:53 +0000 Subject: [PATCH 4/9] chore: Update CHANGELOG.md --- CHANGELOG.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 835fb0d85..355a6d6fb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## 2.0.34 + +- VSCode Extension: Added setting to configure the initial permission mode for new conversations +- Improved file path suggestion performance with native Rust-based fuzzy finder +- Fixed infinite token refresh loop that caused MCP servers with OAuth (e.g., Slack) to hang during connection +- Fixed memory crash when reading or writing large files (especially base64-encoded images) + ## 2.0.33 - Native binary installs now launch quicker. From b95fa46499043c07bc32bc36b575433e419d9e37 Mon Sep 17 00:00:00 2001 From: GitHub Actions Date: Thu, 6 Nov 2025 21:04:19 +0000 Subject: [PATCH 5/9] chore: Update CHANGELOG.md --- CHANGELOG.md | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 355a6d6fb..85c7633c5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,14 @@ # Changelog +## 2.0.35 + +- Improve fuzzy search results when searching commands +- Improved VS Code extension to respect `chat.fontSize` and `chat.fontFamily` settings throughout the entire UI, and apply font changes immediately without requiring reload +- Added `CLAUDE_CODE_EXIT_AFTER_STOP_DELAY` environment variable to automatically exit SDK mode after a specified idle duration, useful for automated workflows and scripts +- Migrated `ignorePatterns` from project config to deny permissions in the localSettings. +- Fixed messages returning null `stop_reason` and `stop_sequence` values +- Fixed menu navigation getting stuck on items with empty string or other falsy values (e.g., in the `/hooks` menu) + ## 2.0.34 - VSCode Extension: Added setting to configure the initial permission mode for new conversations From 1fe9e369a7c30805189cbbb72eb69c15ed4ec96b Mon Sep 17 00:00:00 2001 From: GitHub Actions Date: Fri, 7 Nov 2025 22:00:42 +0000 Subject: [PATCH 6/9] chore: Update CHANGELOG.md --- CHANGELOG.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 85c7633c5..256dcbd36 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## 2.0.36 + +- Fixed: DISABLE_AUTOUPDATER environment variable now properly disables package manager update notifications +- Fixed queued messages being incorrectly executed as bash commands +- Fixed input being lost when typing while a queued message is processed + ## 2.0.35 - Improve fuzzy search results when searching commands From f09b24c49a2ccac53ae53ecc526aa63868023aee Mon Sep 17 00:00:00 2001 From: Ravshan Samandarov Date: Sun, 9 Nov 2025 08:47:52 +0300 Subject: [PATCH 7/9] Update installation instructions for Claude Code --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index f3a71440e..ee8d3ecf7 100644 --- a/README.md +++ b/README.md @@ -15,7 +15,7 @@ Claude Code is an agentic coding tool that lives in your terminal, understands y 1. Install Claude Code: ```sh -npm install -g @anthropic-ai/claude-code +curl -fsSL https://claude.ai/install.sh | bash ``` 2. Navigate to your project directory and run `claude`. From 2d0fcacc05adf72cedabd7f5e3ca217ee8444889 Mon Sep 17 00:00:00 2001 From: Boris Cherny Date: Sun, 9 Nov 2025 13:04:12 -0800 Subject: [PATCH 8/9] Update code-review.md to avoid flagging test failures --- plugins/code-review/commands/code-review.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/code-review/commands/code-review.md b/plugins/code-review/commands/code-review.md index 064aaae56..4b4585924 100644 --- a/plugins/code-review/commands/code-review.md +++ b/plugins/code-review/commands/code-review.md @@ -31,7 +31,7 @@ Examples of false positives, for steps 4 and 5: - Pre-existing issues - Something that looks like a bug but is not actually a bug - Pedantic nitpicks that a senior engineer wouldn't call out -- Issues that a linter will catch (no need to run the linter to verify) +- Issues that a linter, typechecker, or test runner will catch (eg. failing tests, lint errors, type errors). Do not run these to verify; assume that they will be run as part of CI. - General code quality issues (eg. lack of test coverage, general security issues), unless explicitly required in CLAUDE.md - Issues that are called out in CLAUDE.md, but explicitly silenced in the code (eg. due to a lint ignore comment) From d38bde50875a7ccc4006d3e4afd8c4d25a8552ef Mon Sep 17 00:00:00 2001 From: GitHub Actions Date: Tue, 11 Nov 2025 00:18:17 +0000 Subject: [PATCH 9/9] chore: Update CHANGELOG.md --- CHANGELOG.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 256dcbd36..5f85b519d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## 2.0.37 + +- Fixed how idleness is computed for notifications +- Hooks: Added matcher values for Notification hook events +- Output Styles: Added `keep-coding-instructions` option to frontmatter + ## 2.0.36 - Fixed: DISABLE_AUTOUPDATER environment variable now properly disables package manager update notifications