0.8.6.rst 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. ===========================
  2. Wagtail 0.8.6 release notes
  3. ===========================
  4. .. contents::
  5. :local:
  6. :depth: 1
  7. What's new
  8. ==========
  9. Minor features
  10. ~~~~~~~~~~~~~~
  11. * Translations updated, including new translations for Czech, Italian and Japanese
  12. * The "fixtree" command can now delete orphaned pages
  13. Bug fixes
  14. ~~~~~~~~~
  15. * django-taggit library updated to 0.12.3, to fix a bug with migrations on SQLite on Django 1.7.2 and above (https://github.com/alex/django-taggit/issues/285)
  16. * Fixed a bug that caused children of a deleted page to not be deleted if they had a different type
  17. Upgrade considerations
  18. ======================
  19. Orphaned pages may need deleting
  20. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  21. This release fixes a bug with page deletion introduced in 0.8, where deleting a page with child pages will result in those child pages being left behind in the database (unless the child pages are of the same type as the parent). This may cause errors later on when creating new pages in the same position. To identify and delete these orphaned pages, it is recommended that you run the following command (from the project root) after upgrading to 0.8.6:
  22. .. code-block:: console
  23. $ ./manage.py fixtree
  24. This will output a list of any orphaned pages found, and request confirmation before deleting them.
  25. Since this now makes ``fixtree`` an interactive command, a ``./manage.py fixtree --noinput`` option has been added to restore the previous non-interactive behaviour. With this option enabled, deleting orphaned pages is always skipped.