diff options
| author | Tim Graham <timograham@gmail.com> | 2015-01-18 21:23:06 -0500 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2015-01-18 21:26:19 -0500 |
| commit | 07bd23d3297c214d9119e4e4ed421184597863c5 (patch) | |
| tree | c16af8876284e1ae978fc435d1885df48a2d384d /docs/internals | |
| parent | bc3021b93bb8a5fc8176c18f5c8b820068a86366 (diff) | |
[1.7.x] Added missing items to deprecation timeline/1.7 release notes.
Backport of ecf109f2159f4581adb354263406116c2bda11d7 from master.
Diffstat (limited to 'docs/internals')
| -rw-r--r-- | docs/internals/deprecation.txt | 24 |
1 files changed, 20 insertions, 4 deletions
diff --git a/docs/internals/deprecation.txt b/docs/internals/deprecation.txt index 0472cbc398..1e2a4db37c 100644 --- a/docs/internals/deprecation.txt +++ b/docs/internals/deprecation.txt @@ -68,9 +68,9 @@ details on these changes. * ``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 - ``get_backend_timeout()``. + ``get_backend_timeout()`` will be removed. * The ``--natural`` and ``-n`` options for :djadmin:`dumpdata` will be removed. Use :djadminopt:`--natural-foreign` instead. @@ -103,8 +103,10 @@ details on these changes. ``requires_system_checks``. Admin validators will be replaced by admin checks. -* ``ModelAdmin.validator`` will be removed in favor of the new ``checks`` - attribute. +* The ``ModelAdmin.validator_class`` and ``default_validator_class`` attributes + will be removed. + +* ``ModelAdmin.validate()`` will be removed. * ``django.db.backends.DatabaseValidation.validate_field`` will be removed in favor of the ``check_field`` method. @@ -122,6 +124,20 @@ details on these changes. * Database test settings as independent entries in the database settings, prefixed by ``TEST_``, will no longer be supported. +* The `cache_choices` option to :class:`~django.forms.ModelChoiceField` and + :class:`~django.forms.ModelMultipleChoiceField` will be removed. + +* The default value of the + :attr:`RedirectView.permanent <django.views.generic.base.RedirectView.permanent>` + attribute will change from ``True`` to ``False``. + +* ``django.contrib.sitemaps.FlatPageSitemap`` will be removed in favor of + ``django.contrib.flatpages.sitemaps.FlatPageSitemap``. + +* Private API ``django.test.utils.TestTemplateLoader`` will be removed. + +* The ``django.contrib.contenttypes.generic`` module will be removed. + .. _deprecation-removed-in-1.8: 1.8 |
