altimate-code 0.11.0-beta.2 → 0.11.0-beta.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 +9 -9
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,24 @@ All notable changes to this project will be documented in this file.
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
|
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
|
+
## [0.11.0-beta.4] - 2026-09-08
|
|
9
|
+
|
|
10
|
+
> **Beta channel release.** Publishes to the npm `beta` dist-tag; `latest` (0.10.0) is unaffected. Install: `npm i -g @altimateai/altimate-code@beta`.
|
|
11
|
+
|
|
12
|
+
### Fixed
|
|
13
|
+
|
|
14
|
+
- **Altimate Base no longer times out healthy requests.** beta.3's `altimate-free` header timeout borrowed the `openai` provider's 10-second default, but the Altimate Base gateway holds the response until the backend's first token — queue wait, cold start, and reasoning routinely exceed 10s, so real requests failed with `Provider response headers timed out after 10000ms`. The free tier now waits up to **5 minutes** for the first response byte (matching the existing mid-stream stall watchdog), tunable in the field via `ALTIMATE_BASE_HEADER_TIMEOUT_MS` — a whole number of milliseconds, minimum `1000`; smaller, non-numeric, or negative values are ignored and fall back to the default. Once the stream starts, the separate 5-minute stall watchdog still applies. (#1260)
|
|
15
|
+
|
|
16
|
+
## [0.11.0-beta.3] - 2026-09-08
|
|
17
|
+
|
|
18
|
+
> **Beta channel release.** Publishes to the npm `beta` dist-tag; `latest` (0.10.0) is unaffected. Install: `npm i -g @altimateai/altimate-code@beta`.
|
|
19
|
+
|
|
20
|
+
### Fixed
|
|
21
|
+
|
|
22
|
+
- **Altimate Base "request too large" errors are legible again.** When an oversized request is rejected at the gateway edge with a raw HTML `413` (rather than a JSON error), the CLI now surfaces the friendly "request too large — start a new session or shorten it" guidance on any `413` regardless of body shape, instead of a generic fallback. (#1256)
|
|
23
|
+
- **`altimate-free` now sets a client-side header timeout** (matching the `openai` provider's default), so a hung gateway can no longer hang the CLI indefinitely. (#1256)
|
|
24
|
+
- **Clear error on non-JSON API responses.** The SDK client no longer crashes when an API returns a non-JSON body (e.g. an HTML error page); it surfaces a clear, actionable error instead. (#1093)
|
|
25
|
+
|
|
8
26
|
## [0.11.0-beta.1] - 2026-09-07
|
|
9
27
|
|
|
10
28
|
> **Beta channel release.** Publishes to the npm `beta` dist-tag; `latest` (0.10.0) is unaffected. Install: `npm i -g @altimateai/altimate-code@beta`.
|
package/package.json
CHANGED
|
@@ -14,20 +14,20 @@
|
|
|
14
14
|
"scripts": {
|
|
15
15
|
"postinstall": "bun ./postinstall.mjs || node ./postinstall.mjs"
|
|
16
16
|
},
|
|
17
|
-
"version": "0.11.0-beta.
|
|
17
|
+
"version": "0.11.0-beta.4",
|
|
18
18
|
"license": "MIT",
|
|
19
19
|
"dependencies": {
|
|
20
20
|
"@altimateai/altimate-core": "0.7.0"
|
|
21
21
|
},
|
|
22
22
|
"optionalDependencies": {
|
|
23
|
-
"@altimateai/altimate-code-darwin-x64-baseline": "0.11.0-beta.
|
|
24
|
-
"@altimateai/altimate-code-linux-x64-baseline": "0.11.0-beta.
|
|
25
|
-
"@altimateai/altimate-code-linux-arm64": "0.11.0-beta.
|
|
26
|
-
"@altimateai/altimate-code-windows-x64-baseline": "0.11.0-beta.
|
|
27
|
-
"@altimateai/altimate-code-darwin-arm64": "0.11.0-beta.
|
|
28
|
-
"@altimateai/altimate-code-darwin-x64": "0.11.0-beta.
|
|
29
|
-
"@altimateai/altimate-code-windows-x64": "0.11.0-beta.
|
|
30
|
-
"@altimateai/altimate-code-linux-x64": "0.11.0-beta.
|
|
23
|
+
"@altimateai/altimate-code-darwin-x64-baseline": "0.11.0-beta.4",
|
|
24
|
+
"@altimateai/altimate-code-linux-x64-baseline": "0.11.0-beta.4",
|
|
25
|
+
"@altimateai/altimate-code-linux-arm64": "0.11.0-beta.4",
|
|
26
|
+
"@altimateai/altimate-code-windows-x64-baseline": "0.11.0-beta.4",
|
|
27
|
+
"@altimateai/altimate-code-darwin-arm64": "0.11.0-beta.4",
|
|
28
|
+
"@altimateai/altimate-code-darwin-x64": "0.11.0-beta.4",
|
|
29
|
+
"@altimateai/altimate-code-windows-x64": "0.11.0-beta.4",
|
|
30
|
+
"@altimateai/altimate-code-linux-x64": "0.11.0-beta.4"
|
|
31
31
|
},
|
|
32
32
|
"peerDependencies": {
|
|
33
33
|
"pg": ">=8",
|