@tea-agent/loop-agent 0.7.1 → 0.7.2
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
|
@@ -4,6 +4,12 @@
|
|
|
4
4
|
|
|
5
5
|
## [Unreleased]
|
|
6
6
|
|
|
7
|
+
## [0.7.2] - 2026-07-11
|
|
8
|
+
|
|
9
|
+
### 修复
|
|
10
|
+
|
|
11
|
+
- 修复 adapter 将治理检查包装为 `bash -lc "bash scripts/check-repo.sh"` 时未注入 `HARNESS_ALLOW_ACTIVE_DAG_RUNS=1`,导致新 `verify-shell` 把自身 active DAG 误判为 runtime 脏状态的问题。
|
|
12
|
+
|
|
7
13
|
## [0.7.1] - 2026-07-11
|
|
8
14
|
|
|
9
15
|
### 修复
|
|
@@ -262,7 +262,7 @@ function verifyCommandToShell(repoRoot, command) {
|
|
|
262
262
|
? `cd ${shellQuote(command.cwd)} && `
|
|
263
263
|
: "";
|
|
264
264
|
const envPrefix = [
|
|
265
|
-
...(command.args.includes("scripts/check-repo.sh")
|
|
265
|
+
...(command.args.some((arg) => arg.includes("scripts/check-repo.sh"))
|
|
266
266
|
? ["HARNESS_ALLOW_ACTIVE_DAG_RUNS=1"]
|
|
267
267
|
: []),
|
|
268
268
|
...Object.entries(command.env ?? {}).map(([key, value]) => `${key}=${shellQuote(String(value))}`),
|