From 8c0b9b0bc13c59a12c8c7ad730930e1c236373f5 Mon Sep 17 00:00:00 2001 From: Matt Westcott Date: Tue, 16 Jan 2018 00:34:00 +0000 Subject: [PATCH] Release note for #4050 --- CHANGELOG.txt | 1 + docs/releases/2.0.rst | 6 ++++++ 2 files changed, 7 insertions(+) diff --git a/CHANGELOG.txt b/CHANGELOG.txt index 3f72ec3b40..9e2ec487e8 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -8,6 +8,7 @@ Changelog * Reorganised module paths (Karl Hobley, Matt Westcott) * Removed support for Python 2.7, Django 1.8 and Django 1.10 * Removed support for Elasticsearch 1.x + * Added the ability to schedule updates to existing published pages (Patrick Woods) * Moved Wagtail API v1 implementation (`wagtail.contrib.api`) to an external app (https://github.com/wagtail/wagtailapi_legacy) (Karl Hobley) * The page chooser now searches all fields of a page, instead of just the title (Bertrand Bordage) * Implement ordering by date in form submission view (LB (Ben Johnston)) diff --git a/docs/releases/2.0.rst b/docs/releases/2.0.rst index ccb1a3e6a9..14deaed9c9 100644 --- a/docs/releases/2.0.rst +++ b/docs/releases/2.0.rst @@ -22,6 +22,12 @@ Reorganised modules The modules that make up Wagtail have been renamed and reorganised, to avoid the repetition in names like ``wagtail.wagtailcore.models`` (originally an artefact of app naming limitations in Django 1.6) and to improve consistency. While this will require some up-front work to upgrade existing Wagtail sites, we believe that this will be a long-term improvement to the developer experience, improving readability of code and reducing errors. This change was implemented by Karl Hobley and Matt Westcott. +Scheduled page revisions +~~~~~~~~~~~~~~~~~~~~~~~~ + +The behaviour of scheduled publishing has been revised so that pages are no longer unpublished at the point of setting a future go-live date, making it possible to schedule updates to an existing published page. This feature was developed by Patrick Woods. + + Other features ~~~~~~~~~~~~~~