Release 0.63.1

Refs ##1843, #1876, #1883
This commit is contained in:
Simon Willison 2022-11-10 23:01:20 -08:00
commit f832435b88
2 changed files with 11 additions and 1 deletions

View file

@ -1,2 +1,2 @@
__version__ = "0.63"
__version__ = "0.63.1"
__version_info__ = tuple(__version__.split("."))

View file

@ -4,6 +4,16 @@
Changelog
=========
.. _v0_63_1:
0.63.1 (2022-11-10)
-------------------
- Fixed a bug where Datasette's table filter form would not redirect correctly when run behind a proxy using the :ref:`base_url <setting_base_url>` setting. (:issue:`1883`)
- SQL query is now shown wrapped in a ``<textarea>`` if a query exceeds a time limit. (:issue:`1876`)
- Fixed an intermittent "Too many open files" error while running the test suite. (:issue:`1843`)
- New :ref:`database_close` internal method.
.. _v0_63:
0.63 (2022-10-27)