summaryrefslogtreecommitdiff
path: root/docs/releases/6.0.1.txt
diff options
context:
space:
mode:
authorMarc Gibbons <1726961+marcgibbons@users.noreply.github.com>2025-12-08 09:42:43 -0500
committerNatalia <124304+nessita@users.noreply.github.com>2025-12-15 19:00:08 -0300
commitbe26ac85fdf06a7a8a655f6e7000b1263890717d (patch)
tree6e980533be257c369347ec335c35e74f195f45e2 /docs/releases/6.0.1.txt
parent6d4ccca48bd399e2e4a440b03d8d85ba5f2ea1ba (diff)
[6.0.x] Fixed #36783 -- Ensured proper handling of multi-value QueryDicts in querystring template tag.
Co-authored-by: Jacob Walls <jacobtylerwalls@gmail.com> Co-authored-by: Natalia <124304+nessita@users.noreply.github.com> Backport of 922c4cf972e04b1ce7ecee592231106724dcfd09 from main.
Diffstat (limited to 'docs/releases/6.0.1.txt')
-rw-r--r--docs/releases/6.0.1.txt4
1 files changed, 3 insertions, 1 deletions
diff --git a/docs/releases/6.0.1.txt b/docs/releases/6.0.1.txt
index 946102030c..72c35b3e69 100644
--- a/docs/releases/6.0.1.txt
+++ b/docs/releases/6.0.1.txt
@@ -9,4 +9,6 @@ Django 6.0.1 fixes several bugs in 6.0.
Bugfixes
========
-* ...
+* Fixed a regression in Django 6.0 where :ttag:`querystring` mishandled
+ multi-value :class:`~django.http.QueryDict` keys, both by only preserving the
+ last value and by incorrectly handling ``None`` values (:ticket:`36783`).