claude-threads 1.37.1 → 1.37.2
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 +6 -1
- package/dist/index.js +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -7,10 +7,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [1.37.2] - 2026-09-18
|
|
11
|
+
|
|
12
|
+
### Changed
|
|
13
|
+
- **Claude CLI 2.1.276 is verified.** Anyone running a CLI between 2.1.264 and 2.1.276 loses the "⚠️ untested" marker in the sticky message and session headers. Every capture except `compact-failed` was recorded fresh against it: no event type the bot consumes changed and no new type appeared, so the mock needed no adjustment. `compact-failed` deliberately keeps its older recording, because an immediate `/compact` on a fresh session now succeeds instead of failing, and the failure shape it pins is still live code.
|
|
14
|
+
|
|
10
15
|
## [1.37.1] - 2026-09-18
|
|
11
16
|
|
|
12
17
|
Dependency maintenance only. No source changes, so nothing about how the bot
|
|
13
|
-
behaves is different
|
|
18
|
+
behaves is different, but `bun build --target node` bundles dependencies into
|
|
14
19
|
`dist/`, so the versions below are the ones users actually run and they only
|
|
15
20
|
reach anyone through a release.
|
|
16
21
|
|
package/dist/index.js
CHANGED
|
@@ -4501,7 +4501,7 @@ function validateClaudeCli() {
|
|
|
4501
4501
|
rawOutput: result.rawOutput ?? undefined
|
|
4502
4502
|
};
|
|
4503
4503
|
}
|
|
4504
|
-
var import_semver, COMMON_CLAUDE_PATHS, CLAUDE_CLI_MIN_VERSION = "2.0.74", CLAUDE_CLI_VERIFIED_RANGE = ">=2.0.74 <2.2.0", CLAUDE_CLI_SUPPORTED_MAJOR = 2, CLAUDE_CLI_LATEST_VERIFIED = "2.1.
|
|
4504
|
+
var import_semver, COMMON_CLAUDE_PATHS, CLAUDE_CLI_MIN_VERSION = "2.0.74", CLAUDE_CLI_VERIFIED_RANGE = ">=2.0.74 <2.2.0", CLAUDE_CLI_SUPPORTED_MAJOR = 2, CLAUDE_CLI_LATEST_VERIFIED = "2.1.276", discoveredClaudePath = null;
|
|
4505
4505
|
var init_version_check = __esm(() => {
|
|
4506
4506
|
import_semver = __toESM(require_semver2(), 1);
|
|
4507
4507
|
COMMON_CLAUDE_PATHS = process.platform === "win32" ? [
|
package/package.json
CHANGED