v0.16.0.rst 1.2 KB

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