summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorAdam Johnson <me@adamj.eu>2023-11-08 22:29:07 +0000
committerNatalia <124304+nessita@users.noreply.github.com>2023-11-09 10:03:19 -0300
commitf7389c4b07ceeb036436e065898e411b247bca78 (patch)
tree0fcf82ebb0f5dc5776747a60031a220b3d4875de /docs
parent427f0ed98d7ecf4381cebd4f7773f761e2446851 (diff)
Fixed #34457 -- Restored output for makemigrations --check.
Co-authored-by: David Sanders <shang.xiao.sanders@gmail.com> Co-authored-by: Natalia <124304+nessita@users.noreply.github.com>
Diffstat (limited to 'docs')
-rw-r--r--docs/ref/django-admin.txt2
-rw-r--r--docs/releases/4.2.8.txt3
2 files changed, 3 insertions, 2 deletions
diff --git a/docs/ref/django-admin.txt b/docs/ref/django-admin.txt
index 86cac790fa..7f3fa271c8 100644
--- a/docs/ref/django-admin.txt
+++ b/docs/ref/django-admin.txt
@@ -742,7 +742,7 @@ Generate migration files without Django version and timestamp header.
.. django-admin-option:: --check
Makes ``makemigrations`` exit with a non-zero status when model changes without
-migrations are detected.
+migrations are detected. Implies ``--dry-run``.
.. django-admin-option:: --scriptable
diff --git a/docs/releases/4.2.8.txt b/docs/releases/4.2.8.txt
index b8bf62cdc9..5804589408 100644
--- a/docs/releases/4.2.8.txt
+++ b/docs/releases/4.2.8.txt
@@ -9,4 +9,5 @@ Django 4.2.8 fixes several bugs in 4.2.7.
Bugfixes
========
-* ...
+* Fixed a regression in Django 4.2 that caused :option:`makemigrations --check`
+ to stop displaying pending migrations (:ticket:`34457`).