summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorRussell Keith-Magee <russell@keith-magee.com>2014-03-03 19:20:48 +0800
committerRussell Keith-Magee <russell@keith-magee.com>2014-03-03 19:20:48 +0800
commitc41335fa27a23171ec8c319eaa0a713e575c1036 (patch)
tree5abbd55ba953274b6390510b09e9395720c38e76 /docs
parent21d8175242273a2371bd9374994bacdd118309d3 (diff)
Added backwards compatibliity checks to reference documentation.
Diffstat (limited to 'docs')
-rw-r--r--docs/ref/checks.txt10
1 files changed, 10 insertions, 0 deletions
diff --git a/docs/ref/checks.txt b/docs/ref/checks.txt
index d560bc3999..908a32d4c8 100644
--- a/docs/ref/checks.txt
+++ b/docs/ref/checks.txt
@@ -19,6 +19,7 @@ Django's system checks are organized using the following tags:
* ``models``: Checks governing model, field and manager definitions.
* ``signals``: Checks on signal declarations and handler registrations.
* ``admin``: Checks of any admin site declarations.
+* ``compatibility``: Flagging potential problems with version upgrades.
Some checks may be registered with multiple tags.
@@ -99,6 +100,15 @@ Signals
* **signals.E001**: <handler> was connected to the ``<signal>`` signal with a lazy reference to the ``<moel>`` sender, which has not been installed.
+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.
+
+* **1_6.W001**: Some project unittests may not execute as expected.
+* **1_6.W002**: BooleanField does not have a default value.
+
Admin
-----