diff options
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/ref/models/querysets.txt | 5 | ||||
| -rw-r--r-- | docs/releases/4.0.txt | 3 |
2 files changed, 3 insertions, 5 deletions
diff --git a/docs/ref/models/querysets.txt b/docs/ref/models/querysets.txt index eca0caf6d6..d09089a55e 100644 --- a/docs/ref/models/querysets.txt +++ b/docs/ref/models/querysets.txt @@ -3424,11 +3424,6 @@ SQL equivalent: SELECT ... WHERE pub_date IS NULL; -.. deprecated:: 3.1 - - Using non-boolean values as the right-hand side is deprecated, use ``True`` - or ``False`` instead. In Django 4.0, the exception will be raised. - .. fieldlookup:: regex ``regex`` diff --git a/docs/releases/4.0.txt b/docs/releases/4.0.txt index 3f3d46617e..ba90639928 100644 --- a/docs/releases/4.0.txt +++ b/docs/releases/4.0.txt @@ -268,3 +268,6 @@ See :ref:`deprecated-features-3.1` for details on these changes, including how to remove usage of these features. * The ``PASSWORD_RESET_TIMEOUT_DAYS`` setting is removed. + +* The :lookup:`isnull` lookup no longer allows using non-boolean values as the + right-hand side. |
