summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
Diffstat (limited to 'docs')
-rw-r--r--docs/internals/deprecation.txt5
1 files changed, 5 insertions, 0 deletions
diff --git a/docs/internals/deprecation.txt b/docs/internals/deprecation.txt
index 2473d2b4f7..280187b368 100644
--- a/docs/internals/deprecation.txt
+++ b/docs/internals/deprecation.txt
@@ -59,6 +59,11 @@ details on these changes.
* Calling :meth:`.QuerySet.values_list` with ``flat=True`` and no field name
will raise ``TypeError``.
+* The use of ``None`` when querying a :class:`~django.db.models.JSONField`
+ top-level value will compile to SQL ``IS NULL``. Use
+ :class:`~django.db.models.JSONNull` to query for a JSON ``null`` value
+ instead.
+
.. _deprecation-removed-in-6.1:
6.1