claude-threads 0.48.2 → 0.48.3

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,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.3] - 2026-01-08
11
+
12
+ ### Changed
13
+ - **Support Claude CLI 2.1.1** - Updated version compatibility range from `>=2.0.74 <=2.0.76` to `>=2.0.74 <=2.1.1` (#131)
14
+
10
15
  ## [0.48.2] - 2026-01-08
11
16
 
12
17
  ### Fixed
package/dist/index.js CHANGED
@@ -50450,7 +50450,7 @@ var keepAlive = new KeepAliveManager;
50450
50450
  // src/claude/version-check.ts
50451
50451
  var import_semver3 = __toESM(require_semver2(), 1);
50452
50452
  import { execSync } from "child_process";
50453
- var CLAUDE_CLI_VERSION_RANGE = ">=2.0.74 <=2.0.76";
50453
+ var CLAUDE_CLI_VERSION_RANGE = ">=2.0.74 <=2.1.1";
50454
50454
  function getClaudeCliVersion() {
50455
50455
  const claudePath = process.env.CLAUDE_PATH || "claude";
50456
50456
  try {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "claude-threads",
3
- "version": "0.48.2",
3
+ "version": "0.48.3",
4
4
  "description": "Share Claude Code sessions live in a Mattermost channel with interactive features",
5
5
  "main": "dist/index.js",
6
6
  "type": "module",