@gencode/console 0.3.11 → 0.3.12
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 +10 -0
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,15 @@
|
|
|
1
1
|
# @gencode/console
|
|
2
2
|
|
|
3
|
+
## 0.3.12
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 275442d: Run logs are now isolated by message ID. When `aimax run`, `resume`, `cancel`, or `summarize` receives `--message-id <id>`, CLI and agent logs are written to `<dataDir>/.aimax/logs/<id>/app.log` and `<dataDir>/.aimax/logs/<id>/errors.log` instead of the shared `<dataDir>/.aimax/app.log` files. Runs without a message ID use `<dataDir>/.aimax/logs/no-message-<pid>/`, so parallel containers no longer share the same default log file.
|
|
8
|
+
- c102527: Plugin startup diagnostics now include per-plugin load duration. During `aimax run`, each enabled plugin's `plugin_loaded` progress diagnostic reports `details.durationMs`, while the existing `plugin_system_initialized.details.durationMs` continues to report total plugin system initialization time.
|
|
9
|
+
- Updated dependencies [275442d]
|
|
10
|
+
- Updated dependencies [c102527]
|
|
11
|
+
- @gencode/cli@0.8.12
|
|
12
|
+
|
|
3
13
|
## 0.3.11
|
|
4
14
|
|
|
5
15
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gencode/console",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.12",
|
|
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.8.
|
|
29
|
+
"@gencode/cli": "0.8.12",
|
|
30
30
|
"@gencode/shared": "0.2.1"
|
|
31
31
|
},
|
|
32
32
|
"devDependencies": {
|