From dedd775512daee49925882654f252df61a9e3b6d Mon Sep 17 00:00:00 2001 From: Simon Willison Date: Tue, 24 Mar 2020 21:02:37 -0700 Subject: [PATCH] Release 0.39 --- README.md | 1 + docs/changelog.rst | 13 ++++++++++++- 2 files changed, 13 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index d6d5fbd8..5d770f13 100644 --- a/README.md +++ b/README.md @@ -22,6 +22,7 @@ Datasette is aimed at data journalists, museum curators, archivists, local gover ## News + * 24th March 2020: [Datasette 0.39](http://datasette.readthedocs.io/en/latest/changelog.html#v0-39) - New `base_url` configuration option for running Datasette under a different URL prefix, `"sort"` and `"sort_desc"` metadata options for setting a default sort order for a table. * 8th March 2020: [Datasette 0.38](http://datasette.readthedocs.io/en/latest/changelog.html#v0-38) - New `--memory` option for `datasete publish cloudrun`, [Docker image](https://hub.docker.com/r/datasetteproject/datasette) upgraded to SQLite 3.31.1. * 25th February 2020: [Datasette 0.37](http://datasette.readthedocs.io/en/latest/changelog.html#v0-37) - new internal APIs enabling plugins to safely write to databases. Read more here: [Datasette Writes](https://simonwillison.net/2020/Feb/26/weeknotes-datasette-writes/). * 21st February 2020: [Datasette 0.36](http://datasette.readthedocs.io/en/latest/changelog.html#v0-36) - new internals documentation for plugins, `prepare_connection()` now accepts optional `database` and `datasette` arguments. diff --git a/docs/changelog.rst b/docs/changelog.rst index 215058f4..61808207 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -4,13 +4,24 @@ Changelog ========= +.. _v0_39: + +0.39 (2020-03-24) +----------------- + +* New :ref:`config_base_url` configuration setting for serving up the correct links while running Datasette under a different URL prefix. (`#394 `__) +* New metadata settings ``"sort"`` and ``"sort_desc"`` for setting the default sort order for a table. See :ref:`metadata_default_sort`. (`#702 `__) +* Sort direction arrow now displays by default on the primary key. This means you only have to click once (not twice) to sort in reverse order. (`#677 `__) +* New ``await Request(scope, receive).post_vars()`` method for accessing POST form variables. (`#700 `__) +* :ref:`plugin_hooks` documentation now links to example uses of each plugin. (`#709 `__) + .. _v0_38: 0.38 (2020-03-08) ----------------- * The `Docker build `__ of Datasette now uses SQLite 3.31.1, upgraded from 3.26. (`#695 `__) -* ``datasette publish cloudrun`` now accepts an optional ``--memory=2Gi`` flag for setting the Cloud Run allocated memory to a value other than the default (256Mi). (`#694 `__) +* ``datasette publish cloudrun`` now accepts an optional ``--memory=2Gi`` flag for setting the Cloud Run allocated memory to a value other than the default (256Mi). (`#694 `__) * Fixed bug where templates that shipped with plugins were sometimes not being correctly loaded. (`#697 `__) .. _v0_37_1: