Skip to content

Commit c3434f6

Browse files
committed
Update changelog
1 parent b578262 commit c3434f6

File tree

3 files changed

+36
-5
lines changed

3 files changed

+36
-5
lines changed

Diff for: README.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ pytest-django allows you to test your Django project/applications with the
3232
<https://pytest-django.readthedocs.io/en/latest/contributing.html>`_
3333
* Version compatibility:
3434

35-
* Django: 3.2, 4.0, 4.1, 4.2 and latest main branch (compatible at the time of
35+
* Django: 3.2, 4.1, 4.2 and latest main branch (compatible at the time of
3636
each release)
3737
* Python: CPython>=3.8 or PyPy 3
3838
* pytest: >=7.0

Diff for: docs/changelog.rst

+26-4
Original file line numberDiff line numberDiff line change
@@ -4,18 +4,40 @@ Changelog
44
Pending
55
-------
66

7-
Improvements
8-
^^^^^^^^^^^^
7+
Compatibility
8+
^^^^^^^^^^^^^
99

1010
* Official Django 4.1 & 4.2 support.
1111

1212
* Official Python 3.11 support.
1313

14-
* Drop support for Python version 3.6.
14+
* Drop support for Python version 3.5, 3.6 & 3.7.
1515

1616
* Drop official support for Django 4.0.
1717

18-
* Add precise `pytest_django.asserts.assertQuerySetEqual` typing.
18+
* Drop support for pytest < 7.
19+
20+
Improvements
21+
^^^^^^^^^^^^
22+
23+
* Add support for setting :py:attr:`available_apps
24+
<django.test.TransactionTestCase.available_apps>` in the :func:`django_db
25+
<pytest.mark.django_db>` marker.
26+
27+
* Convert Django :ref:`test tags <django:topics-tagging-tests>` to :ref:`Pytest
28+
markers <pytest:mark examples>`.
29+
30+
* Show Django's version in the pytest ``django`` report header.
31+
32+
* Add precise ``pytest_django.asserts.assertQuerySetEqual`` typing.
33+
34+
Bugfixes
35+
^^^^^^^^
36+
37+
* Fix bug where the effect of :func:`@pytest.mark.ignore_template_errors
38+
<pytest.mark.ignore_template_errors>` was not reset when using
39+
``--fail-on-template-vars``.
40+
1941

2042
v4.5.2 (2021-12-07)
2143
-------------------

Diff for: docs/faq.rst

+9
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,15 @@ If this for some reason fails for you, you have to manage your Python paths
1313
explicitly. See the documentation on :ref:`managing_the_python_path_explicitly`
1414
for more information.
1515

16+
.. _faq-test-tags:
17+
18+
Are Django test tags supported?
19+
-------------------------------
20+
21+
Yes, Django :ref:`test tagging <django:topics-tagging-tests>` is supported.
22+
The Django test tags are automatically converted to :ref:`Pytest markers
23+
<pytest:mark examples>`.
24+
1625
How can I make sure that all my tests run with a specific locale?
1726
-----------------------------------------------------------------
1827

0 commit comments

Comments
 (0)