summaryrefslogtreecommitdiff
path: root/docs/releases/2.0.3.txt
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:32:53 -0500
commit40bac28faabbacd0875e59455cd80fb1dbb16966 (patch)
treeb21e394a71aab4f70fbe3141a37dda938ecf8973 /docs/releases/2.0.3.txt
parenta2e97abd8149e78071806a52282a24c27fe8236b (diff)
Fixed #29176 -- Fixed AbstractBaseUser.normalize_username() crash if username isn't a string.
Diffstat (limited to 'docs/releases/2.0.3.txt')
-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`).