diff options
| author | Claude Paroz <claude@2xlibre.net> | 2014-03-22 12:25:26 +0100 |
|---|---|---|
| committer | Claude Paroz <claude@2xlibre.net> | 2014-03-22 12:35:56 +0100 |
| commit | 4b725320481b73c2c0e638405e9d5fada32119a0 (patch) | |
| tree | 204072d1263a6c10403e789276c7acfe9e4843da /docs | |
| parent | 80f08dbdbc1f9c8b4ed75298955016feb697c4a1 (diff) | |
[1.7.x] Added release note about strip_tags improvement
Backport of 1c8dbb0cc from master.
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/releases/1.6.3.txt | 3 | ||||
| -rw-r--r-- | docs/releases/1.7.txt | 6 |
2 files changed, 9 insertions, 0 deletions
diff --git a/docs/releases/1.6.3.txt b/docs/releases/1.6.3.txt index 004e70f663..80a3c7f08a 100644 --- a/docs/releases/1.6.3.txt +++ b/docs/releases/1.6.3.txt @@ -23,3 +23,6 @@ several bugs in 1.6.2: :class:`~django.forms.IntegerField` subclasses from being overwritten by the code in their ``__init__`` method (`#22245 <http://code.djangoproject.com/ticket/22245>`_). + +* Improved :func:`~django.utils.html.strip_tags` accuracy (but it still cannot + guarantee an HTML-safe result, as stated in the documentation). diff --git a/docs/releases/1.7.txt b/docs/releases/1.7.txt index 9737d9a6a2..18b9234ab9 100644 --- a/docs/releases/1.7.txt +++ b/docs/releases/1.7.txt @@ -792,6 +792,12 @@ Tests * The database settings for testing have been collected into a dictionary named :setting:`TEST <DATABASE-TEST>`. +Utilities +^^^^^^^^^ + +* Improved :func:`~django.utils.html.strip_tags` accuracy (but it still cannot + guarantee an HTML-safe result, as stated in the documentation). + Validators ^^^^^^^^^^ |
