altimate-code 0.5.3 → 0.5.4
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 +15 -0
- package/package.json +14 -18
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,21 @@ 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.4] - 2026-03-20
|
|
9
|
+
|
|
10
|
+
### Added
|
|
11
|
+
|
|
12
|
+
- Show update-available indicator in TUI footer — when a newer version is available, the footer displays `↑ version · altimate upgrade` with responsive layout for narrow terminals (#175)
|
|
13
|
+
- Track per-generation token usage in telemetry — emit `generation` event with flat token fields (`tokens_input`, `tokens_output`, `tokens_reasoning`, `tokens_cache_read`, `tokens_cache_write`) for Azure App Insights compatibility (#336)
|
|
14
|
+
|
|
15
|
+
### Fixed
|
|
16
|
+
|
|
17
|
+
- Replace `better-sqlite3` with `bun:sqlite` for schema cache and SQLite driver — fixes `schema_index`, `schema_search`, `schema_cache_status`, and SQLite driver for all users on the released CLI binary (#323)
|
|
18
|
+
- Fix marker guard diff parser bug — context lines now correctly update `altimate_change` marker state, preventing false negatives that allowed marker leaks to pass CI (#338)
|
|
19
|
+
- Extend marker guard CI to run on push-to-main with zero-SHA guard — closes the gap where individual PRs pass but combined state of `main` has missing markers (#338)
|
|
20
|
+
- Add `import.meta.main` guard to `analyze.ts` so test imports don't trigger CLI side effects (#338)
|
|
21
|
+
- Add 21 unit tests for marker diff parser and run them in CI (#338)
|
|
22
|
+
|
|
8
23
|
## [0.5.3] - 2026-03-19
|
|
9
24
|
|
|
10
25
|
### Fixed
|
package/package.json
CHANGED
|
@@ -14,24 +14,24 @@
|
|
|
14
14
|
"scripts": {
|
|
15
15
|
"postinstall": "bun ./postinstall.mjs || node ./postinstall.mjs"
|
|
16
16
|
},
|
|
17
|
-
"version": "0.5.
|
|
17
|
+
"version": "0.5.4",
|
|
18
18
|
"license": "MIT",
|
|
19
19
|
"dependencies": {
|
|
20
20
|
"@altimateai/altimate-core": "^0.2.5"
|
|
21
21
|
},
|
|
22
22
|
"optionalDependencies": {
|
|
23
|
-
"@altimateai/altimate-code-linux-x64": "0.5.
|
|
24
|
-
"@altimateai/altimate-code-windows-arm64": "0.5.
|
|
25
|
-
"@altimateai/altimate-code-linux-arm64-musl": "0.5.
|
|
26
|
-
"@altimateai/altimate-code-darwin-x64": "0.5.
|
|
27
|
-
"@altimateai/altimate-code-windows-x64": "0.5.
|
|
28
|
-
"@altimateai/altimate-code-linux-x64-musl": "0.5.
|
|
29
|
-
"@altimateai/altimate-code-darwin-x64-baseline": "0.5.
|
|
30
|
-
"@altimateai/altimate-code-linux-x64-baseline-musl": "0.5.
|
|
31
|
-
"@altimateai/altimate-code-linux-x64-baseline": "0.5.
|
|
32
|
-
"@altimateai/altimate-code-linux-arm64": "0.5.
|
|
33
|
-
"@altimateai/altimate-code-darwin-arm64": "0.5.
|
|
34
|
-
"@altimateai/altimate-code-windows-x64-baseline": "0.5.
|
|
23
|
+
"@altimateai/altimate-code-linux-x64": "0.5.4",
|
|
24
|
+
"@altimateai/altimate-code-windows-arm64": "0.5.4",
|
|
25
|
+
"@altimateai/altimate-code-linux-arm64-musl": "0.5.4",
|
|
26
|
+
"@altimateai/altimate-code-darwin-x64": "0.5.4",
|
|
27
|
+
"@altimateai/altimate-code-windows-x64": "0.5.4",
|
|
28
|
+
"@altimateai/altimate-code-linux-x64-musl": "0.5.4",
|
|
29
|
+
"@altimateai/altimate-code-darwin-x64-baseline": "0.5.4",
|
|
30
|
+
"@altimateai/altimate-code-linux-x64-baseline-musl": "0.5.4",
|
|
31
|
+
"@altimateai/altimate-code-linux-x64-baseline": "0.5.4",
|
|
32
|
+
"@altimateai/altimate-code-linux-arm64": "0.5.4",
|
|
33
|
+
"@altimateai/altimate-code-darwin-arm64": "0.5.4",
|
|
34
|
+
"@altimateai/altimate-code-windows-x64-baseline": "0.5.4"
|
|
35
35
|
},
|
|
36
36
|
"peerDependencies": {
|
|
37
37
|
"pg": ">=8",
|
|
@@ -41,8 +41,7 @@
|
|
|
41
41
|
"mysql2": ">=3",
|
|
42
42
|
"mssql": ">=11",
|
|
43
43
|
"oracledb": ">=6",
|
|
44
|
-
"duckdb": ">=1"
|
|
45
|
-
"better-sqlite3": ">=11"
|
|
44
|
+
"duckdb": ">=1"
|
|
46
45
|
},
|
|
47
46
|
"peerDependenciesMeta": {
|
|
48
47
|
"pg": {
|
|
@@ -68,9 +67,6 @@
|
|
|
68
67
|
},
|
|
69
68
|
"duckdb": {
|
|
70
69
|
"optional": true
|
|
71
|
-
},
|
|
72
|
-
"better-sqlite3": {
|
|
73
|
-
"optional": true
|
|
74
70
|
}
|
|
75
71
|
}
|
|
76
72
|
}
|