release: Claude Code v2.1.71 (25 patches)
This commit is contained in:
@@ -3,7 +3,7 @@
|
||||
🌐 [English](README.md) | [Русский](README_ru.md) | [中文](README_zh.md) | [Español](README_es.md)
|
||||
|
||||
<!-- VERSION_BADGE:START -->
|
||||
Patched Claude Code CLI for use with custom API endpoints. Latest: **v2.1.70** (25 patches).
|
||||
Patched Claude Code CLI for use with custom API endpoints. Latest: **v2.1.71** (25 patches).
|
||||
<!-- VERSION_BADGE:END -->
|
||||
|
||||
## Install
|
||||
|
||||
@@ -22,5 +22,5 @@
|
||||
"timeout_ms": 3000000,
|
||||
"theme": "dark",
|
||||
"complete_onboarding": true,
|
||||
"target_version": "2.1.70"
|
||||
"target_version": "2.1.71"
|
||||
}
|
||||
|
||||
@@ -1,6 +1,12 @@
|
||||
{
|
||||
"latest": "2.1.70",
|
||||
"latest": "2.1.71",
|
||||
"releases": [
|
||||
{
|
||||
"version": "2.1.71",
|
||||
"date": "2026-03-07",
|
||||
"patches": 25,
|
||||
"status": "stable"
|
||||
},
|
||||
{
|
||||
"version": "2.1.70",
|
||||
"date": "2026-03-06",
|
||||
|
||||
30
claude/releases/v2.1.71/CHANGELOG_UPSTREAM.md
Normal file
30
claude/releases/v2.1.71/CHANGELOG_UPSTREAM.md
Normal file
@@ -0,0 +1,30 @@
|
||||
## 2.1.71
|
||||
|
||||
- Added `/loop` command to run a prompt or slash command on a recurring interval (e.g. `/loop 5m check the deploy`)
|
||||
- Added cron scheduling tools for recurring prompts within a session
|
||||
- Added `voice:pushToTalk` keybinding to make the voice activation key rebindable in `keybindings.json` (default: space) — modifier+letter combos like `meta+k` have zero typing interference
|
||||
- Added `fmt`, `comm`, `cmp`, `numfmt`, `expr`, `test`, `printf`, `getconf`, `seq`, `tsort`, and `pr` to the bash auto-approval allowlist
|
||||
- Fixed stdin freeze in long-running sessions where keystrokes stop being processed but the process stays alive
|
||||
- Fixed a 5–8 second startup freeze for users with voice mode enabled, caused by CoreAudio initialization blocking the main thread after system wake
|
||||
- Fixed startup UI freeze when many claude.ai proxy connectors refresh an expired OAuth token simultaneously
|
||||
- Fixed forked conversations (`/fork`) sharing the same plan file, which caused plan edits in one fork to overwrite the other
|
||||
- Fixed the Read tool putting oversized images into context when image processing failed, breaking subsequent turns in long image-heavy sessions
|
||||
- Fixed false-positive permission prompts for compound bash commands containing heredoc commit messages
|
||||
- Fixed plugin installations being lost when running multiple Claude Code instances
|
||||
- Fixed claude.ai connectors failing to reconnect after OAuth token refresh
|
||||
- Fixed claude.ai MCP connector startup notifications appearing for every org-configured connector instead of only previously connected ones
|
||||
- Fixed background agent completion notifications missing the output file path, which made it difficult for parent agents to recover agent results after context compaction
|
||||
- Fixed duplicate output in Bash tool error messages when commands exit with non-zero status
|
||||
- Fixed Chrome extension auto-detection getting permanently stuck on "not installed" after running on a machine without local Chrome
|
||||
- Fixed `/plugin marketplace update` failing with merge conflicts when the marketplace is pinned to a branch/tag ref
|
||||
- Fixed `/plugin marketplace add owner/repo@ref` incorrectly parsing `@` — previously only `#` worked as a ref separator, causing undiagnosable errors with `strictKnownMarketplaces`
|
||||
- Fixed duplicate entries in `/permissions` Workspace tab when the same directory is added with and without a trailing slash
|
||||
- Fixed `--print` hanging forever when team agents are configured — the exit loop no longer waits on long-lived `in_process_teammate` tasks
|
||||
- Fixed "❯ Tool loaded." appearing in the REPL after every `ToolSearch` call
|
||||
- Fixed prompting for `cd <cwd> && git ...` on Windows when the model uses a mingw-style path
|
||||
- Improved startup time by deferring native image processor loading to first use
|
||||
- Improved bridge session reconnection to complete within seconds after laptop wake from sleep, instead of waiting up to 10 minutes
|
||||
- Improved `/plugin uninstall` to disable project-scoped plugins in `.claude/settings.local.json` instead of modifying `.claude/settings.json`, so changes don't affect teammates
|
||||
- Improved plugin-provided MCP server deduplication — servers that duplicate a manually-configured server (same command/URL) are now skipped, preventing duplicate connections and tool sets. Suppressions are shown in the `/plugin` menu.
|
||||
- Updated `/debug` to toggle debug logging on mid-session, since debug logs are no longer written by default
|
||||
- Removed startup notification noise for unauthenticated org-registered claude.ai connectors
|
||||
13772
claude/releases/v2.1.71/cli.js
Executable file
13772
claude/releases/v2.1.71/cli.js
Executable file
File diff suppressed because one or more lines are too long
36
claude/releases/v2.1.71/install.sh
Executable file
36
claude/releases/v2.1.71/install.sh
Executable file
@@ -0,0 +1,36 @@
|
||||
#!/bin/bash
|
||||
# Claude Code Patcher — standalone installer for v2.1.71
|
||||
# Usage: sudo bash install.sh [--all] [--skip-cli]
|
||||
set -e
|
||||
|
||||
SCRIPT_DIR="$(cd "$(dirname "$0")" && pwd)"
|
||||
CLI_JS="$SCRIPT_DIR/cli.js"
|
||||
PATCHER="$SCRIPT_DIR/claude_code_patcher.py"
|
||||
CONFIG="$SCRIPT_DIR/patcher.config.json"
|
||||
|
||||
TARGET="/usr/lib/node_modules/@anthropic-ai/claude-code/cli.js"
|
||||
[ ! -f "$TARGET" ] && TARGET="/usr/local/lib/node_modules/@anthropic-ai/claude-code/cli.js"
|
||||
[ ! -f "$TARGET" ] && TARGET="/opt/homebrew/lib/node_modules/@anthropic-ai/claude-code/cli.js"
|
||||
|
||||
if [ ! -f "$TARGET" ]; then
|
||||
echo "ERROR: Claude Code cli.js not found. Install Claude Code first."
|
||||
exit 1
|
||||
fi
|
||||
|
||||
# Install patched cli.js
|
||||
if [ "$1" != "--skip-cli" ]; then
|
||||
echo "Installing patched cli.js..."
|
||||
BACKUP="$TARGET.bak.$(date +%Y%m%d%H%M%S)"
|
||||
cp "$TARGET" "$BACKUP"
|
||||
cp "$CLI_JS" "$TARGET"
|
||||
node --check "$TARGET" || { cp "$BACKUP" "$TARGET"; echo "SYNTAX ERROR, rolled back"; exit 1; }
|
||||
echo "Installed. Backup: $BACKUP"
|
||||
fi
|
||||
|
||||
# Apply user settings
|
||||
if [ -f "$PATCHER" ] && [ -f "$CONFIG" ]; then
|
||||
echo "Applying user settings..."
|
||||
python3 "$PATCHER" --config "$CONFIG" --all --skip-cli-patch --skip-update
|
||||
fi
|
||||
|
||||
echo "Done. Run 'claude --version' to verify."
|
||||
Reference in New Issue
Block a user