Refs #1922, #1917, #1915, #1916, #1918, #1924
pull/1930/head 1.0a1
Simon Willison 2022-12-01 13:30:39 -08:00
rodzic f3c8da7acd
commit 692fbfc40a
2 zmienionych plików z 13 dodań i 1 usunięć

Wyświetl plik

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

Wyświetl plik

@ -4,6 +4,18 @@
Changelog
=========
.. _v1_0_a1:
1.0a1 (2022-12-01)
------------------
- Write APIs now serve correct CORS headers if Datasette is started in ``--cors`` mode. See the full list of :ref:`CORS headers <json_api>` in the documentation. (:issue:`1922`)
- Fixed a bug where the ``_memory`` database could be written to even though writes were not persisted. (:issue:`1917`)
- The https://latest.datasette.io/ demo instance now includes an ``ephemeral`` database which can be used to test Datasette's write APIs, using the new `datasette-ephemeral-tables <https://datasette.io/plugins/datasette-ephemeral-tables>`_ plugin to drop any created tables after five minutes. This database is only available if you sign in as the root user using the link on the homepage. (:issue:`1915`)
- Fixed a bug where hitting the write endpoints with a ``GET`` request returned a 500 error. It now returns a 405 (method not allowed) error instead. (:issue:`1916`)
- The list of endpoints in the API explorer now lists mutable databases first. (:issue:`1918`)
- The ``"ignore": true`` and ``"replace": true`` options for the insert API are :ref:`now documented <TableInsertView>`. (:issue:`1924`)
.. _v1_0_a0:
1.0a0 (2022-11-29)