Skip to content

Latest commit

 

History

History
66 lines (47 loc) · 1.57 KB

File metadata and controls

66 lines (47 loc) · 1.57 KB

wagtail-polymath Changelog

Unreleased

  • Dropped support for Django < 5.2
  • Upgraded to MathJax 4.1.2, using Subresource Integrity for the CDN script. The template tag has also changed to mathjax_script. See upgrade considerations

Upgrade considerations

The project namespace changed to wagtail_polymath

# Old
- from wagtailmath.blocks import MathBlock
# New
+ from wagtail_polymath.blocks import MathBlock

and

# Old
- {% load wagtailmath %}
# New
+ {% load wagtail_polymath %}

The template tag has changed

The mathjax template tag has changed to mathjax_script and should no longer be wrapped in <script></script>

# Old
- {% load wagtailmath %}
- <script src="{% mathjax %}"></script>
# New
+ {% load wagtail_polymath %}
+ {% mathjax_script %}

2.0.0.dev1 (2026-06-18)

  • The project namespace has changed from wagtailmath to wagtail_polymath. Example: from wagtailmath.blocks import MathBlockfrom wagtail_polymath.blocks import MathBlock

1.3.1 (2024-10-30)

  • Fixed preview initialisation issue (#17) @MadScrewdriver

1.3.0 (2024-07-04)

  • Updated project tooling:
    • added linting with ruff
    • switched to using flit for packaging
    • added GitHub Actions, including PyPI trusted publishing
    • added tests skeleton
  • Added support for Wagtail 5.2+
  • Dropped support for Wagtail < 5.2, Django < 4.2

1.2.0 (2021-05-18)

  • Upgrade to newer version of Django + Wagtail

0.1.0 (2017-04-24)

  • First release on PyPI.