0
0
mirror of https://github.com/wagtail/wagtail.git synced 2024-11-25 05:02:57 +01:00

Release note for #4050

This commit is contained in:
Matt Westcott 2018-01-16 00:34:00 +00:00
parent c9704caf17
commit 8c0b9b0bc1
2 changed files with 7 additions and 0 deletions

View File

@ -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))

View File

@ -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
~~~~~~~~~~~~~~