summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
Diffstat (limited to 'docs')
-rw-r--r--docs/ref/checks.txt1
-rw-r--r--docs/releases/1.7.1.txt3
2 files changed, 4 insertions, 0 deletions
diff --git a/docs/ref/checks.txt b/docs/ref/checks.txt
index ca37de4385..0a2f3a7557 100644
--- a/docs/ref/checks.txt
+++ b/docs/ref/checks.txt
@@ -56,6 +56,7 @@ Models
* **models.E015**: ``ordering`` refers to the non-existent field
``<field name>``.
* **models.E017**: Proxy model ``<model>`` contains model fields.
+* **models.E020**: The ``<model>.check()`` class method is currently overridden.
Fields
~~~~~~
diff --git a/docs/releases/1.7.1.txt b/docs/releases/1.7.1.txt
index 4334525877..bda016a5c2 100644
--- a/docs/releases/1.7.1.txt
+++ b/docs/releases/1.7.1.txt
@@ -119,3 +119,6 @@ Bugfixes
* Fixed a crash while parsing cookies containing invalid content
(:ticket:`23638`).
+
+* The system check framework now raises error **models.E020** when the
+ class method ``Model.check()`` is unreachable (:ticket:`23615`).