summaryrefslogtreecommitdiff
path: root/django/db/models/query.py
AgeCommit message (Expand)Author
2018-05-27[2.1.x] Fixed #29230 -- Fixed nested prefetches that clash with descriptors.Paulo
2018-04-27Fixed #29367 -- Fixed model state on objects with a primary key created with ...Oscar Esgalha
2018-04-19Fixed #28600 -- Added prefetch_related() support to RawQuerySet.Adnan Umer
2018-04-19Fixed #29337 -- Added __len__() & __bool__() to RawQuerySet.Adnan Umer
2018-04-19Fixed #29339 -- Added result caching to RawQuerySet.Adnan Umer
2018-04-19Fixed #28574 -- Added QuerySet.explain().Tom
2018-04-12Fixed #29320 -- Added an exception when an annotation alias matches a Foreign...Flávio Juvenal
2018-02-26Refs #28909 -- Simplifed code using unpacking generalizations.Mariusz Felisiak
2018-02-02Fixed imports per isort 4.3.1.Tim Graham
2018-02-01Fixed imports per isort 4.3.0.Mariusz Felisiak
2018-01-27Fixed #28650 -- Added TruncWeek database function.Sigurd Ljødal
2018-01-26Fixed #29067 -- Fixed regression in QuerySet.values_list(..., flat=True) foll...Jon Dufresne
2018-01-25Fixed #28838 -- Fixed Model.save() crash if the base manager annotates with a...shanghui
2017-12-27Removed unused variable in QuerySet._earliest_or_latest().Mads Jensen
2017-12-11Fixed #28909 -- Simplified code using tuple/list/set/dict unpacking.Nick Pope
2017-12-07Fixed #28907 -- Removed unnecessary if statements.Tim Graham
2017-12-04Fixed #28860 -- Removed unnecessary len() calls.Дилян Палаузов
2017-11-28Fixed #28837 -- Fixed test client crash if an exception with more than one ar...Nicolas Delaby
2017-11-21Fixed #28817 -- Made QuerySet.iterator() use server-side cursors after values...Dražen Odobašić
2017-10-03Fixed #28674 -- Removed unused check in QuerySet._batched_insert().Tim Graham
2017-10-02Fixed #28652 -- Fixed a few comments in django/db/models/*.Дилян Палаузов
2017-09-28Merged hash() calls.Mariusz Felisiak
2017-09-28Simplified various __eq__() methods.Mads Jensen
2017-09-22Fixed #27332 -- Added FilteredRelation API for conditional join (ON clause) s...Nicolas Delaby
2017-09-07Reverted "Fixed #27818 -- Replaced try/except/pass with contextlib.suppress()."Tim Graham
2017-09-06Fixed #15648 -- Allowed QuerySet.values_list() to return a namedtuple.Sergey Fedoseev
2017-09-06Replaced deque() with list() in prefetch_related_objects(). Sergey Fedoseev
2017-09-05Fixed #11557 -- Added support for a list of fields in Meta.get_latest_by and ...François Freitag
2017-09-05Fixed typo in django/db/models/query.py docstring.Boris Burkov
2017-08-23Refs #28459 -- Improved performance of SQLCompiler.apply_converters().Sergey Fedoseev
2017-08-22Refs #28459 -- Improved performance of FlatValuesListIterable.Sergey Fedoseev
2017-08-15Simplified RelatedPopulator.populate().Sergey Fedoseev
2017-08-15Removed redundant condition in QuerySet.resolve_expression().Sergey Fedoseev
2017-08-10Refs #16043 -- Refactored internal fields value cache.Paulo
2017-08-08Refs #28459 -- Improved performance of ValuesIterable.Sergey Fedoseev
2017-08-07Refs #28459 -- Improved performance of select_related() when model is prefetc...Sergey Fedoseev
2017-08-07Refs #28459 -- Improved performance of SQLCompiler.results_iter().Sergey Fedoseev
2017-08-02Simplified check that pk is fetched in RawQuerySet.__iter__().Sergey Fedoseev
2017-08-01Fixed #28459 -- Improved performance of ValuesListIterable.Sergey Fedoseev
2017-07-31Refs #20880 -- Removed non-cloning logic from Query.clone().Anssi Kääriäinen
2017-07-31Refs #20880 -- Removed non-cloning logic from QuerySet._clone().Anssi Kääriäinen
2017-07-31Avoided creating temporary lists for obtaining the first item.Sergey Fedoseev
2017-07-25Removed obsolete references to add_to_query().Sergey Fedoseev
2017-07-21Fixed #27970 -- Allowed QuerySet.in_bulk() to fetch on fields besides primary...Tom Carrick
2017-06-29Fixed #28010 -- Added FOR UPDATE OF support to QuerySet.select_for_update().Ran Benita
2017-06-29Fixed #28277 -- Added validation of QuerySet.annotate() and aggregate() args.Mariusz Felisiak
2017-06-28Fixed #27818 -- Replaced try/except/pass with contextlib.suppress().Mads Jensen
2017-06-13Fixed #28293 -- Fixed union(), intersection(), and difference() when combinin...Mariusz Felisiak
2017-06-05Replaced Model._get_pk_val() with pk property.Tim Graham
2017-06-01Fixed #27639 -- Added chunk_size parameter to QuerySet.iterator().François Freitag