mirror of
https://github.com/anthropics/claude-code.git
synced 2026-06-15 11:03:28 +00:00
Compare commits
6 Commits
remove-cha
...
v2.1.150
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
39e853e407 | ||
|
|
5ef2f06c6a | ||
|
|
64e53823de | ||
|
|
2194e8e090 | ||
|
|
65d44eb134 | ||
|
|
efea4c38d9 |
10
.github/workflows/claude-dedupe-issues.yml
vendored
10
.github/workflows/claude-dedupe-issues.yml
vendored
@@ -17,6 +17,8 @@ jobs:
|
||||
permissions:
|
||||
contents: read
|
||||
issues: write
|
||||
# Required to mint the OIDC token exchanged for a Claude API access token (Workload Identity Federation)
|
||||
id-token: write
|
||||
|
||||
steps:
|
||||
- name: Checkout repository
|
||||
@@ -31,7 +33,13 @@ jobs:
|
||||
github_token: ${{ secrets.GITHUB_TOKEN }}
|
||||
allowed_non_write_users: "*"
|
||||
prompt: "/dedupe ${{ github.repository }}/issues/${{ github.event.issue.number || inputs.issue_number }}"
|
||||
anthropic_api_key: ${{ secrets.ANTHROPIC_API_KEY }}
|
||||
# Authenticate to the Claude API via Workload Identity Federation
|
||||
# (the workflow's OIDC token is exchanged for a short-lived access
|
||||
# token) instead of a static API key.
|
||||
anthropic_federation_rule_id: ${{ vars.ANTHROPIC_FEDERATION_RULE_ID }}
|
||||
anthropic_organization_id: ${{ vars.ANTHROPIC_ORGANIZATION_ID }}
|
||||
anthropic_service_account_id: ${{ vars.ANTHROPIC_SERVICE_ACCOUNT_ID }}
|
||||
anthropic_workspace_id: ${{ vars.ANTHROPIC_WORKSPACE_ID }}
|
||||
claude_args: "--model claude-sonnet-4-5-20250929"
|
||||
|
||||
- name: Log duplicate comment event to Statsig
|
||||
|
||||
10
.github/workflows/claude-issue-triage.yml
vendored
10
.github/workflows/claude-issue-triage.yml
vendored
@@ -18,6 +18,8 @@ jobs:
|
||||
permissions:
|
||||
contents: read
|
||||
issues: write
|
||||
# Required to mint the OIDC token exchanged for a Claude API access token (Workload Identity Federation)
|
||||
id-token: write
|
||||
|
||||
steps:
|
||||
- name: Checkout repository
|
||||
@@ -34,6 +36,12 @@ jobs:
|
||||
github_token: ${{ secrets.GITHUB_TOKEN }}
|
||||
allowed_non_write_users: "*"
|
||||
prompt: "/triage-issue REPO: ${{ github.repository }} ISSUE_NUMBER: ${{ github.event.issue.number }} EVENT: ${{ github.event_name }}"
|
||||
anthropic_api_key: ${{ secrets.ANTHROPIC_API_KEY }}
|
||||
# Authenticate to the Claude API via Workload Identity Federation
|
||||
# (the workflow's OIDC token is exchanged for a short-lived access
|
||||
# token) instead of a static API key.
|
||||
anthropic_federation_rule_id: ${{ vars.ANTHROPIC_FEDERATION_RULE_ID }}
|
||||
anthropic_organization_id: ${{ vars.ANTHROPIC_ORGANIZATION_ID }}
|
||||
anthropic_service_account_id: ${{ vars.ANTHROPIC_SERVICE_ACCOUNT_ID }}
|
||||
anthropic_workspace_id: ${{ vars.ANTHROPIC_WORKSPACE_ID }}
|
||||
claude_args: |
|
||||
--model claude-opus-4-6
|
||||
|
||||
8
.github/workflows/claude.yml
vendored
8
.github/workflows/claude.yml
vendored
@@ -33,6 +33,12 @@ jobs:
|
||||
id: claude
|
||||
uses: anthropics/claude-code-action@v1
|
||||
with:
|
||||
anthropic_api_key: ${{ secrets.ANTHROPIC_API_KEY }}
|
||||
# Authenticate to the Claude API via Workload Identity Federation
|
||||
# (the workflow's OIDC token is exchanged for a short-lived access
|
||||
# token) instead of a static API key.
|
||||
anthropic_federation_rule_id: ${{ vars.ANTHROPIC_FEDERATION_RULE_ID }}
|
||||
anthropic_organization_id: ${{ vars.ANTHROPIC_ORGANIZATION_ID }}
|
||||
anthropic_service_account_id: ${{ vars.ANTHROPIC_SERVICE_ACCOUNT_ID }}
|
||||
anthropic_workspace_id: ${{ vars.ANTHROPIC_WORKSPACE_ID }}
|
||||
claude_args: "--model claude-sonnet-4-5-20250929"
|
||||
|
||||
|
||||
38
CHANGELOG.md
38
CHANGELOG.md
@@ -1,10 +1,46 @@
|
||||
# Changelog
|
||||
|
||||
## 2.1.150
|
||||
|
||||
- Internal infrastructure improvements (no user-facing changes)
|
||||
|
||||
## 2.1.149
|
||||
|
||||
- `/usage` now shows a per-category breakdown of what's driving your limits usage — skills, subagents, plugins, and per-MCP-server cost
|
||||
- `/diff` detail view can now be scrolled with the keyboard (arrows, `j`/`k`, `PgUp`/`PgDn`, `Space`, `Home`/`End`)
|
||||
- Markdown output now renders GFM task list checkboxes (`- [ ] todo` / `- [x] done`) instead of plain bullets
|
||||
- Enterprise: added the `allowAllClaudeAiMcps` managed setting to load claude.ai cloud MCP connectors alongside `managed-mcp.json`
|
||||
- Fixed a PowerShell permission bypass: built-in `cd` functions (`cd..`, `cd\`, `cd~`, `X:`) changed the working directory undetected, letting a later command read outside the workspace
|
||||
- Fixed the sandbox write allowlist in git worktrees covering the entire main repository root instead of only the shared `.git` directory (with `hooks/` and `config` denied)
|
||||
- Fixed PowerShell prefix/wildcard allow rules (e.g. `PowerShell(dotnet.exe build *)`) not pre-approving native executables and scripts
|
||||
- Fixed a permission-analysis gap where the parser trusted stale variable-tracking values for `PWD`/`OLDPWD`/`DIRSTACK` across `cd`/`pushd`/`popd`
|
||||
- Fixed `find` in the Bash tool exhausting the macOS system file/vnode table and crashing the host on large directory trees
|
||||
- Fixed the managed-settings approval dialog leaving the terminal frozen after accepting at startup
|
||||
- Fixed `/ultraplan` and remote session creation failing with "Could not capture uncommitted changes" when the working tree has no real changes
|
||||
- Fixed `otelHeadersHelper` failing silently when the script path contains spaces; helper failures are now reported in `/doctor` and the debug log
|
||||
- Fixed the thinking spinner staying amber across tool calls and onto fresh thinking bursts
|
||||
- Fixed collapsed Bash output reporting the wrong hidden-line count for outputs with many short lines
|
||||
- Fixed slash-command argument-hint clipping trailing typed characters when the hint overflows the input box
|
||||
- Fixed argument-hint and progressive arg suggestions not appearing after Tab-completing a skill whose frontmatter `name:` differs from its directory basename
|
||||
- Fixed the status bar showing the user's baseline `/effort` setting instead of the effort level applied by skill/agent `effort:` frontmatter
|
||||
- Fixed Ctrl+O transcript view freezing at the moment it was opened instead of tailing new messages
|
||||
- Fixed editing a recalled prompt-history entry losing the edit when navigating further up/down with arrow keys
|
||||
- Fixed `/config` exit summary reporting phantom changes to auto-compact and theme when toggling unrelated settings
|
||||
- Fixed `/insights` crashing when cached session-meta files are missing optional fields
|
||||
- Fixed malformed PowerShell and History tool calls with missing input being misclassified as reads in transcript collapsing
|
||||
- Fixed renaming a Remote Control session from claude.ai or the Claude mobile app not updating the local session name for `claude --resume`
|
||||
- Fixed a race where a just-submitted prompt could appear twice in the up-arrow history
|
||||
- Fixed tapping the "Jump to bottom" pill in fullscreen mode not dismissing it immediately
|
||||
- Improved `/feedback` reports to include the conversation that happened before context compaction, making issues from earlier in long sessions easier to triage
|
||||
|
||||
## 2.1.148
|
||||
|
||||
- Fixed the Bash tool returning exit code 127 on every command for some users (a regression introduced in 2.1.147)
|
||||
|
||||
## 2.1.147
|
||||
|
||||
- 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 the REPL tool sandbox 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
|
||||
|
||||
128
feed.xml
128
feed.xml
@@ -6,16 +6,60 @@
|
||||
<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-21T20:39:15Z</updated>
|
||||
<updated>2026-05-23T04:03:45Z</updated>
|
||||
<entry>
|
||||
<id>https://github.com/anthropics/claude-code/releases/tag/v2.1.150</id>
|
||||
<title>Claude Code v2.1.150</title>
|
||||
<link rel="alternate" type="text/html" href="https://github.com/anthropics/claude-code/releases/tag/v2.1.150"/>
|
||||
<updated>2026-05-23T04:03:45Z</updated>
|
||||
<content type="html"><p>• Internal infrastructure improvements (no user-facing changes)</p></content>
|
||||
</entry>
|
||||
<entry>
|
||||
<id>https://github.com/anthropics/claude-code/releases/tag/v2.1.149</id>
|
||||
<title>Claude Code v2.1.149</title>
|
||||
<link rel="alternate" type="text/html" href="https://github.com/anthropics/claude-code/releases/tag/v2.1.149"/>
|
||||
<updated>2026-05-22T22:09:22Z</updated>
|
||||
<content type="html"><p>• /usage now shows a per-category breakdown of what's driving your limits usage — skills, subagents, plugins, and per-MCP-server cost</p>
|
||||
<p>• /diff detail view can now be scrolled with the keyboard (arrows, j/k, PgUp/PgDn, Space, Home/End)</p>
|
||||
<p>• Markdown output now renders GFM task list checkboxes (- [ ] todo / - [x] done) instead of plain bullets</p>
|
||||
<p>• Enterprise: added the allowAllClaudeAiMcps managed setting to load claude.ai cloud MCP connectors alongside managed-mcp.json</p>
|
||||
<p>• Fixed a PowerShell permission bypass: built-in cd functions (cd.., cd\, cd~, X:) changed the working directory undetected, letting a later command read outside the workspace</p>
|
||||
<p>• Fixed the sandbox write allowlist in git worktrees covering the entire main repository root instead of only the shared .git directory (with hooks/ and config denied)</p>
|
||||
<p>• Fixed PowerShell prefix/wildcard allow rules (e.g. PowerShell(dotnet.exe build *)) not pre-approving native executables and scripts</p>
|
||||
<p>• Fixed a permission-analysis gap where the parser trusted stale variable-tracking values for PWD/OLDPWD/DIRSTACK across cd/pushd/popd</p>
|
||||
<p>• Fixed find in the Bash tool exhausting the macOS system file/vnode table and crashing the host on large directory trees</p>
|
||||
<p>• Fixed the managed-settings approval dialog leaving the terminal frozen after accepting at startup</p>
|
||||
<p>• Fixed /ultraplan and remote session creation failing with "Could not capture uncommitted changes" when the working tree has no real changes</p>
|
||||
<p>• Fixed otelHeadersHelper failing silently when the script path contains spaces; helper failures are now reported in /doctor and the debug log</p>
|
||||
<p>• Fixed the thinking spinner staying amber across tool calls and onto fresh thinking bursts</p>
|
||||
<p>• Fixed collapsed Bash output reporting the wrong hidden-line count for outputs with many short lines</p>
|
||||
<p>• Fixed slash-command argument-hint clipping trailing typed characters when the hint overflows the input box</p>
|
||||
<p>• Fixed argument-hint and progressive arg suggestions not appearing after Tab-completing a skill whose frontmatter name: differs from its directory basename</p>
|
||||
<p>• Fixed the status bar showing the user's baseline /effort setting instead of the effort level applied by skill/agent effort: frontmatter</p>
|
||||
<p>• Fixed Ctrl+O transcript view freezing at the moment it was opened instead of tailing new messages</p>
|
||||
<p>• Fixed editing a recalled prompt-history entry losing the edit when navigating further up/down with arrow keys</p>
|
||||
<p>• Fixed /config exit summary reporting phantom changes to auto-compact and theme when toggling unrelated settings</p>
|
||||
<p>• Fixed /insights crashing when cached session-meta files are missing optional fields</p>
|
||||
<p>• Fixed malformed PowerShell and History tool calls with missing input being misclassified as reads in transcript collapsing</p>
|
||||
<p>• Fixed renaming a Remote Control session from claude.ai or the Claude mobile app not updating the local session name for claude --resume</p>
|
||||
<p>• Fixed a race where a just-submitted prompt could appear twice in the up-arrow history</p>
|
||||
<p>• Fixed tapping the "Jump to bottom" pill in fullscreen mode not dismissing it immediately</p>
|
||||
<p>• Improved /feedback reports to include the conversation that happened before context compaction, making issues from earlier in long sessions easier to triage</p></content>
|
||||
</entry>
|
||||
<entry>
|
||||
<id>https://github.com/anthropics/claude-code/releases/tag/v2.1.148</id>
|
||||
<title>Claude Code v2.1.148</title>
|
||||
<link rel="alternate" type="text/html" href="https://github.com/anthropics/claude-code/releases/tag/v2.1.148"/>
|
||||
<updated>2026-05-22T01:16:46Z</updated>
|
||||
<content type="html"><p>• Fixed the Bash tool returning exit code 127 on every command for some users (a regression introduced in 2.1.147)</p></content>
|
||||
</entry>
|
||||
<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>
|
||||
<content type="html"><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>
|
||||
@@ -592,80 +636,4 @@
|
||||
<p>• PowerShell tool: bare -- (e.g. git diff -- file) is no longer mis-flagged as the --% stop-parsing token</p>
|
||||
<p>• Fixed Agent SDK hang when the model emits a malformed tool name in a parallel tool call batch</p></content>
|
||||
</entry>
|
||||
<entry>
|
||||
<id>https://github.com/anthropics/claude-code/releases/tag/v2.1.123</id>
|
||||
<title>Claude Code v2.1.123</title>
|
||||
<link rel="alternate" type="text/html" href="https://github.com/anthropics/claude-code/releases/tag/v2.1.123"/>
|
||||
<updated>2026-05-18T01:52:01Z</updated>
|
||||
<content type="html"><p>• Fixed OAuth authentication failing with a 401 retry loop when CLAUDE_CODE_DISABLE_EXPERIMENTAL_BETAS=1 is set</p></content>
|
||||
</entry>
|
||||
<entry>
|
||||
<id>https://github.com/anthropics/claude-code/releases/tag/v2.1.122</id>
|
||||
<title>Claude Code v2.1.122</title>
|
||||
<link rel="alternate" type="text/html" href="https://github.com/anthropics/claude-code/releases/tag/v2.1.122"/>
|
||||
<updated>2026-05-18T01:52:01Z</updated>
|
||||
<content type="html"><p>• Added ANTHROPIC_BEDROCK_SERVICE_TIER environment variable to select a Bedrock service tier (default, flex, or priority), sent as the X-Amzn-Bedrock-Service-Tier header</p>
|
||||
<p>• Pasting a PR URL into the /resume search box now finds the session that created that PR (GitHub, GitHub Enterprise, GitLab, and Bitbucket)</p>
|
||||
<p>• /mcp now shows claude.ai connectors hidden by a manually-added server with the same URL, with a hint to remove the duplicate</p>
|
||||
<p>• Clarified the /mcp message shown when an MCP server is still unauthorized after the browser sign-in flow</p>
|
||||
<p>• OpenTelemetry: numeric attributes on api_request/api_error log events are now emitted as numbers, not strings</p>
|
||||
<p>• OpenTelemetry: added claude_code.at_mention log event for @-mention resolution</p>
|
||||
<p>• Fixed /branch producing forks that fail with "tool_use ids were found without tool_result blocks" when the source session contained entries from rewound timelines</p>
|
||||
<p>• Fixed /model not showing the Effort option for Bedrock application inference profile ARNs, and those ARNs not receiving output_config.effort</p>
|
||||
<p>• Fixed Vertex AI / Bedrock returning invalid_request_error: output_config: Extra inputs are not permitted on session-title generation and other structured-output queries</p>
|
||||
<p>• Fixed Vertex AI count_tokens endpoint returning 400 errors for users behind proxy gateways</p>
|
||||
<p>• Fixed spinnerTipsOverride.excludeDefault not suppressing the time-based spinner tips</p>
|
||||
<p>• Fixed ToolSearch missing MCP tools that connected after session start in nonblocking mode</p>
|
||||
<p>• Fixed !exit / !quit in bash mode terminating the CLI instead of running as a shell command</p>
|
||||
<p>• Fixed images sent to newer models being resized to 2576px per side instead of the correct 2000px maximum</p>
|
||||
<p>• Fixed remote control session idle status redrawing twice per second, which could flood tmux -CC control pipes and pause the terminal</p>
|
||||
<p>• Fixed assistant messages appearing blank in some sessions due to a stale view preference</p>
|
||||
<p>• Fixed a malformed hooks entry in settings.json no longer invalidating the entire file</p>
|
||||
<p>• Voice mode: keybindings bound to Caps Lock now show an error since terminals don't deliver Caps Lock as a key event</p></content>
|
||||
</entry>
|
||||
<entry>
|
||||
<id>https://github.com/anthropics/claude-code/releases/tag/v2.1.121</id>
|
||||
<title>Claude Code v2.1.121</title>
|
||||
<link rel="alternate" type="text/html" href="https://github.com/anthropics/claude-code/releases/tag/v2.1.121"/>
|
||||
<updated>2026-05-18T01:52:01Z</updated>
|
||||
<content type="html"><p>• Added alwaysLoad option to MCP server config — when true, all tools from that server skip tool-search deferral and are always available</p>
|
||||
<p>• Added claude plugin prune to remove orphaned auto-installed plugin dependencies; plugin uninstall --prune cascades</p>
|
||||
<p>• Added a type-to-filter search box to /skills so you can find a skill in long lists without scrolling</p>
|
||||
<p>• PostToolUse hooks can now replace tool output for all tools via hookSpecificOutput.updatedToolOutput (previously MCP-only)</p>
|
||||
<p>• Fullscreen mode: typing into the prompt no longer jumps scroll back to the bottom after you've scrolled up to read earlier output</p>
|
||||
<p>• Dialogs that overflow the terminal are now scrollable with arrow keys, PgUp/PgDn, home/end, and mouse wheel in both fullscreen and non-fullscreen modes</p>
|
||||
<p>• Clicking any line of a long URL that wraps across rows in fullscreen mode now opens the full URL</p>
|
||||
<p>• SDK and claude -p: CLAUDE_CODE_FORK_SUBAGENT=1 now works in non-interactive sessions</p>
|
||||
<p>• --dangerously-skip-permissions no longer prompts for writes to .claude/skills/, .claude/agents/, and .claude/commands/</p>
|
||||
<p>• /terminal-setup now enables iTerm2's "Applications in terminal may access clipboard" setting so /copy works, including from tmux</p>
|
||||
<p>• MCP servers that hit a transient error during startup now auto-retry up to 3 times instead of staying disconnected</p>
|
||||
<p>• The terminal tab session title is now generated in your configured language setting</p>
|
||||
<p>• Claude.ai connectors with the same upstream URL are now deduplicated instead of appearing as duplicates</p>
|
||||
<p>• Vertex AI: support X.509 certificate-based Workload Identity Federation (mTLS ADC)</p>
|
||||
<p>• Faster startup after upgrading: removed the Recent Activity panel from the release-notes splash</p>
|
||||
<p>• LSP diagnostic summaries now expand on click/ctrl+o and show the expand hint</p>
|
||||
<p>• SDK: mcp_authenticate now supports redirectUri for custom scheme completion and claude.ai connectors</p>
|
||||
<p>• OpenTelemetry: added stop_reason, gen_ai.response.finish_reasons, and user_system_prompt (gated behind OTEL_LOG_USER_PROMPTS) to LLM request spans</p>
|
||||
<p>• [VSCode] Voice dictation now respects the accessibility.voice.speechLanguage setting when no Claude Code language is configured</p>
|
||||
<p>• [VSCode] /context now opens a native token usage dialog</p>
|
||||
<p>• Fixed unbounded memory growth (multi-GB RSS) when processing many images in a session</p>
|
||||
<p>• Fixed /usage leaking up to ~2GB of memory on machines with large transcript histories</p>
|
||||
<p>• Fixed memory leak when long-running tools fail to emit a clear progress event</p>
|
||||
<p>• Fixed Bash tool becoming permanently unusable when the directory Claude was started in is deleted or moved mid-session</p>
|
||||
<p>• Fixed --resume crashing on startup in external builds</p>
|
||||
<p>• Fixed --resume failing on large sessions when a transcript line was corrupted by an unclean shutdown — the corrupt line is now skipped</p>
|
||||
<p>• Fixed thinking.type.enabled is not supported error when using Bedrock application inference profile ARNs</p>
|
||||
<p>• Fixed Microsoft 365 MCP OAuth failing with duplicate or unsupported prompt parameter</p>
|
||||
<p>• Fixed scrollback duplication when pressing Ctrl+L or triggering a redraw in non-fullscreen mode on tmux, GNOME Terminal, Windows Terminal, and Konsole</p>
|
||||
<p>• Fixed claude.ai MCP connectors silently disappearing when the connector-list fetch hits a transient auth error at startup</p>
|
||||
<p>• Fixed "Always allow" rules for built-in tools in remote sessions not surviving worker restarts</p>
|
||||
<p>• Fixed NO_PROXY not being respected for all HTTP clients when set via managed-settings.json under the native build</p>
|
||||
<p>• Fixed managed settings approval prompt exiting the session even when accepted — now applies settings and continues</p>
|
||||
<p>• Fixed /usage returning "rate limited" after a stale OAuth token — now refreshes automatically</p>
|
||||
<p>• Fixed invalid legacy enum values in settings.json invalidating the entire settings file</p>
|
||||
<p>• Fixed /usage dialog content being clipped when no-flicker mode is off</p>
|
||||
<p>• Fixed /focus showing "Unknown command" when the fullscreen renderer is off — now explains how to enable it</p>
|
||||
<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>
|
||||
</feed>
|
||||
|
||||
Reference in New Issue
Block a user