diff options
| author | Tim Graham <timograham@gmail.com> | 2015-01-18 14:30:07 -0500 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2015-01-19 10:45:50 -0500 |
| commit | 0b3e3e21cfe7463245dc1dfc9258e18903bc1116 (patch) | |
| tree | 8748fdd9d867c7f2895aa3c97701f40d36cd40d6 /docs | |
| parent | 6eddaa42c3843e23a16442096c43664e21c92af7 (diff) | |
[1.8.x] Added deprecation docs for legacy lookup support; refs #16187.
Backport of 8e435a564034c59ac408ec71283d8ac6ede2ce1f from master
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/internals/deprecation.txt | 3 | ||||
| -rw-r--r-- | docs/releases/1.7.txt | 7 |
2 files changed, 10 insertions, 0 deletions
diff --git a/docs/internals/deprecation.txt b/docs/internals/deprecation.txt index d5856a2c68..49a3982239 100644 --- a/docs/internals/deprecation.txt +++ b/docs/internals/deprecation.txt @@ -298,6 +298,9 @@ details on these changes. * The ``django.contrib.contenttypes.generic`` module will be removed. +* Private APIs ``django.db.models.sql.where.WhereNode.make_atom()`` and + ``django.db.models.sql.where.Constraint`` will be removed. + .. _deprecation-removed-in-1.8: 1.8 diff --git a/docs/releases/1.7.txt b/docs/releases/1.7.txt index 7277af52d2..f4a2c5462b 100644 --- a/docs/releases/1.7.txt +++ b/docs/releases/1.7.txt @@ -1780,6 +1780,13 @@ Django 1.9. Django no longer uses this functional internally. Even though it's a private API, it'll go through the normal deprecation cycle. +Private Query Lookup APIs +~~~~~~~~~~~~~~~~~~~~~~~~~ + +Private APIs ``django.db.models.sql.where.WhereNode.make_atom()`` and +``django.db.models.sql.where.Constraint`` are deprecated in favor of the new +:doc:`custom lookups API </ref/models/lookups>`. + .. removed-features-1.7: Features removed in 1.7 |
