@altimateai/altimate-code 0.11.0-beta.3 → 0.11.0-beta.5
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 +9 -9
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,14 @@ 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
|
+
|
|
8
16
|
## [0.11.0-beta.3] - 2026-09-08
|
|
9
17
|
|
|
10
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`.
|
package/package.json
CHANGED
|
@@ -7,20 +7,20 @@
|
|
|
7
7
|
"scripts": {
|
|
8
8
|
"postinstall": "bun ./postinstall.mjs || node ./postinstall.mjs"
|
|
9
9
|
},
|
|
10
|
-
"version": "0.11.0-beta.
|
|
10
|
+
"version": "0.11.0-beta.5",
|
|
11
11
|
"license": "MIT",
|
|
12
12
|
"dependencies": {
|
|
13
13
|
"@altimateai/altimate-core": "0.7.0"
|
|
14
14
|
},
|
|
15
15
|
"optionalDependencies": {
|
|
16
|
-
"@altimateai/altimate-code-darwin-x64-baseline": "0.11.0-beta.
|
|
17
|
-
"@altimateai/altimate-code-linux-x64-baseline": "0.11.0-beta.
|
|
18
|
-
"@altimateai/altimate-code-linux-arm64": "0.11.0-beta.
|
|
19
|
-
"@altimateai/altimate-code-windows-x64-baseline": "0.11.0-beta.
|
|
20
|
-
"@altimateai/altimate-code-darwin-arm64": "0.11.0-beta.
|
|
21
|
-
"@altimateai/altimate-code-darwin-x64": "0.11.0-beta.
|
|
22
|
-
"@altimateai/altimate-code-windows-x64": "0.11.0-beta.
|
|
23
|
-
"@altimateai/altimate-code-linux-x64": "0.11.0-beta.
|
|
16
|
+
"@altimateai/altimate-code-darwin-x64-baseline": "0.11.0-beta.5",
|
|
17
|
+
"@altimateai/altimate-code-linux-x64-baseline": "0.11.0-beta.5",
|
|
18
|
+
"@altimateai/altimate-code-linux-arm64": "0.11.0-beta.5",
|
|
19
|
+
"@altimateai/altimate-code-windows-x64-baseline": "0.11.0-beta.5",
|
|
20
|
+
"@altimateai/altimate-code-darwin-arm64": "0.11.0-beta.5",
|
|
21
|
+
"@altimateai/altimate-code-darwin-x64": "0.11.0-beta.5",
|
|
22
|
+
"@altimateai/altimate-code-windows-x64": "0.11.0-beta.5",
|
|
23
|
+
"@altimateai/altimate-code-linux-x64": "0.11.0-beta.5"
|
|
24
24
|
},
|
|
25
25
|
"peerDependencies": {
|
|
26
26
|
"pg": ">=8",
|