summaryrefslogtreecommitdiff
path: root/docs/internals
diff options
context:
space:
mode:
authorPreston Holmes <preston@ptone.com>2012-11-02 15:49:29 +0000
committerPreston Holmes <preston@ptone.com>2012-11-02 22:03:55 -0700
commit0131da06220c1bc7e25df9ea50219e480e5004b3 (patch)
treeac5f3244fb18f30546809e69bfb70eb56ed47d90 /docs/internals
parent75fb8f433fc0bc64fed0b8dcc540f7a3544f9aa4 (diff)
[1.5.x] Deprecated depth kwarg on select_related.
This is the start of a deprecation path for the depth kwarg on select_related. Removing this will allow us to update select_related so it chains properly and have an API similar to prefetch_related. Thanks to Marc Tamlyn for spearheading and initial patch. refs #16855
Diffstat (limited to 'docs/internals')
-rw-r--r--docs/internals/deprecation.txt3
1 files changed, 3 insertions, 0 deletions
diff --git a/docs/internals/deprecation.txt b/docs/internals/deprecation.txt
index 77371c8608..9fd92db2b4 100644
--- a/docs/internals/deprecation.txt
+++ b/docs/internals/deprecation.txt
@@ -298,6 +298,9 @@ these changes.
* The ``daily_cleanup.py`` script will be removed.
+* The ``depth`` keyword argument will be removed from
+ :meth:`~django.db.models.query.QuerySet.select_related`.
+
2.0
---