summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorSaJH <wogur981208@gmail.com>2025-08-30 00:45:02 +0900
committerJacob Walls <jacobtylerwalls@gmail.com>2025-08-29 15:33:44 -0400
commitbb7a7701b1a0e8fffe14dcebf5d5bac7f176c02a (patch)
tree57ed2e3a56558e62615155fbbab51a1eb1137f29 /docs
parent2d453a2a683d73c64dc32286685eb40cbca7c425 (diff)
Fixed #36431 -- Returned tuples for multi-column ForeignObject in values()/values_list().
Thanks Jacob Walls and Simon Charette for tests. Signed-off-by: SaJH <wogur981208@gmail.com>
Diffstat (limited to 'docs')
-rw-r--r--docs/releases/5.2.6.txt4
1 files changed, 3 insertions, 1 deletions
diff --git a/docs/releases/5.2.6.txt b/docs/releases/5.2.6.txt
index c5d79894ff..69646c8e10 100644
--- a/docs/releases/5.2.6.txt
+++ b/docs/releases/5.2.6.txt
@@ -10,4 +10,6 @@ Django 5.2.6 fixes a security issue with severity "high" and several bugs in
Bugfixes
========
-* ...
+* Fixed a bug where using ``QuerySet.values()`` or ``values_list()`` with a
+ ``ForeignObject`` composed of multiple fields returned incorrect results
+ instead of tuples of the referenced fields (:ticket:`36431`).