Skip to content

Commit a56dcae

Browse files
committed
Python 3.8.18
1 parent efb46e5 commit a56dcae

6 files changed

+37
-15
lines changed

Include/patchlevel.h

+2-2
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 17
21+
#define PY_MICRO_VERSION 18
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.17+"
26+
#define PY_VERSION "3.8.18"
2727
/*--end constants--*/
2828

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

Misc/NEWS.d/3.8.18.rst

+34
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
.. date: 2023-08-22-17-39-12
2+
.. gh-issue: 108310
3+
.. nonce: fVM3sg
4+
.. release date: 2023-08-24
5+
.. section: Security
6+
7+
Fixed an issue where instances of :class:`ssl.SSLSocket` were vulnerable to
8+
a bypass of the TLS handshake and included protections (like certificate
9+
verification) and treating sent unencrypted data as if it were
10+
post-handshake TLS encrypted data. Security issue reported as
11+
`CVE-2023-40217
12+
<https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-40217>`_ by Aapo
13+
Oksman. Patch by Gregory P. Smith.
14+
15+
..
16+
17+
.. date: 2023-08-10-17-36-22
18+
.. gh-issue: 107845
19+
.. nonce: dABiMJ
20+
.. section: Library
21+
22+
:func:`tarfile.data_filter` now takes the location of symlinks into account
23+
when determining their target, so it will no longer reject some valid
24+
tarballs with ``LinkOutsideDestinationError``.
25+
26+
..
27+
28+
.. date: 2023-08-12-13-18-15
29+
.. gh-issue: 107565
30+
.. nonce: Tv22Ne
31+
.. section: Tools/Demos
32+
33+
Update multissltests and GitHub CI workflows to use OpenSSL 1.1.1v, 3.0.10,
34+
and 3.1.2.

Misc/NEWS.d/next/Library/2023-08-10-17-36-22.gh-issue-107845.dABiMJ.rst

-3
This file was deleted.

Misc/NEWS.d/next/Security/2023-08-22-17-39-12.gh-issue-108310.fVM3sg.rst

-7
This file was deleted.

Misc/NEWS.d/next/Tools-Demos/2023-08-12-13-18-15.gh-issue-107565.Tv22Ne.rst

-2
This file was deleted.

README.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
This is Python version 3.8.17
1+
This is Python version 3.8.18
22
=============================
33

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

0 commit comments

Comments
 (0)