]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
bpo-36384: [doc] Mention CVE-2021-29921 fix in 3.8.12 (GH-27824)
authorŁukasz Langa <lukasz@langa.pl>
Thu, 19 Aug 2021 08:55:49 +0000 (10:55 +0200)
committerGitHub <noreply@github.com>
Thu, 19 Aug 2021 08:55:49 +0000 (10:55 +0200)
Doc/library/ipaddress.rst
Doc/whatsnew/3.8.rst

index 1c2263b128a8fe5fef67b443fbb5da7a1e342632..2ab4dd83ad4deefff26e3f5b40c6fdf6bb7d42c1 100644 (file)
@@ -132,6 +132,11 @@ write code that handles both IP versions correctly.  Address objects are
       The above change was also included in Python 3.9 starting with
       version 3.9.5.
 
+   .. versionchanged:: 3.8.12
+
+      The above change was also included in Python 3.8 starting with
+      version 3.8.12.
+
    .. attribute:: version
 
       The appropriate version number: ``4`` for IPv4, ``6`` for IPv6.
index f1a903624f4c2c5d5fd1af12df30d02dce03729b..7c293a501895b367847967d3baabd1eed742d656 100644 (file)
@@ -2248,3 +2248,16 @@ separator key, with ``&`` as the default.  This change also affects
 functions internally. For more details, please see their respective
 documentation.
 (Contributed by Adam Goldschmidt, Senthil Kumaran and Ken Jin in :issue:`42967`.)
+
+Notable changes in Python 3.8.12
+================================
+
+Starting with Python 3.8.12 the :mod:`ipaddress` module no longer accepts
+any leading zeros in IPv4 address strings. Leading zeros are ambiguous and
+interpreted as octal notation by some libraries. For example the legacy
+function :func:`socket.inet_aton` treats leading zeros as octal notation.
+glibc implementation of modern :func:`~socket.inet_pton` does not accept
+any leading zeros.
+
+(Originally contributed by Christian Heimes in :issue:`36384`, and backported
+to 3.8 by Achraf Merzouki.)