From cb8a293bd7ec54e868d702871b39c550465c0521 Mon Sep 17 00:00:00 2001 From: Simon Willison Date: Thu, 18 Feb 2021 18:01:06 -0800 Subject: [PATCH] Release 0.55 Refs #1205, #1207, #1214, #1221, #1226, #1227, #1232, #1235 --- datasette/version.py | 2 +- docs/changelog.rst | 13 +++++++++++++ docs/sql_queries.rst | 2 +- 3 files changed, 15 insertions(+), 2 deletions(-) diff --git a/datasette/version.py b/datasette/version.py index bf182d9f..78eaa333 100644 --- a/datasette/version.py +++ b/datasette/version.py @@ -1,2 +1,2 @@ -__version__ = "0.54.1" +__version__ = "0.55" __version_info__ = tuple(__version__.split(".")) diff --git a/docs/changelog.rst b/docs/changelog.rst index fe69686e..eda87dbf 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -4,6 +4,19 @@ Changelog ========= +.. _v0_55: + +0.55 (2021-02-18) +----------------- + +Support for cross-database SQL queries and built-in support for serving via HTTPS. + +- The new ``--crossdb`` command-line option causes Datasette to attach up to ten database files to the same ``/_memory`` database connection. This enables cross-database SQL queries, including the ability to use joins and unions to combine data from tables that exist in different database files. See :ref:`cross_database_queries` for details. (:issue:`283`) +- ``--ssl-keyfile`` and ``--ssl-certfile`` options can be used to specify a TLS certificate, allowing Datasette to serve traffic over ``https://`` without needing to run it behind a separate proxy. (:issue:`1221`) +- The ``/:memory:`` page has been renamed (and redirected) to ``/_memory`` for consistency with the new ``/_internal`` database introduced in Datasette 0.54. (:issue:`1205`) +- Added plugin testing documentation on :ref:`testing_plugins_pdb`. (:issue:`1207`) +- The `official Datasette Docker image `__ now uses Python 3.7.10, applying `the latest security fix `__ for that Python version. (:issue:`1235`) + .. _v0_54_1: 0.54.1 (2021-02-02) diff --git a/docs/sql_queries.rst b/docs/sql_queries.rst index bb263b18..e9077f70 100644 --- a/docs/sql_queries.rst +++ b/docs/sql_queries.rst @@ -390,7 +390,7 @@ Since the where clause acts against the index on the primary key, the query is extremely fast even for records that are a long way into the overall pagination set. -.. _cross_database_quereies: +.. _cross_database_queries: Cross-database queries ----------------------