summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorJohannes Westphal <jojo@w-hat.de>2024-03-30 22:14:15 +0000
committerNatalia <124304+nessita@users.noreply.github.com>2024-04-01 22:14:52 -0300
commit14ab15d69ab2171ef26b295dcbd561b723b7eb7e (patch)
tree25e4b612f466eb3b0d033a95c5a4f4381f77a0ef /docs
parent7b144e7caeb58b60968f37bb4a9f221722337f1b (diff)
[5.0.x] Fixed #35344, Refs #34838 -- Corrected output_field of resolved columns for GeneratedFields in aliased tables.
Thanks Simon Charette for the review. Backport of 5f180216409d75290478c71ddb0ff8a68c91dc16 from main
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`).