summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorMariusz Felisiak <felisiak.mariusz@gmail.com>2020-11-25 12:19:45 +0100
committerGitHub <noreply@github.com>2020-11-25 12:19:45 +0100
commitf5e5aac59ebbcea46b98d37834915de0f43d7cc8 (patch)
tree69984f50fddece7d6c443cee1b867e40754ee1d5 /docs
parentb996424199cca58f64b77faeaa367b7e7efb9776 (diff)
Fixed #32224 -- Avoided suppressing connection errors in supports_json_field on SQLite.`
Regression in 6789ded0a6ab797f0dcdfa6ad5d1cfa46e23abcd. Thanks Juan Garcia Alvite for the report.
Diffstat (limited to 'docs')
-rw-r--r--docs/releases/3.1.4.txt4
1 files changed, 4 insertions, 0 deletions
diff --git a/docs/releases/3.1.4.txt b/docs/releases/3.1.4.txt
index 4d9e949791..080db4f290 100644
--- a/docs/releases/3.1.4.txt
+++ b/docs/releases/3.1.4.txt
@@ -24,3 +24,7 @@ Bugfixes
* Fixed a regression in Django 3.1 that caused the incorrect grouping by a
``Q`` object annotation (:ticket:`32200`).
+
+* Fixed a regression in Django 3.1 that caused suppressing connection errors
+ when :class:`~django.db.models.JSONField` is used on SQLite
+ (:ticket:`32224`).