diff --git a/CHANGELOG.txt b/CHANGELOG.txt index 71b0c1395e..ddff5f397d 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -20,6 +20,7 @@ Changelog * Added hooks to customise the actions menu on the page create/edit views (Matt Westcott) * Cleanup: Use `functools.partial()` instead of `django.utils.functional.curry()` (Sergey Fedoseev) * Squashed migrations for wagtailcore and wagtailimages (Karl Hobley) + * Added `before_move_page` and `after_move_page` hooks (Maylon Pedroso) * Fix: Query objects returned from `PageQuerySet.type_q` can now be merged with `|` (Brady Moe) * Fix: Add `rel="noopener noreferrer"` to target blank links (Anselm Bradford) * Fix: Additional fields on custom document models now show on the multiple document upload view (Robert Rollins, Sergey Fedoseev) diff --git a/CONTRIBUTORS.rst b/CONTRIBUTORS.rst index 58095b5692..5e30e323ce 100644 --- a/CONTRIBUTORS.rst +++ b/CONTRIBUTORS.rst @@ -335,6 +335,7 @@ Contributors * Noah B Johnson * Hillary Jeffrey * Nick Travis +* Maylon Pedroso Translators =========== diff --git a/docs/releases/2.4.rst b/docs/releases/2.4.rst index 2258e71cc2..6889e220e6 100644 --- a/docs/releases/2.4.rst +++ b/docs/releases/2.4.rst @@ -38,6 +38,7 @@ Other features * Added hooks to customise the actions menu on the page create/edit views (Matt Westcott) * Cleanup: Use ``functools.partial()`` instead of ``django.utils.functional.curry()`` (Sergey Fedoseev) * Squashed migrations for wagtailcore and wagtailimages (Karl Hobley) + * Added ``before_move_page`` and ``after_move_page`` hooks (Maylon Pedroso) Bug fixes ~~~~~~~~~