Skip to content

Commit cd1c3a6

Browse files
committed
Python 3.11.14
1 parent 854c029 commit cd1c3a6

16 files changed

+147
-53
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 11
21-
#define PY_MICRO_VERSION 13
21+
#define PY_MICRO_VERSION 14
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.11.13+"
26+
#define PY_VERSION "3.11.14"
2727
/*--end constants--*/
2828

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

Lib/pydoc_data/topics.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# -*- coding: utf-8 -*-
2-
# Autogenerated by Sphinx on Tue Jun 3 19:38:08 2025
2+
# Autogenerated by Sphinx on Thu Oct 9 18:16:46 2025
33
# as part of the release process.
44
topics = {'assert': 'The "assert" statement\n'
55
'**********************\n'

Misc/NEWS.d/3.11.14.rst

Lines changed: 143 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,143 @@
1+
.. date: 2025-10-07-19-31-34
2+
.. gh-issue: 139700
3+
.. nonce: vNHU1O
4+
.. release date: 2025-10-09
5+
.. section: Security
6+
7+
Check consistency of the zip64 end of central directory record. Support
8+
records with "zip64 extensible data" if there are no bytes prepended to the
9+
ZIP file.
10+
11+
..
12+
13+
.. date: 2025-09-29-00-01-28
14+
.. gh-issue: 139400
15+
.. nonce: X2T-jO
16+
.. section: Security
17+
18+
:mod:`xml.parsers.expat`: Make sure that parent Expat parsers are only
19+
garbage-collected once they are no longer referenced by subparsers created
20+
by :meth:`~xml.parsers.expat.xmlparser.ExternalEntityParserCreate`. Patch by
21+
Sebastian Pipping.
22+
23+
..
24+
25+
.. date: 2025-06-25-14-13-39
26+
.. gh-issue: 135661
27+
.. nonce: idjQ0B
28+
.. section: Security
29+
30+
Fix parsing start and end tags in :class:`html.parser.HTMLParser` according
31+
to the HTML5 standard.
32+
33+
* Whitespaces no longer accepted between ``</`` and the tag name.
34+
E.g. ``</ script>`` does not end the script section.
35+
36+
* Vertical tabulation (``\v``) and non-ASCII whitespaces no longer recognized
37+
as whitespaces. The only whitespaces are ``\t\n\r\f`` and space.
38+
39+
* Null character (U+0000) no longer ends the tag name.
40+
41+
* Attributes and slashes after the tag name in end tags are now ignored,
42+
instead of terminating after the first ``>`` in quoted attribute value.
43+
E.g. ``</script/foo=">"/>``.
44+
45+
* Multiple slashes and whitespaces between the last attribute and closing ``>``
46+
are now ignored in both start and end tags. E.g. ``<a foo=bar/ //>``.
47+
48+
* Multiple ``=`` between attribute name and value are no longer collapsed.
49+
E.g. ``<a foo==bar>`` produces attribute "foo" with value "=bar".
50+
51+
..
52+
53+
.. date: 2025-06-18-13-34-55
54+
.. gh-issue: 135661
55+
.. nonce: NZlpWf
56+
.. section: Security
57+
58+
Fix CDATA section parsing in :class:`html.parser.HTMLParser` according to
59+
the HTML5 standard: ``] ]>`` and ``]] >`` no longer end the CDATA section.
60+
Add private method ``_set_support_cdata()`` which can be used to specify how
61+
to parse ``<[CDATA[`` --- as a CDATA section in foreign content (SVG or
62+
MathML) or as a bogus comment in the HTML namespace.
63+
64+
..
65+
66+
.. date: 2025-06-18-13-28-08
67+
.. gh-issue: 102555
68+
.. nonce: nADrzJ
69+
.. section: Security
70+
71+
Fix comment parsing in :class:`html.parser.HTMLParser` according to the
72+
HTML5 standard. ``--!>`` now ends the comment. ``-- >`` no longer ends the
73+
comment. Support abnormally ended empty comments ``<-->`` and ``<--->``.
74+
75+
..
76+
77+
.. date: 2025-06-13-15-55-22
78+
.. gh-issue: 135462
79+
.. nonce: KBeJpc
80+
.. section: Security
81+
82+
Fix quadratic complexity in processing specially crafted input in
83+
:class:`html.parser.HTMLParser`. End-of-file errors are now handled
84+
according to the HTML5 specs -- comments and declarations are automatically
85+
closed, tags are ignored.
86+
87+
..
88+
89+
.. date: 2025-06-09-20-38-25
90+
.. gh-issue: 118350
91+
.. nonce: KgWCcP
92+
.. section: Security
93+
94+
Fix support of escapable raw text mode (elements "textarea" and "title") in
95+
:class:`html.parser.HTMLParser`.
96+
97+
..
98+
99+
.. date: 2023-02-13-21-41-34
100+
.. gh-issue: 86155
101+
.. nonce: ppIGSC
102+
.. section: Security
103+
104+
:meth:`html.parser.HTMLParser.close` no longer loses data when the
105+
``<script>`` tag is not closed. Patch by Waylan Limberg.
106+
107+
..
108+
109+
.. date: 2025-09-25-07-33-43
110+
.. gh-issue: 139312
111+
.. nonce: ygE8AC
112+
.. section: Library
113+
114+
Upgrade bundled libexpat to 2.7.3
115+
116+
..
117+
118+
.. date: 2025-09-16-19-05-29
119+
.. gh-issue: 138998
120+
.. nonce: URl0Y_
121+
.. section: Library
122+
123+
Update bundled libexpat to 2.7.2
124+
125+
..
126+
127+
.. date: 2025-07-23-00-35-29
128+
.. gh-issue: 130577
129+
.. nonce: c7EITy
130+
.. section: Library
131+
132+
:mod:`tarfile` now validates archives to ensure member offsets are
133+
non-negative. (Contributed by Alexander Enrique Urieles Nieto in
134+
:gh:`130577`.)
135+
136+
..
137+
138+
.. date: 2025-06-11-17-38-16
139+
.. gh-issue: 135374
140+
.. nonce: eqRcTc
141+
.. section: Library
142+
143+
Update the bundled copy of setuptools to 79.0.1.

Misc/NEWS.d/next/Library/2025-06-11-17-38-16.gh-issue-135374.eqRcTc.rst

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

Misc/NEWS.d/next/Library/2025-07-23-00-35-29.gh-issue-130577.c7EITy.rst

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

Misc/NEWS.d/next/Library/2025-09-16-19-05-29.gh-issue-138998.URl0Y_.rst

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

Misc/NEWS.d/next/Library/2025-09-25-07-33-43.gh-issue-139312.ygE8AC.rst

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

Misc/NEWS.d/next/Security/2023-02-13-21-41-34.gh-issue-86155.ppIGSC.rst

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

Misc/NEWS.d/next/Security/2025-06-09-20-38-25.gh-issue-118350.KgWCcP.rst

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

Misc/NEWS.d/next/Security/2025-06-13-15-55-22.gh-issue-135462.KBeJpc.rst

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

0 commit comments

Comments
 (0)