Refs #1547, #1555, #1562, #1563, #1564, #1567, #1568, #1569, #1570, #1571, #1572
pull/1589/head 0.60a1
Simon Willison 2021-12-19 14:08:10 -08:00
rodzic 4094741c28
commit dbaac79946
2 zmienionych plików z 13 dodań i 1 usunięć

Wyświetl plik

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

Wyświetl plik

@ -4,6 +4,18 @@
Changelog
=========
.. _v0_60a1:
0.60a1 (2021-12-19)
-------------------
- Database write connections now execute the :ref:`plugin_hook_prepare_connection` plugin hook. (:issue:`1564`)
- The ``Datasette()`` constructor no longer requires the ``files=`` argument, and is now documented at :ref:`internals_datasette`. (:issue:`1563`)
- The tracing feature now traces write queries, not just read queries. (:issue:`1568`)
- Added two methods for writing to the database: :ref:`database_execute_write_script` and :ref:`database_execute_write_many`. (:issue:`1570`)
- Made several performance improvements to the database schema introspection code that runs when Datasette first starts up. (:issue:`1555`)
- Fixed bug where writable canned queries could not be used with custom templates. (:issue:`1547`)
.. _v0_60a0:
0.60a0 (2021-12-17)