claude-threads 0.48.9 → 0.48.10
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 +5 -0
- package/dist/index.js +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [0.48.10] - 2026-01-09
|
|
11
|
+
|
|
12
|
+
### Changed
|
|
13
|
+
- **Support Claude CLI 2.1.x** - Updated version compatibility range from `>=2.0.74 <=2.1.1` to `>=2.0.74 <2.2.0` to support all 2.1.x releases
|
|
14
|
+
|
|
10
15
|
## [0.48.9] - 2026-01-08
|
|
11
16
|
|
|
12
17
|
### Added
|
package/dist/index.js
CHANGED
|
@@ -50587,7 +50587,7 @@ var keepAlive = new KeepAliveManager;
|
|
|
50587
50587
|
// src/claude/version-check.ts
|
|
50588
50588
|
var import_semver3 = __toESM(require_semver2(), 1);
|
|
50589
50589
|
import { execSync } from "child_process";
|
|
50590
|
-
var CLAUDE_CLI_VERSION_RANGE = ">=2.0.74
|
|
50590
|
+
var CLAUDE_CLI_VERSION_RANGE = ">=2.0.74 <2.2.0";
|
|
50591
50591
|
function getClaudeCliVersion() {
|
|
50592
50592
|
const claudePath = process.env.CLAUDE_PATH || "claude";
|
|
50593
50593
|
try {
|