summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorTommy Allen <tommy@esdf.io>2024-11-26 15:15:00 -0500
committerNatalia <124304+nessita@users.noreply.github.com>2024-11-26 17:16:30 -0300
commit4b262408aa6dadea9ca80c4e1ccc9a046fb07583 (patch)
tree5e447b0c71dcd1610dd3eea5edf64a204a6ca7b8 /docs
parent08ac8c1b4416d1fba39f86dd328017ca74abce67 (diff)
[5.1.x] Fixed #35942 -- Fixed createsuperuser crash on Python 3.13+ when username is unavailable.
Thanks Mariusz Felisiak and Jacob Tyler Walls for reviews. Backport of c635decb00ac957daf81c08541cdc9cf46f6d86d from main.
Diffstat (limited to 'docs')
-rw-r--r--docs/releases/5.1.4.txt3
1 files changed, 2 insertions, 1 deletions
diff --git a/docs/releases/5.1.4.txt b/docs/releases/5.1.4.txt
index bee40f243e..468bd46381 100644
--- a/docs/releases/5.1.4.txt
+++ b/docs/releases/5.1.4.txt
@@ -9,4 +9,5 @@ Django 5.1.4 fixes several bugs in 5.1.3.
Bugfixes
========
-* ...
+* Fixed a crash in ``createsuperuser`` on Python 3.13+ caused by an unhandled
+ ``OSError`` when the username could not be determined (:ticket:`35942`).