summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorMariusz Felisiak <felisiak.mariusz@gmail.com>2024-05-02 20:31:51 +0200
committerSarah Boyce <42296566+sarahboyce@users.noreply.github.com>2024-05-03 09:28:24 +0200
commit91a4b9a8ec2237434f06866f39c7977e889aeae6 (patch)
treeac8064738b255d93c1d1f2c46df1b1e90b8c8cf9 /docs
parent9aeb38c296c69532c7e64b5e3d706a5eb17b3f12 (diff)
Fixed #35422 -- Fixed migrations crash when altering GeneratedField referencing rename field.
Thanks Sarah Boyce for the report and Simon Charette for the implementation idea.
Diffstat (limited to 'docs')
-rw-r--r--docs/releases/5.0.5.txt3
1 files changed, 3 insertions, 0 deletions
diff --git a/docs/releases/5.0.5.txt b/docs/releases/5.0.5.txt
index 5421cc9fec..c12498173d 100644
--- a/docs/releases/5.0.5.txt
+++ b/docs/releases/5.0.5.txt
@@ -27,3 +27,6 @@ Bugfixes
* Fixed a bug in Django 5.0 that caused a migration crash when a
``GeneratedField`` was added before any of the referenced fields from its
``expression`` definition (:ticket:`35359`).
+
+* Fixed a bug in Django 5.0 that caused a migration crash when altering a
+ ``GeneratedField`` referencing a rename field (:ticket:`35422`).