@altimateai/altimate-code 0.5.4 → 0.5.5
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 +13 -13
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.5] - 2026-03-20
|
|
9
|
+
|
|
10
|
+
### Added
|
|
11
|
+
|
|
12
|
+
- Auto-discover MCP servers from external AI tool configs (VS Code, Cursor, GitHub Copilot, Claude Code, Gemini CLI, Claude Desktop) — discovered project-scoped servers are disabled by default and require explicit approval; home-directory configs are auto-enabled (#311)
|
|
13
|
+
- Security FAQ documentation for MCP auto-discovery — covers trust model, security hardening, and how to disable (#346)
|
|
14
|
+
|
|
15
|
+
### Changed
|
|
16
|
+
|
|
17
|
+
- `auto_mcp_discovery` now defaults to `true` in config schema via `z.boolean().default(true)` — matches existing runtime behavior (#345)
|
|
18
|
+
|
|
19
|
+
### Fixed
|
|
20
|
+
|
|
21
|
+
- Add missing `altimate_change` markers for `experimental` block in `opencode.jsonc` — fixes Marker Guard CI failure on main (#344)
|
|
22
|
+
|
|
8
23
|
## [0.5.4] - 2026-03-20
|
|
9
24
|
|
|
10
25
|
### Added
|
package/package.json
CHANGED
|
@@ -7,24 +7,24 @@
|
|
|
7
7
|
"scripts": {
|
|
8
8
|
"postinstall": "bun ./postinstall.mjs || node ./postinstall.mjs"
|
|
9
9
|
},
|
|
10
|
-
"version": "0.5.
|
|
10
|
+
"version": "0.5.5",
|
|
11
11
|
"license": "MIT",
|
|
12
12
|
"dependencies": {
|
|
13
13
|
"@altimateai/altimate-core": "^0.2.5"
|
|
14
14
|
},
|
|
15
15
|
"optionalDependencies": {
|
|
16
|
-
"@altimateai/altimate-code-linux-x64": "0.5.
|
|
17
|
-
"@altimateai/altimate-code-windows-arm64": "0.5.
|
|
18
|
-
"@altimateai/altimate-code-linux-arm64-musl": "0.5.
|
|
19
|
-
"@altimateai/altimate-code-darwin-x64": "0.5.
|
|
20
|
-
"@altimateai/altimate-code-windows-x64": "0.5.
|
|
21
|
-
"@altimateai/altimate-code-linux-x64-musl": "0.5.
|
|
22
|
-
"@altimateai/altimate-code-darwin-x64-baseline": "0.5.
|
|
23
|
-
"@altimateai/altimate-code-linux-x64-baseline-musl": "0.5.
|
|
24
|
-
"@altimateai/altimate-code-linux-x64-baseline": "0.5.
|
|
25
|
-
"@altimateai/altimate-code-linux-arm64": "0.5.
|
|
26
|
-
"@altimateai/altimate-code-darwin-arm64": "0.5.
|
|
27
|
-
"@altimateai/altimate-code-windows-x64-baseline": "0.5.
|
|
16
|
+
"@altimateai/altimate-code-linux-x64": "0.5.5",
|
|
17
|
+
"@altimateai/altimate-code-windows-arm64": "0.5.5",
|
|
18
|
+
"@altimateai/altimate-code-linux-arm64-musl": "0.5.5",
|
|
19
|
+
"@altimateai/altimate-code-darwin-x64": "0.5.5",
|
|
20
|
+
"@altimateai/altimate-code-windows-x64": "0.5.5",
|
|
21
|
+
"@altimateai/altimate-code-linux-x64-musl": "0.5.5",
|
|
22
|
+
"@altimateai/altimate-code-darwin-x64-baseline": "0.5.5",
|
|
23
|
+
"@altimateai/altimate-code-linux-x64-baseline-musl": "0.5.5",
|
|
24
|
+
"@altimateai/altimate-code-linux-x64-baseline": "0.5.5",
|
|
25
|
+
"@altimateai/altimate-code-linux-arm64": "0.5.5",
|
|
26
|
+
"@altimateai/altimate-code-darwin-arm64": "0.5.5",
|
|
27
|
+
"@altimateai/altimate-code-windows-x64-baseline": "0.5.5"
|
|
28
28
|
},
|
|
29
29
|
"peerDependencies": {
|
|
30
30
|
"pg": ">=8",
|