diff options
| author | Raphael Michel <mail@raphaelmichel.de> | 2015-11-07 11:08:16 +0100 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2015-12-08 15:46:45 -0500 |
| commit | 82976e5c3f7abf20dfd4c3cc5aa586e57edef104 (patch) | |
| tree | 89ab4bbf7b042bbbcb3dcfe24b4d370168edab42 /docs | |
| parent | d7a58f285b4c0c1b4ec032f9a7bf8f31913d0f5f (diff) | |
Fixed #25637 -- Added URLValidator hostname length validation.
URLValidator now validates the maximum length of a hostname and the
maximum length of all labels inside the hostname.
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/releases/1.10.txt | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/docs/releases/1.10.txt b/docs/releases/1.10.txt index 932d53b029..bee3b1d41f 100644 --- a/docs/releases/1.10.txt +++ b/docs/releases/1.10.txt @@ -258,7 +258,9 @@ URLs Validators ^^^^^^^^^^ -* ... +* :class:`~django.core.validators.URLValidator` now limits the length of + domain name labels to 63 characters and the total length of domain + names to 253 characters per :rfc:`1034`. Backwards incompatible changes in 1.10 ====================================== |
