@altimateai/altimate-code 0.3.1 → 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 +39 -0
- package/package.json +13 -13
- package/postinstall.mjs +4 -9
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,45 @@ 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
|
+
|
|
30
|
+
## [0.4.0] - 2026-03-15
|
|
31
|
+
|
|
32
|
+
### Added
|
|
33
|
+
|
|
34
|
+
- Data-viz skill for data storytelling and visualizations (#170)
|
|
35
|
+
- AI Teammate training system with learn-by-example patterns (#148)
|
|
36
|
+
|
|
37
|
+
### Fixed
|
|
38
|
+
|
|
39
|
+
- Sidebar shows "OpenCode" instead of "Altimate Code" after upstream merge (#168)
|
|
40
|
+
- Prevent upstream tags from polluting origin (#165)
|
|
41
|
+
- Show welcome box on first CLI run, not during postinstall (#163)
|
|
42
|
+
|
|
43
|
+
### Changed
|
|
44
|
+
|
|
45
|
+
- Engine version bumped to 0.4.0
|
|
46
|
+
|
|
8
47
|
## [0.3.1] - 2026-03-15
|
|
9
48
|
|
|
10
49
|
### Fixed
|
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.
|
|
10
|
+
"version": "v0.4.1",
|
|
11
11
|
"license": "MIT",
|
|
12
12
|
"optionalDependencies": {
|
|
13
|
-
"@altimateai/altimate-code-linux-x64": "v0.
|
|
14
|
-
"@altimateai/altimate-code-windows-arm64": "v0.
|
|
15
|
-
"@altimateai/altimate-code-linux-arm64-musl": "v0.
|
|
16
|
-
"@altimateai/altimate-code-darwin-x64": "v0.
|
|
17
|
-
"@altimateai/altimate-code-windows-x64": "v0.
|
|
18
|
-
"@altimateai/altimate-code-linux-x64-musl": "v0.
|
|
19
|
-
"@altimateai/altimate-code-darwin-x64-baseline": "v0.
|
|
20
|
-
"@altimateai/altimate-code-linux-x64-baseline-musl": "v0.
|
|
21
|
-
"@altimateai/altimate-code-linux-x64-baseline": "v0.
|
|
22
|
-
"@altimateai/altimate-code-linux-arm64": "v0.
|
|
23
|
-
"@altimateai/altimate-code-darwin-arm64": "v0.
|
|
24
|
-
"@altimateai/altimate-code-windows-x64-baseline": "v0.
|
|
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
|
}
|
package/postinstall.mjs
CHANGED
|
@@ -143,11 +143,7 @@ async function main() {
|
|
|
143
143
|
if (os.platform() === "win32") {
|
|
144
144
|
// On Windows, the .exe is already included in the package and bin field points to it
|
|
145
145
|
// No postinstall setup needed
|
|
146
|
-
|
|
147
|
-
if (version) {
|
|
148
|
-
writeUpgradeMarker(version)
|
|
149
|
-
printWelcome(version)
|
|
150
|
-
}
|
|
146
|
+
if (version) writeUpgradeMarker(version)
|
|
151
147
|
return
|
|
152
148
|
}
|
|
153
149
|
|
|
@@ -162,10 +158,9 @@ async function main() {
|
|
|
162
158
|
fs.copyFileSync(binaryPath, target)
|
|
163
159
|
}
|
|
164
160
|
fs.chmodSync(target, 0o755)
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
}
|
|
161
|
+
// Write marker only — npm v7+ suppresses all postinstall output.
|
|
162
|
+
// The CLI picks up the marker and shows the welcome box on first run.
|
|
163
|
+
if (version) writeUpgradeMarker(version)
|
|
169
164
|
} catch (error) {
|
|
170
165
|
console.error("Failed to setup altimate-code binary:", error.message)
|
|
171
166
|
process.exit(1)
|