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