summaryrefslogtreecommitdiff
path: root/django/db/models/query.py
AgeCommit message (Expand)Author
2016-10-04Refs #27118 -- Reallowed using pk in QuerySet.get/update_or_create().François Freitag
2016-09-24Fixed #27118 -- Made QuerySet.get_or_create()/update_or_create() error for a ...François Freitag
2016-09-23Removed unused Prefetch.get_current_prefetch_through().Tim Graham
2016-08-24Replaced property() usage with decorator in a couple places.Berker Peksag
2016-08-18Fixed #25871 -- Added expressions support to QuerySet.values().Ian Foote
2016-08-16Fixed #24854 -- Refactored QuerySet._valuesIan Foote
2016-08-08Fixed #26500 -- Added SKIP LOCKED support to select_for_update().Simon Charette
2016-08-06Fixed #27026 -- Fixed state initialization of bulk_create() objects if can_re...Sjoerd Job Postmus
2016-07-19Fixed #26916 -- Fixed prefetch_related when using a cached_property as to_attr.Simon Charette
2016-07-14Fixed #26804 -- Fixed a race condition in QuerySet.update_or_create().Jensen Cochran
2016-07-12Fixed #26884 -- Evaluated callables in QuerySet.update_or_create()'s defaults...Kenneth
2016-06-29Fixed #19513, #18580 -- Fixed crash on QuerySet.update() after annotate().David Sanders
2016-06-03Fixed #26638 -- Allowed callable arguments for QuerySet.get_or_create()/updat...Will Koster
2016-05-31Fixed #26676 -- Prevented prefetching to_attr from caching its result in thro...Simon Charette
2016-05-18Fixed #25774 -- Refactor datetime expressions into public APIJosh Smeaton
2016-05-14Removed redundant code in QuerySet._batched_insert().Tim Graham
2016-05-03Refs #26565 -- Errored nicely when using Prefetch with a values() queryset.Simon Charette
2016-04-29Fixed #26207 -- Replaced dynamic classes with non-data descriptors for deferr...Anssi Kääriäinen
2016-04-08Fixed E128 flake8 warnings in django/.Tim Graham
2016-04-04Fixed W503 flake8 warnings.Tim Graham
2016-03-28Sorted single letter imports per the latest version of isort.Tim Graham
2016-03-19Fixed #26373 -- Fixed reverse lookup crash with a ForeignKey to_field in a su...Jason Parrott
2016-03-02Fixed #26226 -- Made related managers honor the queryset used for prefetching...Simon Charette
2016-03-02Refs #19527 -- Allowed QuerySet.bulk_create() to set the primary key of its o...acrefoot
2016-02-26Fixed #26264 -- Fixed prefetch_related() crashes with values_list(flat=True)Attila Tovt
2016-02-26Fixed #25279 -- Made prefetch_related_objects() public.Adam Chainz
2016-02-11Fixed #26196 -- Made sure __in lookups use to_field as default.Anssi Kääriäinen
2016-01-26Fixed #25546 -- Prevented duplicate queries with nested prefetch_related().François Freitag
2016-01-07Fixed #26026 -- Fixed isinstance crash comparing EmptyQuerySet to non-QuerySet.Anderson Resende
2015-12-26Fixed #8065 -- Made id_list an optional argument for QuerySet.in_bulk().Bryan Marty
2015-12-14Fixed #25939 -- Removed redundant transaction in QuerySet.update_or_create().Ed Bartosh
2015-11-11Refs #25693 -- Avoided redundant calls to get_fields() in `to_attr` validation.Simon Charette
2015-11-10Fixed #25693 -- Prevented data loss with Prefetch and ManyToManyField.Ian Foote
2015-10-06Fixed #25508 -- Modified QuerySet.__repr__() to disambiguate it from a list.Tim Graham
2015-09-22Fixed #24509 -- Added Expression support to SQLInsertCompilerAlex Hill
2015-09-07Fixed typos in django/db/models/query.py docstrings.Nick Pope
2015-09-03Fixed #25335 -- Fixed regression where QuerySet.iterator() didn't return an i...Gavin Wahl
2015-08-31Fixed #25252 -- Added friendly error message on incorrect .select_related() useY3K
2015-07-23Fixed #12768 -- Fixed QuerySet.raw() regression on FK with custom db_column.Matt Johnson
2015-07-09Fixed #25081 -- Prevented DISTINCT ON ordering from being cleared in get().Simon Charette
2015-07-02Fixed #24997 -- Enabled bulk_create() on proxy modelsWilliam Schwartz
2015-06-29Fixed #23791 -- Corrected object type check for pk__in=qsAnssi Kääriäinen
2015-06-18Fixed #24873 -- Prevented nested Prefetch objects from being overwritten.Gagaro
2015-05-22Fixed #16891 -- Made Model/QuerySet.delete() return the number of deleted obj...Alexander Sosnovskiy
2015-05-13Removed unnecessary arguments in .get method callsPiotr Jakimiak
2015-03-25Renamed Field.rel attribute to remote_fieldAnssi Kääriäinen
2015-02-20Fixed #24343 -- Ensure db converters are used for foreign keys.Marc Tamlyn
2015-02-06Sorted imports with isort; refs #23860.Tim Graham
2015-02-03Fixed #23617 -- Added get_pk_value_on_save()Anssi Kääriäinen
2015-01-30Reverted "Fixed #6785 -- Made QuerySet.get() fetch a limited number of rows."Tim Graham