summaryrefslogtreecommitdiff
path: root/docs/internals
diff options
context:
space:
mode:
authorRussell Keith-Magee <russell@keith-magee.com>2014-01-20 10:45:21 +0800
committerRussell Keith-Magee <russell@keith-magee.com>2014-01-20 10:45:21 +0800
commitd818e0c9b2b88276cc499974f9eee893170bf0a8 (patch)
tree13ef631f7ba50bf81fa36f484abf925ba8172651 /docs/internals
parent6e7bd0b63bd01949ac4fd647f2597639bed0c3a2 (diff)
Fixed #16905 -- Added extensible checks (nee validation) framework
This is the result of Christopher Medrela's 2013 Summer of Code project. Thanks also to Preston Holmes, Tim Graham, Anssi Kääriäinen, Florian Apolloner, and Alex Gaynor for review notes along the way. Also: Fixes #8579, fixes #3055, fixes #19844.
Diffstat (limited to 'docs/internals')
-rw-r--r--docs/internals/deprecation.txt10
1 files changed, 10 insertions, 0 deletions
diff --git a/docs/internals/deprecation.txt b/docs/internals/deprecation.txt
index 34e974cea3..d8d0110a74 100644
--- a/docs/internals/deprecation.txt
+++ b/docs/internals/deprecation.txt
@@ -234,6 +234,16 @@ these changes.
* Passing callable arguments to querysets will no longer be possible.
+* ``BaseCommand.requires_model_validation`` will be removed in favor of
+ ``requires_system_checks``. Admin validators will be replaced by admin
+ checks.
+
+* ``ModelAdmin.validator`` will be removed in favor of the new ``checks``
+ attribute.
+
+* ``django.db.backends.DatabaseValidation.validate_field`` will be removed in
+ favor of the ``check_field`` method.
+
2.0
---