summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorBaptiste Mispelon <bmispelon@gmail.com>2019-11-24 23:09:07 +0100
committerMariusz Felisiak <felisiak.mariusz@gmail.com>2019-11-26 09:19:39 +0100
commit7873d3757d3075d36cf68771bf4f584ba3386e37 (patch)
treef06484ef36bf51ee9ac275f37cc3661945389d97 /docs
parent2af606003a97559cd2c91b2ca0e41b326752303b (diff)
[2.2.x] Fixed #31031 -- Fixed data loss in admin changelist view when formset's prefix contains regex special chars.
Regression in b18650a2634890aa758abae2f33875daa13a9ba3. Backport of 52936efacec4df05df2d9872c09c3332335bf21b from master
Diffstat (limited to 'docs')
-rw-r--r--docs/releases/2.2.8.txt4
1 files changed, 3 insertions, 1 deletions
diff --git a/docs/releases/2.2.8.txt b/docs/releases/2.2.8.txt
index 0c2b3eabdf..e9bd1ed1cb 100644
--- a/docs/releases/2.2.8.txt
+++ b/docs/releases/2.2.8.txt
@@ -10,4 +10,6 @@ Django 2.2.8 fixes several bugs in 2.2.7 and adds compatibility with Python
Bugfixes
========
-* ...
+* Fixed a data loss possibility in the admin changelist view when a custom
+ :ref:`formset's prefix <formset-prefix>` contains regular expression special
+ characters, e.g. `'$'` (:ticket:`31031`).