NEWS: Reorder items by section (GH-92373)

They caused duplicated sections.
This commit is contained in:
Inada Naoki 2022-05-06 13:58:58 +09:00 committed by GitHub
parent 9652900969
commit 9b491ae04c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
6 changed files with 214 additions and 214 deletions

View File

@ -1,7 +1,73 @@
.. bpo: 26556
.. date: 9636
.. nonce: v5j2uL
.. release date: 2016-06-12
.. original section: Library
.. section: Security
Update expat to 2.1.1, fixes CVE-2015-1283.
..
.. bpo: 0
.. date: 9635
.. nonce: E4ochz
.. original section: Library
.. section: Security
Fix TLS stripping vulnerability in smtplib, CVE-2016-0772. Reported by Team
Oststrom
..
.. bpo: 26839
.. date: 9629
.. nonce: yVvy7R
.. original section: Library
.. section: Security
On Linux, :func:`os.urandom` now calls ``getrandom()`` with
``GRND_NONBLOCK`` to fall back on reading ``/dev/urandom`` if the urandom
entropy pool is not initialized yet. Patch written by Colm Buckley.
..
.. bpo: 26657
.. date: 9597
.. nonce: C_-XFg
.. original section: Library
.. section: Security
Fix directory traversal vulnerability with http.server on Windows. This
fixes a regression that was introduced in 3.3.4rc1 and 3.4.0rc1. Based on
patch by Philipp Hagemeister.
..
.. bpo: 26313
.. date: 9581
.. nonce: LjZAjy
.. original section: Library
.. section: Security
ssl.py _load_windows_store_certs fails if windows cert store is empty. Patch
by Baji.
..
.. bpo: 25939
.. date: 9561
.. nonce: X49Fqd
.. original section: Library
.. section: Security
On Windows open the cert store readonly in ssl.enum_certificates.
..
.. bpo: 27066
.. date: 9673
.. nonce: SNExZi
.. release date: 2016-06-12
.. section: Core and Builtins
Fixed SystemError if a custom opener (for open()) returns a negative number
@ -373,27 +439,6 @@ PendingDeprecationWarning.
..
.. bpo: 26556
.. date: 9636
.. nonce: v5j2uL
.. original section: Library
.. section: Security
Update expat to 2.1.1, fixes CVE-2015-1283.
..
.. bpo: 0
.. date: 9635
.. nonce: E4ochz
.. original section: Library
.. section: Security
Fix TLS stripping vulnerability in smtplib, CVE-2016-0772. Reported by Team
Oststrom
..
.. bpo: 21386
.. date: 9634
.. nonce: DjV72U
@ -449,18 +494,6 @@ build information.
..
.. bpo: 26839
.. date: 9629
.. nonce: yVvy7R
.. original section: Library
.. section: Security
On Linux, :func:`os.urandom` now calls ``getrandom()`` with
``GRND_NONBLOCK`` to fall back on reading ``/dev/urandom`` if the urandom
entropy pool is not initialized yet. Patch written by Colm Buckley.
..
.. bpo: 27164
.. date: 9628
.. nonce: 6wmjx2
@ -776,18 +809,6 @@ limits for multibyte character encodings like utf-8.
..
.. bpo: 26657
.. date: 9597
.. nonce: C_-XFg
.. original section: Library
.. section: Security
Fix directory traversal vulnerability with http.server on Windows. This
fixes a regression that was introduced in 3.3.4rc1 and 3.4.0rc1. Based on
patch by Philipp Hagemeister.
..
.. bpo: 26717
.. date: 9596
.. nonce: jngTdu
@ -937,17 +958,6 @@ Peter Inglesby.
..
.. bpo: 26313
.. date: 9581
.. nonce: LjZAjy
.. original section: Library
.. section: Security
ssl.py _load_windows_store_certs fails if windows cert store is empty. Patch
by Baji.
..
.. bpo: 26569
.. date: 9580
.. nonce: EX8vF1
@ -1136,16 +1146,6 @@ socket) when verify_request() returns false. Patch by Aviv Palivoda.
..
.. bpo: 25939
.. date: 9561
.. nonce: X49Fqd
.. original section: Library
.. section: Security
On Windows open the cert store readonly in ssl.enum_certificates.
..
.. bpo: 25995
.. date: 9560
.. nonce: NfcimP
@ -2154,6 +2154,16 @@ Excludes venv from library when generating embeddable distro.
..
.. bpo: 17500
.. date: 9453
.. nonce: QTZbRV
.. section: Windows
Remove unused and outdated icons. (See also:
https://github.com/python/pythondotorg/issues/945)
..
.. bpo: 26799
.. date: 9457
.. nonce: gK2VXX
@ -2191,13 +2201,3 @@ Teo.
.. section: Tools/Demos
Fix variable name typo in Argument Clinic.
..
.. bpo: 17500
.. date: 9453
.. nonce: QTZbRV
.. section: Windows
Remove unused and outdated icons. (See also:
https://github.com/python/pythondotorg/issues/945)

View File

@ -1,7 +1,29 @@
.. release date: 2017-01-02
.. bpo: 27278
.. date: 9755
.. nonce: y_HkGw
.. original section: Library
.. section: Security
Fix os.urandom() implementation using getrandom() on Linux. Truncate size
to INT_MAX and loop until we collected enough random bytes, instead of
casting a directly Py_ssize_t to int.
..
.. bpo: 22636
.. date: 9753
.. nonce: 3fQW_g
.. original section: Library
.. section: Security
Avoid shell injection problems with ctypes.util.find_library().
..
.. bpo: 29073
.. date: 9898
.. nonce: EFpHQ7
.. release date: 2017-01-02
.. section: Core and Builtins
bytearray formatting no longer truncates on first null byte.
@ -1406,18 +1428,6 @@ issue25782.
..
.. bpo: 27278
.. date: 9755
.. nonce: y_HkGw
.. original section: Library
.. section: Security
Fix os.urandom() implementation using getrandom() on Linux. Truncate size
to INT_MAX and loop until we collected enough random bytes, instead of
casting a directly Py_ssize_t to int.
..
.. bpo: 26386
.. date: 9754
.. nonce: 9L3Ut4
@ -1427,16 +1437,6 @@ Fixed ttk.TreeView selection operations with item id's containing spaces.
..
.. bpo: 22636
.. date: 9753
.. nonce: 3fQW_g
.. original section: Library
.. section: Security
Avoid shell injection problems with ctypes.util.find_library().
..
.. bpo: 16182
.. date: 9752
.. nonce: RgFXyr

View File

@ -1,7 +1,40 @@
.. release date: 2016-05-16
.. bpo: 26657
.. date: 9135
.. nonce: C_-XFg
.. original section: Library
.. section: Security
Fix directory traversal vulnerability with http.server on Windows. This
fixes a regression that was introduced in 3.3.4rc1 and 3.4.0rc1. Based on
patch by Philipp Hagemeister.
..
.. bpo: 26313
.. date: 9102
.. nonce: LjZAjy
.. original section: Library
.. section: Security
ssl.py _load_windows_store_certs fails if windows cert store is empty. Patch
by Baji.
..
.. bpo: 25939
.. date: 9076
.. nonce: X49Fqd
.. original section: Library
.. section: Security
On Windows open the cert store readonly in ssl.enum_certificates.
..
.. bpo: 20041
.. date: 9253
.. nonce: TypyGp
.. release date: 2016-05-16
.. section: Core and Builtins
Fixed TypeError when frame.f_trace is set to None. Patch by Xavier de Gaye.
@ -1198,18 +1231,6 @@ limits for multibyte character encodings like utf-8.
..
.. bpo: 26657
.. date: 9135
.. nonce: C_-XFg
.. original section: Library
.. section: Security
Fix directory traversal vulnerability with http.server on Windows. This
fixes a regression that was introduced in 3.3.4rc1 and 3.4.0rc1. Based on
patch by Philipp Hagemeister.
..
.. bpo: 26717
.. date: 9134
.. nonce: jngTdu
@ -1532,17 +1553,6 @@ tracemalloc to get the traceback where source object was allocated.
..
.. bpo: 26313
.. date: 9102
.. nonce: LjZAjy
.. original section: Library
.. section: Security
ssl.py _load_windows_store_certs fails if windows cert store is empty. Patch
by Baji.
..
.. bpo: 26569
.. date: 9101
.. nonce: EX8vF1
@ -1793,16 +1803,6 @@ handle_error() method, and will now to stop a single-threaded server.
..
.. bpo: 25939
.. date: 9076
.. nonce: X49Fqd
.. original section: Library
.. section: Security
On Windows open the cert store readonly in ssl.enum_certificates.
..
.. bpo: 25995
.. date: 9075
.. nonce: NfcimP

View File

@ -1,7 +1,40 @@
.. release date: 2016-06-13
.. bpo: 26556
.. date: 9316
.. nonce: v5j2uL
.. original section: Library
.. section: Security
Update expat to 2.1.1, fixes CVE-2015-1283.
..
.. bpo: 0
.. date: 9315
.. nonce: PHOAdg
.. original section: Library
.. section: Security
Fix TLS stripping vulnerability in smtplib, CVE-2016-0772. Reported by Team
Oststrom.
..
.. bpo: 26839
.. date: 9303
.. nonce: yVvy7R
.. original section: Library
.. section: Security
On Linux, :func:`os.urandom` now calls ``getrandom()`` with
``GRND_NONBLOCK`` to fall back on reading ``/dev/urandom`` if the urandom
entropy pool is not initialized yet. Patch written by Colm Buckley.
..
.. bpo: 27095
.. date: 9332
.. nonce: 92UoyH
.. release date: 2016-06-13
.. section: Core and Builtins
Simplified MAKE_FUNCTION and removed MAKE_CLOSURE opcodes. Patch by Demur
@ -159,27 +192,6 @@ Rees.
..
.. bpo: 26556
.. date: 9316
.. nonce: v5j2uL
.. original section: Library
.. section: Security
Update expat to 2.1.1, fixes CVE-2015-1283.
..
.. bpo: 0
.. date: 9315
.. nonce: PHOAdg
.. original section: Library
.. section: Security
Fix TLS stripping vulnerability in smtplib, CVE-2016-0772. Reported by Team
Oststrom.
..
.. bpo: 21386
.. date: 9314
.. nonce: DjV72U
@ -294,18 +306,6 @@ build information.
..
.. bpo: 26839
.. date: 9303
.. nonce: yVvy7R
.. original section: Library
.. section: Security
On Linux, :func:`os.urandom` now calls ``getrandom()`` with
``GRND_NONBLOCK`` to fall back on reading ``/dev/urandom`` if the urandom
entropy pool is not initialized yet. Patch written by Colm Buckley.
..
.. bpo: 23883
.. date: 9302
.. nonce: tsZUiM
@ -735,6 +735,16 @@ default when used interactively.
..
.. bpo: 17500
.. date: 9257
.. nonce: QTZbRV
.. section: Windows
Remove unused and outdated icons. (See also:
https://github.com/python/pythondotorg/issues/945)
..
.. bpo: 27229
.. date: 9259
.. nonce: C2NDch
@ -755,16 +765,6 @@ Update OS X 10.5+ 32-bit-only installer to build and link with OpenSSL
..
.. bpo: 17500
.. date: 9257
.. nonce: QTZbRV
.. section: Windows
Remove unused and outdated icons. (See also:
https://github.com/python/pythondotorg/issues/945)
..
.. bpo: 27186
.. date: 9256
.. nonce: Ll8R-t

View File

@ -1,7 +1,29 @@
.. release date: 2016-07-11
.. bpo: 27278
.. date: 9361
.. nonce: y_HkGw
.. original section: Library
.. section: Security
Fix os.urandom() implementation using getrandom() on Linux. Truncate size
to INT_MAX and loop until we collected enough random bytes, instead of
casting a directly Py_ssize_t to int.
..
.. bpo: 22636
.. date: 9357
.. nonce: 3fQW_g
.. original section: Library
.. section: Security
Avoid shell injection problems with ctypes.util.find_library().
..
.. bpo: 27473
.. date: 9385
.. nonce: _nOtTA
.. release date: 2016-07-11
.. section: Core and Builtins
Fixed possible integer overflow in bytes and bytearray concatenations.
@ -248,18 +270,6 @@ issue25782.
..
.. bpo: 27278
.. date: 9361
.. nonce: y_HkGw
.. original section: Library
.. section: Security
Fix os.urandom() implementation using getrandom() on Linux. Truncate size
to INT_MAX and loop until we collected enough random bytes, instead of
casting a directly Py_ssize_t to int.
..
.. bpo: 16864
.. date: 9360
.. nonce: W7tJDa
@ -289,16 +299,6 @@ env var PAGER).
..
.. bpo: 22636
.. date: 9357
.. nonce: 3fQW_g
.. original section: Library
.. section: Security
Avoid shell injection problems with ctypes.util.find_library().
..
.. bpo: 16182
.. date: 9356
.. nonce: RgFXyr

View File

@ -1,7 +1,19 @@
.. release date: 2017-06-17
.. bpo: 29591
.. date: 9966
.. nonce: ExKblw
.. original section: Library
.. section: Security
Update expat copy from 2.1.1 to 2.2.0 to get fixes of CVE-2016-0718 and
CVE-2016-4472. See https://sourceforge.net/p/expat/bugs/537/ for more
information.
..
.. bpo: 30682
.. date: 9989
.. nonce: zZm88E
.. release date: 2017-06-17
.. section: Core and Builtins
Removed a too-strict assertion that failed for certain f-strings, such as
@ -224,18 +236,6 @@ with misplaced inline modifier. Patch by Roy Williams.
..
.. bpo: 29591
.. date: 9966
.. nonce: ExKblw
.. original section: Library
.. section: Security
Update expat copy from 2.1.1 to 2.2.0 to get fixes of CVE-2016-0718 and
CVE-2016-4472. See https://sourceforge.net/p/expat/bugs/537/ for more
information.
..
.. bpo: 24484
.. date: 9965
.. nonce: fNS32j