summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorAkash Kumar Sen <Akash-Kumar-Sen@users.noreply.github.com>2023-06-12 08:50:55 +0530
committerMariusz Felisiak <felisiak.mariusz@gmail.com>2023-10-31 18:06:44 +0100
commit40b3975e7d3e1464a733c69171ad7d38f8814280 (patch)
treedabd02bf22c82b52556931bb7c633b28753f6ab0 /docs
parent45e0c5892f84b5bb47999cbe16eabb5a13293d85 (diff)
Fixed #34462 -- Made admin log actions in bulk.
This also deprecates ModelAdmin.log_deletion() and LogEntryManager.log_action().
Diffstat (limited to 'docs')
-rw-r--r--docs/internals/deprecation.txt3
-rw-r--r--docs/releases/5.1.txt5
2 files changed, 6 insertions, 2 deletions
diff --git a/docs/internals/deprecation.txt b/docs/internals/deprecation.txt
index e69772dce3..a2968ab625 100644
--- a/docs/internals/deprecation.txt
+++ b/docs/internals/deprecation.txt
@@ -56,7 +56,8 @@ details on these changes.
See the :ref:`Django 5.1 release notes <deprecated-features-5.1>` for more
details on these changes.
-* ...
+* The ``ModelAdmin.log_deletion()`` and ``LogEntryManager.log_action()``
+ methods will be removed.
.. _deprecation-removed-in-5.1:
diff --git a/docs/releases/5.1.txt b/docs/releases/5.1.txt
index 73343b7499..d6c07d9c22 100644
--- a/docs/releases/5.1.txt
+++ b/docs/releases/5.1.txt
@@ -285,7 +285,10 @@ Features deprecated in 5.1
Miscellaneous
-------------
-* ...
+* The ``ModelAdmin.log_deletion()`` and ``LogEntryManager.log_action()``
+ methods are deprecated. Subclasses should implement
+ ``ModelAdmin.log_deletions()`` and ``LogEntryManager.log_actions()``
+ instead.
Features removed in 5.1
=======================