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 +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
|
+
## [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
|
|
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
|
-
|
|
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;
|