summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorTimothy Allen <flipper@peregrinesalon.com>2018-11-14 15:13:34 -0500
committerTim Graham <timograham@gmail.com>2018-11-14 15:13:34 -0500
commite81955401885a93a459bcc130642b6ea5bf4ba4d (patch)
tree96024c343e3b927d037c3e167bb87a10cc13e293 /docs
parent6d4e5feb79f7eabe8a0c7c4b87f25b1a7f87ca0b (diff)
Fixed #29939 -- Increased Group.name max_length to 150 characters.
Diffstat (limited to 'docs')
-rw-r--r--docs/ref/contrib/auth.txt8
-rw-r--r--docs/releases/2.2.txt2
2 files changed, 8 insertions, 2 deletions
diff --git a/docs/ref/contrib/auth.txt b/docs/ref/contrib/auth.txt
index 2f45dec574..5e40aa7fc2 100644
--- a/docs/ref/contrib/auth.txt
+++ b/docs/ref/contrib/auth.txt
@@ -382,8 +382,12 @@ Fields
.. attribute:: name
- Required. 80 characters or fewer. Any characters are permitted. Example:
- ``'Awesome Users'``.
+ Required. 150 characters or fewer. Any characters are permitted.
+ Example: ``'Awesome Users'``.
+
+ .. versionchanged:: 2.2
+
+ The ``max_length`` increased from 80 to 150 characters.
.. attribute:: permissions
diff --git a/docs/releases/2.2.txt b/docs/releases/2.2.txt
index a8bd9ab488..d00e2fe6f9 100644
--- a/docs/releases/2.2.txt
+++ b/docs/releases/2.2.txt
@@ -384,6 +384,8 @@ Miscellaneous
renders ``<option>`` values of ``unknown``, ``true``, and ``false`` instead
of ``1``, ``2``, and ``3``. For backwards compatibility, the old values are
still accepted as data.
+* :attr:`Group.name <django.contrib.auth.models.Group.name>` ``max_length``
+ is increased from 80 to 150 characters.
.. _deprecated-features-2.2: