From 8d91e72407848a780305bc96d713bb03b9ec785d Mon Sep 17 00:00:00 2001 From: Karl Hobley Date: Fri, 4 Dec 2015 11:07:43 +0000 Subject: [PATCH] Changelog/release note for #1934 --- CHANGELOG.txt | 1 + docs/releases/1.3.rst | 1 + 2 files changed, 2 insertions(+) diff --git a/CHANGELOG.txt b/CHANGELOG.txt index 47618e6252..e2144d37fb 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -11,6 +11,7 @@ Changelog * Added keyboard shortcuts for preview and save in the page editor * Added `Page` methods `can_exist_under`, `can_create_at`, `can_move_to` for customising page type business rules * `wagtailadmin.utils.send_mail` now passes extra keyword arguments to Django's `send_mail` function (Matthew Downey) + * `page_unpublish` signal is now fired for each page that was unpublished by a call to `PageQuerySet.unpublish()` * Fix: HTTP cache purge now works again on Python 2 (Mitchel Cabuloy) * Fix: Locked pages can no longer be unpublished (Alex Bridge) * Fix: Site records now implement `get_by_natural_key` diff --git a/docs/releases/1.3.rst b/docs/releases/1.3.rst index 8e9c5694b5..da3c66123a 100644 --- a/docs/releases/1.3.rst +++ b/docs/releases/1.3.rst @@ -21,6 +21,7 @@ Minor features * Added keyboard shortcuts for preview and save in the page editor * Added ``Page`` methods ``can_exist_under``, ``can_create_at``, ``can_move_to`` for customising page type business rules * ``wagtailadmin.utils.send_mail`` now passes extra keyword arguments to Django's ``send_mail`` function (Matthew Downey) + * ``page_unpublish`` signal is now fired for each page that was unpublished by a call to ``PageQuerySet.unpublish()`` Bug fixes