diff options
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/internals/deprecation.txt | 3 | ||||
| -rw-r--r-- | docs/releases/1.8.txt | 6 |
2 files changed, 9 insertions, 0 deletions
diff --git a/docs/internals/deprecation.txt b/docs/internals/deprecation.txt index 49eaa90ccb..a0d3b8a80c 100644 --- a/docs/internals/deprecation.txt +++ b/docs/internals/deprecation.txt @@ -22,6 +22,9 @@ about each item can often be found in the release notes of two versions prior. * ``SimpleTestCase.urls`` will be removed. +* Using an incorrect count of unpacked values in the ``for`` template tag + will raise an exception rather than fail silently. + .. _deprecation-removed-in-1.9: 1.9 diff --git a/docs/releases/1.8.txt b/docs/releases/1.8.txt index 46bbbdbb3e..79b7168030 100644 --- a/docs/releases/1.8.txt +++ b/docs/releases/1.8.txt @@ -270,3 +270,9 @@ removed in Django 2.0. Use :func:`@override_settings(ROOT_URLCONF=...) Related to the previous item, the ``prefix`` argument to :func:`django.conf.urls.i18n.i18n_patterns` has been deprecated. Simply pass a list of :func:`django.conf.urls.url` instances instead. + +Using an incorrect count of unpacked values in the :ttag:`for` template tag +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + +Using an incorrect count of unpacked values in :ttag:`for` tag will raise an +exception rather than fail silently in Django 2.0. |
