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:44:07 -0300
commit8eba6efbf08d3fe5d64bd92948c2c86ab4f07608 (patch)
treeeee2c3851b19af64cc1fc62c7274c2b0d3740329 /docs
parent97a78121b376e3d0818a25b5f0b2e5b5323a4c15 (diff)
[5.0.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 ac19c5a8f8..f533aa11de 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``.
.. 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`).