date |
---|
08-26-2024 |
- Improved Playground "Run statement" parsing and delimitation of queries. This allows you to run individual SQL queries even in the presence of comments and multi-line.
- Related to the above, basic "psql like" special comands like
\dt
are now possible in the SQL Playground. - UI: Postgres native types are now showed by default in the UI. For example, we now show
text[]
instead of the Xata specificmultiple
type. - UI: The Queries table now supports infinite scrolling instead of simple pagination.
- Added an API endpoint for creating branches asynchronously. This is needed because for branches with long migration history, the sync operation can time out.
- Free workspaces can no longer invite collaborators, enforcing the limit of one user per free workspace. If a workspace is free and already has more collaborators, they are grandfathered in.
- On Shared clusters, if an extension is already enabled, we ignore the CREATE EXTENSION command.
- SHOW statements as well as pg_catalog access are now allowed over the HTTP SQL endpoint.
- UPDATE statements are now correctly supported when inside CTEs.
- Improved support for
ALTER SEQUENCE ... OWNED BY
statements. - Better support for
ALTER SCHEMA
statements. - UI: added breadcrumbs to the Dedicated Clusters navigation.
- UI: Fix search in the context of non-adapted tables.
- UI: Fix metrics rendering when a metric is completely empty.
- Internal packages are now exported so pgstream can be used easier as a library #58.
- The webhook subscriptions table is now created under the
pgstream
schema #62. - The sample webhooks listener now prints the complete event body #64.
- Add a
roll.WithSearchPath
option to allow widening of the search path during migration execution #380.