summaryrefslogtreecommitdiff
path: root/docs
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 11:51:14 +0200
commitcf7ef5d2589c1ca68189202f4c1f947e6a1ae53a (patch)
tree9c8199b9de94846cafebcdb199567f82597bf326 /docs
parentc1cfec6b500c16200a4c2ef5676439c3cc987bc2 (diff)
[3.0.x] Fixed #30826 -- Fixed crash of many JSONField lookups when one hand side is key transform.
Regression in 6c3dfba89215fc56fc27ef61829a6fff88be4abb. Backport of 7d1bf29977bb368d7c28e7c6eb146db3b3009ae7 from master
Diffstat (limited to 'docs')
-rw-r--r--docs/releases/1.11.26.txt5
-rw-r--r--docs/releases/2.1.14.txt5
-rw-r--r--docs/releases/2.2.7.txt5
3 files changed, 12 insertions, 3 deletions
diff --git a/docs/releases/1.11.26.txt b/docs/releases/1.11.26.txt
index a0c39b4168..1a54b47e1b 100644
--- a/docs/releases/1.11.26.txt
+++ b/docs/releases/1.11.26.txt
@@ -9,4 +9,7 @@ Django 1.11.26 fixes a regression in 1.11.25.
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`).
diff --git a/docs/releases/2.1.14.txt b/docs/releases/2.1.14.txt
index 17b001e4e5..92354462a0 100644
--- a/docs/releases/2.1.14.txt
+++ b/docs/releases/2.1.14.txt
@@ -9,4 +9,7 @@ Django 2.1.14 fixes a regression in 2.1.13.
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`).
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`).