Add release notes for #913

This commit is contained in:
Dan Braghis 2015-02-02 21:35:32 +00:00
parent 1a9ba7c64b
commit 800c5ba265
2 changed files with 6 additions and 4 deletions

View file

@ -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)
~~~~~~~~~~~~~~~~~~

View file

@ -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