From ce511193f24ad214d7aef74701226d3e07a16ed5 Mon Sep 17 00:00:00 2001 From: Eddie A Tejeda <669988+eddietejeda@users.noreply.github.com> Date: Sat, 8 Aug 2026 14:19:34 -0700 Subject: [PATCH 1/2] chore: Release hotdata-cli version 0.22.0 --- CHANGELOG.md | 15 +++++++++++++++ Cargo.lock | 2 +- Cargo.toml | 2 +- skills/hotdata/SKILL.md | 2 +- skills/hotdata/subskills/analytics/SKILL.md | 2 +- skills/hotdata/subskills/geospatial/SKILL.md | 2 +- skills/hotdata/subskills/search/SKILL.md | 2 +- 7 files changed, 21 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index cd024e5..2011991 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,18 @@ +## [0.22.0] - 2026-08-08 + +### ๐Ÿš€ Features + +- *(ingest)* --continuous flag on new-datasource (buckets) (#248) +- *(ingest)* --continuous flag on new-datasource (buckets) (#249) + +### ๐Ÿšœ Refactor + +- *(skills)* Bundle search/analytics/geospatial under hotdata + fix CLI drift (#244) +- Replace user-facing "connection" with "catalog" (keep wire contract) (#245) + +### ๐Ÿงช Testing + +- Retire stale connections scenario tests (command removed in #221) (#246) ## [0.21.0] - 2026-07-31 ### ๐Ÿš€ Features diff --git a/Cargo.lock b/Cargo.lock index 795339e..3db0b48 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1220,7 +1220,7 @@ dependencies = [ [[package]] name = "hotdata-cli" -version = "0.21.0" +version = "0.22.0" dependencies = [ "anstyle", "arrow", diff --git a/Cargo.toml b/Cargo.toml index d24b7ef..13c4bab 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "hotdata-cli" -version = "0.21.0" +version = "0.22.0" edition = "2024" repository = "https://github.com/hotdata-dev/hotdata-cli" description = "CLI tool for Hotdata.dev" diff --git a/skills/hotdata/SKILL.md b/skills/hotdata/SKILL.md index ef6d5ab..27043e1 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, managed databases, tables, basic SQL query, database context (context:DATAMODEL), jobs, ingest (pull external data), and skill install. Activate for "run hotdata", "list workspaces", "list databases", "managed database", "load parquet", "list tables", "show table columns", "execute a query", "database context", "context:DATAMODEL", "ingest", "datasource", "import data from", "connect a data source", "connector", "pull data from postgres/mysql/an API/S3 buckets/Iceberg", or general Hotdata CLI usage. This skill bundles three specialized guides under subskills/, loaded on demand: read subskills/search/SKILL.md for full-text/vector search and retrieval indexes, subskills/analytics/SKILL.md for OLAP analytics, query history, stored results, and Chain materializations, and subskills/geospatial/SKILL.md for geospatial/GIS. -version: 0.21.0 +version: 0.22.0 --- # Hotdata CLI Skill diff --git a/skills/hotdata/subskills/analytics/SKILL.md b/skills/hotdata/subskills/analytics/SKILL.md index df969b1..f086b2b 100644 --- a/skills/hotdata/subskills/analytics/SKILL.md +++ b/skills/hotdata/subskills/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 into 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 tables and auth. -version: 0.21.0 +version: 0.22.0 --- # Hotdata Analytics Skill diff --git a/skills/hotdata/subskills/geospatial/SKILL.md b/skills/hotdata/subskills/geospatial/SKILL.md index fcd4a7d..74cce70 100644 --- a/skills/hotdata/subskills/geospatial/SKILL.md +++ b/skills/hotdata/subskills/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.21.0 +version: 0.22.0 --- # Hotdata Geospatial Skill diff --git a/skills/hotdata/subskills/search/SKILL.md b/skills/hotdata/subskills/search/SKILL.md index 794a528..69f185a 100644 --- a/skills/hotdata/subskills/search/SKILL.md +++ b/skills/hotdata/subskills/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.21.0 +version: 0.22.0 --- # Hotdata Search Skill From 4bf0c903399b606568fa4412332f628f3a7e0083 Mon Sep 17 00:00:00 2001 From: Eddie A Tejeda <669988+eddietejeda@users.noreply.github.com> Date: Sat, 8 Aug 2026 14:33:23 -0700 Subject: [PATCH 2/2] chore: dedupe --continuous changelog line (#248/#249 same change) --- CHANGELOG.md | 1 - 1 file changed, 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2011991..33f86b0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,7 +2,6 @@ ### ๐Ÿš€ Features -- *(ingest)* --continuous flag on new-datasource (buckets) (#248) - *(ingest)* --continuous flag on new-datasource (buckets) (#249) ### ๐Ÿšœ Refactor