altimate-code 0.11.0 → 0.11.1

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 +13 -0
  2. package/package.json +9 -9
package/CHANGELOG.md CHANGED
@@ -5,6 +5,19 @@ 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.1] - 2026-09-09
9
+
10
+ Same-day patch to 0.11.0: fixes a first-run freeze that fresh installs hit, and adds the first-run health telemetry that would have caught it. Shipped straight to `latest` without a beta soak because the freeze blocked new users on the headline 0.11.0 feature (Altimate Base).
11
+
12
+ ### Fixed
13
+
14
+ - **Fresh installs could freeze for 2.5–5 minutes on first launch.** 0.11.0 reified a ~60-package `@opencode-ai/plugin` install in-process into every config directory on every start, saturating Bun's event loop: `altimate serve` accepted no HTTP request for up to 5 minutes (so the Altimate Base consent could not land), and `altimate run` froze for ~2.5 minutes after the model had already answered. The install now runs only for config directories that can actually import the package (an existing `node_modules`, a local `tool`/`tools`/`plugin`/`plugins` source, or a `file://` plugin under the directory), decided once after all config sources have merged. Applies to `tui`, `serve`, and `run`. If you hit this on 0.11.0, upgrading fixes it; no config change is needed. A new `cold-start-regression` CI job guards against it coming back. (#1292)
15
+ - **The documented `"telemetry": {"disabled": true}` config opt-out now works.** Two problems, both found during this release's review: the config schema never declared a `telemetry` field, so a config file containing the opt-out failed to parse (breaking that file's other settings too) and telemetry fell open; and the TUI's server thread initialised telemetry before it had a project context, so it could not read the setting for the first session. The field is now part of the config schema and the worker initialises telemetry inside the instance context. The `ALTIMATE_TELEMETRY_DISABLED` env var was never affected. (#1296 tracks a remaining main-thread gap for the same setting.)
16
+
17
+ ### Added
18
+
19
+ - **First-run health telemetry** — three events so a startup freeze shows up in the data immediately instead of staying invisible: `startup_ready` (time from process start until the command can serve its first request or frame), `event_loop_stall` (the event loop was blocked for more than 1 s; capped at 20 per thread), and `altimate_base_registration` (outcome and duration of each Altimate Base registration). Fields are command names, durations, thread, and a result enum only; no paths, URLs, or error text. Nothing is sent when telemetry is disabled. Documented in [Telemetry](docs/docs/reference/telemetry.md). (#1294)
20
+
8
21
  ## [0.11.0] - 2026-09-09
9
22
 
10
23
  Altimate Base — a free, no-signup hosted model — plus a round of driver, redaction, and skill-discovery hardening. Soaked across five beta releases (see below) before promotion to `latest`.
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",
17
+ "version": "0.11.1",
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",
24
- "@altimateai/altimate-code-linux-x64-baseline": "0.11.0",
25
- "@altimateai/altimate-code-linux-arm64": "0.11.0",
26
- "@altimateai/altimate-code-windows-x64-baseline": "0.11.0",
27
- "@altimateai/altimate-code-darwin-arm64": "0.11.0",
28
- "@altimateai/altimate-code-darwin-x64": "0.11.0",
29
- "@altimateai/altimate-code-windows-x64": "0.11.0",
30
- "@altimateai/altimate-code-linux-x64": "0.11.0"
23
+ "@altimateai/altimate-code-darwin-x64-baseline": "0.11.1",
24
+ "@altimateai/altimate-code-linux-x64-baseline": "0.11.1",
25
+ "@altimateai/altimate-code-linux-arm64": "0.11.1",
26
+ "@altimateai/altimate-code-windows-x64-baseline": "0.11.1",
27
+ "@altimateai/altimate-code-darwin-arm64": "0.11.1",
28
+ "@altimateai/altimate-code-darwin-x64": "0.11.1",
29
+ "@altimateai/altimate-code-windows-x64": "0.11.1",
30
+ "@altimateai/altimate-code-linux-x64": "0.11.1"
31
31
  },
32
32
  "peerDependencies": {
33
33
  "pg": ">=8",