@altimateai/altimate-code 0.4.0 → 0.4.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.
- package/CHANGELOG.md +22 -0
- package/package.json +13 -13
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.4.1] - 2026-03-16
|
|
9
|
+
|
|
10
|
+
### Added
|
|
11
|
+
|
|
12
|
+
- Local-first tracing system replacing Langfuse (#183)
|
|
13
|
+
|
|
14
|
+
### Fixed
|
|
15
|
+
|
|
16
|
+
- Engine not found when user's project has `.venv` in cwd — managed venv now takes priority (#199)
|
|
17
|
+
- Missing `[warehouses]` pip extra causing FinOps tools to fail with "snowflake-connector-python not installed" (#199)
|
|
18
|
+
- Engine install trusting stale manifest when venv/Python binary was deleted (#199)
|
|
19
|
+
- Extras changes not detected on upgrade — manifest now tracks installed extras (#199)
|
|
20
|
+
- Windows path handling for dev/cwd venv resolution (#199)
|
|
21
|
+
- Concurrent bridge startup race condition — added `pendingStart` mutex (#199)
|
|
22
|
+
- Unhandled spawn `error` event crashing host process on invalid Python path (#199)
|
|
23
|
+
- Bridge hung permanently after ping failure — child process now cleaned up (#199)
|
|
24
|
+
- `restartCount` incorrectly incremented on signal kills, prematurely disabling bridge (#199)
|
|
25
|
+
- TUI prompt corruption from engine bootstrap messages writing to stderr (#180)
|
|
26
|
+
- Tracing exporter timeout leaking timers (#191)
|
|
27
|
+
- Feedback submission failing when repo labels don't exist (#188)
|
|
28
|
+
- Pre-release security and resource cleanup fixes for tracing (#197)
|
|
29
|
+
|
|
8
30
|
## [0.4.0] - 2026-03-15
|
|
9
31
|
|
|
10
32
|
### Added
|
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.1",
|
|
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.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"
|
|
25
25
|
}
|
|
26
26
|
}
|