@gencode/console 0.3.6 → 0.3.9
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 +25 -0
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,30 @@
|
|
|
1
1
|
# @gencode/console
|
|
2
2
|
|
|
3
|
+
## 0.3.9
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 1a98921: Context-limit errors now fail normally instead of triggering automatic emergency compaction during the same `aimax run`. Operators will no longer receive emergency compaction progress events over stdout, callback, or websocket when a provider reports the prompt is too large; use `/compact`, reduce tool output, or start a new session before retrying long conversations.
|
|
8
|
+
- Updated dependencies [1a98921]
|
|
9
|
+
- @gencode/cli@0.8.9
|
|
10
|
+
|
|
11
|
+
## 0.3.8
|
|
12
|
+
|
|
13
|
+
### Patch Changes
|
|
14
|
+
|
|
15
|
+
- ffd2a26: AIMax now records richer diagnostics when an LLM stream or run is terminated. Agent logs include the provider error source, retry metadata, AbortSignal state, stream chunk count, model/provider/api, and flattened error/cause fields such as `streamErrorName`, `streamErrorMessage`, `streamErrorCode`, and `streamErrorCauseCode`. The CLI also logs SIGTERM/SIGINT with uptime, channel, user, messageId, and active/final session IDs so operators can distinguish external container cancellation from upstream model gateway failures.
|
|
16
|
+
- Updated dependencies [ffd2a26]
|
|
17
|
+
- Updated dependencies [78453e4]
|
|
18
|
+
- @gencode/cli@0.8.8
|
|
19
|
+
|
|
20
|
+
## 0.3.7
|
|
21
|
+
|
|
22
|
+
### Patch Changes
|
|
23
|
+
|
|
24
|
+
- Republish the latest topic segmentation diagnostics release with npm package metadata that resolves internal AIMax workspace dependencies to published package versions. This fixes installs from npm for `@gencode/agents`, `@gencode/cli`, `@gencode/plugin-sdk`, `@gencode/console`, and `@gencode/web` by ensuring registry packages depend on concrete `@gencode/*` versions instead of workspace-only dependency specifiers.
|
|
25
|
+
- Updated dependencies
|
|
26
|
+
- @gencode/cli@0.8.7
|
|
27
|
+
|
|
3
28
|
## 0.3.6
|
|
4
29
|
|
|
5
30
|
### 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.9",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"bin": {
|
|
6
6
|
"aimax-console": "./dist/server/index.js"
|
|
@@ -27,7 +27,7 @@
|
|
|
27
27
|
"react-dom": "^18.3.1",
|
|
28
28
|
"ws": "^8.18.0",
|
|
29
29
|
"@gencode/shared": "0.2.1",
|
|
30
|
-
"@gencode/cli": "0.8.
|
|
30
|
+
"@gencode/cli": "0.8.9"
|
|
31
31
|
},
|
|
32
32
|
"devDependencies": {
|
|
33
33
|
"@playwright/test": "^1.60.0",
|