diff --git a/CHANGELOG.txt b/CHANGELOG.txt index 93ced2a2f..dcd608bae 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -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) diff --git a/docs/releases/0.8.rst b/docs/releases/0.8.rst index 12a31121e..9c03ae9d9 100644 --- a/docs/releases/0.8.rst +++ b/docs/releases/0.8.rst @@ -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.