v0.21.0.rst 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. v0.21.0 release notes
  2. =====================
  3. New features
  4. ------------
  5. * Upgraded to Wagtail 2.13
  6. * Added new ``<head>`` and ``<body>`` tracking script settings. See
  7. :doc:`/how_to/add_tracking_scripts`.
  8. * Added new ``coderedcms.fields.MonospaceField`` for rendering text area fields
  9. in the Wagtail admin with monospace input and spell-checking disabled. This is
  10. used by the new tracking settings and is useful for implementing code-oriented
  11. fields.
  12. * Improve developer tooling in new CodeRed CMS sites by providing pre-configured
  13. ``.gitattribute`` and ``.editorconfig`` files.
  14. Upgrade considerations
  15. ----------------------
  16. * ``coderedcms.blocks.MultiSelectBlock`` has been removed and is now replaced
  17. with ``wagtail.core.blocks.MultipleChoiceBlock``.
  18. * You may need to find/replace
  19. ``coderedcms.blocks.base_blocks.MultiSelectBlock`` with
  20. ``wagtail.core.blocks.MultipleChoiceBlock`` in any old migrations so that they
  21. may continue working.
  22. * Follow `Wagtail 2.12 upgrade considerations <https://docs.wagtail.io/en/stable/releases/2.12.html#upgrade-considerations>`_
  23. and `Wagtail 2.13 upgrade considerations <https://docs.wagtail.io/en/stable/releases/2.13.html#upgrade-considerations>`_.
  24. * You may need to run ``python manage.py makemigrations website`` and
  25. ``python manage.py migrate`` after upgrading.
  26. Supported software
  27. ------------------
  28. * Python 3.6, 3.7, 3.8, 3.9
  29. * Django 2.2, 3.0, 3.1, 3.2
  30. Thank you!
  31. ----------
  32. Thanks to everyone who contributed to `0.21.0 on GitHub <https://github.com/coderedcorp/coderedcms/milestone/31?closed=1>`_.