diff options
| author | David Smith <smithdc@gmail.com> | 2026-04-26 07:53:13 +0100 |
|---|---|---|
| committer | Jacob Walls <jacobtylerwalls@gmail.com> | 2026-04-28 13:07:11 -0400 |
| commit | 5d911f2d2fecc703be91b2b9b28acc59d34b35f3 (patch) | |
| tree | fc32596b2e51593a9da35fda6c3833e70c0e2a56 /docs | |
| parent | e8c6322b4f2ab4df610bb480003a54c88f32210e (diff) | |
Fixed #35738 -- Deprecated double-dot variable lookups.
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/internals/deprecation.txt | 3 | ||||
| -rw-r--r-- | docs/releases/6.1.txt | 4 |
2 files changed, 7 insertions, 0 deletions
diff --git a/docs/internals/deprecation.txt b/docs/internals/deprecation.txt index c8e467a0ee..3cda71933b 100644 --- a/docs/internals/deprecation.txt +++ b/docs/internals/deprecation.txt @@ -77,6 +77,9 @@ details on these changes. ``django.contrib.postgres.aggregates.BitOr``, and ``django.contrib.postgres.aggregates.BitXor`` classes will be removed. +* Support for double-dot variable lookup, like ``{{ book..title }}``, + is removed. + .. _deprecation-removed-in-6.1: 6.1 diff --git a/docs/releases/6.1.txt b/docs/releases/6.1.txt index 48f8939041..3ec680702c 100644 --- a/docs/releases/6.1.txt +++ b/docs/releases/6.1.txt @@ -573,6 +573,10 @@ Miscellaneous :class:`~django.db.models.BitOr`, and :class:`~django.db.models.BitXor` classes. +* Support for a double-dot variable lookup like ``{{ book..title }}`` which + maps to a lookup of the empty string before the next lookup of the named + attribute is deprecated. + Features removed in 6.1 ======================= |
