@gencode/console 0.5.2 → 0.5.4
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 +18 -0
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,23 @@
|
|
|
1
1
|
# @gencode/console
|
|
2
2
|
|
|
3
|
+
## 0.5.4
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 718e1da: 修复通过 `aimax-server` 或 `aimax run` 执行任务时,终态 callback 已送达但 `<dataDir>/.aimax/<sessionStore>/<sessionId>/logs/<messageId>/app.log` 缺少 `done` / `error` 投递记录的问题。CLI 运行现在通过既有 `onLog` 合同接管 agents 日志持久化,并在终态 callback 发送后统一完成刷盘,避免 agents logger 提前关闭 CLI 使用的日志后端;无需新增配置。
|
|
8
|
+
- Updated dependencies [718e1da]
|
|
9
|
+
- @gencode/cli@0.14.4
|
|
10
|
+
|
|
11
|
+
## 0.5.3
|
|
12
|
+
|
|
13
|
+
### Patch Changes
|
|
14
|
+
|
|
15
|
+
- 56d8304: Plugin hook handlers now receive the current external `messageId` on `ctx.messageId` when a run is started with `--message-id` or an equivalent API option. Existing callback, websocket, and progress payloads keep their previous `messageId` behavior.
|
|
16
|
+
- a4171d5: Avoid recursive filesystem watching of `.aimax/sessions`, `.aimax/tasks`, and other session stores during memory indexing. Session transcript updates are now tracked through the existing explicit transcript update notification path, reducing watcher usage in large deployments while preserving memory search behavior for normal `aimax run` and `resume` flows.
|
|
17
|
+
- Updated dependencies [56d8304]
|
|
18
|
+
- Updated dependencies [a4171d5]
|
|
19
|
+
- @gencode/cli@0.14.3
|
|
20
|
+
|
|
3
21
|
## 0.5.2
|
|
4
22
|
|
|
5
23
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gencode/console",
|
|
3
|
-
"version": "0.5.
|
|
3
|
+
"version": "0.5.4",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"bin": {
|
|
6
6
|
"aimax-console": "./dist/server/index.js"
|
|
@@ -26,7 +26,7 @@
|
|
|
26
26
|
"react": "^18.3.1",
|
|
27
27
|
"react-dom": "^18.3.1",
|
|
28
28
|
"ws": "^8.18.0",
|
|
29
|
-
"@gencode/cli": "0.14.
|
|
29
|
+
"@gencode/cli": "0.14.4",
|
|
30
30
|
"@gencode/shared": "0.4.0"
|
|
31
31
|
},
|
|
32
32
|
"devDependencies": {
|