Skip to content

Commit dd55af6

Browse files
committed
Version 3.0 and release notes
1 parent 9b1f7b7 commit dd55af6

File tree

2 files changed

+11
-1
lines changed

2 files changed

+11
-1
lines changed

docs/releases.rst

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,16 @@ Release Notes
33
=============
44

55

6+
3.0.0
7+
=====
8+
9+
* Support Wagtail 6.4 and 7.0
10+
11+
* Performance improvement: ignore tracking cookies even on requests containing CSRF tokens or Django sessions. This will significantly improve cachablility of the site for users who have visited a form, for example.
12+
13+
* Performance improvement: disable the keyring used to track a list of all pages in the cache. When the keyring grows too large, it will create a large amount of network traffic or I/O to and from the cache on each cache write. To restore previous functionality and enable the keyring, set ``WAGTAIL_CACHE_KEYRING = True`` in the Django settings.
14+
15+
616
2.5.1
717
=====
818

wagtailcache/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
release = ["2", "5", "1"]
1+
release = ["3", "0", "0"]
22
__version__ = "{0}.{1}.{2}".format(release[0], release[1], release[2])
33
__shortversion__ = "{0}.{1}".format(release[0], release[1])

0 commit comments

Comments
 (0)