@altimateai/altimate-code 0.5.19 → 0.5.20
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 +16 -0
- package/package.json +13 -13
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,22 @@ 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.20] - 2026-04-09
|
|
9
|
+
|
|
10
|
+
### Added
|
|
11
|
+
|
|
12
|
+
- **Altimate model auto-selection** — when Altimate credentials are configured and no model is explicitly chosen, `altimate-backend/altimate-default` is selected automatically. Respects the `provider` filter in config if set. No manual `/model` selection needed for first-time Altimate users. (#665)
|
|
13
|
+
|
|
14
|
+
### Fixed
|
|
15
|
+
|
|
16
|
+
- **Connection string passwords with special characters** — passwords containing `@`, `#`, `:`, `/`, or other URI-reserved characters are now automatically percent-encoded in `connection_string` configs. Previously these caused cryptic authentication failures because the URI parser split on the wrong delimiter. Already-encoded passwords (`%XX`) are left untouched. Affects all URI-based drivers (PostgreSQL, MongoDB, ClickHouse). (#597, closes #589)
|
|
17
|
+
- **`trace list` pagination** — `trace list` now supports `--offset` for navigating large trace histories, displays "Showing X-Y of N" with a next-page hint, and caps the TUI trace dialog at 500 items (up from 50) with an overflow message pointing to the CLI for the full set. (#596, closes #418)
|
|
18
|
+
- **ClickHouse edge-case hardening** — added tests for `LowCardinality(Nullable(...))` nullability detection, `Map`/`Tuple` wrapper handling, undefined type fallback, and SQL comment/string-escape edge cases in the LIMIT injection guard. (#599, closes #592)
|
|
19
|
+
|
|
20
|
+
### Testing
|
|
21
|
+
|
|
22
|
+
- 31 new adversarial tests covering connection string sanitization (injection, encoding edge cases, ReDoS, Unicode, null bytes), pagination boundary math (Infinity, NaN, fractional, negative inputs), and `Provider.parseModel` edge cases.
|
|
23
|
+
|
|
8
24
|
## [0.5.19] - 2026-04-04
|
|
9
25
|
|
|
10
26
|
### 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.20",
|
|
11
11
|
"license": "MIT",
|
|
12
12
|
"dependencies": {
|
|
13
13
|
"@altimateai/altimate-core": "0.2.6"
|
|
14
14
|
},
|
|
15
15
|
"optionalDependencies": {
|
|
16
|
-
"@altimateai/altimate-code-linux-arm64": "0.5.
|
|
17
|
-
"@altimateai/altimate-code-windows-x64": "0.5.
|
|
18
|
-
"@altimateai/altimate-code-windows-x64-baseline": "0.5.
|
|
19
|
-
"@altimateai/altimate-code-darwin-x64": "0.5.
|
|
20
|
-
"@altimateai/altimate-code-windows-arm64": "0.5.
|
|
21
|
-
"@altimateai/altimate-code-linux-x64-baseline": "0.5.
|
|
22
|
-
"@altimateai/altimate-code-linux-arm64-musl": "0.5.
|
|
23
|
-
"@altimateai/altimate-code-linux-x64-musl": "0.5.
|
|
24
|
-
"@altimateai/altimate-code-linux-x64": "0.5.
|
|
25
|
-
"@altimateai/altimate-code-darwin-x64-baseline": "0.5.
|
|
26
|
-
"@altimateai/altimate-code-linux-x64-baseline-musl": "0.5.
|
|
27
|
-
"@altimateai/altimate-code-darwin-arm64": "0.5.
|
|
16
|
+
"@altimateai/altimate-code-linux-arm64": "0.5.20",
|
|
17
|
+
"@altimateai/altimate-code-windows-x64": "0.5.20",
|
|
18
|
+
"@altimateai/altimate-code-windows-x64-baseline": "0.5.20",
|
|
19
|
+
"@altimateai/altimate-code-darwin-x64": "0.5.20",
|
|
20
|
+
"@altimateai/altimate-code-windows-arm64": "0.5.20",
|
|
21
|
+
"@altimateai/altimate-code-linux-x64-baseline": "0.5.20",
|
|
22
|
+
"@altimateai/altimate-code-linux-arm64-musl": "0.5.20",
|
|
23
|
+
"@altimateai/altimate-code-linux-x64-musl": "0.5.20",
|
|
24
|
+
"@altimateai/altimate-code-linux-x64": "0.5.20",
|
|
25
|
+
"@altimateai/altimate-code-darwin-x64-baseline": "0.5.20",
|
|
26
|
+
"@altimateai/altimate-code-linux-x64-baseline-musl": "0.5.20",
|
|
27
|
+
"@altimateai/altimate-code-darwin-arm64": "0.5.20"
|
|
28
28
|
},
|
|
29
29
|
"peerDependencies": {
|
|
30
30
|
"pg": ">=8",
|