diff --git a/CHANGELOG.txt b/CHANGELOG.txt index e101114a53..725cde0cd2 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -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 diff --git a/CONTRIBUTORS.rst b/CONTRIBUTORS.rst index 92b8bd1f56..a96f47da4c 100644 --- a/CONTRIBUTORS.rst +++ b/CONTRIBUTORS.rst @@ -48,6 +48,8 @@ Contributors * Claudemiro * Tiago Henriques * Arne Schauf +* Jordi Joan +* Damian Moore Translators =========== diff --git a/docs/releases/1.0.rst b/docs/releases/1.0.rst index 6806e6b5b3..3e16edb48d 100644 --- a/docs/releases/1.0.rst +++ b/docs/releases/1.0.rst @@ -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 ----------------