Release 0.65.2

Refs #2429, #2511

Closes #2579
This commit is contained in:
Simon Willison 2025-11-05 10:19:03 -08:00
commit 6a141467f9
2 changed files with 12 additions and 1 deletions

View file

@ -1,2 +1,2 @@
__version__ = "0.65.1"
__version__ = "0.65.2"
__version_info__ = tuple(__version__.split("."))

View file

@ -4,6 +4,17 @@
Changelog
=========
.. _v0_65_2:
0.65.2 (2025-11-05)
-------------------
* Fixes an **open redirect** security issue: Datasette instances would redirect to ``example.com/foo/bar`` if you accessed the path ``//example.com/foo/bar``. Thanks to `James Jefferies <https://github.com/jamesjefferies>`__ for the fix. (:issue:`2429`)
* Upgraded for compatibility with Python 3.14.
* Fixed ``datasette publish cloudrun`` to work with changes to the underlying Cloud Run architecture. (:issue:`2511`)
* Minor upgrades to fix warnings, including ``pkg_resources`` deprecation.
.. _v0_65_1:
0.65.1 (2024-12-28)