summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorMariusz Felisiak <felisiak.mariusz@gmail.com>2022-02-16 21:09:24 +0100
committerGitHub <noreply@github.com>2022-02-16 21:09:24 +0100
commit1e2e1be02bdf0fe4add0d0279dbca1d74ae28ad7 (patch)
treec71659b8d9fb26e88627a29930178dd9037c9a30 /docs
parent35c2474f168fd10ac50886024d5879de81be5bd3 (diff)
Fixed #33515 -- Prevented recreation of migration for ManyToManyField to lowercased swappable setting.
Thanks Chris Lee for the report. Regression in 43289707809c814a70f0db38ca4f82f35f43dbfd. Refs #23916.
Diffstat (limited to 'docs')
-rw-r--r--docs/releases/4.0.3.txt4
1 files changed, 3 insertions, 1 deletions
diff --git a/docs/releases/4.0.3.txt b/docs/releases/4.0.3.txt
index 2ef642fe5e..17e9f65074 100644
--- a/docs/releases/4.0.3.txt
+++ b/docs/releases/4.0.3.txt
@@ -12,4 +12,6 @@ reformatted with `black`_.
Bugfixes
========
-* ...
+* Prevented, following a regression in Django 4.0.1, :djadmin:`makemigrations`
+ from generating infinite migrations for a model with ``ManyToManyField`` to
+ a lowercased swappable model such as ``'auth.user'`` (:ticket:`33515`).