@tea-agent/loop-agent 0.7.1 → 0.7.3
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 +12 -0
- package/dist/workflows/dag/init-hybrid.js +1 -3
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,18 @@
|
|
|
4
4
|
|
|
5
5
|
## [Unreleased]
|
|
6
6
|
|
|
7
|
+
## [0.7.3] - 2026-07-11
|
|
8
|
+
|
|
9
|
+
### 修复
|
|
10
|
+
|
|
11
|
+
- 将 `HARNESS_ALLOW_ACTIVE_DAG_RUNS=1` 作为所有 adapter-resolved DAG verification commands 的统一运行环境不变量,避免 `ci-governance.sh` 等间接 runtime-clean 检查误判当前 active DAG。
|
|
12
|
+
|
|
13
|
+
## [0.7.2] - 2026-07-11
|
|
14
|
+
|
|
15
|
+
### 修复
|
|
16
|
+
|
|
17
|
+
- 修复 adapter 将治理检查包装为 `bash -lc "bash scripts/check-repo.sh"` 时未注入 `HARNESS_ALLOW_ACTIVE_DAG_RUNS=1`,导致新 `verify-shell` 把自身 active DAG 误判为 runtime 脏状态的问题。
|
|
18
|
+
|
|
7
19
|
## [0.7.1] - 2026-07-11
|
|
8
20
|
|
|
9
21
|
### 修复
|
|
@@ -262,9 +262,7 @@ function verifyCommandToShell(repoRoot, command) {
|
|
|
262
262
|
? `cd ${shellQuote(command.cwd)} && `
|
|
263
263
|
: "";
|
|
264
264
|
const envPrefix = [
|
|
265
|
-
|
|
266
|
-
? ["HARNESS_ALLOW_ACTIVE_DAG_RUNS=1"]
|
|
267
|
-
: []),
|
|
265
|
+
"HARNESS_ALLOW_ACTIVE_DAG_RUNS=1",
|
|
268
266
|
...Object.entries(command.env ?? {}).map(([key, value]) => `${key}=${shellQuote(String(value))}`),
|
|
269
267
|
].join(" ");
|
|
270
268
|
const commandText = command.args.map(shellQuote).join(" ");
|