From 0e1e89c6ba3d0fbdb0823272952cf356f3016def Mon Sep 17 00:00:00 2001 From: Simon Willison Date: Thu, 29 Oct 2020 22:34:52 -0700 Subject: [PATCH] Release 0.51a1 Refs #1056, #1039, #998, #1045, #1033, #1036, #1034, #976, #1057, #1058, #1053, #1064, #1066 --- datasette/version.py | 2 +- docs/changelog.rst | 19 +++++++++++++++++++ 2 files changed, 20 insertions(+), 1 deletion(-) diff --git a/datasette/version.py b/datasette/version.py index b57d7a1233..9a89c8e699 100644 --- a/datasette/version.py +++ b/datasette/version.py @@ -1,2 +1,2 @@ -__version__ = "0.51.a0" +__version__ = "0.51a1" __version_info__ = tuple(__version__.split(".")) diff --git a/docs/changelog.rst b/docs/changelog.rst index 1730915597..893a0ee5db 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -4,6 +4,25 @@ Changelog ========= +.. _v0_51_a1: + +0.51a1 (2020-10-29) +------------------- + +- New colour scheme and improved visual design, courtesy of Natalie Downe. (`#1056 `__) +- scale-in animation for column action menu. (`#1039 `__) +- Wide tables now scroll horizontally. (`#998 `__) +- Option to pass a list of templates to ``.render_template()`` is now documented. (`#1045 `__) +- New ``datasette.urls.static_plugins()`` method. (`#1033 `__) +- ``BLOB`` column values can now be downloaded directly from the Datasette UI. (`#1036 `__) +- ``.csv`` exports now link to direct ``BLOB`` downloads. (`#1034 `__) +- ``datasette -o`` option now opens the most relevant page. (`#976 `__) +- ``datasette --cors`` option now enables access to ``/database.db`` downloads. (`#1057 `__) +- Database file downloads now implement cascading permissions, so you can download a database if you have ``view-database-download`` permission even if you do not have permission to access the Datasette instance. (`#1058 `__) +- New documentation on :ref:`writing_plugins_designing_urls`. (`#1053 `__) +- New navigation menu plus a :ref:`plugin_hook_menu_links` plugin hook to customize it. (`#1064 `__) +- :ref:`plugin_hook_table_actions` plugin hook for the new table actions menu. (`#1066 `__) + .. _v0_51_a0: 0.51a0 (2020-10-19)