diff options
author | Mariusz Felisiak <felisiak.mariusz@gmail.com> | 2021-04-14 12:23:47 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-04-14 12:23:47 +0200 |
commit | 23fa29f6a6659e0f600d216de6bcb79e7f6818c9 (patch) | |
tree | ff1fc7ace7f9efaa6e9ea11ba5effd0a557fb5b4 /docs/releases/3.2.1.txt | |
parent | a77c9a4229cfef790ec18001b2cd18bd9c4aedbc (diff) | |
download | django-23fa29f6a6659e0f600d216de6bcb79e7f6818c9.tar.gz |
Fixed #32649 -- Fixed ModelAdmin.search_fields crash when searching against phrases with unbalanced quotes.
Thanks Dlis for the report.
Regression in 26a413507abb38f7eee4cf62f2ee9727fdc7bf8d.
Diffstat (limited to 'docs/releases/3.2.1.txt')
-rw-r--r-- | docs/releases/3.2.1.txt | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/docs/releases/3.2.1.txt b/docs/releases/3.2.1.txt index cc716782e5..d5486f4cc9 100644 --- a/docs/releases/3.2.1.txt +++ b/docs/releases/3.2.1.txt @@ -26,3 +26,7 @@ Bugfixes * Fixed a bug in Django 3.2 where a system check would crash on a reverse one-to-one relationships in ``CheckConstraint.check`` or ``UniqueConstraint.condition`` (:ticket:`32635`). + +* Fixed a regression in Django 3.2 that caused a crash of + :attr:`.ModelAdmin.search_fields` when searching against phrases with + unbalanced quotes (:ticket:`32649`). |