release note for #569

pull/743/head
Matt Westcott 2014-10-23 17:31:54 +01:00
rodzic 04f93e2bbf
commit 1871a29f30
2 zmienionych plików z 2 dodań i 0 usunięć

Wyświetl plik

@ -4,6 +4,7 @@ Changelog
0.8 (xx.xx.2014)
~~~~~~~~~~~~~~~~
* Added logging for page operations
* The save/publish/submit buttons on the page edit page now redirects the user back to the edit page instead of the explorer
* Signal handlers for ``wagtail.wagtailsearch`` and ``wagtail.contrib.wagtailfrontendcache`` are now automatically registered when using Django 1.7 or above. (Tim Heap)
* Fix: Replaced references of .username with .get_username() on users for better custom user model support (John-Scott Atlakson)

Wyświetl plik

@ -15,6 +15,7 @@ What's new
Minor features
~~~~~~~~~~~~~~
* Page operations (creation, publishing, copying etc) are now logged via Python's ``logging`` framework; to configure this, add a logger entry for ``'wagtail'`` or ``'wagtail.core'`` to the ``LOGGING`` setup in your settings file.
* The save/publish/submit buttons on the page edit page now redirects the user back to the edit page instead of the explorer
* Signal handlers for ``wagtail.wagtailsearch`` and ``wagtail.contrib.wagtailfrontendcache`` are now automatically registered when using Django 1.7 or above.