summaryrefslogtreecommitdiff
path: root/docs/releases/4.2.2.txt
diff options
context:
space:
mode:
authorMariusz Felisiak <felisiak.mariusz@gmail.com>2023-05-17 13:14:43 +0200
committerGitHub <noreply@github.com>2023-05-17 13:14:43 +0200
commitc52f4295f254e1c14af769d22b1a5f516a941f58 (patch)
tree8770afde4c44cb372b24d468f33d61ecab5c387e /docs/releases/4.2.2.txt
parent93830abf7694e0f281931f10eeaa34993855e7dd (diff)
downloaddjango-c52f4295f254e1c14af769d22b1a5f516a941f58.tar.gz
Fixed #34568 -- Made makemigrations --update respect --name option.
Thanks David Sanders for the report.
Diffstat (limited to 'docs/releases/4.2.2.txt')
-rw-r--r--docs/releases/4.2.2.txt3
1 files changed, 3 insertions, 0 deletions
diff --git a/docs/releases/4.2.2.txt b/docs/releases/4.2.2.txt
index ca21e5f1ec..7506b8a237 100644
--- a/docs/releases/4.2.2.txt
+++ b/docs/releases/4.2.2.txt
@@ -19,3 +19,6 @@ Bugfixes
* Fixed a regression in Django 4.2 that caused a crash of ``QuerySet.defer()``
when passing a ``ManyToManyField`` or ``GenericForeignKey`` reference. While
doing so is a no-op, it was allowed in older version (:ticket:`34570`).
+
+* Fixed a bug in Django 4.2 where :option:`makemigrations --update` didn't
+ respect the ``--name`` option (:ticket:`34568`).