You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: doc/en/changelog.rst
+18
Original file line number
Diff line number
Diff line change
@@ -28,6 +28,24 @@ with advance notice in the **Deprecations** section of releases.
28
28
29
29
.. towncrier release notes start
30
30
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
0 commit comments