v0.16.0.rst 1.3 KB

1234567891011121314151617181920212223242526272829303132333435
  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. * Specify language in HTML tag. See :doc:`/getting_started/customize_develop`.
  13. Maintenance
  14. -----------
  15. * Major code cleanup to conform to Python best practices.
  16. * New continuous integration to enforce code quality standards outlined in :doc:`/contributing/index`.
  17. Upgrade considerations
  18. ----------------------
  19. * You might need to run ``python manage.py makemigrations website`` and ``python manage.py migrate`` after upgrading.
  20. * Use of content delivery network for Bootstrap and jQuery has been replaced with local files.
  21. This will improve local development and use behind firewalls/offline environments.
  22. To continue using a CDN, override ``{% block frontend_assets %}`` , ``{% block required_scripts %}`` ,
  23. and ``{% block frontend_scripts %}`` in your ``base.html`` file.