diff options
| author | Mariusz Felisiak <felisiak.mariusz@gmail.com> | 2022-05-12 11:30:03 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-05-12 11:30:03 +0200 |
| commit | 68da6b389c403cb91650754be0e2287696807333 (patch) | |
| tree | a5dce4df79bc4e4d54632864f861705a0e530bba /docs/internals | |
| parent | 2798c937deb6625a4e6a36e70d4d60ce5faac954 (diff) | |
Fixed #33543 -- Deprecated passing nulls_first/nulls_last=False to OrderBy and Expression.asc()/desc().
Thanks Allen Jonathan David for the initial patch.
Diffstat (limited to 'docs/internals')
| -rw-r--r-- | docs/internals/deprecation.txt | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/docs/internals/deprecation.txt b/docs/internals/deprecation.txt index 39007eb3e9..bb6b889f91 100644 --- a/docs/internals/deprecation.txt +++ b/docs/internals/deprecation.txt @@ -105,6 +105,10 @@ details on these changes. * The ``django.contrib.auth.hashers.CryptPasswordHasher`` will be removed. +* The ability to pass ``nulls_first=False`` or ``nulls_last=False`` to + ``Expression.asc()`` and ``Expression.desc()`` methods, and the ``OrderBy`` + expression will be removed. + .. _deprecation-removed-in-4.1: 4.1 |
