diff --git a/CHANGELOG.txt b/CHANGELOG.txt index 8a11127df..26244e7f1 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -4,6 +4,7 @@ Changelog 1.7 (xx.xx.xxxx) ~~~~~~~~~~~~~~~~ + * Added support for AWS CloudFront in frontend cache invalidation module (Rob Moorman) * The Wagtail version number can now be obtained as a tuple using `from wagtail import VERSION` (Tim Heap) * ``send_mail`` logic has been moved from ``AbstractEmailForm.process_form_submission`` into ``AbstractEmailForm.send_mail``. Now it's easier to override this logic (Tim Leguijt) * Fix: Migrations for wagtailcore and project template are now reversible (Benjamin Bach) diff --git a/docs/reference/contrib/frontendcache.rst b/docs/reference/contrib/frontendcache.rst index 3271a03e8..79d879bc7 100644 --- a/docs/reference/contrib/frontendcache.rst +++ b/docs/reference/contrib/frontendcache.rst @@ -79,6 +79,7 @@ Add an item into the ``WAGTAILFRONTENDCACHE`` and set the ``BACKEND`` parameter }, } +.. _frontendcache_aws_cloudfront: Amazon CloudFront ^^^^^^^^^^^^^^^^^ diff --git a/docs/releases/1.7.rst b/docs/releases/1.7.rst index 8cfe9f056..6fc01de51 100644 --- a/docs/releases/1.7.rst +++ b/docs/releases/1.7.rst @@ -11,6 +11,15 @@ What's new ========== +AWS CloudFront support added to cache invalidation module +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + +Wagtail's cache invalidation module can now invalidate pages cached in AWS CloudFront when they are updated or unpublished. +This feature was developed by Rob Moorman. + +See: :ref:`frontendcache_aws_cloudfront` + + Minor features ~~~~~~~~~~~~~~