summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorNatalia <124304+nessita@users.noreply.github.com>2025-06-09 09:59:11 -0300
committerNatalia <124304+nessita@users.noreply.github.com>2025-06-09 17:39:25 -0300
commitcc5079730a50e77590d465563807871b8f230ff5 (patch)
treebe3aa22b7a1844bb24afacc0cda4c8f439081384 /docs
parent6fc620b4a8e91839b93af2b52d80bdbd5f8a1fcc (diff)
[5.2.x] 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. Backport of cf5f36bf903a2854f5e395149cee707115b83744 from main.
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`).