@altimateai/altimate-code 0.4.0 → 0.4.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 +56 -0
- package/LICENSE +1 -0
- package/package.json +13 -13
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,62 @@ 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.4.1] - 2026-03-16
|
|
9
|
+
## [0.4.2] - 2026-03-18
|
|
10
|
+
|
|
11
|
+
### Breaking Changes
|
|
12
|
+
|
|
13
|
+
- **Python engine eliminated** — all 73 tool methods now run natively in TypeScript. No Python, pip, venv, or `altimate-engine` installation required. Fixes #210.
|
|
14
|
+
|
|
15
|
+
### Added
|
|
16
|
+
|
|
17
|
+
- `@altimateai/drivers` shared workspace package with 10 database drivers (Snowflake, BigQuery, PostgreSQL, Databricks, Redshift, MySQL, SQL Server, Oracle, DuckDB, SQLite)
|
|
18
|
+
- Direct `@altimateai/altimate-core` napi-rs bindings — SQL analysis calls go straight to Rust (no Python intermediary)
|
|
19
|
+
- dbt-first SQL execution — automatically uses `profiles.yml` connection when in a dbt project
|
|
20
|
+
- Warehouse telemetry (5 event types: connect, query, introspection, discovery, census)
|
|
21
|
+
- 340+ new tests including E2E tests against live Snowflake, BigQuery, and Databricks accounts
|
|
22
|
+
- Encrypted key-pair auth support for Snowflake (PKCS8 PEM with passphrase)
|
|
23
|
+
- Comprehensive driver documentation at `docs/docs/drivers.md`
|
|
24
|
+
|
|
25
|
+
### Fixed
|
|
26
|
+
|
|
27
|
+
- Python bridge connection failures for UV, conda, and non-standard venv setups (#210)
|
|
28
|
+
- SQL injection in finops/schema queries (parameterized queries + escape utility)
|
|
29
|
+
- Credential store no longer saves plaintext passwords
|
|
30
|
+
- SSH tunnel cleanup on SIGINT/SIGTERM
|
|
31
|
+
- Race condition in connection registry for concurrent access
|
|
32
|
+
- Databricks DATE_SUB syntax
|
|
33
|
+
- Redshift describeTable column name
|
|
34
|
+
- SQL Server describeTable includes views
|
|
35
|
+
- Dispatcher telemetry wrapped in try/catch
|
|
36
|
+
- Flaky test timeouts
|
|
37
|
+
|
|
38
|
+
### Removed
|
|
39
|
+
|
|
40
|
+
- `packages/altimate-engine/` — entire Python package (~17,000 lines)
|
|
41
|
+
- `packages/opencode/src/altimate/bridge/` — JSON-RPC bridge
|
|
42
|
+
- `.github/workflows/publish-engine.yml` — PyPI publish workflow
|
|
43
|
+
|
|
44
|
+
### Added
|
|
45
|
+
|
|
46
|
+
- Local-first tracing system replacing Langfuse (#183)
|
|
47
|
+
|
|
48
|
+
### Fixed
|
|
49
|
+
|
|
50
|
+
- Engine not found when user's project has `.venv` in cwd — managed venv now takes priority (#199)
|
|
51
|
+
- Missing `[warehouses]` pip extra causing FinOps tools to fail with "snowflake-connector-python not installed" (#199)
|
|
52
|
+
- Engine install trusting stale manifest when venv/Python binary was deleted (#199)
|
|
53
|
+
- Extras changes not detected on upgrade — manifest now tracks installed extras (#199)
|
|
54
|
+
- Windows path handling for dev/cwd venv resolution (#199)
|
|
55
|
+
- Concurrent bridge startup race condition — added `pendingStart` mutex (#199)
|
|
56
|
+
- Unhandled spawn `error` event crashing host process on invalid Python path (#199)
|
|
57
|
+
- Bridge hung permanently after ping failure — child process now cleaned up (#199)
|
|
58
|
+
- `restartCount` incorrectly incremented on signal kills, prematurely disabling bridge (#199)
|
|
59
|
+
- TUI prompt corruption from engine bootstrap messages writing to stderr (#180)
|
|
60
|
+
- Tracing exporter timeout leaking timers (#191)
|
|
61
|
+
- Feedback submission failing when repo labels don't exist (#188)
|
|
62
|
+
- Pre-release security and resource cleanup fixes for tracing (#197)
|
|
63
|
+
|
|
8
64
|
## [0.4.0] - 2026-03-15
|
|
9
65
|
|
|
10
66
|
### Added
|
package/LICENSE
CHANGED
package/package.json
CHANGED
|
@@ -7,20 +7,20 @@
|
|
|
7
7
|
"scripts": {
|
|
8
8
|
"postinstall": "bun ./postinstall.mjs || node ./postinstall.mjs"
|
|
9
9
|
},
|
|
10
|
-
"version": "v0.4.
|
|
10
|
+
"version": "v0.4.5",
|
|
11
11
|
"license": "MIT",
|
|
12
12
|
"optionalDependencies": {
|
|
13
|
-
"@altimateai/altimate-code-linux-x64": "v0.4.
|
|
14
|
-
"@altimateai/altimate-code-windows-arm64": "v0.4.
|
|
15
|
-
"@altimateai/altimate-code-linux-arm64-musl": "v0.4.
|
|
16
|
-
"@altimateai/altimate-code-darwin-x64": "v0.4.
|
|
17
|
-
"@altimateai/altimate-code-windows-x64": "v0.4.
|
|
18
|
-
"@altimateai/altimate-code-linux-x64-musl": "v0.4.
|
|
19
|
-
"@altimateai/altimate-code-darwin-x64-baseline": "v0.4.
|
|
20
|
-
"@altimateai/altimate-code-linux-x64-baseline-musl": "v0.4.
|
|
21
|
-
"@altimateai/altimate-code-linux-x64-baseline": "v0.4.
|
|
22
|
-
"@altimateai/altimate-code-linux-arm64": "v0.4.
|
|
23
|
-
"@altimateai/altimate-code-darwin-arm64": "v0.4.
|
|
24
|
-
"@altimateai/altimate-code-windows-x64-baseline": "v0.4.
|
|
13
|
+
"@altimateai/altimate-code-linux-x64": "v0.4.5",
|
|
14
|
+
"@altimateai/altimate-code-windows-arm64": "v0.4.5",
|
|
15
|
+
"@altimateai/altimate-code-linux-arm64-musl": "v0.4.5",
|
|
16
|
+
"@altimateai/altimate-code-darwin-x64": "v0.4.5",
|
|
17
|
+
"@altimateai/altimate-code-windows-x64": "v0.4.5",
|
|
18
|
+
"@altimateai/altimate-code-linux-x64-musl": "v0.4.5",
|
|
19
|
+
"@altimateai/altimate-code-darwin-x64-baseline": "v0.4.5",
|
|
20
|
+
"@altimateai/altimate-code-linux-x64-baseline-musl": "v0.4.5",
|
|
21
|
+
"@altimateai/altimate-code-linux-x64-baseline": "v0.4.5",
|
|
22
|
+
"@altimateai/altimate-code-linux-arm64": "v0.4.5",
|
|
23
|
+
"@altimateai/altimate-code-darwin-arm64": "v0.4.5",
|
|
24
|
+
"@altimateai/altimate-code-windows-x64-baseline": "v0.4.5"
|
|
25
25
|
}
|
|
26
26
|
}
|