From 34f0d2a4f91329bb08021c87bc829c57f36e7555 Mon Sep 17 00:00:00 2001 From: Paul Thurlow Date: Sat, 13 Jun 2026 11:19:49 -0700 Subject: [PATCH] chore: Release hotdata-cli version 0.4.1 --- CHANGELOG.md | 72 ++++++++++++++++++++++++++++++ Cargo.lock | 2 +- Cargo.toml | 2 +- README.md | 2 +- skills/hotdata-analytics/SKILL.md | 2 +- skills/hotdata-geospatial/SKILL.md | 2 +- skills/hotdata-search/SKILL.md | 2 +- skills/hotdata/SKILL.md | 2 +- 8 files changed, 79 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 18c0d29..da9e674 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,75 @@ +## [0.4.1] - 2026-06-13 + +### πŸš€ Features + +- *(sdk)* Add sync wrapper and CliTokenProvider +- *(query)* Remove dead --connection flag + +### πŸ› Bug Fixes + +- *(sdk)* Avoid double /v1 and scope by database +- *(sdk)* Restore sandbox scope, guard, timeout +- *(sdk)* Guard negative numeric casts +- *(sdk)* Set hotdata-cli user-agent header +- *(sdk)* Drop dead X-Sandbox-Id header +- *(ci)* Skip scenario-parity for Dependabot PRs +- *(release)* Prepend unreleased changelog instead of full regen + +### πŸ’Ό Other + +- Pin third-party github actions to commit SHAs +- *(deps)* Add hotdata sdk, tokio, async-trait +- *(deps)* Pin hotdata sdk to merged rev +- *(deps)* Consolidate CLI on reqwest 0.13 +- Add cargo fmt check job +- *(deps)* Pin sdk-rust to upload_stream content_length rev +- Remove sandbox cli commands +- *(deps)* Use published hotdata 0.1.1 from crates.io +- *(ci)* Add Dependabot to track published hotdata SDK + +### 🚜 Refactor + +- *(http)* Add slim raw-http helper +- *(workspace)* Use sdk workspaces handle +- *(jobs)* Use sdk jobs handle +- *(tables)* Use sdk information_schema +- *(queries)* Use sdk query_runs handle +- *(results)* Use sdk results handle +- *(embeddings)* Use sdk providers handle +- *(context)* Use sdk database_context +- *(datasets)* Use sdk datasets handle +- *(connections)* Migrate connections_new +- *(connections)* Use sdk connections handle +- *(sandbox)* Use sdk sandboxes handle +- *(indexes)* Use sdk indexes handle +- *(query)* Poll+arrow via sdk handles +- *(databases)* Use sdk databases handle +- *(api)* Remove legacy ApiClient +- *(query)* Submit via sdk submit_query +- *(sdk)* Extract apply_seam_headers helper +- *(sdk)* Drop stale dead_code allows +- *(query)* Decode results via SDK get_result_arrow (arrow v55) +- Migrate raw HTTP to typed SDK (#131) +- *(databases)* Clarify output DTOs, use From trait +- Drop dead Deserialize derives on output DTOs +- *(databases)* Stream /files upload via SDK upload_stream +- *(databases)* Drop redundant upload content-type param + +### πŸ“š Documentation + +- *(sdk)* Drop migration-history notes from comments +- Describe current behavior, not change history, in comments + +### 🎨 Styling + +- Clear clippy lints in migrated modules +- Apply cargo fmt to codebase +- Apply rustfmt + +### πŸ§ͺ Testing + +- *(sdk)* Cover generic HTTP status preservation in from_arrow +- *(cli)* Add env-gated scenario integration tests ## [0.4.0] - 2026-06-04 ### πŸš€ Features diff --git a/Cargo.lock b/Cargo.lock index 288bc7e..4f6cdfb 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1188,7 +1188,7 @@ dependencies = [ [[package]] name = "hotdata-cli" -version = "0.4.0" +version = "0.4.1" dependencies = [ "anstyle", "arrow", diff --git a/Cargo.toml b/Cargo.toml index 0e889e1..b5a6f43 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "hotdata-cli" -version = "0.4.0" +version = "0.4.1" edition = "2024" repository = "https://github.com/hotdata-dev/hotdata-cli" description = "CLI tool for Hotdata.dev" diff --git a/README.md b/README.md index 2c10197..f8dad4f 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,7 @@
Command line interface for Hotdata.

- version + version build coverage

diff --git a/skills/hotdata-analytics/SKILL.md b/skills/hotdata-analytics/SKILL.md index 00e4668..2afc449 100644 --- a/skills/hotdata-analytics/SKILL.md +++ b/skills/hotdata-analytics/SKILL.md @@ -1,7 +1,7 @@ --- name: hotdata-analytics description: Use this skill when the user wants OLAP-style SQL analytics in Hotdata β€” aggregations, GROUP BY, JOINs, reporting, exploratory queries, query run history, stored results, or materialized follow-up tables (Chain via datasets or managed databases). Activate for "analyze", "aggregate", "rollup", "pivot", "report", "metrics", "GROUP BY", "query history", "past queries", "query runs", "stored results", "materialize", "chain", "intermediate table", or sorted indexes for filters/range scans. Do not load for BM25/vector search or geospatial SQL β€” use hotdata-search or hotdata-geospatial. Requires the core hotdata skill for connections, tables, datasets, and auth. -version: 0.4.0 +version: 0.4.1 --- # Hotdata Analytics Skill diff --git a/skills/hotdata-geospatial/SKILL.md b/skills/hotdata-geospatial/SKILL.md index 7e43b95..9394bb4 100644 --- a/skills/hotdata-geospatial/SKILL.md +++ b/skills/hotdata-geospatial/SKILL.md @@ -1,7 +1,7 @@ --- name: hotdata-geospatial description: Use this skill only when the user is working with geospatial data in Hotdata (PostGIS-style SQL like ST_* functions, geometry/WKB, bbox filtering, point-in-polygon, distance/area, lat/lon, spatial joins, β€œgeospatial”, β€œGIS”, β€œPostGIS”). Do not load this skill for non-geospatial SQL or general Hotdata usage. -version: 0.4.0 +version: 0.4.1 --- # Hotdata Geospatial Skill diff --git a/skills/hotdata-search/SKILL.md b/skills/hotdata-search/SKILL.md index a676335..4309353 100644 --- a/skills/hotdata-search/SKILL.md +++ b/skills/hotdata-search/SKILL.md @@ -1,7 +1,7 @@ --- name: hotdata-search description: Use this skill when the user wants full-text search, BM25 keyword search, vector similarity search, semantic search, embeddings, or retrieval indexes in Hotdata. Activate for "hotdata search", "BM25", "full-text", "vector search", "semantic search", "similarity", "embedding", "embedding provider", "create an index" (bm25 or vector), "list indexes" for search, or SQL using bm25_search or vector_distance. Do not load for general SQL analytics (aggregations, GROUP BY) or geospatial work β€” use hotdata-analytics or hotdata-geospatial instead. Requires the core hotdata skill for auth and workspace basics. -version: 0.4.0 +version: 0.4.1 --- # Hotdata Search Skill diff --git a/skills/hotdata/SKILL.md b/skills/hotdata/SKILL.md index 1981b3a..5413d3f 100644 --- a/skills/hotdata/SKILL.md +++ b/skills/hotdata/SKILL.md @@ -1,7 +1,7 @@ --- name: hotdata description: Use this skill when the user wants to run core hotdata CLI commands β€” auth, workspaces, connections, managed databases, datasets, tables, basic SQL query, database context (context:DATAMODEL), jobs, and skill install. Activate for "run hotdata", "list workspaces", "list connections", "create a connection", "list databases", "managed database", "load parquet", "list tables", "list datasets", "create a dataset", "execute a query", "database context", "context:DATAMODEL", or general Hotdata CLI usage. For full-text/vector search and retrieval indexes use hotdata-search; for OLAP analytics, query history, stored results, and Chain materializations use hotdata-analytics; for geospatial/GIS use hotdata-geospatial. -version: 0.4.0 +version: 0.4.1 --- # Hotdata CLI Skill