Skip to content

Commit

Permalink
Version 2.5.0 and release notes
Browse files Browse the repository at this point in the history
  • Loading branch information
vsalvino committed Jul 16, 2024
1 parent df47fa4 commit 0df74a6
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 1 deletion.
14 changes: 14 additions & 0 deletions docs/releases.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,25 @@
Release Notes
=============


2.5.0
=====

* Bug fix: gracefully handle backend cache errors by returning the un-cached page and adding an ``X-Wagtail-Cache: err`` header. For example, if the cache backend/server is down, if the cache runs out of memory, etc. These errors are also logged using the ``wagtail-cache`` Python logger.

* Bug fix: prevent duplicate entries in the keyring (used to show a list of cached pages).

* Docs: clarify behavior of cache backend ``TIMEOUT`` setting. Move advanced docs from install page to a separate page to keep it simple for beginners.

* Switch from black, flake8, and isort to ruff. Switch from ``setup.py`` to ``pyproject.toml``.


2.4.0
=====

* Support Wagtail 6 and Django 5.1


2.3.0
=====

Expand Down
2 changes: 1 addition & 1 deletion wagtailcache/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
release = ["2", "4", "0"]
release = ["2", "5", "0"]
__version__ = "{0}.{1}.{2}".format(release[0], release[1], release[2])
__shortversion__ = "{0}.{1}".format(release[0], release[1])

0 comments on commit 0df74a6

Please sign in to comment.