delta-cloud-208e
3d4b371e17
feat(updater): SEA install support for Claude Code 2.1.114+ (TDD + dual-critic APPROVE)
Adds install_sea_release() to uclaude_updater.py — dispatches by release
type from releases/v<VER>/, supporting both legacy cli.js and new SEA layout.
Production-hardened (after 2 rounds of dual-critic FIX):
- Pre-verify source sha256 BEFORE touching install_root (fail-fast)
- Atomic copy via _atomic_copy_with_fsync: write to .new, fsync, rename,
then fsync parent dir (POSIX durability)
- .new cleanup on any exception (no orphan files)
- fcntl.flock on <install_root>/.uclaude-update.lock (concurrent run safe)
- Backup existing → .bak.<TIMESTAMP> before overwrite
- Post-install sha256 verify; rollback from backup on mismatch
- Atomic symlink update (tmp_link + os.replace)
cmd_update dispatches:
- detect_release_type → "sea" / "cli_js" / None
- "sea" → install_sea_release with /usr/lib/node_modules root + /usr/bin/claude symlink
- "cli_js" → existing legacy install_cli_js (preserved)
- None → fail with clear error
Updated:
- claude/uclaude_updater.py — +138 lines (install_sea_release + helpers)
- claude/releases/index.json — latest=2.1.119, +v2.1.119 entry (sea_binary)
Tests: 11/11 GREEN (claude/tests/test_sea_install.py — new file)
Dual critic: gpt-5.4 + GLM 5.1 both APPROVE (round 3 final)
Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
2026-04-24 11:54:17 +00:00
..
2026-03-08 07:46:35 +00:00
2026-03-08 07:46:35 +00:00
2026-03-08 07:46:35 +00:00
2026-03-08 07:46:35 +00:00
2026-03-08 07:46:35 +00:00
2026-03-08 07:46:35 +00:00
2026-03-08 07:46:35 +00:00
2026-03-08 07:46:35 +00:00
2026-03-08 07:46:35 +00:00
2026-03-08 07:46:35 +00:00
2026-03-08 07:46:35 +00:00
2026-03-08 07:46:35 +00:00
2026-03-08 07:46:35 +00:00
2026-03-10 06:02:20 +00:00
2026-03-12 00:06:46 +00:00
2026-03-12 06:01:08 +00:00
2026-03-13 20:51:39 +00:00
2026-03-14 10:40:10 +00:00
2026-03-17 06:02:45 +00:00
2026-03-18 00:01:11 +00:00
2026-03-19 06:09:00 +00:00
2026-03-20 00:04:03 +00:00
2026-03-25 06:04:46 +00:00
2026-03-26 00:09:27 +00:00
2026-03-26 06:01:34 +00:00
2026-03-27 18:00:16 +00:00
2026-03-28 00:01:33 +00:00
2026-04-01 00:00:11 +00:00
2026-03-31 00:06:22 +00:00
2026-04-01 06:06:33 +00:00
2026-04-02 18:06:34 +00:00
2026-04-03 00:02:56 +00:00
2026-04-04 06:05:59 +00:00
2026-04-08 00:02:30 +00:00
2026-04-08 12:10:26 +00:00
2026-04-09 00:06:45 +00:00
2026-04-10 00:00:43 +00:00
2026-04-10 06:07:58 +00:00
2026-04-11 00:06:13 +00:00
2026-04-12 06:08:45 +00:00
2026-04-14 00:04:49 +00:00
2026-04-14 12:00:30 +00:00
2026-04-15 00:02:53 +00:00
2026-04-15 06:00:48 +00:00
2026-04-16 06:01:29 +00:00
2026-04-16 17:38:47 +00:00
2026-04-17 00:05:17 +00:00
2026-04-24 10:40:23 +00:00
2026-04-24 11:54:17 +00:00