@altimateai/altimate-code 0.5.0 → 0.5.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 +22 -0
  2. package/package.json +54 -14
package/CHANGELOG.md CHANGED
@@ -5,6 +5,28 @@ 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.5.1] - 2026-03-19
9
+
10
+ ### Added
11
+
12
+ - Simplified agent modes: 3 primary modes (`builder`, `analyst`, `plan`) replacing 7 — cleaner UX with focused roles (#282)
13
+ - SQL write access control — `builder` prompts for approval on write queries, `analyst` blocks them entirely, destructive SQL (`DROP DATABASE`, `TRUNCATE`) hard-blocked (#282)
14
+ - `core_failure` telemetry with PII-safe input signatures — captures tool failures with masked SQL literals and redacted secrets (#245)
15
+ - `peerDependencies` for database drivers in published npm packages (#273)
16
+ - Comprehensive docs restructuring with new Changelog, Getting Started, and Tools reference pages (#284)
17
+
18
+ ### Fixed
19
+
20
+ - Replace `escapeSqlString` with parameterized query binds in `finops/schema` modules (#277)
21
+ - Driver error messages now suggest `npm install` instead of `bun add` (#273)
22
+ - System prompt traced only once per session to avoid duplication (#287)
23
+
24
+ ### Changed
25
+
26
+ - Bump `@altimateai/altimate-core` to 0.2.5 — adds Rust-side failure telemetry with PII masking
27
+ - Removed 5 agent prompts: `executive`, `migrator`, `researcher`, `trainer`, `validator` (#282)
28
+ - README cleanup and updated branding (#288)
29
+
8
30
  ## [0.5.0] - 2026-03-18
9
31
 
10
32
  ### Added
package/package.json CHANGED
@@ -7,23 +7,63 @@
7
7
  "scripts": {
8
8
  "postinstall": "bun ./postinstall.mjs || node ./postinstall.mjs"
9
9
  },
10
- "version": "0.5.0",
10
+ "version": "0.5.1",
11
11
  "license": "MIT",
12
12
  "dependencies": {
13
- "@altimateai/altimate-core": "^0.2.3"
13
+ "@altimateai/altimate-core": "^0.2.5"
14
14
  },
15
15
  "optionalDependencies": {
16
- "@altimateai/altimate-code-linux-x64": "0.5.0",
17
- "@altimateai/altimate-code-windows-arm64": "0.5.0",
18
- "@altimateai/altimate-code-linux-arm64-musl": "0.5.0",
19
- "@altimateai/altimate-code-darwin-x64": "0.5.0",
20
- "@altimateai/altimate-code-windows-x64": "0.5.0",
21
- "@altimateai/altimate-code-linux-x64-musl": "0.5.0",
22
- "@altimateai/altimate-code-darwin-x64-baseline": "0.5.0",
23
- "@altimateai/altimate-code-linux-x64-baseline-musl": "0.5.0",
24
- "@altimateai/altimate-code-linux-x64-baseline": "0.5.0",
25
- "@altimateai/altimate-code-linux-arm64": "0.5.0",
26
- "@altimateai/altimate-code-darwin-arm64": "0.5.0",
27
- "@altimateai/altimate-code-windows-x64-baseline": "0.5.0"
16
+ "@altimateai/altimate-code-linux-x64": "0.5.1",
17
+ "@altimateai/altimate-code-windows-arm64": "0.5.1",
18
+ "@altimateai/altimate-code-linux-arm64-musl": "0.5.1",
19
+ "@altimateai/altimate-code-darwin-x64": "0.5.1",
20
+ "@altimateai/altimate-code-windows-x64": "0.5.1",
21
+ "@altimateai/altimate-code-linux-x64-musl": "0.5.1",
22
+ "@altimateai/altimate-code-darwin-x64-baseline": "0.5.1",
23
+ "@altimateai/altimate-code-linux-x64-baseline-musl": "0.5.1",
24
+ "@altimateai/altimate-code-linux-x64-baseline": "0.5.1",
25
+ "@altimateai/altimate-code-linux-arm64": "0.5.1",
26
+ "@altimateai/altimate-code-darwin-arm64": "0.5.1",
27
+ "@altimateai/altimate-code-windows-x64-baseline": "0.5.1"
28
+ },
29
+ "peerDependencies": {
30
+ "pg": ">=8",
31
+ "snowflake-sdk": ">=1",
32
+ "@google-cloud/bigquery": ">=8",
33
+ "@databricks/sql": ">=1",
34
+ "mysql2": ">=3",
35
+ "mssql": ">=11",
36
+ "oracledb": ">=6",
37
+ "duckdb": ">=1",
38
+ "better-sqlite3": ">=11"
39
+ },
40
+ "peerDependenciesMeta": {
41
+ "pg": {
42
+ "optional": true
43
+ },
44
+ "snowflake-sdk": {
45
+ "optional": true
46
+ },
47
+ "@google-cloud/bigquery": {
48
+ "optional": true
49
+ },
50
+ "@databricks/sql": {
51
+ "optional": true
52
+ },
53
+ "mysql2": {
54
+ "optional": true
55
+ },
56
+ "mssql": {
57
+ "optional": true
58
+ },
59
+ "oracledb": {
60
+ "optional": true
61
+ },
62
+ "duckdb": {
63
+ "optional": true
64
+ },
65
+ "better-sqlite3": {
66
+ "optional": true
67
+ }
28
68
  }
29
69
  }