summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorTim Graham <timograham@gmail.com>2016-09-01 16:19:29 -0400
committerGitHub <noreply@github.com>2016-09-01 16:19:29 -0400
commit098c07a03286b5ed133102733e67a83061647ea0 (patch)
tree508e99a5253adc4bf392f8a7aea098eba46c7e97 /docs
parent32c02f2a0eaf66e4744f9904eb2a743b87300257 (diff)
Fixed #27142, #27110 -- Made makemigrations consistency checks respect database routers.
Partially reverted refs #27054 except for one of the tests as this solution supersedes that one. Thanks Shai Berger for the review.
Diffstat (limited to 'docs')
-rw-r--r--docs/releases/1.10.1.txt4
1 files changed, 3 insertions, 1 deletions
diff --git a/docs/releases/1.10.1.txt b/docs/releases/1.10.1.txt
index 6dbf40de02..80313a92b5 100644
--- a/docs/releases/1.10.1.txt
+++ b/docs/releases/1.10.1.txt
@@ -55,7 +55,9 @@ Bugfixes
* Reallowed the ``{% for %}`` tag to unpack any iterable (:ticket:`27058`).
-* Fixed ``makemigrations`` crash if a database is read-only (:ticket:`27054`).
+* Made ``makemigrations`` skip inconsistent history checks on non-default
+ databases if database routers aren't in use or if no apps can be migrated
+ to the database (:ticket:`27054`, :ticket:`27110`, :ticket:`27142`).
* Removed duplicated managers in ``Model._meta.managers`` (:ticket:`27073`).