Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
29 changes: 29 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,32 @@
## [0.2.0] - 2026-04-29

### 🚀 Features

- *(datasets)* Add update subcommand to rename label or table_name
- Data/dataset refresh + indexes auto-embedding + embedding providers (#67)
- *(skills)* Add optional geospatial agent skill
- *(skills)* Auto-update bundled agent skills after CLI upgrade

### 🐛 Bug Fixes

- *(datasets)* Match runtimedb response shape on update
- *(datasets)* Drop synthetic schema_name on update output
- *(datasets)* Restore eprintln for "Dataset updated" status line
- *(skills)* Complete partial installs and improve status output
- *(skills)* Show Installed: No when no skill store exists
- *(skills)* Stop repeat auto-downloads (parse SKILL.md, stale tarball guard)

### 💼 Other

- *(release)* Bump geospatial skill version on release

### 🚜 Refactor

- *(skills)* Always auto-update skills when eligible (remove env opt-out)

### 🎨 Styling

- *(datasets)* Drop redundant Stylize import in update path
## [0.1.14] - 2026-04-28
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Blocking: This PR silently removes a previously released changelog entry from [0.1.14]:

- *(auth)* Add CLI auth session support (JWT access tokens, refresh, PKCE login)

The [0.1.14] section was already published/tagged. Retroactively deleting an entry rewrites released history and can confuse users and tooling that parses the changelog. If this entry was added by mistake or shipped under a different version, add an amendment note in the 0.1.14 section (e.g. - *(auth)* [corrected in 0.2.0] ...) rather than silently removing it.


### 🚀 Features
Expand Down
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "hotdata-cli"
version = "0.1.14"
version = "0.2.0"
edition = "2024"
repository = "https://github.com/hotdata-dev/hotdata-cli"
description = "CLI tool for Hotdata.dev"
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<br>
Command line interface for <a href="https://www.hotdata.dev">Hotdata</a>.
<br><br>
<img src="https://img.shields.io/badge/version-0.1.14-blue" alt="version">
<img src="https://img.shields.io/badge/version-0.2.0-blue" alt="version">
<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>
<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>
</p>
Expand Down
2 changes: 1 addition & 1 deletion skills/hotdata-geospatial/SKILL.md
Original file line number Diff line number Diff line change
@@ -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.1.14
version: 0.2.0
---

# Hotdata Geospatial Skill
Expand Down
2 changes: 1 addition & 1 deletion skills/hotdata/SKILL.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
name: hotdata
description: Use this skill when the user wants to run hotdata CLI commands, query the Hotdata API, list workspaces, list connections, create connections, list tables, manage datasets, execute SQL queries, inspect query run history, search tables, manage indexes, manage sandboxes, manage workspace context and stored docs such as context:DATAMODEL via the context API (`hotdata context`), or interact with the hotdata service. Activate when the user says "run hotdata", "query hotdata", "list workspaces", "list connections", "create a connection", "list tables", "list datasets", "create a dataset", "upload a dataset", "execute a query", "search a table", "list indexes", "create an index", "list query runs", "list past queries", "query history", "list sandboxes", "create a sandbox", "run a sandbox", "workspace context", "pull context", "push context", "data model", "context:DATAMODEL", or asks you to use the hotdata CLI.
version: 0.1.14
version: 0.2.0
---

# Hotdata CLI Skill
Expand Down
Loading