polygram 0.12.0-rc.17 → 0.12.0-rc.18
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/lib/claude-bin.js +8 -1
- package/package.json +1 -1
package/lib/claude-bin.js
CHANGED
|
@@ -7,7 +7,14 @@ const fs = require('fs');
|
|
|
7
7
|
// 0.12 Phase 4: moved from lib/process/tmux-process.js into the helper module
|
|
8
8
|
// that consumes it, so the constant survives TmuxProcess deletion. CliProcess
|
|
9
9
|
// + spike scripts + polygram boot all import from here now.
|
|
10
|
-
|
|
10
|
+
// 0.12.0-rc.18: bumped 2.1.142 → 2.1.158 (latest installed). The dev-channels
|
|
11
|
+
// inbound-message delivery has an intermittent channel-bind race (the bridge
|
|
12
|
+
// pushes user_msg before claude's channel subscription is active → message
|
|
13
|
+
// silently dropped → stuck turn; see docs/0.12.0-known-issues.md). Trying a
|
|
14
|
+
// newer claude to see if the research-preview channels reliability improved,
|
|
15
|
+
// before building polygram-side recovery. Re-validate the channel flow on each
|
|
16
|
+
// bump via tests/e2e-channels-real-claude.test.js.
|
|
17
|
+
const CLAUDE_CLI_PINNED_VERSION = '2.1.158';
|
|
11
18
|
|
|
12
19
|
/**
|
|
13
20
|
* Resolve + verify the pinned claude CLI binary.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "polygram",
|
|
3
|
-
"version": "0.12.0-rc.
|
|
3
|
+
"version": "0.12.0-rc.18",
|
|
4
4
|
"description": "Telegram daemon for Claude Code that preserves the OpenClaw per-chat session model. Migration path for OpenClaw users moving to Claude Code.",
|
|
5
5
|
"main": "lib/ipc/client.js",
|
|
6
6
|
"bin": {
|