Overview

Wagtail 7.2, released on November 5, 2025, is a feature release with editor and admin improvements.

Main Features

Editor improvements

The content editor benefits from better nested block handling and a more responsive live preview.

python
from wagtail.blocks import StructBlock, CharBlock, RichTextBlock

class CardBlock(StructBlock):
    title = CharBlock(required=True)
    content = RichTextBlock()

    class Meta:
        icon = 'doc-full'
        label = 'Card'

Admin improvements

The admin dashboard offers new filters and smoother navigation between page collections.

Sources