summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorTim Graham <timograham@gmail.com>2016-09-01 16:19:29 -0400
committerTim Graham <timograham@gmail.com>2016-09-01 16:19:49 -0400
commit3e913d214133ca92329ed95d55bd881e42d487ef (patch)
tree656a30816d1dd828afd679e5b2036968a1342d77 /docs
parent51e5ca4462064ac8869e9b3bf76890eb6ae77c98 (diff)
[1.10.x] 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. Backport of 098c07a03286b5ed133102733e67a83061647ea0 from master
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`).