v0.13.0.rst 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. v0.13.0 release notes
  2. =====================
  3. New features
  4. ------------
  5. * New CMS installations will now cache 301/302 redirects and 404 pages.
  6. Existing CMS installations should switch to new wagtail-cache middleware to gain this behavior
  7. (see upgrade considerations).
  8. * **Settings > General > From Email Address** now allows specifying sender name in
  9. "Sender Name <sender@example.com>" format.
  10. * **Settings > Tracking > Track button clicks** now tracks ALL anchor clicks, not just Button Blocks.
  11. Bug fixes
  12. ---------
  13. * Minor bug fixes to form page template.
  14. * Minor bug fixes to search page template.
  15. * Fixed bug that prevented previewing Event page types.
  16. * Fixed Structured Data error on Event page types.
  17. * Body previews now properly render HTML entities (apostrophes, non-breaking spaces, etc.).
  18. * Images in Rich Text Blocks are now properly positioned left/right/full-width on the front-end.
  19. * Fixed AMP rendering issues with images in Rich Text Blocks.
  20. Maintenance
  21. -----------
  22. * Updated Bootstrap to version 4.3.1, and other JavaScript library updates.
  23. Upgrade considerations
  24. ----------------------
  25. * Robots.txt settings were REMOVED from **Settings > General**. If you had custom custom robots.txt specified here,
  26. move your robots.txt content to ``website/templates/robots.txt`` file before upgrading.
  27. * Existing installations must add the new wagtail-cache middleware to ``MIDDLEWARE`` in the Django settings file as
  28. described `in wagtail-cache documentation <https://docs.coderedcorp.com/wagtail-cache/stable/getting_started/install.html>`_
  29. after upgrading.
  30. * You will need to run ``python manage.py makemigrations website`` and ``python manage.py migrate`` after upgrading.