claude-threads 0.46.0 → 0.48.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 +27 -0
- package/dist/index.js +3642 -3519
- package/dist/mcp/permission-server.js +4 -2
- package/package.json +4 -2
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,33 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [0.48.0] - 2026-01-08
|
|
11
|
+
|
|
12
|
+
### Added
|
|
13
|
+
- **Claude can execute !cd command** - Claude can now output `!cd /path` in responses to change the session's working directory, with visibility messages posted to the thread (#125)
|
|
14
|
+
|
|
15
|
+
### Fixed
|
|
16
|
+
- **Update reactions now work** - Fixed bug where 👍/👎 reactions on auto-update messages were silently ignored due to missing `pendingUpdatePrompt` state (#124)
|
|
17
|
+
- **Duplicate task lists prevented** - Replaced promise-lock with atomic lock acquisition pattern to fix race condition causing duplicate task list posts (#126)
|
|
18
|
+
- **Worktree paths shortened in Bash** - Bash commands now show `[branch]/path` instead of full worktree paths, matching other tools (#127)
|
|
19
|
+
|
|
20
|
+
### Removed
|
|
21
|
+
- **Removed .env.example** - Configuration is done via YAML config only
|
|
22
|
+
|
|
23
|
+
## [0.47.0] - 2026-01-07
|
|
24
|
+
|
|
25
|
+
### Added
|
|
26
|
+
- **Session context in system prompt** - Claude now receives metadata about the session including version, current working directory, git status, and platform info (#119)
|
|
27
|
+
|
|
28
|
+
### Fixed
|
|
29
|
+
- **Task list duplication fixed** - Resolved race condition causing duplicate task lists by extending promise lock scope (#122)
|
|
30
|
+
- **Code blocks now render correctly** - Added trailing newline to code blocks for proper markdown rendering (#123)
|
|
31
|
+
- **Worktree paths shortened in UI** - Paths now show as `[branch]/path` instead of full worktree paths for better readability (#121)
|
|
32
|
+
- **Worktree metadata centralized** - Moved `.claude-threads-meta.json` to central config directory to avoid polluting project directories (#120)
|
|
33
|
+
|
|
34
|
+
### Changed
|
|
35
|
+
- **Bump @modelcontextprotocol/sdk** - Updated from 1.25.1 to 1.25.2 (#118)
|
|
36
|
+
|
|
10
37
|
## [0.46.0] - 2026-01-07
|
|
11
38
|
|
|
12
39
|
### Added
|