summaryrefslogtreecommitdiff
path: root/django/db/models/query.py
AgeCommit message (Expand)Author
2019-02-13[2.2.x] Fixed #30184 -- Removed ellipsis characters from shell output strings.Dan Davis
2018-12-30Renamed QuerySet.earliest()/latest() helper method.Tim Graham
2018-11-21Fixed #29974 -- Fixed non-truthy primary key values for QuerySet.bulk_update().Tom Forbes
2018-11-21Fixed #29949 -- Refactored db introspection identifier converters.Mariusz Felisiak
2018-11-17Refs #29908 -- Optimized known related objects assignment.Simon Charette
2018-11-15Fixed #17930 -- Allowed ORing (|) with sliced QuerySets.Ian Foote
2018-11-08Fixed #29908 -- Fixed setting of foreign key after related set access if Fore...Simon Charette
2018-10-17Fixed #21171 -- Avoided starting a transaction when a single (or atomic queri...Florian Apolloner
2018-09-28Refs #28909 -- Simplifed code using unpacking generalizations.Sergey Fedoseev
2018-09-18Fixed #23646 -- Added QuerySet.bulk_update() to efficiently update many models.Tom Forbes
2018-08-22Refs #29654 -- Replaced three dots with ellipsis character in output strings.Claude Paroz
2018-08-03Fixed #28668 -- Allowed QuerySet.bulk_create() to ignore insert conflicts.Tom
2018-08-02Fixed #29499 -- Fixed race condition in QuerySet.update_or_create().Michael Sanders
2018-07-16Fixed #29413 -- Prevented evaluation of QuerySet.get_or_create()/update_or_cr...Viktor Danyliuk
2018-07-16Fixed #28917 -- Prevented Paginator's unordered warning on EmptyQuerySet.Josh Schneier
2018-05-27Fixed #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