summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorTim Graham <timograham@gmail.com>2016-02-11 10:39:53 -0500
committerTim Graham <timograham@gmail.com>2016-02-18 19:06:49 -0500
commitb1afebf882db5296cd9dcea26ee66d5250922e53 (patch)
tree7feb8fa2238e9547c4fcfb789669f14ae680c0b6 /docs
parentd58aaa24e31f10e56a7f05a4451cd06a3cc6e65d (diff)
Fixed #26204 -- Reallowed dashes in top-level domains for URLValidator.
Thanks Shai Berger for the review.
Diffstat (limited to 'docs')
-rw-r--r--docs/releases/1.8.10.txt3
-rw-r--r--docs/releases/1.9.3.txt3
2 files changed, 6 insertions, 0 deletions
diff --git a/docs/releases/1.8.10.txt b/docs/releases/1.8.10.txt
index b29000eb20..b63ae2abdc 100644
--- a/docs/releases/1.8.10.txt
+++ b/docs/releases/1.8.10.txt
@@ -21,3 +21,6 @@ Bugfixes
* Fixed :class:`~django.contrib.postgres.fields.RangeField` and
:class:`~django.contrib.postgres.fields.ArrayField` serialization with
``None`` values (:ticket:`26215`).
+
+* Reallowed dashes in top-level domain names of URLs checked by
+ ``URLValidator`` to fix a regression in Django 1.8 (:ticket:`26204`).
diff --git a/docs/releases/1.9.3.txt b/docs/releases/1.9.3.txt
index b250bb247e..a7c2b1eba5 100644
--- a/docs/releases/1.9.3.txt
+++ b/docs/releases/1.9.3.txt
@@ -34,3 +34,6 @@ Bugfixes
* Fixed a crash when filtering by a ``Decimal`` in ``RawQuery``
(:ticket:`26219`).
+
+* Reallowed dashes in top-level domain names of URLs checked by
+ ``URLValidator`` to fix a regression in Django 1.8 (:ticket:`26204`).