0.6.rst 2.3 KB

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