summaryrefslogtreecommitdiff
path: root/docs/ref
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 20:09:51 +0100
commit1a73d6394eb738adb8b94e37bb1fbf879d948d18 (patch)
treed26cf2500fe68dec1ab684d42f5748eceb2b3491 /docs/ref
parent99ae86d1d4d64e89026a53616b11e100362f8a95 (diff)
[1.7.x] Added missing docs for 1_7.W001 check.
Backport of 098368d82f67715723b5bd4445a8fe92a0ceae98 from master
Diffstat (limited to 'docs/ref')
-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 0a2f3a7557..9aae5dc7a7 100644
--- a/docs/ref/checks.txt
+++ b/docs/ref/checks.txt
@@ -153,6 +153,13 @@ that might occur as a result of a version upgrade.
* **1_6.W001**: Some project unit tests may not execute as expected.
* **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
-----