summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorSimon Charette <charette.s@gmail.com>2025-07-24 15:18:47 -0400
committerNatalia <124304+nessita@users.noreply.github.com>2025-07-28 16:40:08 -0300
commit3031c512f0cf030dc8f99128bcb4fb9d4d6e285a (patch)
tree8692964a018a71f0346737866f43e854075b63dd /docs
parent28f33f50b2edb6a40bb2696af0eed2b9d76494cd (diff)
[5.2.x] Fixed #36522 -- Added support for filtering composite pks using a tuple of expressions.
Thanks Jacob Walls for the report, and Sarah Boyce and Mariusz Felisiak for reviews. Backport of 0a4999b422702c64e21f5a10a4d60300b7074401 from main.
Diffstat (limited to 'docs')
-rw-r--r--docs/releases/5.2.5.txt3
1 files changed, 3 insertions, 0 deletions
diff --git a/docs/releases/5.2.5.txt b/docs/releases/5.2.5.txt
index a72a3fe078..7708563857 100644
--- a/docs/releases/5.2.5.txt
+++ b/docs/releases/5.2.5.txt
@@ -12,3 +12,6 @@ Bugfixes
* Fixed a regression in Django 5.2.1 that prevented the usage of ``UNNEST``
PostgreSQL strategy of ``QuerySet.bulk_create()`` with foreign keys
(:ticket:`36502`).
+
+* Fixed a crash in Django 5.2 when filtering against a composite primary key
+ using a tuple containing expressions (:ticket:`36522`).