summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdam Johnson <me@adamj.eu>2017-10-30 12:39:42 -0400
committerTim Graham <timograham@gmail.com>2017-10-30 12:42:47 -0400
commit1f4e9935ef2bfb919cd05ab1a24cf2191048c3d8 (patch)
tree1880f926c2879b0825d72b02a67eeebf3293249d
parentea901eb9ad951b551ef28ab6c68296ca5888a1cb (diff)
[2.0.x] Removed docs for obsolete compatibility checks.
Backport of f8946fbb5d7e8eb6c8ca7481b0cd4e78627ef8cf from master
-rw-r--r--docs/ref/checks.txt26
1 files changed, 3 insertions, 23 deletions
diff --git a/docs/ref/checks.txt b/docs/ref/checks.txt
index 45bef40688..aa5b3a4716 100644
--- a/docs/ref/checks.txt
+++ b/docs/ref/checks.txt
@@ -95,30 +95,10 @@ Core system checks
Backwards compatibility
-----------------------
-The following checks are performed to warn the user of any potential problems
-that might occur as a result of a version upgrade.
+Compatibility checks warn of potential problems that might occur after
+upgrading Django.
-* **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. *This
- check was removed in Django 1.8 due to false positives*.
-* **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. *This check was removed in Django 1.9*.
-* **1_8.W001**: The standalone ``TEMPLATE_*`` settings were deprecated in
- Django 1.8 and the :setting:`TEMPLATES` dictionary takes precedence. You must
- put the values of the following settings into your defaults ``TEMPLATES``
- dict: ``TEMPLATE_DIRS``, ``TEMPLATE_CONTEXT_PROCESSORS``, ``TEMPLATE_DEBUG``,
- ``TEMPLATE_LOADERS``, ``TEMPLATE_STRING_IF_INVALID``. *This check was removed
- in Django 2.0*.
-* **1_10.W001**: The ``MIDDLEWARE_CLASSES`` setting is deprecated in Django
- 1.10 and the :setting:`MIDDLEWARE` setting takes precedence. Since you've
- set ``MIDDLEWARE``, the value of ``MIDDLEWARE_CLASSES`` is ignored. *This
- check was removed in Django 2.0*.
+Currently, there aren't any of these checks.
Caches
------