summaryrefslogtreecommitdiff
path: root/docs/releases/1.8.6.txt
diff options
context:
space:
mode:
authorDheerendra Rathor <dheeru.rathor14@gmail.com>2015-10-28 12:24:57 +0530
committerTim Graham <timograham@gmail.com>2015-10-29 10:59:22 -0400
commit96fe90f5356971e0e51a0bc41e045dde600d7521 (patch)
tree2aea7447fc322179e3683ae1b59a83bd79adab78 /docs/releases/1.8.6.txt
parent15ef1dd478c5b6f005e5f782b7619f718ed55e84 (diff)
Fixed #25620 -- Made URLValidator prohibit URLs with consecutive dots in the domain section.
Diffstat (limited to 'docs/releases/1.8.6.txt')
-rw-r--r--docs/releases/1.8.6.txt4
1 files changed, 4 insertions, 0 deletions
diff --git a/docs/releases/1.8.6.txt b/docs/releases/1.8.6.txt
index 76eb32902d..3383e253d0 100644
--- a/docs/releases/1.8.6.txt
+++ b/docs/releases/1.8.6.txt
@@ -44,3 +44,7 @@ Bugfixes
* Added a helpful error message when Django and South migrations exist in the
same directory (:ticket:`25618`).
+
+* Fixed a regression in ``URLValidator`` that allowed URLs with consecutive
+ dots in the domain section (like ``http://example..com/``) to pass
+ (:ticket:`25620`).