@gencode/console 0.5.1 → 0.5.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 +8 -0
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# @gencode/console
|
|
2
2
|
|
|
3
|
+
## 0.5.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 8abfeba: Fixes run log persistence when AIMax is executed through the one-shot server path. Logs for each request are now flushed by the CLI and agent runtime lifecycle itself, so deployments using `aimax-server` can rely on `app.log` and `errors.log` being written under `<dataDir>/.aimax/<sessionStore>/<sessionId>/logs/<messageId>/` after the real request creates or resumes a session.
|
|
8
|
+
- Updated dependencies [8abfeba]
|
|
9
|
+
- @gencode/cli@0.14.2
|
|
10
|
+
|
|
3
11
|
## 0.5.1
|
|
4
12
|
|
|
5
13
|
### 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.2",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"bin": {
|
|
6
6
|
"aimax-console": "./dist/server/index.js"
|
|
@@ -26,8 +26,8 @@
|
|
|
26
26
|
"react": "^18.3.1",
|
|
27
27
|
"react-dom": "^18.3.1",
|
|
28
28
|
"ws": "^8.18.0",
|
|
29
|
-
"@gencode/
|
|
30
|
-
"@gencode/
|
|
29
|
+
"@gencode/cli": "0.14.2",
|
|
30
|
+
"@gencode/shared": "0.4.0"
|
|
31
31
|
},
|
|
32
32
|
"devDependencies": {
|
|
33
33
|
"@playwright/test": "^1.60.0",
|