v0.21.0.rst 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839
  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. Upgrade considerations
  13. ----------------------
  14. * ``coderedcms.blocks.MultiSelectBlock`` has been removed and is now replaced
  15. with ``wagtail.core.blocks.MultipleChoiceBlock``.
  16. * You may need to find/replace
  17. ``coderedcms.blocks.base_blocks.MultiSelectBlock`` with
  18. ``wagtail.core.blocks.MultipleChoiceBlock`` in any old migrations so that they
  19. may continue working.
  20. * Follow `Wagtail 2.12 upgrade considerations <https://docs.wagtail.io/en/stable/releases/2.12.html#upgrade-considerations>`_
  21. and `Wagtail 2.13 upgrade considerations <https://docs.wagtail.io/en/stable/releases/2.13.html#upgrade-considerations>`_.
  22. * You may need to run ``python manage.py makemigrations website`` and
  23. ``python manage.py migrate`` after upgrading.
  24. Thank you!
  25. ----------
  26. Thanks to everyone who contributed to `0.21.0 on GitHub <https://github.com/coderedcorp/coderedcms/milestone/31?closed=1>`_.