mirror of
https://github.com/django/django.git
synced 2025-10-31 09:41:08 +00:00
[5.1.x] Fixed #36098 -- Fixed validate_ipv6_address()/validate_ipv46_address() crash for non-string values.
Regression inca2be7724e. Backport ofb3c5830769from main.
This commit is contained in:
committed by
Natalia
parent
dd2247d5fd
commit
c81669cb54
14
docs/releases/4.2.19.txt
Normal file
14
docs/releases/4.2.19.txt
Normal file
@@ -0,0 +1,14 @@
|
||||
===========================
|
||||
Django 4.2.19 release notes
|
||||
===========================
|
||||
|
||||
*Expected February 5, 2025*
|
||||
|
||||
Django 4.2.19 fixes a regression in 4.2.18.
|
||||
|
||||
Bugfixes
|
||||
========
|
||||
|
||||
* Fixed a regression in Django 4.2.18 that caused ``validate_ipv6_address()``
|
||||
and ``validate_ipv46_address()`` to crash when handling non-string values
|
||||
(:ticket:`36098`).
|
||||
14
docs/releases/5.0.12.txt
Normal file
14
docs/releases/5.0.12.txt
Normal file
@@ -0,0 +1,14 @@
|
||||
===========================
|
||||
Django 5.0.12 release notes
|
||||
===========================
|
||||
|
||||
*Expected February 5, 2025*
|
||||
|
||||
Django 5.0.12 fixes a regression in 5.0.11.
|
||||
|
||||
Bugfixes
|
||||
========
|
||||
|
||||
* Fixed a regression in Django 5.0.11 that caused ``validate_ipv6_address()``
|
||||
and ``validate_ipv46_address()`` to crash when handling non-string values
|
||||
(:ticket:`36098`).
|
||||
@@ -9,4 +9,6 @@ Django 5.1.6 fixes several bugs in 5.1.5.
|
||||
Bugfixes
|
||||
========
|
||||
|
||||
* ...
|
||||
* Fixed a regression in Django 5.1.5 that caused ``validate_ipv6_address()``
|
||||
and ``validate_ipv46_address()`` to crash when handling non-string values
|
||||
(:ticket:`36098`).
|
||||
|
||||
@@ -38,6 +38,7 @@ versions of the documentation contain the release notes for any later releases.
|
||||
.. toctree::
|
||||
:maxdepth: 1
|
||||
|
||||
5.0.12
|
||||
5.0.11
|
||||
5.0.10
|
||||
5.0.9
|
||||
@@ -57,6 +58,7 @@ versions of the documentation contain the release notes for any later releases.
|
||||
.. toctree::
|
||||
:maxdepth: 1
|
||||
|
||||
4.2.19
|
||||
4.2.18
|
||||
4.2.17
|
||||
4.2.16
|
||||
|
||||
Reference in New Issue
Block a user