Skip to content

Commit eebc146

Browse files
authored
Merge pull request #156 from hotdata-dev/release/0.5.0
chore: Release hotdata-cli version 0.5.0
2 parents 75bc0ab + a55e5c8 commit eebc146

8 files changed

Lines changed: 28 additions & 10 deletions

File tree

CHANGELOG.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,19 @@
1+
## [0.5.0] - 2026-06-16
2+
3+
### 🚀 Features
4+
5+
- Follow truncated inline query results to full set
6+
- Auto-retry queries shed under load (HTTP 429 `OVERLOADED`), honoring `Retry-After`
7+
8+
### 🐛 Bug Fixes
9+
10+
- Preserve inline warning and timing when following truncation
11+
- Stop using deprecated `QueryResponse.row_count`
12+
13+
### 💼 Other
14+
15+
- Bump hotdata SDK to 0.3.1
16+
117
## [0.4.2] - 2026-06-15
218

319
### 📚 Documentation

Cargo.lock

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "hotdata-cli"
3-
version = "0.4.2"
3+
version = "0.5.0"
44
edition = "2024"
55
repository = "https://github.com/hotdata-dev/hotdata-cli"
66
description = "CLI tool for Hotdata.dev"
@@ -16,7 +16,7 @@ path = "src/main.rs"
1616
# behind a shared multi-thread tokio runtime. The `arrow` feature backs result
1717
# decode; `upload_stream` carries `content_length` (sized body, not chunked, so
1818
# the server can fast-fail an oversized upload — see src/sdk.rs::Api::upload_stream).
19-
hotdata = { version = "0.3.0", features = ["arrow"] }
19+
hotdata = { version = "0.3.1", features = ["arrow"] }
2020
# Shared multi-thread runtime for the sync wrapper; block_on is called
2121
# concurrently from rayon worker threads (see src/indexes.rs). `sync` backs the
2222
# mpsc channel that bridges the blocking upload reader into an async byte stream.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<br>
66
Command line interface for <a href="https://www.hotdata.dev">Hotdata</a>.
77
<br><br>
8-
<img src="https://img.shields.io/badge/version-0.4.2-blue" alt="version">
8+
<img src="https://img.shields.io/badge/version-0.5.0-blue" alt="version">
99
<a href="https://github.com/hotdata-dev/hotdata-cli/actions/workflows/ci.yml"><img src="https://github.com/hotdata-dev/hotdata-cli/actions/workflows/ci.yml/badge.svg" alt="build"></a>
1010
<a href="https://codecov.io/gh/hotdata-dev/hotdata-cli"><img src="https://codecov.io/gh/hotdata-dev/hotdata-cli/branch/main/graph/badge.svg" alt="coverage"></a>
1111
</p>

skills/hotdata-analytics/SKILL.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
name: hotdata-analytics
33
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.
4-
version: 0.4.2
4+
version: 0.5.0
55
---
66

77
# Hotdata Analytics Skill

skills/hotdata-geospatial/SKILL.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
name: hotdata-geospatial
33
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.
4-
version: 0.4.2
4+
version: 0.5.0
55
---
66

77
# Hotdata Geospatial Skill

skills/hotdata-search/SKILL.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
name: hotdata-search
33
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.
4-
version: 0.4.2
4+
version: 0.5.0
55
---
66

77
# Hotdata Search Skill

skills/hotdata/SKILL.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
name: hotdata
33
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.
4-
version: 0.4.2
4+
version: 0.5.0
55
---
66

77
# Hotdata CLI Skill
@@ -323,6 +323,8 @@ hotdata query status <query_run_id> [--output table|json|csv]
323323
- Use `hotdata tables list` for discovery — not `information_schema` via `query`.
324324
- **PostgreSQL dialect.** Quote non-lowercase columns with double quotes.
325325
- Async runs return `query_run_id` → poll with `query status` (do not re-run the same heavy SQL).
326+
- **Large results are complete, not a preview.** The server returns inline rows only up to a bounded cap and persists the full set out-of-band; `hotdata query` transparently fetches the full result, so the printed rows and row count are the complete set. (If the full result can't be retrieved, the CLI prints the preview and a `warning:` to stderr.)
327+
- **Backpressure is handled.** Under heavy concurrent load the server may shed a query with HTTP 429 (`OVERLOADED`); the CLI auto-retries (honoring `Retry-After`) before surfacing an error — no manual retry needed.
326328
- **OLAP** (aggregations, history, Chain, sorted indexes): **`hotdata-analytics`** skill.
327329
- **Search** (BM25, vector): **`hotdata-search`** skill.
328330

0 commit comments

Comments
 (0)