@tea-agent/loop-agent 0.28.6 → 0.28.7

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,16 @@
2
2
 
3
3
  ## [Unreleased]
4
4
 
5
+ ## [0.28.7] - 2026-08-05
6
+
7
+ ### 重点更新
8
+
9
+ - 修复 Night Scheduler 执行已准备好的 DAG 时因客户端超时中断任务的问题
10
+
11
+ ### 修复
12
+
13
+ - Night Scheduler 执行已准备好的 DAG 时,`task advance --approve-gate` 改用 `timeoutMs: 0`,避免默认 120 秒超时在 DAG 仍在运行时将其强制终止,现由内核负责执行监督
14
+
5
15
  ## [0.28.6] - 2026-08-05
6
16
 
7
17
  ### 重点更新
@@ -65,6 +65,10 @@ export async function executePreparedTaskSpec(options) {
65
65
  cwd: input.workspaceRoot,
66
66
  artifactName: `night-execute-${input.workerRunId}`,
67
67
  expectJson: true,
68
+ // Night prepared execute runs a full DAG under task advance; do not use
69
+ // the short LoopAgentClient default (120s). Zero disables client timeout
70
+ // so the DAG kernel owns long-running supervision (same as run-task).
71
+ timeoutMs: 0,
68
72
  }));
69
73
  const advanceResult = await advance({
70
74
  workspaceRoot,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tea-agent/loop-agent",
3
- "version": "0.28.6",
3
+ "version": "0.28.7",
4
4
  "type": "module",
5
5
  "bin": {
6
6
  "loop-agent": "bin/loop-agent.js",