Skip to content

Releases: hotdata-dev/hotdata-runtime

hotdata-runtime 0.2.4

01 Jun 22:51
469d61f

Choose a tag to compare

Changed

  • Release 0.2.4

hotdata-runtime 0.2.3

27 May 22:35
efa6d54

Choose a tag to compare

Changed

  • Release 0.2.3

hotdata-runtime 0.2.2

27 May 22:26
636877d

Choose a tag to compare

Changed

  • Release 0.2.2

hotdata-runtime 0.2.1

25 May 00:38
42ccafb

Choose a tag to compare

Added

  • execute_sql accepts an optional database keyword argument. When provided, the database name is resolved to an ID and sent as the X-Database-Id header so SQL can reference managed database tables as "default"."<schema>"."<table>". Behaviour is unchanged when database is omitted.

hotdata-runtime 0.2.0

24 May 19:51
8196a8a

Choose a tag to compare

Changed

  • Switch managed database operations from the connections API to the dedicated /databases API (hotdata>=0.2.3 required).
  • create_managed_database first parameter renamed from name to description (keyword-only).
  • ManagedDatabase dataclass: replace name/source_type fields with description/default_connection_id.
  • resolve_managed_database tries direct ID lookup first, then falls back to a description scan.
  • list_managed_databases now fetches all databases regardless of source type.
  • list_managed_tables, load_managed_table, and delete_managed_table use default_connection_id instead of database id for connection-scoped operations.

Added

  • create_managed_database accepts an optional expires_at parameter.

Removed

  • MANAGED_SOURCE_TYPE, build_managed_config, and create_connection_request removed from the public API.