@altimateai/altimate-code 0.4.1 → 0.4.6

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 (3) hide show
  1. package/CHANGELOG.md +34 -0
  2. package/LICENSE +1 -0
  3. package/package.json +13 -13
package/CHANGELOG.md CHANGED
@@ -6,6 +6,40 @@ 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
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
9
43
 
10
44
  ### Added
11
45
 
package/LICENSE CHANGED
@@ -1,5 +1,6 @@
1
1
  MIT License
2
2
 
3
+ Copyright (c) 2026 Altimate AI
3
4
  Copyright (c) 2025 opencode
4
5
 
5
6
  Permission is hereby granted, free of charge, to any person obtaining a copy
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.1",
10
+ "version": "v0.4.6",
11
11
  "license": "MIT",
12
12
  "optionalDependencies": {
13
- "@altimateai/altimate-code-linux-x64": "v0.4.1",
14
- "@altimateai/altimate-code-windows-arm64": "v0.4.1",
15
- "@altimateai/altimate-code-linux-arm64-musl": "v0.4.1",
16
- "@altimateai/altimate-code-darwin-x64": "v0.4.1",
17
- "@altimateai/altimate-code-windows-x64": "v0.4.1",
18
- "@altimateai/altimate-code-linux-x64-musl": "v0.4.1",
19
- "@altimateai/altimate-code-darwin-x64-baseline": "v0.4.1",
20
- "@altimateai/altimate-code-linux-x64-baseline-musl": "v0.4.1",
21
- "@altimateai/altimate-code-linux-x64-baseline": "v0.4.1",
22
- "@altimateai/altimate-code-linux-arm64": "v0.4.1",
23
- "@altimateai/altimate-code-darwin-arm64": "v0.4.1",
24
- "@altimateai/altimate-code-windows-x64-baseline": "v0.4.1"
13
+ "@altimateai/altimate-code-linux-x64": "v0.4.6",
14
+ "@altimateai/altimate-code-windows-arm64": "v0.4.6",
15
+ "@altimateai/altimate-code-linux-arm64-musl": "v0.4.6",
16
+ "@altimateai/altimate-code-darwin-x64": "v0.4.6",
17
+ "@altimateai/altimate-code-windows-x64": "v0.4.6",
18
+ "@altimateai/altimate-code-linux-x64-musl": "v0.4.6",
19
+ "@altimateai/altimate-code-darwin-x64-baseline": "v0.4.6",
20
+ "@altimateai/altimate-code-linux-x64-baseline-musl": "v0.4.6",
21
+ "@altimateai/altimate-code-linux-x64-baseline": "v0.4.6",
22
+ "@altimateai/altimate-code-linux-arm64": "v0.4.6",
23
+ "@altimateai/altimate-code-darwin-arm64": "v0.4.6",
24
+ "@altimateai/altimate-code-windows-x64-baseline": "v0.4.6"
25
25
  }
26
26
  }