Skip to content

Commit

Permalink
Prepare release version 6.2.3
Browse files Browse the repository at this point in the history
  • Loading branch information
pytestbot committed Apr 3, 2021
1 parent 138b19a commit 3a2fd96
Show file tree
Hide file tree
Showing 6 changed files with 44 additions and 15 deletions.
10 changes: 0 additions & 10 deletions changelog/8414.bugfix.rst

This file was deleted.

1 change: 1 addition & 0 deletions doc/en/announce/index.rst
Expand Up @@ -6,6 +6,7 @@ Release announcements
:maxdepth: 2


release-6.2.3
release-6.2.2
release-6.2.1
release-6.2.0
Expand Down
19 changes: 19 additions & 0 deletions doc/en/announce/release-6.2.3.rst
@@ -0,0 +1,19 @@
pytest-6.2.3
=======================================

pytest 6.2.3 has just been released to PyPI.

This is a bug-fix release, being a drop-in replacement. To upgrade::

pip install --upgrade pytest

The full changelog is available at https://docs.pytest.org/en/stable/changelog.html.

Thanks to all of the contributors to this release:

* Bruno Oliveira
* Ran Benita


Happy testing,
The pytest Development Team
18 changes: 18 additions & 0 deletions doc/en/changelog.rst
Expand Up @@ -28,6 +28,24 @@ with advance notice in the **Deprecations** section of releases.

.. towncrier release notes start
pytest 6.2.3 (2021-04-03)
=========================

Bug Fixes
---------

- `#8414 <https://github.com/pytest-dev/pytest/issues/8414>`_: pytest used to create directories under ``/tmp`` with world-readable
permissions. This means that any user in the system was able to read
information written by tests in temporary directories (such as those created by
the ``tmp_path``/``tmpdir`` fixture). Now the directories are created with
private permissions.

pytest used silenty use a pre-existing ``/tmp/pytest-of-<username>`` directory,
even if owned by another user. This means another user could pre-create such a
directory and gain control of another user's temporary directory. Now such a
condition results in an error.


pytest 6.2.2 (2021-01-25)
=========================

Expand Down
9 changes: 5 additions & 4 deletions doc/en/example/parametrize.rst
Expand Up @@ -508,11 +508,12 @@ Running it results in some skips if we don't have all the python interpreters in
.. code-block:: pytest
. $ pytest -rs -q multipython.py
ssssssssssss...ssssssssssss [100%]
sssssssssssssssssssssssssss [100%]
========================= short test summary info ==========================
SKIPPED [12] multipython.py:29: 'python3.5' not found
SKIPPED [12] multipython.py:29: 'python3.7' not found
3 passed, 24 skipped in 0.12s
SKIPPED [9] multipython.py:29: 'python3.5' not found
SKIPPED [9] multipython.py:29: 'python3.6' not found
SKIPPED [9] multipython.py:29: 'python3.7' not found
27 skipped in 0.12s
Indirect parametrization of optional implementations/imports
--------------------------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion doc/en/getting-started.rst
Expand Up @@ -28,7 +28,7 @@ Install ``pytest``
.. code-block:: bash
$ pytest --version
pytest 6.2.2
pytest 6.2.3
.. _`simpletest`:

Expand Down

0 comments on commit 3a2fd96

Please sign in to comment.