From c38db51559c0296cc4ad8a58f1f63f17ace7173d Mon Sep 17 00:00:00 2001 From: Matt Westcott Date: Tue, 18 Mar 2025 23:36:07 +0000 Subject: [PATCH] Add versionchanged note for new Page.save validation --- wagtail/models/pages.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/wagtail/models/pages.py b/wagtail/models/pages.py index 0b6ac72d08..429c0b14bd 100644 --- a/wagtail/models/pages.py +++ b/wagtail/models/pages.py @@ -712,7 +712,11 @@ class Page(AbstractPage, index.Indexed, ClusterableModel, metaclass=PageBase): If ``clean=True`` is passed (the default), and the page has ``live=True`` set, the page is validated using :meth:`~django.db.models.Model.full_clean` before saving. - If ``clean=True`` is passed, and the page has `live=False` set, only the title and slug fields are validated. + If ``clean=True`` is passed, and the page has ``live=False`` set, only the title and slug fields are validated. + + .. versionchanged:: 6.5 + ``clean=True`` now only performs full validation when the page is live. When the page is not live, only + the title and slug fields are validated. Previously, full validation was always performed. """ if clean: if self.live: