index
:
chango.git
devmain
fix-31295
initial-branch
main
stable/5.2.x
stable/6.0.x
django
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
django
/
db
/
models
/
fields
/
related_lookups.py
Age
Commit message (
Expand
)
Author
2025-07-23
Refs #36500 -- Rewrapped long docstrings and block comments via a script.
django-bot
2025-02-13
Refs #36181 -- Removed the obsolete SubqueryConstraint machinery.
Simon Charette
2025-02-11
Fixed #36149 -- Allowed subquery values against tuple exact and in lookups.
Simon Charette
2025-01-06
Fixed #36048 -- Preferred ValueError to NotSupportedError for composite pk sa...
Jacob Walls
2024-11-29
Fixed #373 -- Added CompositePrimaryKey.
Bendeguz Csirmaz
2024-09-11
Refs #373 -- Removed outdated comment in RelatedIn lookup.
Csirmaz Bendegúz
2024-09-09
Refs #373 -- Added Model._is_pk_set() abstraction to check if a Model's PK is...
Csirmaz Bendegúz
2024-08-01
Refs #373 -- Added tuple lookups.
Bendeguz Csirmaz
2023-01-17
Refs #31486 -- Removed ability to pass unsaved model instances to related fil...
Mariusz Felisiak
2022-09-09
Fixed #33975 -- Fixed __in lookup when rhs is a queryset with annotate() and ...
DevilsAutumn
2022-08-15
Refs #28333 -- Added partial support for filtering against window functions.
Simon Charette
2022-02-25
Fixed #31486 -- Deprecated passing unsaved objects to related filters.
Albert Defler
2022-02-07
Refs #33476 -- Refactored code to strictly match 88 characters line length.
Mariusz Felisiak
2022-02-07
Refs #33476 -- Reformatted code with Black.
django-bot
2021-12-02
Refs #32690 -- Altered lookups Query rhs alterations during initialization.
Simon Charette
2021-11-03
Fixed #32996 -- Cached PathInfos on relations.
Keryn Knight
2021-07-09
Fixed #27021 -- Allowed lookup expressions in annotations, aggregations, and ...
Ian Foote
2020-07-30
Bumped minimum isort version to 5.1.0.
David Smith
2019-09-02
Refs #28442 -- Adjusted related lookups handling of expression rhs.
Simon Charette
2017-11-06
Fixed #28776 -- Fixed a/an/and typos in docs and comments.
Дилян Палаузов
2017-07-31
Fixed #27985 -- Fixed query for __exact=value when get_prep_value() converts ...
Sergey Fedoseev
2017-05-05
Fixed #28175 -- Fixed __in lookups on a foreign key when using the foreign ke...
Tim Graham
2017-04-25
Refs #20939 -- Removed the Query._forced_pk hack.
Simon Charette
2017-04-10
Fixed #28047 -- Fixed QuerySet.filter() crash when it uses the name of a OneT...
Tim Graham
2017-01-25
Refs #23919 -- Replaced super(ClassName, self) with super().
chillaranand
2017-01-19
Refs #23919 -- Stopped inheriting from object to define new style classes.
Simon Charette
2016-10-28
Fixed #20939 -- Simplified query generation by converting QuerySet to Query.
Tim Graham
2016-09-22
Fixed #27159 -- Prevented pickling a query with an __in=inner_qs lookup from ...
Jani Tiainen
2016-08-04
Fixed #26983 -- Fixed isnull filtering on ForeignKey with to_field
Claude Paroz
2016-06-04
Fixed #26667 -- Fixed a regression in queries on a OneToOneField that has to_...
Tim Graham
2016-05-04
Fixed #22936 -- Obsoleted Field.get_prep_lookup()/get_db_prep_lookup()
Claude Paroz
2015-12-24
Fixed #25972 -- Restored support for the isnull lookup with ForeignObject.
Tomo Otsuka
2015-06-29
Fixed #23791 -- Corrected object type check for pk__in=qs
Anssi Kääriäinen
2015-03-25
Renamed Field.rel attribute to remote_field
Anssi Kääriäinen
2015-03-25
Refs #24267 -- Implemented lookups for related fields
Anssi Kääriäinen