Browse Source

Release notes for Tests for #6141

Andy Babic 4 years ago
parent
commit
1c67aa6a48
2 changed files with 17 additions and 0 deletions
  1. 1 0
      CHANGELOG.txt
  2. 16 0
      docs/releases/2.11.rst

+ 1 - 0
CHANGELOG.txt

@@ -16,6 +16,7 @@ Changelog
  * Fix: `WAGTAILFRONTENDCACHE_LANGUAGES` was being interpreted incorrectly. It now accepts a list of strings, as documented (Karl Hobley)
  * Fix: Update oEmbed endpoints to use https where available (Matt Westcott)
  * Fix: Revise `edit_handler` bind order in ModelAdmin views and fix duplicate form instance creation (Jérôme Lebleu)
+ * Add support for hierarchical/nested Collections (Robert Rollins)
 
 
 2.10.2 (xx.xx.xxxx) - IN DEVELOPMENT

+ 16 - 0
docs/releases/2.11.rst

@@ -21,6 +21,7 @@ Other features
  * Add ``render`` helper to ``RoutablePageMixin`` to support serving template responses according to Wagtail conventions (Andy Babic)
  * Specify minimum Python version in setup.py (Vince Salvino)
  * Extend treebeard's ``fix_tree`` method with the ability to non-destructively fix path issues and add a --full option to apply path fixes (Matt Westcott)
+ * Add support for hierarchical/nested Collections (Robert Rollins)
 
 
 Bug fixes
@@ -39,3 +40,18 @@ SiteMiddleware moved to ``wagtail.contrib.legacy``
 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
 
 The SiteMiddleware class (which provides the ``request.site`` property, and has been deprecated since Wagtail 2.9) has been moved to the ``wagtail.contrib.legacy`` namespace. On projects where this is still in use, the ``'wagtail.core.middleware.SiteMiddleware'`` entry in ``MIDDLEWARE`` should be changed to ``'wagtail.contrib.legacy.sitemiddleware.SiteMiddleware'``.
+
+
+Run fixtree to prevent Collection
+~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+
+If you are using Wagtail's Collections feature to organise images, documents or other media, please ensure
+you run the following command in each environment:
+
+.. code-block:: python
+
+    python manage.py fixtree --full
+
+Previously, collections were stored in the order in which they were created - and then sorted by name where displayed in the CMS. Collections are now ordered by treebeard path by default, so the above command must be run to retain alphabetical ordering.
+
+Failure to do this won't affect your current colllections, but may affect your ability to add new ones.