diff options
| author | Mariusz Felisiak <felisiak.mariusz@gmail.com> | 2023-09-14 16:03:52 +0200 |
|---|---|---|
| committer | Mariusz Felisiak <felisiak.mariusz@gmail.com> | 2023-09-18 22:12:40 +0200 |
| commit | 5e4c1793b714a975400b9277a66f99efafa2d92c (patch) | |
| tree | d2d0e165f563a1f25534751245c6e921442d7a1e /docs | |
| parent | 69af3bea9987044c944b5bc83e32c35f0a73c6dd (diff) | |
Refs #33308 -- Removed support for passing encoded JSON string literals to JSONField & co.
Per deprecation timeline.
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/releases/5.1.txt | 3 | ||||
| -rw-r--r-- | docs/topics/db/queries.txt | 4 |
2 files changed, 3 insertions, 4 deletions
diff --git a/docs/releases/5.1.txt b/docs/releases/5.1.txt index 4ed51d288e..2ca8a492ca 100644 --- a/docs/releases/5.1.txt +++ b/docs/releases/5.1.txt @@ -274,3 +274,6 @@ to remove usage of these features. * The ``SimpleTestCase.assertFormsetError()`` method is removed. * The ``TransactionTestCase.assertQuerysetEqual()`` method is removed. + +* Support for passing encoded JSON string literals to ``JSONField`` and + associated lookups and expressions is removed. diff --git a/docs/topics/db/queries.txt b/docs/topics/db/queries.txt index b975f6cdfe..3f7031c2ab 100644 --- a/docs/topics/db/queries.txt +++ b/docs/topics/db/queries.txt @@ -1085,10 +1085,6 @@ Unless you are sure you wish to work with SQL ``NULL`` values, consider setting Storing JSON scalar ``null`` does not violate :attr:`null=False <django.db.models.Field.null>`. -.. deprecated:: 4.2 - - Passing ``Value("null")`` to express JSON ``null`` is deprecated. - .. fieldlookup:: jsonfield.key Key, index, and path transforms |
