summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorFlorian Apolloner <florian@apolloner.eu>2021-04-14 13:45:24 +0200
committerMariusz Felisiak <felisiak.mariusz@gmail.com>2021-04-14 22:52:59 +0200
commit4511d1459810037b91faa5b506e4f75c77aa72be (patch)
tree3bfb1fa4009631c7baf52bb603f7897e97318641 /docs
parentca9872905559026af82000e46cde6f7dedc897b6 (diff)
Fixed #32643 -- Fixed decoding of messages in the pre-Django 3.2 format.
Thanks Jan Pieter Waagmeester for the report. Regression in 2d6179c819010f6a9d00835d5893c4593c0b85a0.
Diffstat (limited to 'docs')
-rw-r--r--docs/releases/3.2.1.txt4
1 files changed, 4 insertions, 0 deletions
diff --git a/docs/releases/3.2.1.txt b/docs/releases/3.2.1.txt
index 3de4b385c9..6b0b1576cf 100644
--- a/docs/releases/3.2.1.txt
+++ b/docs/releases/3.2.1.txt
@@ -40,3 +40,7 @@ Bugfixes
* Fixed a regression in Django 3.2 that caused a crash of ``QuerySet.update()``
on a queryset ordered by inherited or joined fields on MySQL and MariaDB
(:ticket:`32645`).
+
+* Fixed a regression in Django 3.2 that caused a crash when decoding a cookie
+ value, used by ``django.contrib.messages.storage.cookie.CookieStorage``, in
+ the pre-Django 3.2 format (:ticket:`32643`).