v0.19.0.rst 2.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. CodeRed CMS 0.19.0 release notes
  2. ================================
  3. Bug fixes
  4. ---------
  5. * Support custom image models by correctly using ``WAGTAILIMAGES_IMAGE_MODEL``
  6. versus hard-coding ``wagtailimages.Image``.
  7. * Fix custom CSS class and Google Maps API key in Google Map block.
  8. * ``coderedcms start`` now pins the version of CodeRed CMS in the generated
  9. ``requirements.txt`` file.
  10. New features
  11. ------------
  12. * Upgraded to Wagtail 2.9
  13. * Upgraded to Bootstrap 4.5 and jQuery 3.5.1
  14. * Button and Link blocks can now link to fragments. See new :doc:`block
  15. documentation </features/blocks/index>`.
  16. * ``coderedcms start`` no longer creates a boilerplate Dockerfile. This has
  17. been replaced with a more thorough guide: :doc:`/how_to/docker`.
  18. Upgrade considerations
  19. ----------------------
  20. * For Wagtail 2.9 ``SiteMiddleware`` and ``request.site`` are deprecated.
  21. Custom code in your project should be updated as so:
  22. * In python, replace ``request.site`` with ``Site.find_for_request(request)``.
  23. * In Python, to load a site setting, replace
  24. ``Setting.for_site(request.site)`` with ``Setting.for_request(request)``.
  25. * In HTML templates, replace ``request.site`` with:
  26. ..code-block: html
  27. {% load wagtailcore_tags %}
  28. {% wagtail_site as site %}
  29. <p>Your site name is: {{site.site_name}}</p>
  30. * Following these changes, you should then remove
  31. ``wagtail.core.middleware.SiteMiddleware`` from the Django ``MIDDLEWARE``
  32. (in ``settings/base.py``)
  33. * If you have overridden ``coderedcms/pages/base.html``, you may need to update
  34. references to ``jquery-3.4.1`` to ``jquery-3.5.1``.
  35. * If using SASS, you may need to update your ``custom.scss`` and/or
  36. ``_variables.scss`` files accordingly to support Bootstrap 4.5. To see what
  37. you might need to change in your ``_variables.scss``, see `the variables diff
  38. of Bootstrap 4.3 to 4.5`_. Or to continue using Bootstrap 4.3, `download a
  39. copy of the Bootstrap 4.3 sources`_ and change the references in your
  40. ``custom.scss`` to use these files.
  41. * It is assumed that all CodeRed CMS sites prior to 0.19 are using the built-in
  42. Wagtail Image model, as this was previously hard-coded in CodeRed CMS. If (and
  43. only if) you plan to switch to a custom image model, a custom data migration
  44. will be necessary. This migration would follow the same process as any other
  45. Wagtail installation; there is nothing unique relating to CodeRed CMS.
  46. * You may need to run ``python manage.py makemigrations website`` and
  47. ``python manage.py migrate`` after upgrading.
  48. .. _the variables diff of Bootstrap 4.3 to 4.5: https://github.com/coderedcorp/coderedcms/commit/fa852ebc9d714d34b25c390321e5a6d563156097#diff-a68086c64c5d52852fda5605321c3eb9
  49. .. _download a copy of the Bootstrap 4.3 sources: https://getbootstrap.com/docs/4.3/getting-started/download/