0
0
mirror of https://github.com/wagtail/wagtail.git synced 2024-11-28 08:48:04 +01:00

Changelog/release notes/contributors for #1176

This commit is contained in:
Karl Hobley 2015-05-07 10:12:31 +01:00
parent 40092e1852
commit 10fb0c4249
3 changed files with 12 additions and 0 deletions

View File

@ -18,6 +18,9 @@ Changelog
* Dropped Django 1.6 support
* Dropped Python 2.6 and 3.2 support
* Dropped Elasticsearch 0.90.x support
* Serving documents will now use django-sendfile if it's configured (Jordi Joan)
* Documents are now served with correct mime-type (Jordi Joan, Damian Moore)
* Support for If-Modified-Since HTTP header (Jordi Joan)
* Search view accepts "page" GET parameter in line with pagination
* 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

View File

@ -48,6 +48,8 @@ Contributors
* Claudemiro
* Tiago Henriques
* Arne Schauf
* Jordi Joan
* Damian Moore
Translators
===========

View File

@ -97,6 +97,13 @@ Admin
* 'static' template tags are now used throughout the admin templates, in place of ``STATIC_URL``
Docs
----
* Support for ``django-sendfile`` added
* Documents now served with correct mime-type
* Support for ``If-Modified-Since`` HTTP header
Project template
----------------