summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNatalia <124304+nessita@users.noreply.github.com>2025-11-26 17:22:53 -0300
committerNatalia <124304+nessita@users.noreply.github.com>2025-11-26 20:00:57 -0300
commit2171933c5a66d9c99bb38bb5c9ecd0f68542c8a3 (patch)
tree9f035abdc1512bf3bcccc16065179f7541985a96
parent0ae15bb52e17768839d057bc1ae3d72f2866458d (diff)
[5.2.x] Refs #36743 -- Added missing release notes for 5.1.15 and 4.2.27.
The fix landed in a8cf8c292cfee98fe6cc873ca5221935f1d02271 will be backported to 5.1 and 4.2 since the 2048 limit was rolled out as part of the security release for CVE-2025-64458. Backport of 18b13cf6c48ff0a20b2a74d3b90d1fc1602608e4 from main.
-rw-r--r--docs/releases/4.2.27.txt5
-rw-r--r--docs/releases/5.1.15.txt5
2 files changed, 8 insertions, 2 deletions
diff --git a/docs/releases/4.2.27.txt b/docs/releases/4.2.27.txt
index e4a61d9568..7ffa5fa458 100644
--- a/docs/releases/4.2.27.txt
+++ b/docs/releases/4.2.27.txt
@@ -10,4 +10,7 @@ with severity "moderate", and one bug in 4.2.26.
Bugfixes
========
-* ...
+* Fixed a regression in Django 4.2.26 where ``DisallowedRedirect`` was raised
+ by :class:`~django.http.HttpResponseRedirect` and
+ :class:`~django.http.HttpResponsePermanentRedirect` for URLs longer than 2048
+ characters. The limit is now 16384 characters (:ticket:`36743`).
diff --git a/docs/releases/5.1.15.txt b/docs/releases/5.1.15.txt
index 9e1bfa91b9..2c4e029590 100644
--- a/docs/releases/5.1.15.txt
+++ b/docs/releases/5.1.15.txt
@@ -10,4 +10,7 @@ with severity "moderate", and one bug in 5.1.14.
Bugfixes
========
-* ...
+* Fixed a regression in Django 5.1.14 where ``DisallowedRedirect`` was raised
+ by :class:`~django.http.HttpResponseRedirect` and
+ :class:`~django.http.HttpResponsePermanentRedirect` for URLs longer than 2048
+ characters. The limit is now 16384 characters (:ticket:`36743`).