Releases: hotdata-dev/hotdata-runtime
Releases · hotdata-dev/hotdata-runtime
hotdata-runtime 0.2.4
Changed
- Release 0.2.4
hotdata-runtime 0.2.3
Changed
- Release 0.2.3
hotdata-runtime 0.2.2
Changed
- Release 0.2.2
hotdata-runtime 0.2.1
Added
execute_sqlaccepts an optionaldatabasekeyword argument. When provided, the database name is resolved to an ID and sent as theX-Database-Idheader so SQL can reference managed database tables as"default"."<schema>"."<table>". Behaviour is unchanged whendatabaseis omitted.
hotdata-runtime 0.2.0
Changed
- Switch managed database operations from the connections API to the dedicated
/databasesAPI (hotdata>=0.2.3required). create_managed_databasefirst parameter renamed fromnametodescription(keyword-only).ManagedDatabasedataclass: replacename/source_typefields withdescription/default_connection_id.resolve_managed_databasetries direct ID lookup first, then falls back to a description scan.list_managed_databasesnow fetches all databases regardless of source type.list_managed_tables,load_managed_table, anddelete_managed_tableusedefault_connection_idinstead of databaseidfor connection-scoped operations.
Added
create_managed_databaseaccepts an optionalexpires_atparameter.
Removed
MANAGED_SOURCE_TYPE,build_managed_config, andcreate_connection_requestremoved from the public API.