[1.8.x] Added missing items to deprecation timeline/1.7 release notes.
Backport of ecf109f215
from master
This commit is contained in:
parent
0c910823c1
commit
dd0707c3ca
|
@ -228,9 +228,9 @@ details on these changes.
|
||||||
|
|
||||||
* ``ModelAdmin.get_formsets`` will be removed.
|
* ``ModelAdmin.get_formsets`` will be removed.
|
||||||
|
|
||||||
* Remove the backward compatible shims introduced to rename the
|
* The backward compatibility shim introduced to rename the
|
||||||
``BaseMemcachedCache._get_memcache_timeout()`` method to
|
``BaseMemcachedCache._get_memcache_timeout()`` method to
|
||||||
``get_backend_timeout()``.
|
``get_backend_timeout()`` will be removed.
|
||||||
|
|
||||||
* The ``--natural`` and ``-n`` options for :djadmin:`dumpdata` will be removed.
|
* The ``--natural`` and ``-n`` options for :djadmin:`dumpdata` will be removed.
|
||||||
Use :djadminopt:`--natural-foreign` instead.
|
Use :djadminopt:`--natural-foreign` instead.
|
||||||
|
@ -263,8 +263,10 @@ details on these changes.
|
||||||
``requires_system_checks``. Admin validators will be replaced by admin
|
``requires_system_checks``. Admin validators will be replaced by admin
|
||||||
checks.
|
checks.
|
||||||
|
|
||||||
* ``ModelAdmin.validator`` will be removed in favor of the new ``checks``
|
* The ``ModelAdmin.validator_class`` and ``default_validator_class`` attributes
|
||||||
attribute.
|
will be removed.
|
||||||
|
|
||||||
|
* ``ModelAdmin.validate()`` will be removed.
|
||||||
|
|
||||||
* ``django.db.backends.DatabaseValidation.validate_field`` will be removed in
|
* ``django.db.backends.DatabaseValidation.validate_field`` will be removed in
|
||||||
favor of the ``check_field`` method.
|
favor of the ``check_field`` method.
|
||||||
|
@ -294,6 +296,8 @@ details on these changes.
|
||||||
|
|
||||||
* Private API ``django.test.utils.TestTemplateLoader`` will be removed.
|
* Private API ``django.test.utils.TestTemplateLoader`` will be removed.
|
||||||
|
|
||||||
|
* The ``django.contrib.contenttypes.generic`` module will be removed.
|
||||||
|
|
||||||
.. _deprecation-removed-in-1.8:
|
.. _deprecation-removed-in-1.8:
|
||||||
|
|
||||||
1.8
|
1.8
|
||||||
|
|
|
@ -1694,10 +1694,16 @@ value of the former flag is used. Defining both ``requires_system_checks`` and
|
||||||
|
|
||||||
The ``check()`` method has replaced the old ``validate()`` method.
|
The ``check()`` method has replaced the old ``validate()`` method.
|
||||||
|
|
||||||
``ModelAdmin.validator``
|
``ModelAdmin`` validators
|
||||||
~~~~~~~~~~~~~~~~~~~~~~~~
|
~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||||
|
|
||||||
``ModelAdmin.validator`` is deprecated in favor of new ``checks`` attribute.
|
The ``ModelAdmin.validator_class`` and ``default_validator_class`` attributes
|
||||||
|
are deprecated in favor of the new ``checks_class`` attribute.
|
||||||
|
|
||||||
|
The ``ModelAdmin.validate()`` method is deprecated in favor of
|
||||||
|
``ModelAdmin.check()``.
|
||||||
|
|
||||||
|
The ``django.contrib.admin.validation`` module is deprecated.
|
||||||
|
|
||||||
``django.db.backends.DatabaseValidation.validate_field``
|
``django.db.backends.DatabaseValidation.validate_field``
|
||||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||||
|
|
Loading…
Reference in New Issue