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 11:05:54 -0300
commit90c3d71dfe6452a644f519425156c0f21748b711 (patch)
tree962e9e321d9d3f0dcd8e2ae1379de06958961d1b /docs
parent3d2370607dafc16f744a1dd824066a2b4c771a52 (diff)
[4.2.x] 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> Backport of f7389c4b07ceeb036436e065898e411b247bca78 from main
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 1c43523d67..4d963c263d 100644
--- a/docs/ref/django-admin.txt
+++ b/docs/ref/django-admin.txt
@@ -738,7 +738,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``.
.. versionchanged:: 4.2
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`).