summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorNatalia <124304+nessita@users.noreply.github.com>2025-06-09 09:59:11 -0300
committernessita <124304+nessita@users.noreply.github.com>2025-06-09 17:37:40 -0300
commitcf5f36bf903a2854f5e395149cee707115b83744 (patch)
tree3d6aca3c5eda1a4f58079c1ce1b76d7d4c478069 /docs
parent8fd21b0da35697591e86f4eab0035c4360a45144 (diff)
Fixed #36446 -- Restored "q" in internal MediaType.params property.
The "q" key was removed while addressing ticket #36411. Despite `MediaType.params` is undocumented and considered internal, it was used in third-party projects (Zulip reported breakage), so this work restored the `q` key in `params`. Thanks Anders Kaseorg for the report. Regression in c075508b4de8edf9db553b409f8a8ed2f26ecead.
Diffstat (limited to 'docs')
-rw-r--r--docs/releases/5.2.3.txt3
1 files changed, 3 insertions, 0 deletions
diff --git a/docs/releases/5.2.3.txt b/docs/releases/5.2.3.txt
index 927ec16d34..70aa5aedb0 100644
--- a/docs/releases/5.2.3.txt
+++ b/docs/releases/5.2.3.txt
@@ -17,3 +17,6 @@ Bugfixes
* Fixed a regression in Django 5.2 that caused :meth:`.QuerySet.bulk_update` to
incorrectly convert ``None`` to JSON ``null`` instead of SQL ``NULL`` for
``JSONField`` (:ticket:`36419`).
+
+* Fixed a regression in Django 5.2.2 where the ``q`` parameter was removed from
+ the internal ``django.http.MediaType.params`` property (:ticket:`36446`).