diff options
| author | Mariusz Felisiak <felisiak.mariusz@gmail.com> | 2025-01-14 23:08:50 +0100 |
|---|---|---|
| committer | nessita <124304+nessita@users.noreply.github.com> | 2025-01-15 13:46:06 -0300 |
| commit | b3c5830769d8a5dbf2f974da7116fe503c9454d9 (patch) | |
| tree | c8cad631c1f0307b3ee56d956a4192c9fde179b2 /docs | |
| parent | 1602666b79ab438930b74b576f2fa1b6bcf0377b (diff) | |
Fixed #36098 -- Fixed validate_ipv6_address()/validate_ipv46_address() crash for non-string values.
Regression in ca2be7724e1244a4cb723de40a070f873c6e94bf.
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/releases/4.2.19.txt | 14 | ||||
| -rw-r--r-- | docs/releases/5.0.12.txt | 14 | ||||
| -rw-r--r-- | docs/releases/5.1.6.txt | 4 | ||||
| -rw-r--r-- | docs/releases/index.txt | 2 |
4 files changed, 33 insertions, 1 deletions
diff --git a/docs/releases/4.2.19.txt b/docs/releases/4.2.19.txt new file mode 100644 index 0000000000..91bc8e5842 --- /dev/null +++ b/docs/releases/4.2.19.txt @@ -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`). diff --git a/docs/releases/5.0.12.txt b/docs/releases/5.0.12.txt new file mode 100644 index 0000000000..1e1f0f2a95 --- /dev/null +++ b/docs/releases/5.0.12.txt @@ -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`). diff --git a/docs/releases/5.1.6.txt b/docs/releases/5.1.6.txt index fa60de4c8d..3b23192033 100644 --- a/docs/releases/5.1.6.txt +++ b/docs/releases/5.1.6.txt @@ -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`). diff --git a/docs/releases/index.txt b/docs/releases/index.txt index 8190a47a14..11059e5da2 100644 --- a/docs/releases/index.txt +++ b/docs/releases/index.txt @@ -45,6 +45,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 @@ -64,6 +65,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 |
