1
0
mirror of https://github.com/django/django.git synced 2025-10-09 06:49:12 +00:00
django/docs/releases/5.2.6.txt
SaJH ace59cb83b [5.2.x] 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>

Backport of bb7a7701b1a0e8fffe14dcebf5d5bac7f176c02a from main
2025-08-29 15:36:09 -04:00

16 lines
422 B
Plaintext

==========================
Django 5.2.6 release notes
==========================
*September 3, 2025*
Django 5.2.6 fixes a security issue with severity "high" and several bugs in
5.2.5.
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`).