From 1157a7c5c74f4b4e0f4aca8312f3fe67eb00568e Mon Sep 17 00:00:00 2001 From: Ran Benita Date: Mon, 2 Sep 2024 18:44:24 +0300 Subject: [PATCH] Release 4.9.0 --- docs/changelog.rst | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) diff --git a/docs/changelog.rst b/docs/changelog.rst index f9bb1d90..617132b7 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -1,6 +1,35 @@ Changelog ========= +v4.9.0 (2024-09-02) +------------------- + +Compatibility +^^^^^^^^^^^^^ + +* Added official support for Django 5.1. +* Dropped support for Django 3.2 and 4.1. + +Improvements +^^^^^^^^^^^^ + +* Respect the ``string_if_invalid`` template setting when + ``--fail-on-template-vars`` is active and + :func:`@pytest.mark.ignore_template_errors ` + is used. + +* Avoid running database migrations for :class:`~django.test.SimpleTestCase` + unittest tests. + +* Added docstrings to public fixtures. + +Bugfixes +^^^^^^^^ + +* Fix type hints for ``pytest_django.asserts.assertFormError()`` and + ``pytest_django.asserts.assertForSetError()``. + + v4.8.0 (2024-01-30) -------------------