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-15 07:58:48 +0200
commit539d005aa5fb496f0a648a2385465eca06c604e9 (patch)
treed2fdd48674a32cca0117bdc075752d94836daa33 /docs
parent208e72276a3e12a4e7998b9a1219bc96a16cf7b8 (diff)
[3.2.x] Fixed #32643 -- Fixed decoding of messages in the pre-Django 3.2 format.
Thanks Jan Pieter Waagmeester for the report. Regression in 2d6179c819010f6a9d00835d5893c4593c0b85a0. Backport of 4511d1459810037b91faa5b506e4f75c77aa72be from main.
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`).