2
0

v0.16.0.rst 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. CodeRed CMS 0.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. Bug fixes
  11. ---------
  12. * Improved HTML5 validity by removing space within tags and ``href`` attributes.
  13. * Improved accessibility by adding title attribute to embedded iframes.
  14. * Specify language in HTML tag. See :doc:`/getting_started/customize_develop`.
  15. Maintenance
  16. -----------
  17. * Major code cleanup to conform to Python best practices.
  18. * New continuous integration to enforce code quality standards outlined in :doc:`/contributing/index`.
  19. Upgrade considerations
  20. ----------------------
  21. * You might need to run ``python manage.py makemigrations website`` and ``python manage.py migrate`` after upgrading.
  22. * Use of content delivery network for Bootstrap and jQuery has been replaced with local files.
  23. This will improve local development and use behind firewalls/offline environments.
  24. To continue using a CDN, override ``{% block frontend_assets %}`` , ``{% block required_scripts %}`` ,
  25. and ``{% block frontend_scripts %}`` in your ``base.html`` file.
  26. * Python 3.4 support has been dropped by Wagtail.