diff options
| author | Mariusz Felisiak <felisiak.mariusz@gmail.com> | 2020-08-26 22:13:37 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-08-26 22:13:37 +0200 |
| commit | 1251772cb83aa4106f526fe00738e51c0eb59122 (patch) | |
| tree | c66f2d999b35345e018604a23191543ec9b0e88b /docs | |
| parent | 9c92924cd5d164701e2514e1c2d6574126bd7cc2 (diff) | |
Fixed #31936 -- Fixed __in lookup on key transforms for JSONField.
This resolves an issue on databases without a native JSONField
(MariaDB, MySQL, SQLite, Oracle), where values must be wrapped.
Thanks Sébastien Pattyn for the report.
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/releases/3.1.1.txt | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/docs/releases/3.1.1.txt b/docs/releases/3.1.1.txt index 6359f181fa..83ff2b07d2 100644 --- a/docs/releases/3.1.1.txt +++ b/docs/releases/3.1.1.txt @@ -39,3 +39,7 @@ Bugfixes * Enforced thread sensitivity of the :class:`MiddlewareMixin.process_request() <django.utils.deprecation.MiddlewareMixin>` and ``process_response()`` hooks when in an async context (:ticket:`31905`). + +* Fixed ``__in`` lookup on key transforms for + :class:`~django.db.models.JSONField` with MariaDB, MySQL, Oracle, and SQLite + (:ticket:`31936`). |
