claude-threads 0.48.12 → 0.48.13

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
+ ## [0.48.13] - 2026-01-09
11
+
12
+ ### Fixed
13
+ - **Don't crash when no platforms connect** - Improved 0.48.12 fix to log error instead of throwing when all platforms fail to connect, allowing the bot to stay running so users can fix configuration
14
+
10
15
  ## [0.48.12] - 2026-01-09
11
16
 
12
17
  ### Fixed
13
- - **Graceful platform connection failures** - Bot no longer crashes when one platform fails to connect. Failed platforms are automatically disabled and the bot continues with remaining platforms. Only crashes if ALL platforms fail to connect.
18
+ - **Graceful platform connection failures** - Bot no longer crashes when one platform fails to connect. Failed platforms are automatically disabled and the bot continues with remaining platforms
14
19
 
15
20
  ## [0.48.11] - 2026-01-09
16
21
 
package/dist/index.js CHANGED
@@ -65298,7 +65298,7 @@ async function main() {
65298
65298
  }));
65299
65299
  const successfulConnections = connectionResults.filter((r) => r.status === "fulfilled" && r.value.success);
65300
65300
  if (successfulConnections.length === 0) {
65301
- throw new Error("No platforms connected successfully. Check your configuration and credentials.");
65301
+ ui.addLog({ level: "error", component: "init", message: "\u26A0\uFE0F No platforms connected. Check your configuration and credentials." });
65302
65302
  }
65303
65303
  await session.initialize();
65304
65304
  let isShuttingDown2 = false;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "claude-threads",
3
- "version": "0.48.12",
3
+ "version": "0.48.13",
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",