@gencode/server 0.3.2 → 0.3.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.
Files changed (2) hide show
  1. package/CHANGELOG.md +17 -0
  2. package/package.json +3 -3
package/CHANGELOG.md CHANGED
@@ -1,5 +1,22 @@
1
1
  # @gencode/server
2
2
 
3
+ ## 0.3.4
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/agents@0.16.1
10
+ - @gencode/cli@0.14.2
11
+
12
+ ## 0.3.3
13
+
14
+ ### Patch Changes
15
+
16
+ - One-shot `aimax-server` runs now initialize the same package path metadata as the `aimax` CLI binary before executing a request. This keeps auth-token based API key generation available when `/run` supplies request-scoped environment variables such as `AIMAX_AUTH_TOKEN`, `AIMAX_API_KEY`, `AIMAX_BASE_URL`, and `AIMAX_MODEL` after the server process has already warmed.
17
+ - Updated dependencies
18
+ - @gencode/cli@0.14.1
19
+
3
20
  ## 0.3.2
4
21
 
5
22
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gencode/server",
3
- "version": "0.3.2",
3
+ "version": "0.3.4",
4
4
  "type": "module",
5
5
  "bin": {
6
6
  "aimax-server": "./dist/bin.js"
@@ -19,8 +19,8 @@
19
19
  "access": "public"
20
20
  },
21
21
  "dependencies": {
22
- "@gencode/agents": "0.16.0",
23
- "@gencode/cli": "0.14.0"
22
+ "@gencode/agents": "0.16.1",
23
+ "@gencode/cli": "0.14.2"
24
24
  },
25
25
  "devDependencies": {
26
26
  "@types/node": "^22.0.0",