summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorChristophe Mehay <cmehay@student.42.fr>2018-03-01 15:26:40 +0100
committerTim Graham <timograham@gmail.com>2018-03-02 11:48:43 -0500
commite91ff6e29cfd916afd3620adf4aeab733e06dbb5 (patch)
tree8d224a65b44855b19753365eac06d94d79435b9f /docs
parent3cdc88ba5305f8653fdd1afa36ba9d4d83c426bf (diff)
[2.0.x] Fixed #29176 -- Fixed AbstractBaseUser.normalize_username() crash if username isn't a string.
Backport of 40bac28faabbacd0875e59455cd80fb1dbb16966 from master
Diffstat (limited to 'docs')
-rw-r--r--docs/releases/2.0.3.txt3
1 files changed, 3 insertions, 0 deletions
diff --git a/docs/releases/2.0.3.txt b/docs/releases/2.0.3.txt
index f4f30b5a30..61c212081b 100644
--- a/docs/releases/2.0.3.txt
+++ b/docs/releases/2.0.3.txt
@@ -28,3 +28,6 @@ Bugfixes
* Fixed crash when using a ``Window()`` expression in a subquery
(:ticket:`29172`).
+
+* Fixed ``AbstractBaseUser.normalize_username()`` crash if the ``username``
+ argument isn't a string (:ticket:`29176`).