Skip to content

Commit 9a2d531

Browse files
committed
Python 3.8.17
1 parent 43eff24 commit 9a2d531

15 files changed

+124
-29
lines changed

Include/patchlevel.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,12 +18,12 @@
1818
/*--start constants--*/
1919
#define PY_MAJOR_VERSION 3
2020
#define PY_MINOR_VERSION 8
21-
#define PY_MICRO_VERSION 16
21+
#define PY_MICRO_VERSION 17
2222
#define PY_RELEASE_LEVEL PY_RELEASE_LEVEL_FINAL
2323
#define PY_RELEASE_SERIAL 0
2424

2525
/* Version as a string */
26-
#define PY_VERSION "3.8.16+"
26+
#define PY_VERSION "3.8.17"
2727
/*--end constants--*/
2828

2929
/* Version as a single 4-byte hex number, e.g. 0x010502B2 == 1.5.2b2.

Misc/NEWS.d/3.8.17.rst

Lines changed: 121 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,121 @@
1+
.. date: 2023-06-01-03-24-58
2+
.. gh-issue: 103142
3+
.. nonce: GLWDMX
4+
.. release date: 2023-06-06
5+
.. section: Security
6+
7+
The version of OpenSSL used in our binary builds has been upgraded to 1.1.1u
8+
to address several CVEs.
9+
10+
..
11+
12+
.. date: 2023-05-02-17-56-32
13+
.. gh-issue: 99889
14+
.. nonce: l664SU
15+
.. section: Security
16+
17+
Fixed a security in flaw in :func:`uu.decode` that could allow for directory
18+
traversal based on the input if no ``out_file`` was specified.
19+
20+
..
21+
22+
.. date: 2023-05-01-15-03-25
23+
.. gh-issue: 104049
24+
.. nonce: b01Y3g
25+
.. section: Security
26+
27+
Do not expose the local on-disk location in directory indexes produced by
28+
:class:`http.client.SimpleHTTPRequestHandler`.
29+
30+
..
31+
32+
.. date: 2023-03-07-20-59-17
33+
.. gh-issue: 102153
34+
.. nonce: 14CLSZ
35+
.. section: Security
36+
37+
:func:`urllib.parse.urlsplit` now strips leading C0 control and space
38+
characters following the specification for URLs defined by WHATWG in
39+
response to CVE-2023-24329. Patch by Illia Volochii.
40+
41+
..
42+
43+
.. date: 2023-02-08-22-03-04
44+
.. gh-issue: 101727
45+
.. nonce: 9P5eZz
46+
.. section: Security
47+
48+
Updated the OpenSSL version used in Windows and macOS binary release builds
49+
to 1.1.1t to address CVE-2023-0286, CVE-2022-4303, and CVE-2022-4303 per
50+
`the OpenSSL 2023-02-07 security advisory
51+
<https://www.openssl.org/news/secadv/20230207.txt>`_.
52+
53+
..
54+
55+
.. date: 2023-01-24-16-12-00
56+
.. gh-issue: 101283
57+
.. nonce: 9tqu39
58+
.. section: Security
59+
60+
:class:`subprocess.Popen` now uses a safer approach to find ``cmd.exe`` when
61+
launching with ``shell=True``. Patch by Eryk Sun, based on a patch by Oleg
62+
Iarygin.
63+
64+
..
65+
66+
.. date: 2023-04-27-20-03-08
67+
.. gh-issue: 103935
68+
.. nonce: Uaf2M0
69+
.. section: Library
70+
71+
Use :func:`io.open_code` for files to be executed instead of raw
72+
:func:`open`
73+
74+
..
75+
76+
.. date: 2023-03-23-15-24-38
77+
.. gh-issue: 102953
78+
.. nonce: YR4KaK
79+
.. section: Library
80+
81+
The extraction methods in :mod:`tarfile`, and :func:`shutil.unpack_archive`,
82+
have a new a *filter* argument that allows limiting tar features than may be
83+
surprising or dangerous, such as creating files outside the destination
84+
directory. See :ref:`tarfile-extraction-filter` for details.
85+
86+
..
87+
88+
.. date: 2023-02-17-18-44-27
89+
.. gh-issue: 101997
90+
.. nonce: A6_blD
91+
.. section: Library
92+
93+
Upgrade pip wheel bundled with ensurepip (pip 23.0.1)
94+
95+
..
96+
97+
.. date: 2023-02-27-18-55-32
98+
.. gh-issue: 102306
99+
.. nonce: bkokFL
100+
.. section: Build
101+
102+
[3.8] Avoid GHA CI macOS test_posix failure by using the appropriate macOS
103+
SDK.
104+
105+
..
106+
107+
.. date: 2023-01-09-23-03-57
108+
.. gh-issue: 100180
109+
.. nonce: b5phrg
110+
.. section: Windows
111+
112+
Update Windows installer to OpenSSL 1.1.1s
113+
114+
..
115+
116+
.. date: 2023-05-30-23-30-46
117+
.. gh-issue: 103142
118+
.. nonce: 55lMXQ
119+
.. section: macOS
120+
121+
Update macOS installer to use OpenSSL 1.1.1u.

Misc/NEWS.d/next/Build/2023-02-27-18-55-32.gh-issue-102306.bkokFL.rst

Lines changed: 0 additions & 2 deletions
This file was deleted.

Misc/NEWS.d/next/Library/2023-02-17-18-44-27.gh-issue-101997.A6_blD.rst

Lines changed: 0 additions & 1 deletion
This file was deleted.

Misc/NEWS.d/next/Library/2023-03-23-15-24-38.gh-issue-102953.YR4KaK.rst

Lines changed: 0 additions & 4 deletions
This file was deleted.

Misc/NEWS.d/next/Library/2023-04-27-20-03-08.gh-issue-103935.Uaf2M0.rst

Lines changed: 0 additions & 1 deletion
This file was deleted.

Misc/NEWS.d/next/Security/2023-01-24-16-12-00.gh-issue-101283.9tqu39.rst

Lines changed: 0 additions & 3 deletions
This file was deleted.

Misc/NEWS.d/next/Security/2023-02-08-22-03-04.gh-issue-101727.9P5eZz.rst

Lines changed: 0 additions & 4 deletions
This file was deleted.

Misc/NEWS.d/next/Security/2023-03-07-20-59-17.gh-issue-102153.14CLSZ.rst

Lines changed: 0 additions & 3 deletions
This file was deleted.

Misc/NEWS.d/next/Security/2023-05-01-15-03-25.gh-issue-104049.b01Y3g.rst

Lines changed: 0 additions & 2 deletions
This file was deleted.

Misc/NEWS.d/next/Security/2023-05-02-17-56-32.gh-issue-99889.l664SU.rst

Lines changed: 0 additions & 2 deletions
This file was deleted.

Misc/NEWS.d/next/Security/2023-06-01-03-24-58.gh-issue-103142.GLWDMX.rst

Lines changed: 0 additions & 2 deletions
This file was deleted.

Misc/NEWS.d/next/Windows/2023-01-09-23-03-57.gh-issue-100180.b5phrg.rst

Lines changed: 0 additions & 1 deletion
This file was deleted.

Misc/NEWS.d/next/macOS/2023-05-30-23-30-46.gh-issue-103142.55lMXQ.rst

Lines changed: 0 additions & 1 deletion
This file was deleted.

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
This is Python version 3.8.16
1+
This is Python version 3.8.17
22
=============================
33

44
.. image:: https://travis-ci.org/python/cpython.svg?branch=3.8

0 commit comments

Comments
 (0)