summaryrefslogtreecommitdiff
path: root/docs/releases/2.2.7.txt
diff options
context:
space:
mode:
authorLouise Grandjonc <louve.grandjonc@gmail.com>2019-10-01 16:25:40 -0700
committerMariusz Felisiak <felisiak.mariusz@gmail.com>2019-10-11 10:55:22 +0200
commit7d1bf29977bb368d7c28e7c6eb146db3b3009ae7 (patch)
tree47ffb85fe9e1bc38c23a8bb532c587d82b15c95d /docs/releases/2.2.7.txt
parent6a75cea76a98c08bf2e20d787be9b14c2cd94860 (diff)
Fixed #30826 -- Fixed crash of many JSONField lookups when one hand side is key transform.
Regression in 6c3dfba89215fc56fc27ef61829a6fff88be4abb.
Diffstat (limited to 'docs/releases/2.2.7.txt')
-rw-r--r--docs/releases/2.2.7.txt5
1 files changed, 4 insertions, 1 deletions
diff --git a/docs/releases/2.2.7.txt b/docs/releases/2.2.7.txt
index 001af88176..f39587e43e 100644
--- a/docs/releases/2.2.7.txt
+++ b/docs/releases/2.2.7.txt
@@ -9,4 +9,7 @@ Django 2.2.7 fixes several bugs in 2.2.6.
Bugfixes
========
-* ...
+* Fixed a crash when using a ``contains``, ``contained_by``, ``has_key``,
+ ``has_keys``, or ``has_any_keys`` lookup on
+ :class:`~django.contrib.postgres.fields.JSONField`, if the right or left hand
+ side of an expression is a key transform (:ticket:`30826`).