altimate-code 0.8.1 → 0.8.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.
Files changed (2) hide show
  1. package/CHANGELOG.md +8 -0
  2. 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.8.2] - 2026-06-03
9
+
10
+ A small correctness patch. The dbt PR reviewer's deterministic engine never required an altimate API key — but two tool descriptions said it did, which could push the reviewer into lint-only mode and send users chasing a key they don't need. This release corrects that and documents what "lint-only" actually means.
11
+
12
+ ### Fixed
13
+
14
+ - **`dbt_pr_review` no longer implies it needs an altimate API key.** The native `altimate-core` engine behind the reviewer (column-lineage blast radius, query equivalence, PII classification, A–F grade) runs **fully offline** via the bundled napi binary — there is no `altimate_core.init` and no API-key gate in that path. Two tool descriptions (`altimate_core_column_lineage`, `altimate_core_track_lineage`) still carried a stale Python-bridge-era line claiming *"Requires `altimate_core.init()` with API key"*, so a stuck **lint-only** run was mis-diagnosed as missing auth. The descriptions now state the tools run offline with no key. **Lint-only actually means the dbt `manifest.json` didn't resolve** (wrong path, stale manifest, or wrong working directory) — the [dbt PR Review docs](https://docs.altimate.sh/usage/dbt-pr-review/) now spell out how to fix it. The only thing that ever needs a key is the optional advisory LLM lane, which can never block a verdict. (#882)
15
+
8
16
  ## [0.8.1] - 2026-06-02
9
17
 
10
18
  A reliability + correctness patch on top of 0.8.0. Highlights: **8 new Snowflake Cortex models** (with a config escape-hatch so you never wait for a release again), a **trace-corruption fix** for long-running sessions, and a **behavior change to the dbt PR reviewer** — it now always posts a GitHub *comment* and never a formal *approval*.
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.8.1",
17
+ "version": "0.8.2",
18
18
  "license": "MIT",
19
19
  "dependencies": {
20
20
  "@altimateai/altimate-core": "0.4.0"
21
21
  },
22
22
  "optionalDependencies": {
23
- "@altimateai/altimate-code-linux-arm64": "0.8.1",
24
- "@altimateai/altimate-code-darwin-arm64": "0.8.1",
25
- "@altimateai/altimate-code-linux-x64-baseline": "0.8.1",
26
- "@altimateai/altimate-code-darwin-x64-baseline": "0.8.1",
27
- "@altimateai/altimate-code-windows-x64-baseline": "0.8.1",
28
- "@altimateai/altimate-code-darwin-x64": "0.8.1",
29
- "@altimateai/altimate-code-windows-x64": "0.8.1",
30
- "@altimateai/altimate-code-linux-x64": "0.8.1"
23
+ "@altimateai/altimate-code-linux-arm64": "0.8.2",
24
+ "@altimateai/altimate-code-darwin-arm64": "0.8.2",
25
+ "@altimateai/altimate-code-linux-x64-baseline": "0.8.2",
26
+ "@altimateai/altimate-code-darwin-x64-baseline": "0.8.2",
27
+ "@altimateai/altimate-code-windows-x64-baseline": "0.8.2",
28
+ "@altimateai/altimate-code-darwin-x64": "0.8.2",
29
+ "@altimateai/altimate-code-windows-x64": "0.8.2",
30
+ "@altimateai/altimate-code-linux-x64": "0.8.2"
31
31
  },
32
32
  "peerDependencies": {
33
33
  "pg": ">=8",