Release 1.0a35

Refs #1477, #1510, #1975, #2002, #2127, #2787, #2788, #2794, #2796, #2798, #2803
This commit is contained in:
Simon Willison 2026-06-23 14:30:08 -07:00
commit 753fa3b316
2 changed files with 4 additions and 4 deletions

View file

@ -1,2 +1,2 @@
__version__ = "1.0a34"
__version__ = "1.0a35"
__version_info__ = tuple(__version__.split("."))

View file

@ -4,10 +4,10 @@
Changelog
=========
.. _unreleased:
.. _v1_0_a35:
Unreleased
----------
1.0a35 (2026-06-23)
-------------------
- New "Create table" interface in the database actions menu, backed by the ``/<database>/-/create`` :ref:`JSON API <TableCreateView>`. It can define columns, primary keys, custom column types, ``NOT NULL`` constraints, literal defaults, expression defaults and single-column foreign keys. (:issue:`2787`)
- New "Alter table" table action and ``/<database>/<table>/-/alter`` :ref:`JSON API <TableAlterView>` for changing existing tables: add, rename, reorder and drop columns; change column types, defaults, ``NOT NULL`` constraints, primary keys and foreign keys; and rename the table. The alter table dialog also includes a "Drop table" button. (:issue:`2788`)