altimate-code 0.5.8 → 0.5.9
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 +14 -0
- package/package.json +13 -13
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,20 @@ 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.9] - 2026-03-23
|
|
9
|
+
|
|
10
|
+
### Fixed
|
|
11
|
+
|
|
12
|
+
- **Codespaces support** — skip machine-scoped `GITHUB_TOKEN` that lacks repo access, cap provider retries to prevent infinite loops, fix phantom `/discover-and-add-mcps` command that was missing from builtin commands (#415)
|
|
13
|
+
- **`sql_analyze` reports "unknown error" for successful analyses** — tool returned error status even when analysis completed successfully (AI-5975) (#426)
|
|
14
|
+
- **Remove `semver` dependency from upgrade path** — replaced with zero-dependency version comparison to prevent users getting locked on old versions when `semver` fails to load (#421)
|
|
15
|
+
- **Ship `discover-and-add-mcps` as a builtin command** — moved from `.opencode/command/` config directory to embedded template so it works out of the box (#409)
|
|
16
|
+
|
|
17
|
+
### Testing
|
|
18
|
+
|
|
19
|
+
- Comprehensive upgrade decision tests covering version comparison, downgrade prevention, and edge cases (#421)
|
|
20
|
+
- Codespace E2E tests for `GITHUB_TOKEN` filtering, retry caps, and provider initialization (#415)
|
|
21
|
+
|
|
8
22
|
## [0.5.8] - 2026-03-23
|
|
9
23
|
|
|
10
24
|
### 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.9",
|
|
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.9",
|
|
24
|
+
"@altimateai/altimate-code-windows-arm64": "0.5.9",
|
|
25
|
+
"@altimateai/altimate-code-linux-arm64-musl": "0.5.9",
|
|
26
|
+
"@altimateai/altimate-code-darwin-x64": "0.5.9",
|
|
27
|
+
"@altimateai/altimate-code-windows-x64": "0.5.9",
|
|
28
|
+
"@altimateai/altimate-code-linux-x64-musl": "0.5.9",
|
|
29
|
+
"@altimateai/altimate-code-darwin-x64-baseline": "0.5.9",
|
|
30
|
+
"@altimateai/altimate-code-linux-x64-baseline-musl": "0.5.9",
|
|
31
|
+
"@altimateai/altimate-code-linux-x64-baseline": "0.5.9",
|
|
32
|
+
"@altimateai/altimate-code-linux-arm64": "0.5.9",
|
|
33
|
+
"@altimateai/altimate-code-darwin-arm64": "0.5.9",
|
|
34
|
+
"@altimateai/altimate-code-windows-x64-baseline": "0.5.9"
|
|
35
35
|
},
|
|
36
36
|
"peerDependencies": {
|
|
37
37
|
"pg": ">=8",
|