summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorDavid Wobrock <david.wobrock@gmail.com>2022-05-17 11:32:30 +0200
committerMariusz Felisiak <felisiak.mariusz@gmail.com>2022-05-19 07:53:06 +0200
commit4a86883e0a7ed349d7ce3e91bde5e8e321effa1f (patch)
treeb20e904264cc7766c6d0be90fb482a509f0c5270 /docs
parentde9c08c0f3d79aba7fafbc5d8dea879d1fc5c5ca (diff)
[4.0.x] Fixed #33705 -- Fixed crash when using IsNull() lookup in filters.
Thanks Florian Apolloner for the report. Thanks Simon Charette for the review. Backport of 9f5548952906c6ea97200c016734b4f519520a64 from main
Diffstat (limited to 'docs')
-rw-r--r--docs/releases/4.0.5.txt3
1 files changed, 3 insertions, 0 deletions
diff --git a/docs/releases/4.0.5.txt b/docs/releases/4.0.5.txt
index 8caf03bc5d..b626f9ef36 100644
--- a/docs/releases/4.0.5.txt
+++ b/docs/releases/4.0.5.txt
@@ -11,3 +11,6 @@ Bugfixes
* Fixed a bug in Django 4.0 where not all :setting:`OPTIONS <CACHES-OPTIONS>`
were passed to a Redis client (:ticket:`33681`).
+
+* Fixed a bug in Django 4.0 that caused a crash of ``QuerySet.filter()`` on
+ ``IsNull()`` expressions (:ticket:`33705`).