diff --git a/CHANGELOG.txt b/CHANGELOG.txt index d5967bf1d..e57f9c3af 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -17,7 +17,8 @@ Changelog * Reversing `django.contrib.auth.admin.login` will no longer lead to Wagtails login view (making it easier to have front end views) * Removed dependency on `LOGIN_URL` and `LOGIN_REDIRECT_URL` settings * Password reset view names namespaced to wagtailadmin - * Remove the need to add permission check on admin views (now automated) + * Removed the need to add permission check on admin views (now automated) + * Added cache-control headers to all admin views 0.8.5 (xx.xx.20xx) ~~~~~~~~~~~~~~~~~~ diff --git a/docs/releases/0.9.rst b/docs/releases/0.9.rst index de078f158..ed0ae05ed 100644 --- a/docs/releases/0.9.rst +++ b/docs/releases/0.9.rst @@ -14,7 +14,7 @@ Minor features ~~~~~~~~~~~~~~ * Javascript includes in the admin backend have been moved to the HTML header, to accommodate form widgets that render inline scripts that depend on libraries such as jQuery - * Improvements to the layout of the admin menu footer. + * Improvements to the layout of the admin menu footer * Added thousands separator for counters on dashboard * Added contextual links to admin notification messages * When copying pages, it is now possible to specify a place to copy to @@ -23,10 +23,11 @@ Minor features * Dropped Python 2.6 and 3.2 support * Dropped Elasticsearch 0.90.x support * Search view accepts "page" GET parameter in line with pagination - * Remove dependency on `LOGIN_URL` and `LOGIN_REDIRECT_URL` settings + * Removed the dependency on `LOGIN_URL` and `LOGIN_REDIRECT_URL` settings * Password reset view names namespaced to wagtailadmin - * Remove the need to add permission check on admin views (now automated) + * Removed the need to add permission check on admin views (now automated) * Reversing `django.contrib.auth.admin.login` will no longer lead to Wagtails login view (making it easier to have front end views) + * Added cache-control headers to all admin views. This allows Varnish/Squid/CDN to run on vanilla settings in front of a Wagtail site Bug fixes