@altimateai/altimate-code 0.5.0 → 0.5.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 +45 -0
  2. package/package.json +54 -14
package/CHANGELOG.md CHANGED
@@ -5,6 +5,51 @@ 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.2] - 2026-03-19
9
+
10
+ ### Added
11
+
12
+ - Trace history dialog (`/trace` command) — browse, search, and open past session traces from the TUI (#297)
13
+ - Docs showcase examples with screenshots (#292)
14
+
15
+ ### Fixed
16
+
17
+ - TUI trace dialog now respects custom `tracing.dir` config — previously always used default directory (#307)
18
+ - WebFetch `clearTimeout` leak — DNS failures no longer leak timer handles (#307)
19
+ - WebFetch User-Agent strategy inverted to honest-bot-first — reduces 403 blocks from TLS fingerprint mismatch (#303)
20
+ - Snowflake SDK stdout log noise suppressed in TUI via `additionalLogToConsole: false` (#305, #301)
21
+ - `cleanTitle` fallback in trace dialog no longer returns empty string (#307)
22
+ - Error logging added to `openTraceInBrowser` for debuggability (#307)
23
+ - `altimate_change` markers added to `webfetch.ts` for upstream merge compatibility (#307)
24
+
25
+ ### Changed
26
+
27
+ - Snowflake SDK minimum version bumped to `^2.0.3` for log suppression support (#305)
28
+ - Removed brew from docs and README (#299)
29
+ - Fixed README typo (`altimate` → `altimate-code`) (#293)
30
+
31
+ ## [0.5.1] - 2026-03-19
32
+
33
+ ### Added
34
+
35
+ - Simplified agent modes: 3 primary modes (`builder`, `analyst`, `plan`) replacing 7 — cleaner UX with focused roles (#282)
36
+ - SQL write access control — `builder` prompts for approval on write queries, `analyst` blocks them entirely, destructive SQL (`DROP DATABASE`, `TRUNCATE`) hard-blocked (#282)
37
+ - `core_failure` telemetry with PII-safe input signatures — captures tool failures with masked SQL literals and redacted secrets (#245)
38
+ - `peerDependencies` for database drivers in published npm packages (#273)
39
+ - Comprehensive docs restructuring with new Changelog, Getting Started, and Tools reference pages (#284)
40
+
41
+ ### Fixed
42
+
43
+ - Replace `escapeSqlString` with parameterized query binds in `finops/schema` modules (#277)
44
+ - Driver error messages now suggest `npm install` instead of `bun add` (#273)
45
+ - System prompt traced only once per session to avoid duplication (#287)
46
+
47
+ ### Changed
48
+
49
+ - Bump `@altimateai/altimate-core` to 0.2.5 — adds Rust-side failure telemetry with PII masking
50
+ - Removed 5 agent prompts: `executive`, `migrator`, `researcher`, `trainer`, `validator` (#282)
51
+ - README cleanup and updated branding (#288)
52
+
8
53
  ## [0.5.0] - 2026-03-18
9
54
 
10
55
  ### 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.2",
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.2",
17
+ "@altimateai/altimate-code-windows-arm64": "0.5.2",
18
+ "@altimateai/altimate-code-linux-arm64-musl": "0.5.2",
19
+ "@altimateai/altimate-code-darwin-x64": "0.5.2",
20
+ "@altimateai/altimate-code-windows-x64": "0.5.2",
21
+ "@altimateai/altimate-code-linux-x64-musl": "0.5.2",
22
+ "@altimateai/altimate-code-darwin-x64-baseline": "0.5.2",
23
+ "@altimateai/altimate-code-linux-x64-baseline-musl": "0.5.2",
24
+ "@altimateai/altimate-code-linux-x64-baseline": "0.5.2",
25
+ "@altimateai/altimate-code-linux-arm64": "0.5.2",
26
+ "@altimateai/altimate-code-darwin-arm64": "0.5.2",
27
+ "@altimateai/altimate-code-windows-x64-baseline": "0.5.2"
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
  }