v1.0.0.rst 6.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224
  1. v1.0.0 release notes
  2. ====================
  3. Today we celebrate our 43rd public release of CRX! This is the largest release
  4. ever with tons of performance improvements that will increase the speed and
  5. accessibility of your CRX website.
  6. New features
  7. ------------
  8. * Upgrade to Wagtail 3.
  9. * Upgrade to Bootstrap 5 (ships with Bootstrap 5.2).
  10. * Removed jQuery, modernizr, and many other JavaScript improvements.
  11. * Use WebP image format. If you need to support older browsers released prior to
  12. 2020, disable this feature. See :doc:`/how_to/images`.
  13. * New Accordion snippet and block. See :doc:`/features/snippets/accordions`.
  14. * Added hidden "skip navigation" link for accessibility.
  15. * Most settings have been consolidated in the Wagtail admin under
  16. **Settings > CRX Settings**.
  17. * Banner color has been changed from red to yellow, and appearance is slightly
  18. improved in the Wagtail admin.
  19. * Codebase has been formatted with ``black`` to improve readability and
  20. maintainability.
  21. * CRX 1, Wagtail 3, and Bootstrap 5 all drop support for Internet Explorer. If
  22. you need to support Internet Explorer, follow the Bootstrap 4 guide below.
  23. Upgrade instructions
  24. --------------------
  25. .. important::
  26. It is highly recommended to first upgrade and deploy your site in production
  27. with version 0.25 before performing the upgrade to 1.0.
  28. Updating Python code & Django templates
  29. '''''''''''''''''''''''''''''''''''''''
  30. #. Run ``pip install coderedcms==1.0.*`` and update your ``requirements.txt``
  31. with ``coderedcms==1.0.*``.
  32. #. Follow the `Wagtail 3 upgrade instructions
  33. <https://docs.wagtail.org/en/stable/releases/3.0.html#upgrade-considerations-changes-affecting-all-projects>`_.
  34. This primarily involes running the following tool to update the Wagtail
  35. imports:
  36. .. code-block:: text
  37. wagtail updatemodulepaths
  38. #. Find and replace the following panels in your Python code:
  39. * ``StreamFieldPanel``
  40. * ``RichTextFieldPanel``
  41. * ``ImageChooserPanel``
  42. * ``DocumentChooserPanel``
  43. * ``SnippetChooserPanel``
  44. with:
  45. * ``FieldPanel``
  46. #. Find all instances of ``StreamField(`` and add the ``use_json_field=True``
  47. argument.
  48. #. Rename ``BASE_URL`` to ``WAGTAILADMIN_BASE_URL`` in your Django settings.
  49. #. Find and delete any references to ``ADASettings`` in your Python and HTML
  50. code.
  51. #. Find and replace the following references in your Python and HTML code:
  52. * ``GeneralSettings``
  53. * ``GoogleApiSettings``
  54. * ``MailchimpApiSettings``
  55. with:
  56. * ``LayoutSettings``
  57. #. Find and replace ``codered_banner.html`` with ``crx_banner.html`` in your
  58. Python and HTML code.
  59. #. Make and run migrations:
  60. .. code-block:: text
  61. python manage.py makemigrations
  62. python manage.py migrate
  63. #. Next, choose whether to upgrade to Bootstrap 5, or stay on Bootstrap 4.
  64. If upgrading your site to Bootstrap 5
  65. '''''''''''''''''''''''''''''''''''''
  66. #. Add ``django_bootstrap5`` to ``INSTALLED_APPS``..
  67. #. If you are not using ``django-bootstrap4`` elsewhere in your project, remove
  68. ``bootstrap4`` from ``INSTALLED_APPS``.
  69. #. In your Django settings file, remove the ``BOOTSTRAP4`` dictionary.
  70. #. Update your HTML templates to `Bootstrap 5.2 <https://getbootstrap.com/>`_.
  71. Compare your custom templates to the stock ones for help:
  72. https://github.com/coderedcorp/coderedcms/tree/dev/coderedcms/templates.
  73. #. Notable template changes:
  74. * ``event_index_page.html`` and ``calendar.html`` have changed.
  75. * ``location_index_page.html`` has changed.
  76. * ``stream_form_page.html`` has changed.
  77. * ``form_page.html`` and ``pagepreview_form.html`` have changed to use
  78. ``django_bootstrap5`` rendering.
  79. * ``article_index_page.html`` and ``article_page.html`` have a new design
  80. that is closer to stock Bootstrap.
  81. * ``grid_block.html`` now has with a CSS class ``crx-grid`` which you can
  82. target with CSS.
  83. * Blocks no longer render with a ``<div class="block-*">`` wrapper. This may
  84. affect custom CSS.
  85. #. ``pages/base.html`` template has removed ``{% block required_scripts %}``.
  86. Delete it from your template if it is present.
  87. #. If you still rely on jQuery, be sure to add it to your base template in
  88. ``{% block custom_scripts %}``. Generally speaking, any instance of the
  89. ``custom_scripts`` block should call ``block.super`` to preserve scripts from
  90. parent templates as such:
  91. .. code-block:: django
  92. {% block custom_scripts %}
  93. {{ block.super }}
  94. <script src="my-script-here.js"></script>
  95. {% endblock %}
  96. #. All CSS class names and JavaScript files beginning with ``codered-`` have
  97. been renamed to ``crx-``. Find and replace those in your templates and CSS.
  98. #. The new templates all use WebP images. See: :doc:`/how_to/images` for options
  99. to disable this if needed.
  100. #. If you are using Sass, update your ``_variables.scss`` and ``custom.scss``
  101. files appropriately. As a starting point, update your Sass files to match our
  102. project template:
  103. https://github.com/coderedcorp/coderedcms/tree/dev/coderedcms/project_template/sass/website/static/website/src.
  104. If staying on Bootstrap 4
  105. '''''''''''''''''''''''''
  106. While we recommend *eventually* upgrading to Bootstrap 5, for larger sites or
  107. highly customized sites, this can be a lengthy process. We have published a
  108. `compatibility theme <https://github.com/coderedcorp/coderedcms-bootstrap4>`_
  109. which preserves all the old Bootstrap 4 templates, CSS, Sass, and JavaScript.
  110. Do not follow any of the steps above in the Bootstrap 5 section if you are
  111. staying on Bootstrap 4!
  112. #. Run ``pip install coderedcms-bootstrap4`` and add to your
  113. ``requirements.txt`` file ``coderedcms-bootstrap4==1.*``.
  114. #. In your Django settings file, add ``coderedcms_bootstrap4`` **ABOVE** the
  115. ``coderedcms`` app:
  116. .. code-block:: python
  117. INSTALLED_APPS = [
  118. ...,
  119. "coderedcms_bootstrap4",
  120. "coderedcms",
  121. ...,
  122. ]
  123. Final steps: after deploying
  124. ''''''''''''''''''''''''''''
  125. Locally in development, and after deploying your upgraded site to production,
  126. you should run the following commands to clean up the site.
  127. Run migrations (as usual):
  128. .. code-block:: text
  129. python manage.py migrate
  130. Delete old media renditions:
  131. .. code-block:: text
  132. python manage.py wagtail_update_image_renditions --purge-only
  133. Clear the cache:
  134. .. code-block:: text
  135. python manage.py clear_wagtail_cache
  136. Update Wagtail search index:
  137. .. code-block:: text
  138. python manage.py wagtail_update_index
  139. Thank you!
  140. ----------
  141. Thanks to everyone who contributed to `1.0.0 on GitHub <https://github.com/coderedcorp/coderedcms/milestone/1?closed=1>`_.