release: Claude Code v2.1.53 (20 patches)
This commit is contained in:
@@ -22,5 +22,5 @@
|
|||||||
"timeout_ms": 3000000,
|
"timeout_ms": 3000000,
|
||||||
"theme": "dark",
|
"theme": "dark",
|
||||||
"complete_onboarding": true,
|
"complete_onboarding": true,
|
||||||
"target_version": "2.1.50"
|
"target_version": "2.1.52"
|
||||||
}
|
}
|
||||||
@@ -1,6 +1,12 @@
|
|||||||
{
|
{
|
||||||
"latest": "2.1.52",
|
"latest": "2.1.53",
|
||||||
"releases": [
|
"releases": [
|
||||||
|
{
|
||||||
|
"version": "2.1.53",
|
||||||
|
"date": "2026-02-26",
|
||||||
|
"patches": 20,
|
||||||
|
"status": "stable"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"version": "2.1.52",
|
"version": "2.1.52",
|
||||||
"date": "2026-02-24",
|
"date": "2026-02-24",
|
||||||
|
|||||||
10
claude/releases/v2.1.53/CHANGELOG_UPSTREAM.md
Normal file
10
claude/releases/v2.1.53/CHANGELOG_UPSTREAM.md
Normal file
@@ -0,0 +1,10 @@
|
|||||||
|
## 2.1.53
|
||||||
|
|
||||||
|
- Fixed a UI flicker where user input would briefly disappear after submission before the message rendered
|
||||||
|
- Fixed bulk agent kill (ctrl+f) to send a single aggregate notification instead of one per agent, and to properly clear the command queue
|
||||||
|
- Fixed graceful shutdown sometimes leaving stale sessions when using Remote Control by parallelizing teardown network calls
|
||||||
|
- Fixed `--worktree` sometimes being ignored on first launch
|
||||||
|
- Fixed a panic ("switch on corrupted value") on Windows
|
||||||
|
- Fixed a crash that could occur when spawning many processes on Windows
|
||||||
|
- Fixed a crash in the WebAssembly interpreter on Linux x64 & Windows x64
|
||||||
|
- Fixed a crash that sometimes occurred after 2 minutes on Windows ARM64
|
||||||
12421
claude/releases/v2.1.53/cli.js
Executable file
12421
claude/releases/v2.1.53/cli.js
Executable file
File diff suppressed because one or more lines are too long
36
claude/releases/v2.1.53/install.sh
Executable file
36
claude/releases/v2.1.53/install.sh
Executable file
@@ -0,0 +1,36 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
# Claude Code Patcher — standalone installer for v2.1.53
|
||||||
|
# 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