diff --git a/CHANGELOG.md b/CHANGELOG.md index 73fb007..1e16d62 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] + +## [0.4.1] - 2026-06-26 + +### Fixed + +- `ManagedDatabaseClient.fetch_table` now waits for the persisted result to reach `ready` before fetching it as Arrow on the synchronous query path (it previously only waited on the async path). This fixes failures on read-modify-write loads (merge/append) and state reads against the live backend, where the result is often still `processing` when the inline preview returns. + ## [0.4.0] - 2026-06-26 ### Changed diff --git a/pyproject.toml b/pyproject.toml index 076125f..c0fc636 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "hatchling.build" [project] name = "hotdata-framework" -version = "0.4.0" +version = "0.4.1" description = "Python framework for building Hotdata integrations: workspace/session runtime, query execution, and managed databases" readme = "README.md" requires-python = ">=3.10" diff --git a/uv.lock b/uv.lock index 53c2620..0318647 100644 --- a/uv.lock +++ b/uv.lock @@ -101,7 +101,7 @@ wheels = [ [[package]] name = "hotdata-framework" -version = "0.4.0" +version = "0.4.1" source = { editable = "." } dependencies = [ { name = "hotdata" },