summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorJohannes Westphal <jojo@w-hat.de>2024-03-30 22:14:15 +0000
committerJohannes Westphal <jojo@w-hat.de>2024-04-01 18:54:38 +0100
commit5f180216409d75290478c71ddb0ff8a68c91dc16 (patch)
treefa0c74e0aae0d68b78649a829f67a916747e3fc3 /docs
parent425b26092f038accd2a5c5fc5a9bd3f82d4dd847 (diff)
Fixed #35344, Refs #34838 -- Corrected output_field of resolved columns for GeneratedFields in aliased tables.
Thanks Simon Charette for the review.
Diffstat (limited to 'docs')
-rw-r--r--docs/releases/5.0.4.txt3
1 files changed, 3 insertions, 0 deletions
diff --git a/docs/releases/5.0.4.txt b/docs/releases/5.0.4.txt
index 6503f1ada3..6872d5998a 100644
--- a/docs/releases/5.0.4.txt
+++ b/docs/releases/5.0.4.txt
@@ -21,3 +21,6 @@ Bugfixes
* Fixed a bug in Django 5.0 that caused a migration crash on PostgreSQL 15+
when adding a partial ``UniqueConstraint`` with ``nulls_distinct``
(:ticket:`35329`).
+
+* Fixed a crash in Django 5.0 when performing queries involving table aliases
+ and lookups on a ``GeneratedField`` of the aliased table (:ticket:`35344`).