@altimateai/altimate-code 0.11.0-beta.2 → 0.11.0-beta.3

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 +10 -0
  2. package/package.json +9 -9
package/CHANGELOG.md CHANGED
@@ -5,6 +5,16 @@ 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.3] - 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 "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)
15
+ - **`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)
16
+ - **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)
17
+
8
18
  ## [0.11.0-beta.1] - 2026-09-07
9
19
 
10
20
  > **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.2",
10
+ "version": "0.11.0-beta.3",
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.2",
17
- "@altimateai/altimate-code-linux-x64-baseline": "0.11.0-beta.2",
18
- "@altimateai/altimate-code-linux-arm64": "0.11.0-beta.2",
19
- "@altimateai/altimate-code-windows-x64-baseline": "0.11.0-beta.2",
20
- "@altimateai/altimate-code-darwin-arm64": "0.11.0-beta.2",
21
- "@altimateai/altimate-code-darwin-x64": "0.11.0-beta.2",
22
- "@altimateai/altimate-code-windows-x64": "0.11.0-beta.2",
23
- "@altimateai/altimate-code-linux-x64": "0.11.0-beta.2"
16
+ "@altimateai/altimate-code-darwin-x64-baseline": "0.11.0-beta.3",
17
+ "@altimateai/altimate-code-linux-x64-baseline": "0.11.0-beta.3",
18
+ "@altimateai/altimate-code-linux-arm64": "0.11.0-beta.3",
19
+ "@altimateai/altimate-code-windows-x64-baseline": "0.11.0-beta.3",
20
+ "@altimateai/altimate-code-darwin-arm64": "0.11.0-beta.3",
21
+ "@altimateai/altimate-code-darwin-x64": "0.11.0-beta.3",
22
+ "@altimateai/altimate-code-windows-x64": "0.11.0-beta.3",
23
+ "@altimateai/altimate-code-linux-x64": "0.11.0-beta.3"
24
24
  },
25
25
  "peerDependencies": {
26
26
  "pg": ">=8",