altimate-code 0.5.15 → 0.5.16
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 +12 -0
- package/README.md +1 -1
- package/package.json +18 -14
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,18 @@ 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.16] - 2026-03-30
|
|
9
|
+
|
|
10
|
+
### Added
|
|
11
|
+
|
|
12
|
+
- **ClickHouse support** — Connect to ClickHouse Cloud, self-hosted clusters, or local Docker instances running ClickHouse 23.3+. Supports HTTP/HTTPS, TLS mutual auth, and dbt-clickhouse adapter auto-discovery. Includes MergeTree optimization guidance, materialized view design, partition pruning analysis, and query history via `system.query_log`. Requires `npm install @clickhouse/client` (#574)
|
|
13
|
+
|
|
14
|
+
### Fixed
|
|
15
|
+
|
|
16
|
+
- **Agent loop detection** — The agent now detects when a single tool is called 30+ times in a session (a pattern seen with runaway tool loops) and pauses for confirmation before continuing. Complements the existing same-input repetition detection (#587)
|
|
17
|
+
- **Improved error diagnostics** — Tool failures now report more specific error categories (`not_configured`, `file_not_found`, `edit_mismatch`, `resource_exhausted`) instead of generic "unknown" classification, improving support triage (#587)
|
|
18
|
+
- **Session environment metadata** — `session_start` telemetry now includes `os`, `arch`, and `node_version` for environment-based segmentation (#587)
|
|
19
|
+
|
|
8
20
|
## [0.5.15] - 2026-03-29
|
|
9
21
|
|
|
10
22
|
### Added
|
package/README.md
CHANGED
|
@@ -151,7 +151,7 @@ Each mode has scoped permissions, tool access, and SQL write-access control.
|
|
|
151
151
|
|
|
152
152
|
## Supported Warehouses
|
|
153
153
|
|
|
154
|
-
Snowflake · BigQuery · Databricks · PostgreSQL · Redshift · DuckDB · MySQL · SQL Server · Oracle · SQLite
|
|
154
|
+
Snowflake · BigQuery · Databricks · PostgreSQL · Redshift · ClickHouse · DuckDB · MySQL · SQL Server · Oracle · SQLite · MongoDB
|
|
155
155
|
|
|
156
156
|
First-class support with schema indexing, query execution, and metadata introspection. SSH tunneling available for secure connections.
|
|
157
157
|
|
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.16",
|
|
18
18
|
"license": "MIT",
|
|
19
19
|
"dependencies": {
|
|
20
20
|
"@altimateai/altimate-core": "0.2.6"
|
|
21
21
|
},
|
|
22
22
|
"optionalDependencies": {
|
|
23
|
-
"@altimateai/altimate-code-linux-arm64": "0.5.
|
|
24
|
-
"@altimateai/altimate-code-windows-x64": "0.5.
|
|
25
|
-
"@altimateai/altimate-code-windows-x64-baseline": "0.5.
|
|
26
|
-
"@altimateai/altimate-code-darwin-x64": "0.5.
|
|
27
|
-
"@altimateai/altimate-code-windows-arm64": "0.5.
|
|
28
|
-
"@altimateai/altimate-code-linux-x64-baseline": "0.5.
|
|
29
|
-
"@altimateai/altimate-code-linux-arm64-musl": "0.5.
|
|
30
|
-
"@altimateai/altimate-code-linux-x64-musl": "0.5.
|
|
31
|
-
"@altimateai/altimate-code-linux-x64": "0.5.
|
|
32
|
-
"@altimateai/altimate-code-darwin-x64-baseline": "0.5.
|
|
33
|
-
"@altimateai/altimate-code-linux-x64-baseline-musl": "0.5.
|
|
34
|
-
"@altimateai/altimate-code-darwin-arm64": "0.5.
|
|
23
|
+
"@altimateai/altimate-code-linux-arm64": "0.5.16",
|
|
24
|
+
"@altimateai/altimate-code-windows-x64": "0.5.16",
|
|
25
|
+
"@altimateai/altimate-code-windows-x64-baseline": "0.5.16",
|
|
26
|
+
"@altimateai/altimate-code-darwin-x64": "0.5.16",
|
|
27
|
+
"@altimateai/altimate-code-windows-arm64": "0.5.16",
|
|
28
|
+
"@altimateai/altimate-code-linux-x64-baseline": "0.5.16",
|
|
29
|
+
"@altimateai/altimate-code-linux-arm64-musl": "0.5.16",
|
|
30
|
+
"@altimateai/altimate-code-linux-x64-musl": "0.5.16",
|
|
31
|
+
"@altimateai/altimate-code-linux-x64": "0.5.16",
|
|
32
|
+
"@altimateai/altimate-code-darwin-x64-baseline": "0.5.16",
|
|
33
|
+
"@altimateai/altimate-code-linux-x64-baseline-musl": "0.5.16",
|
|
34
|
+
"@altimateai/altimate-code-darwin-arm64": "0.5.16"
|
|
35
35
|
},
|
|
36
36
|
"peerDependencies": {
|
|
37
37
|
"pg": ">=8",
|
|
@@ -41,7 +41,8 @@
|
|
|
41
41
|
"mysql2": ">=3",
|
|
42
42
|
"mssql": ">=11",
|
|
43
43
|
"oracledb": ">=6",
|
|
44
|
-
"duckdb": ">=1"
|
|
44
|
+
"duckdb": ">=1",
|
|
45
|
+
"@clickhouse/client": ">=1"
|
|
45
46
|
},
|
|
46
47
|
"peerDependenciesMeta": {
|
|
47
48
|
"pg": {
|
|
@@ -67,6 +68,9 @@
|
|
|
67
68
|
},
|
|
68
69
|
"duckdb": {
|
|
69
70
|
"optional": true
|
|
71
|
+
},
|
|
72
|
+
"@clickhouse/client": {
|
|
73
|
+
"optional": true
|
|
70
74
|
}
|
|
71
75
|
}
|
|
72
76
|
}
|