summaryrefslogtreecommitdiff
path: root/docs/ref/checks.txt
diff options
context:
space:
mode:
authorTim Graham <timograham@gmail.com>2014-11-13 17:56:29 +0100
committerTim Graham <timograham@gmail.com>2014-11-13 17:56:29 +0100
commit098368d82f67715723b5bd4445a8fe92a0ceae98 (patch)
tree1b36085b498ee28e7460cb01e49b8f7b6815709a /docs/ref/checks.txt
parente541bbd0dc36a61b6eb148dc4694d9638d7bd5f2 (diff)
Added missing docs for 1_7.W001 check.
Diffstat (limited to 'docs/ref/checks.txt')
-rw-r--r--docs/ref/checks.txt7
1 files changed, 7 insertions, 0 deletions
diff --git a/docs/ref/checks.txt b/docs/ref/checks.txt
index 682d86a8c9..04c7dc4a7d 100644
--- a/docs/ref/checks.txt
+++ b/docs/ref/checks.txt
@@ -169,6 +169,13 @@ that might occur as a result of a version upgrade.
* **1_6.W001**: Some project unit tests may not execute as expected. *This
check was removed in Django 1.8 due to false positives*.
* **1_6.W002**: ``BooleanField`` does not have a default value.
+* **1_7.W001**: Django 1.7 changed the global defaults for the
+ ``MIDDLEWARE_CLASSES.``
+ ``django.contrib.sessions.middleware.SessionMiddleware``,
+ ``django.contrib.auth.middleware.AuthenticationMiddleware``, and
+ ``django.contrib.messages.middleware.MessageMiddleware`` were removed from
+ the defaults. If your project needs these middleware then you should
+ configure this setting.
Admin
-----