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:51:29 -0500
commit07ffee641174b4c43986cd516fc39eec2d91a90e (patch)
tree077b6a480f767747140ce2e0186d2bf89856f97a /docs
parent277b39cbbc5fe08740f74891cbf11ab9c3cf639b (diff)
[1.9.x] Fixed #26204 -- Reallowed dashes in top-level domains for URLValidator.
Thanks Shai Berger for the review. Backport of b1afebf882db5296cd9dcea26ee66d5250922e53 from master
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`).