2
0

0.6.rst 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. =========================
  2. Wagtail 0.6 release notes
  3. =========================
  4. .. contents::
  5. :local:
  6. :depth: 1
  7. What's new
  8. ==========
  9. Project template and start project command
  10. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  11. Wagtail now has a basic project template built in to make starting new projects much easier.
  12. To use it, install ``wagtail`` onto your machine and run ``wagtail start project_name``.
  13. Django 1.7 support
  14. ~~~~~~~~~~~~~~~~~~
  15. Wagtail can now be used with Django 1.7.
  16. Minor features
  17. ~~~~~~~~~~~~~~
  18. * A new template tag has been added for reversing URLs inside routable pages. See :ref:`routablepageurl_template_tag`.
  19. * RoutablePage can now be used as a mixin. See :class:`wagtail.contrib.wagtailroutablepage.models.RoutablePageMixin`.
  20. * MenuItems can now have bundled JavaScript
  21. * Added the ``register_admin_menu_item`` hook for registering menu items at startup. See :ref:`admin_hooks`
  22. * Added a version indicator into the admin interface (hover over the wagtail to see it)
  23. * Added Russian translation
  24. Bug fixes
  25. ~~~~~~~~~
  26. * Page URL generation now returns correct URLs for sites that have the main 'serve' view rooted somewhere other than '/'.
  27. * Search results in the page chooser now respect the page_type parameter on PageChooserPanel.
  28. * Rendition filenames are now prevented from going over 60 chars, even with a large focal_point_key.
  29. * Child relations that are defined on a model's superclass (such as the base Page model) are now picked up correctly by the page editing form, page copy operations and the replace_text management command.
  30. * Tags on images and documents are now committed to the search index immediately on saving.
  31. Upgrade considerations
  32. ======================
  33. All features deprecated in 0.4 have been removed
  34. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  35. See: :ref:`04_deprecated_features`
  36. Search signal handlers have been moved
  37. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  38. If you have an import in your ``urls.py`` file like ``from wagtail.wagtailsearch import register_signal_handlers``, this must now be changed to ``from wagtail.wagtailsearch.signal_handlers import register_signal_handlers``
  39. Deprecated features
  40. ===================
  41. * The ``wagtail.wagtailsearch.indexed`` module has been renamed to ``wagtail.wagtailsearch.index``