@altimateai/altimate-code 0.10.0 → 0.11.0-beta.2
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 +31 -0
- package/package.json +9 -9
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,37 @@ 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.1] - 2026-09-07
|
|
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
|
+
### Added
|
|
13
|
+
|
|
14
|
+
- **Altimate Base — a free, no-signup, no-API-key hosted model.** Choose it from the first-run picker, `/connect`, or `/model`. Rate limited; requests and responses are logged and may be used to improve Altimate's products, linked to a persistent per-installation identifier (**pseudonymous, not anonymous**) — avoid sending secrets or confidential code. The consent dialog defaults to **No**; nothing is sent until you accept. `ALTIMATE_BASE_GATEWAY_URL` lets operators point it at a self-hosted gateway (HTTPS required, no embedded credentials). (#1199)
|
|
15
|
+
- **Five deterministic completion-gate validators** (`dbt-build-green`, `dbt-nothing-built`, `dbt-deliverable-names`, `dbt-incremental-config`, `dbt-dialect-guard`) that refuse to terminate a session on a broken, vacuous, or misnamed dbt result. **Opt-in, shadow-mode only** for now (`ALTIMATE_VALIDATORS_SHADOW=1`); off by default. (#1175)
|
|
16
|
+
|
|
17
|
+
### Changed
|
|
18
|
+
|
|
19
|
+
- **Big Pickle retired** as a new-user option. Existing users are detected on launch and offered Altimate Base through the consent gate (not silently migrated); declining routes to the model picker. (#1199)
|
|
20
|
+
- **Agent `data-qa` renamed to `analyst`**, now the documented "ask questions about your data" agent. Existing `default_agent: "data-qa"` configs keep working — they fall back to `analyst` with a one-time notice. (#1239)
|
|
21
|
+
- Builder prompt split into an invariant core plus named packs (byte-identical assembly), with an opt-in data-qa profile. (#1217)
|
|
22
|
+
|
|
23
|
+
### Breaking Changes
|
|
24
|
+
|
|
25
|
+
- **DuckDB and SQLite connections now require an explicit `path`.** A missing `path` used to silently default to an in-memory store — which could read a populated on-disk store as empty — and now errors. Set `"path": ":memory:"` if you want in-memory behavior. See [warehouses.md](docs/docs/configure/warehouses.md). (#1204)
|
|
26
|
+
|
|
27
|
+
### Fixed
|
|
28
|
+
|
|
29
|
+
- **Ledger redaction** — a `curl -u user:pass` in tool output could leak unredacted into the compaction ledger after #1117's path-masking ate the `curl` token; redaction now derives curl context from the pre-mask string independently. (#1246)
|
|
30
|
+
- **Telemetry error text** now masks filesystem paths (home directories, cloud URIs, Windows/UNC). (#1117)
|
|
31
|
+
- **Safety threat messages** no longer echo raw non-SQL content that could resurrect a redacted secret. (#1111)
|
|
32
|
+
- `--dir` no longer reads a populated warehouse store as empty. (#1204)
|
|
33
|
+
- Drivers: load from the location the failing runtime named; concurrency-safe installs; a 2s deadline no longer fails healthy DuckDB stores; a broken client now says so. (#1201, #1198)
|
|
34
|
+
- Recovered driver-e2e review debt — false-skip, `file:` URI checks, Windows paths, telemetry, docs. (#1238)
|
|
35
|
+
- `auth login` accepts a provider id and diagnoses plan/account on a Codex 400. (#1181)
|
|
36
|
+
- Skills no longer walk the whole tree to answer "does any file match". (#1213)
|
|
37
|
+
- Main CI `dbt-tools E2E` job un-broken — restored the missing `--version` fallback that killed the setup script under `set -euo pipefail`. (#1252)
|
|
38
|
+
|
|
8
39
|
## [0.10.0] - 2026-09-02
|
|
9
40
|
|
|
10
41
|
Workspaces grow from a memory-only pilot into a working surface: a bound workspace now supplies its custom skills, attaches its own engine, and routes warehouse tools through it. Alongside that, a run no longer dies when one oversized tool result overflows the window, and the ChatGPT-subscription model picker was rebuilt against what the backend actually serves. Everything workspace-related stays behind `ALTIMATE_WORKSPACE=1` and is invisible to anyone not opted in — but the harness-reliability changes are the largest part of this release and apply to **every** session, opted in or not.
|
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.
|
|
10
|
+
"version": "0.11.0-beta.2",
|
|
11
11
|
"license": "MIT",
|
|
12
12
|
"dependencies": {
|
|
13
13
|
"@altimateai/altimate-core": "0.7.0"
|
|
14
14
|
},
|
|
15
15
|
"optionalDependencies": {
|
|
16
|
-
"@altimateai/altimate-code-
|
|
17
|
-
"@altimateai/altimate-code-linux-
|
|
18
|
-
"@altimateai/altimate-code-
|
|
19
|
-
"@altimateai/altimate-code-
|
|
20
|
-
"@altimateai/altimate-code-darwin-arm64": "0.
|
|
21
|
-
"@altimateai/altimate-code-
|
|
22
|
-
"@altimateai/altimate-code-
|
|
23
|
-
"@altimateai/altimate-code-
|
|
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"
|
|
24
24
|
},
|
|
25
25
|
"peerDependencies": {
|
|
26
26
|
"pg": ">=8",
|