From 271aa09056eb4f7cbfafb8c5f2e8df4c103ff413 Mon Sep 17 00:00:00 2001 From: Simon Willison Date: Wed, 16 Apr 2025 22:16:25 -0700 Subject: [PATCH] Release 1.0a18 Refs #2466, #2468, #2470, #2476, #2477 --- datasette/version.py | 2 +- docs/changelog.rst | 12 ++++++++++++ 2 files changed, 13 insertions(+), 1 deletion(-) diff --git a/datasette/version.py b/datasette/version.py index b2240bf5..dac85b37 100644 --- a/datasette/version.py +++ b/datasette/version.py @@ -1,2 +1,2 @@ -__version__ = "1.0a17" +__version__ = "1.0a18" __version_info__ = tuple(__version__.split(".")) diff --git a/docs/changelog.rst b/docs/changelog.rst index 4b641120..b427db04 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -4,6 +4,18 @@ Changelog ========= +.. _v1_0_a18: + +1.0a18 (2025-04-16) +------------------- + +- Fix for incorrect foreign key references in the internal database schema. (:issue:`2466`) +- The ``prepare_connection()`` hook no longer runs for the internal database. (:issue:`2468`) +- Fixed bug where ``link:`` HTTP headers used invalid syntax. (:issue:`2470`) +- No longer tested against Python 3.8. Now tests against Python 3.13. +- FTS tables are now hidden by default if they correspond to a content table. (:issue:`2477`) +- Fixed bug with foreign key links to rows in databases with filenames containing a special character. Thanks, `Jack Stratton `__. (`#2476 `__) + .. _v1_0_a17: 1.0a17 (2025-02-06)