summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorMarc Gibbons <1726961+marcgibbons@users.noreply.github.com>2025-12-08 09:42:43 -0500
committernessita <124304+nessita@users.noreply.github.com>2025-12-15 18:58:41 -0300
commit922c4cf972e04b1ce7ecee592231106724dcfd09 (patch)
tree3f89115c73d3c79548883831aa5c811c444e6cb5 /docs
parent0071cb1efd559d721e5882da2e18556f867eed76 (diff)
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>
Diffstat (limited to 'docs')
-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`).