v0.16.0.rst 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. v0.16.0 release notes
  2. =====================
  3. New features
  4. ------------
  5. * NEW spam protection on forms (ON by default). We have been piloting this out
  6. for several months and have seen a 100% success rate so far. See :doc:`/features/page_types/form_pages`.
  7. * NEW support for Sass via a new starter template. See :doc:`/getting_started/install`.
  8. * Upgraded Wagtail to version 2.6. Now supports Django versions 2.0, 2.1, and 2.2;
  9. Python versions 3.5, 3.6, and 3.7.
  10. * Now supports page translation via `wagtail-modeltranslation <https://github.com/infoportugal/wagtail-modeltranslation>`_.
  11. See new how-to guide: :doc:`/how_to/translation`.
  12. Bug fixes
  13. ---------
  14. * Improved HTML5 validity by removing space within tags and ``href`` attributes.
  15. * Improved accessibility by adding title attribute to embedded iframes.
  16. * Specify language in HTML tag. See :doc:`/how_to/translation`.
  17. * The commonly crawled URL ``/favicon.ico`` now issues a redirect to the Favicon
  18. set in Layout Settings.
  19. Maintenance
  20. -----------
  21. * Major code cleanup to conform to Python best practices.
  22. * New continuous integration to enforce code quality standards outlined in :doc:`/contributing/index`.
  23. Upgrade considerations
  24. ----------------------
  25. * You might need to run ``python manage.py makemigrations website`` and ``python manage.py migrate`` after upgrading.
  26. * Use of content delivery network for Bootstrap and jQuery has been replaced with local files.
  27. This will improve local development and use behind firewalls/offline environments.
  28. To continue using a CDN, override ``{% block frontend_assets %}`` , ``{% block required_scripts %}`` ,
  29. and ``{% block frontend_scripts %}`` in your ``base.html`` file.
  30. * Python 3.4 support has been dropped by Wagtail.
  31. * ``CoderedFormPage.get_form()`` method signature has changed.