diff options
| author | Clifford Gama <cliffygamy@gmail.com> | 2025-10-25 18:41:08 +0200 |
|---|---|---|
| committer | Jacob Walls <jacobtylerwalls@gmail.com> | 2025-12-22 14:20:07 -0500 |
| commit | 6ee8e9d56c17eb0014e73189950a9e8de2a8ec0e (patch) | |
| tree | 0947d7b96d288effe728b8db62fb2345f64313f7 /docs/releases | |
| parent | 9cc5c87ffb989991524ee4eb91a435d2296ded2b (diff) | |
Fixed #36508 -- Interpreted __iexact=None on KeyTransforms as __exact=None.
Thanks Jacob Walls for the report.
Diffstat (limited to 'docs/releases')
| -rw-r--r-- | docs/releases/6.1.txt | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/docs/releases/6.1.txt b/docs/releases/6.1.txt index 2e6e7235d7..c4ecefc08a 100644 --- a/docs/releases/6.1.txt +++ b/docs/releases/6.1.txt @@ -400,6 +400,11 @@ Miscellaneous * The minimum supported version of SQLite is increased from 3.31.0 to 3.37.0. +* The :lookup:`iexact=None <iexact>` lookup on + :class:`~django.db.models.JSONField` key transforms now matches JSON + ``null``, to match the behavior of :lookup:`exact=None <exact>` on key + transforms. Previously, it was interpreted as an :lookup:`isnull` lookup. + .. _deprecated-features-6.1: Features deprecated in 6.1 |
