Changelog/release notes/contributors for #1176

pull/1278/merge
Karl Hobley 2015-05-07 10:12:31 +01:00
rodzic 40092e1852
commit 10fb0c4249
3 zmienionych plików z 12 dodań i 0 usunięć

Wyświetl plik

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

Wyświetl plik

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

Wyświetl plik

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