Releases: hotdata-dev/sdk-python-framework
Releases · hotdata-dev/sdk-python-framework
Release list
hotdata-framework 0.6.3
Added
HotdataClientandManagedDatabaseClientacceptrequest_timeout(seconds, or a(connect, read)pair). The generated SDK otherwise issues every HTTP request with urllib3's no-timeout default, so a stalled or unreachable server blocks the calling thread indefinitely; the new parameter applies a socket-level deadline to every call through the client while still honoring an explicit per-call_request_timeout. Also exported asapply_default_request_timeout(api_client, timeout)for callers holding a raw generated client. Default remains no timeout (behavior unchanged unless opted in).
hotdata-framework 0.6.2
Changed
- Repository text cleanup: the changelog and test docstrings no longer reference external issue trackers. No functional changes; 0.6.2 is byte-identical to 0.6.1 in package code.
hotdata-framework 0.6.1
Fixed
ManagedDatabaseClient.fetch_tablenow carries theX-Database-Idscope header on the result poll, the query-run poll, and the Arrow fetch — not only on the query submit. Results of database-scoped queries are themselves database-scoped, so every read against an existing synced table (merge/append loads, dlt state restore) failed with400: Bad Requestonce the table had data.- API error messages now include the response body (flattened, truncated to 500 chars).
400: Bad Requestalone hid the server's actual explanation.
Changed
- The
hotdataSDK dependency is now>=0.6.0, and the scope above rides its nativex_database_idparameters (get_result,get_query_run,get_result_arrow). Note 0.6.0 madex_database_idrequired onget_result_arrow, so older framework releases cannot run on it.
hotdata-framework 0.6.0
Added
HotdataClient.add_managed_table(database, table, *, schema)declares a new table on an existing managed database (wrapping the SDKadd_database_tableendpoint). This allows additive schema evolution without recreating the database.
hotdata-framework 0.5.0
Changed
- Adopt the
hotdata0.5.0 SDK surface (dependency bumped from>=0.4.1to>=0.5.0). The release is backward compatible for everything the framework uses; the only API changes are additive (a new optionalformatfield onLoadManagedTableRequestand an optionalformatparameter onResultsApi.get_result), so no framework code changes were required.
hotdata-framework 0.4.1
Fixed
ManagedDatabaseClient.fetch_tablenow waits for the persisted result to reachreadybefore 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 stillprocessingwhen the inline preview returns.
hotdata-framework 0.4.0
Changed
- Renamed the distribution from
hotdata-runtimetohotdata-frameworkand the import package fromhotdata_runtimetohotdata_framework. Consumers should depend onhotdata-frameworkand useimport hotdata_framework. The GitHub repository is nowsdk-python-framework. - Added PyPI classifiers, keywords, and an updated description identifying the project as a Python framework.
hotdata-runtime 0.3.0
Added
- Adopt the
hotdata0.4.1 SDK surface. - New typed error-handling public API:
HotdataError,HotdataTerminalError,HotdataTransientError, andclassify_sdk_error(hotdata_runtime/errors.py). ManagedDatabaseClientfor managed database operations (hotdata_runtime/managed_client.py).py.typedmarker so downstream consumers pick up inline type information.
Changed
- Bump the
hotdatadependency pin to>=0.4.1. - Add ruff and mypy tooling configuration and dev dependencies (
ruff>=0.5,mypy>=1.5); apply ruff lint/format cleanup across the package.
hotdata-runtime 0.2.4
Changed
- Release 0.2.4
hotdata-runtime 0.2.3
Changed
- Release 0.2.3