claude-threads 1.5.1 → 1.6.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 +17 -0
- package/bin/claude-threads-daemon +3 -0
- package/dist/index.js +184 -1118
- package/dist/mcp/permission-server.js +33 -13
- package/dist/statusline/writer.js +3 -2
- package/package.json +11 -7
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,23 @@ All notable changes to this project will be documented in this file.
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
|
+
## [1.6.0] - 2026-03-27
|
|
9
|
+
|
|
10
|
+
### Added
|
|
11
|
+
- **Windows compatibility** - Process spawning now works on Windows via Git Bash or WSL (#295)
|
|
12
|
+
|
|
13
|
+
### Fixed
|
|
14
|
+
- **False headless detection via daemon** - Bot no longer incorrectly activates headless mode when spawned by the auto-restart daemon. The daemon runs the child as a background job which stripped TTY assignment; now the parent's TTY status is forwarded via environment variable (#299, #300)
|
|
15
|
+
|
|
16
|
+
### Security
|
|
17
|
+
- **Override picomatch to >=2.3.2** - Fixes GHSA-c2c7-rcm5-vvqj (ReDoS via extglob quantifiers) in transitive dependencies (#302)
|
|
18
|
+
- **Override flatted to >=3.4.0** - Fixes GHSA-25h7-pfq9-p65f
|
|
19
|
+
|
|
20
|
+
### Dependencies
|
|
21
|
+
- **Bump production dependencies** - hono, @hono/node-server, picomatch, and others (#289, #292, #297, #298)
|
|
22
|
+
- **Bump dev dependencies** - eslint 9→10, typescript 5.7→5.9, typescript-eslint 8.50→8.57 (#301)
|
|
23
|
+
- **Bump CI actions** - aquasecurity/trivy-action 0.35.0 (#288)
|
|
24
|
+
|
|
8
25
|
## [1.5.1] - 2026-03-09
|
|
9
26
|
|
|
10
27
|
### Fixed
|
|
@@ -23,6 +23,9 @@
|
|
|
23
23
|
# Environment variables:
|
|
24
24
|
# CLAUDE_THREADS_MAX_RESTARTS - Maximum restart attempts (default: unlimited)
|
|
25
25
|
# CLAUDE_THREADS_RESTART_DELAY - Delay between restarts in seconds (default: 2)
|
|
26
|
+
# CLAUDE_THREADS_INTERACTIVE - Set by index.ts when spawning the daemon to
|
|
27
|
+
# indicate the parent had an interactive terminal.
|
|
28
|
+
# Passed through to the child process.
|
|
26
29
|
#
|
|
27
30
|
|
|
28
31
|
set -e
|