v0.10.0.rst 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. v0.10.0 release notes
  2. =====================
  3. New features
  4. ------------
  5. * NEW event & calendar pages! See :doc:`/features/page_types/event_pages`.
  6. * NEW "Embed Media" block replacing the "Embed Video" block. Embed Media supports YouTube,
  7. Vimeo, Tweets, Facebook posts, GitHub gists, Spotify, Etsy, Tumblr, and dozens of other sources.
  8. * NEW tags on all ``CoderedPage`` pages. Tags provide a global and flexible way of organizing
  9. and categorizing content. More tagging features coming soon.
  10. * NEW color picker available in the wagtail admin. Use ``coderedcms.fields.ColorField`` on your
  11. models or ``coderedcms.widgets.ColorPickerWidget`` on Django form fields.
  12. * NEW official documentation! More user and how-to guides coming soon.
  13. Available at https://docs.coderedcorp.com/wagtail-crx/.
  14. * Updated to Wagtail 2.3.
  15. * Added support for Django 2.1. Supports Django 1.11 through 2.1.
  16. * Added additional template blocks in ``coderedcms/pages/base.html`` for easier extending.
  17. Bug fixes
  18. ---------
  19. * Modals no longer require a footer.
  20. Maintenance
  21. -----------
  22. * Replace Wagtail version with CodeRed CMS version in admin.
  23. * Replace built-in cache with `wagtail-cache <https://github.com/coderedcorp/wagtail-cache/>`_.
  24. Upgrade considerations
  25. ----------------------
  26. * Some template blocks added to ``coderedcms/pages/web_page.html`` in 0.9 were removed and replaced
  27. with more general blocks in ``coderedcms/pages/base.html``.
  28. * "Formatted Code" block (``coderedcms.blocks.CodeBlock``) was removed. If needed, use a 3rd party
  29. block instead such as `wagtailcodeblock <https://github.com/FlipperPA/wagtailcodeblock>`_,
  30. or use the new "Embed Media" block with GitHub gists.
  31. * ``CODERED_CACHE_PAGES`` setting replaced with ``WAGTAIL_CACHE``.
  32. * ``CODERED_CACHE_BACKEND`` setting replaced with ``WAGTAIL_CACHE_BACKEND``.
  33. * Existing projects must add ``wagtailcache`` to ``INSTALLED_APPS`` in project settings.
  34. * Existing projects must make and apply new migrations.