File tree Expand file tree Collapse file tree 6 files changed +44
-15
lines changed Expand file tree Collapse file tree 6 files changed +44
-15
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -6,6 +6,7 @@ Release announcements
66 :maxdepth: 2
77
88
9+ release-6.2.3
910 release-6.2.2
1011 release-6.2.1
1112 release-6.2.0
Original file line number Diff line number Diff line change 1+ pytest-6.2.3
2+ =======================================
3+
4+ pytest 6.2.3 has just been released to PyPI.
5+
6+ This is a bug-fix release, being a drop-in replacement. To upgrade::
7+
8+ pip install --upgrade pytest
9+
10+ The full changelog is available at https://docs.pytest.org/en/stable/changelog.html.
11+
12+ Thanks to all of the contributors to this release:
13+
14+ * Bruno Oliveira
15+ * Ran Benita
16+
17+
18+ Happy testing,
19+ The pytest Development Team
Original file line number Diff line number Diff line change @@ -28,6 +28,24 @@ with advance notice in the **Deprecations** section of releases.
2828
2929.. towncrier release notes start
3030
31+ pytest 6.2.3 (2021-04-03)
32+ =========================
33+
34+ Bug Fixes
35+ ---------
36+
37+ - `#8414 <https://github.com/pytest-dev/pytest/issues/8414 >`_: pytest used to create directories under ``/tmp `` with world-readable
38+ permissions. This means that any user in the system was able to read
39+ information written by tests in temporary directories (such as those created by
40+ the ``tmp_path ``/``tmpdir `` fixture). Now the directories are created with
41+ private permissions.
42+
43+ pytest used silenty use a pre-existing ``/tmp/pytest-of-<username> `` directory,
44+ even if owned by another user. This means another user could pre-create such a
45+ directory and gain control of another user's temporary directory. Now such a
46+ condition results in an error.
47+
48+
3149pytest 6.2.2 (2021-01-25)
3250=========================
3351
Original file line number Diff line number Diff line change @@ -508,11 +508,12 @@ Running it results in some skips if we don't have all the python interpreters in
508508.. code-block :: pytest
509509
510510 . $ pytest -rs -q multipython.py
511- ssssssssssss...ssssssssssss [100%]
511+ sssssssssssssssssssssssssss [100%]
512512 ========================= short test summary info ==========================
513- SKIPPED [12] multipython.py:29: 'python3.5' not found
514- SKIPPED [12] multipython.py:29: 'python3.7' not found
515- 3 passed, 24 skipped in 0.12s
513+ SKIPPED [9] multipython.py:29: 'python3.5' not found
514+ SKIPPED [9] multipython.py:29: 'python3.6' not found
515+ SKIPPED [9] multipython.py:29: 'python3.7' not found
516+ 27 skipped in 0.12s
516517
517518 Indirect parametrization of optional implementations/imports
518519--------------------------------------------------------------------
Original file line number Diff line number Diff line change @@ -28,7 +28,7 @@ Install ``pytest``
2828.. code-block :: bash
2929
3030 $ pytest --version
31- pytest 6.2.2
31+ pytest 6.2.3
3232
3333 .. _`simpletest` :
3434
You can’t perform that action at this time.
0 commit comments