summaryrefslogtreecommitdiff
path: root/docs
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 11:14:20 -0400
commit6bb9f51ab8e3cc56b05238ea012763ba775ab896 (patch)
treef6235205fede6a3cde5d0b8664e16deecd6c5e60 /docs
parent6fb9424ff034b45cee3f16eafda3e4629545ce4f (diff)
[1.9.x] Fixed #25620 -- Made URLValidator prohibit URLs with consecutive dots in the domain section.
Backport of 96fe90f5356971e0e51a0bc41e045dde600d7521 from master
Diffstat (limited to 'docs')
-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`).