Skip to content

Commit

Permalink
Update changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
bluetech committed Oct 30, 2023
1 parent b578262 commit c3434f6
Show file tree
Hide file tree
Showing 3 changed files with 36 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ pytest-django allows you to test your Django project/applications with the
<https://pytest-django.readthedocs.io/en/latest/contributing.html>`_
* Version compatibility:

* Django: 3.2, 4.0, 4.1, 4.2 and latest main branch (compatible at the time of
* Django: 3.2, 4.1, 4.2 and latest main branch (compatible at the time of
each release)
* Python: CPython>=3.8 or PyPy 3
* pytest: >=7.0
Expand Down
30 changes: 26 additions & 4 deletions docs/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,18 +4,40 @@ Changelog
Pending
-------

Improvements
^^^^^^^^^^^^
Compatibility
^^^^^^^^^^^^^

* Official Django 4.1 & 4.2 support.

* Official Python 3.11 support.

* Drop support for Python version 3.6.
* Drop support for Python version 3.5, 3.6 & 3.7.

* Drop official support for Django 4.0.

* Add precise `pytest_django.asserts.assertQuerySetEqual` typing.
* Drop support for pytest < 7.

Improvements
^^^^^^^^^^^^

* Add support for setting :py:attr:`available_apps
<django.test.TransactionTestCase.available_apps>` in the :func:`django_db
<pytest.mark.django_db>` marker.

* Convert Django :ref:`test tags <django:topics-tagging-tests>` to :ref:`Pytest
markers <pytest:mark examples>`.

* Show Django's version in the pytest ``django`` report header.

* Add precise ``pytest_django.asserts.assertQuerySetEqual`` typing.

Bugfixes
^^^^^^^^

* Fix bug where the effect of :func:`@pytest.mark.ignore_template_errors
<pytest.mark.ignore_template_errors>` was not reset when using
``--fail-on-template-vars``.


v4.5.2 (2021-12-07)
-------------------
Expand Down
9 changes: 9 additions & 0 deletions docs/faq.rst
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,15 @@ If this for some reason fails for you, you have to manage your Python paths
explicitly. See the documentation on :ref:`managing_the_python_path_explicitly`
for more information.

.. _faq-test-tags:

Are Django test tags supported?
-------------------------------

Yes, Django :ref:`test tagging <django:topics-tagging-tests>` is supported.
The Django test tags are automatically converted to :ref:`Pytest markers
<pytest:mark examples>`.

How can I make sure that all my tests run with a specific locale?
-----------------------------------------------------------------

Expand Down

0 comments on commit c3434f6

Please sign in to comment.