@foxden-app/foxclaw 0.5.76 → 0.5.77

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
@@ -2,6 +2,14 @@
2
2
 
3
3
  All notable FoxClaw changes are listed here. Each release note is bilingual so GitHub Releases and the npm package are useful to both Chinese and English readers.
4
4
 
5
+ ## 0.5.77 - 2026-07-11
6
+
7
+ ### 中文
8
+ - 修复跨节点升级广播触发的后台升级完成后,旧服务把内部 `cluster:*` scope 当成 Telegram scope 解析并反复记录 `Expected telegram: scope` 的问题。集群升级现在只记录完成状态并清理轮询文件,不再尝试向不存在的聊天发送回报。
9
+
10
+ ### English
11
+ - Fixed cluster-broadcast updates repeatedly logging `Expected telegram: scope` after completion because the old service tried to parse the internal `cluster:*` scope as a Telegram destination. Cluster updates now record completion and clear the poll state without trying to send a chat reply to a non-chat scope.
12
+
5
13
  ## 0.5.76 - 2026-07-11
6
14
 
7
15
  ### 中文
@@ -4655,6 +4655,11 @@ export class BridgeSessionCore {
4655
4655
  this.scheduleSelfUpdateStatusPoll();
4656
4656
  return;
4657
4657
  }
4658
+ if (status.scopeId.startsWith('cluster:')) {
4659
+ this.coordinator?.selfUpdateCompleted?.(status);
4660
+ await this.selfUpdater?.clearStatus();
4661
+ return;
4662
+ }
4658
4663
  if (!this.ownsScope(status.scopeId)) {
4659
4664
  this.scheduleSelfUpdateStatusPoll();
4660
4665
  return;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@foxden-app/foxclaw",
3
- "version": "0.5.76",
3
+ "version": "0.5.77",
4
4
  "description": "Foxden local execution claw for controlling Codex from trusted chat interfaces.",
5
5
  "type": "module",
6
6
  "main": "dist/main.js",