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 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 but `bun build --target node` bundles dependencies into
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.263", discoveredClaudePath = null;
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "claude-threads",
3
- "version": "1.37.1",
3
+ "version": "1.37.2",
4
4
  "description": "Run Claude Code from Slack or Mattermost. Sessions stream live into threads where your whole team can watch and steer.",
5
5
  "main": "dist/index.js",
6
6
  "type": "module",