diff options
| author | David Wolever <david@wolever.net> | 2014-06-09 18:15:21 -0400 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2015-07-07 11:44:37 -0400 |
| commit | 0d71349773f8d2e8160d76b5c91a1896ece772db (patch) | |
| tree | 3445a0b1078102f12607afb33163f5e77743c5dc /docs | |
| parent | 6bd8462380e1c078969867d9a0f4871fcdbe52b4 (diff) | |
Fixed #22804 -- Added warning for unsafe value of 'sep' in Signer
Thanks Jaap Roes for completing the patch.
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/internals/deprecation.txt | 3 | ||||
| -rw-r--r-- | docs/releases/1.9.txt | 3 |
2 files changed, 6 insertions, 0 deletions
diff --git a/docs/internals/deprecation.txt b/docs/internals/deprecation.txt index 67f2982292..63171d09b5 100644 --- a/docs/internals/deprecation.txt +++ b/docs/internals/deprecation.txt @@ -247,6 +247,9 @@ details on these changes. * Support for the syntax of ``{% cycle %}`` that uses comma-separated arguments will be removed. +* The warning that :class:`~django.core.signing.Signer` issues when given an + invalid separator will become an exception. + .. _deprecation-removed-in-1.9: 1.9 diff --git a/docs/releases/1.9.txt b/docs/releases/1.9.txt index b5c515db09..4ad98e05a2 100644 --- a/docs/releases/1.9.txt +++ b/docs/releases/1.9.txt @@ -974,6 +974,9 @@ Miscellaneous ``django.utils.feedgenerator.RssFeed.mime_type`` attributes are deprecated in favor of ``content_type``. +* :class:`~django.core.signing.Signer` now issues a warning if an invalid + separator is used. This will become an exception in Django 1.10. + .. removed-features-1.9: Features removed in 1.9 |
