From 86335dc722d31dbf44c6d4bbffd7c5d2d11b1290 Mon Sep 17 00:00:00 2001 From: Simon Willison Date: Thu, 29 Feb 2024 14:35:28 -0800 Subject: [PATCH] Release 1.0a12 Refs #2281, #2283, #2287, #2289 --- datasette/version.py | 2 +- docs/changelog.rst | 10 ++++++++++ 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/datasette/version.py b/datasette/version.py index c27e1e06..b2cd10bf 100644 --- a/datasette/version.py +++ b/datasette/version.py @@ -1,2 +1,2 @@ -__version__ = "1.0a11" +__version__ = "1.0a12" __version_info__ = tuple(__version__.split(".")) diff --git a/docs/changelog.rst b/docs/changelog.rst index 492b2921..240df141 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -4,6 +4,16 @@ Changelog ========= +.. _v1_0_a12: + +1.0a12 (2024-02-29) +------------------- + +- New :ref:`query_actions() ` plugin hook, similar to :ref:`table_actions() ` and :ref:`database_actions() `. Can be used to add a menu of actions to the canned query or arbitrary SQL query page. (:issue:`2283`) +- New design for the button that opens the query, table and database actions menu. (:issue:`2281`) +- "does not contain" table filter for finding rows that do not contain a string. (:issue:`2287`) +- Fixed a bug in the :ref:`javascript_plugins_makeColumnActions` JavaScript plugin mechanism where the column action menu was not fully reset in between each interaction. (:issue:`2289`) + .. _v1_0_a11: 1.0a11 (2024-02-19)