Release 0.59a2

Refs #942, #1421, #1423, #1431, #1443, #1446, #1449
This commit is contained in:
Simon Willison 2021-08-27 18:55:54 -07:00
commit d3ea367131
3 changed files with 15 additions and 2 deletions

View file

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

View file

@ -4,6 +4,19 @@
Changelog
=========
.. _v0_59a2:
0.59a2 (2021-08-27)
-------------------
- Columns can now have associated metadata descriptions in ``metadata.json``, see :ref:`metadata_column_descriptions`. (:issue:`942`)
- New :ref:`register_commands() <plugin_hook_register_commands>` plugin hook allows plugins to register additional Datasette CLI commands, e.g. ``datasette mycommand file.db``. (:issue:`1449`)
- Adding ``?_facet_size=max`` to a table page now shows the number of unique values in each facet. (:issue:`1423`)
- Code that figures out which named parameters a SQL query takes in order to display form fields for them is no longer confused by strings that contain colon characters. (:issue:`1421`)
- Renamed ``--help-config`` option to ``--help-settings``. (:issue:`1431`)
- ``datasette.databases`` property is now a documented API. (:issue:`1443`)
- Datasette base template now wraps everything other than the ``<footer>`` in a ``<div class="not-footer">`` element, to help with advanced CSS customization. (:issue:`1446`)
.. _v0_59a1:
0.59a1 (2021-08-08)

View file

@ -587,7 +587,7 @@ See :ref:`writing_plugins_designing_urls` for tips on designing the URL routes u
Examples: `datasette-auth-github <https://datasette.io/plugins/datasette-auth-github>`__, `datasette-psutil <https://datasette.io/plugins/datasette-psutil>`__
.. _plugin_register_commands:
.. _plugin_hook_register_commands:
register_commands(cli)
----------------------