claude-threads 0.39.0 → 0.40.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +12 -0
- package/dist/index.js +986 -749
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [0.40.0] - 2026-01-07
|
|
11
|
+
|
|
12
|
+
### Added
|
|
13
|
+
- **Centralized worktree location** - All worktrees now created in `~/.claude-threads/worktrees/` for easy management
|
|
14
|
+
- **`!worktree cleanup` command** - Manually delete current worktree and switch back to repo root
|
|
15
|
+
- **Merged branch detection** - Worktrees are automatically cleaned on startup if their branch was merged into main/master
|
|
16
|
+
- **Worktree ownership tracking** - Only sessions that created a worktree can trigger cleanup (not sessions that joined)
|
|
17
|
+
- **Worktree reference counting** - Prevents deletion while other sessions are using the same worktree
|
|
18
|
+
|
|
19
|
+
### Changed
|
|
20
|
+
- **Worktrees preserved on session exit** - No automatic cleanup when sessions end normally; use `!worktree cleanup` for manual cleanup or wait for orphan cleanup on startup (>24h old)
|
|
21
|
+
|
|
10
22
|
## [0.39.0] - 2026-01-06
|
|
11
23
|
|
|
12
24
|
### Added
|