summaryrefslogtreecommitdiff
path: root/django/db/models/query.py
AgeCommit message (Expand)Author
2015-02-20[1.8.x] Fixed #24343 -- Ensure db converters are used for foreign keys.Marc Tamlyn
2015-02-09[1.8.x] Sorted imports with isort; refs #23860.Tim Graham
2015-02-03[1.8.x] Fixed #23617 -- Added get_pk_value_on_save()Anssi Kääriäinen
2015-01-30[1.8.x] Reverted "Fixed #6785 -- Made QuerySet.get() fetch a limited number o...Tim Graham
2015-01-22[1.8.x] Fixed small inconsistency when handling aggregate's default_alias.Loic Bistuer
2015-01-08Fixed #24020 -- Refactored SQL compiler to use expressionsAnssi Kääriäinen
2015-01-06Fixed #12663 -- Formalized the Model._meta API for retrieving fields.Daniel Pyrathon
2015-01-05Renamed flag for detecting managers built from QuerySets with as_manager().Markus Holtermann
2014-12-23Fixed #21414 -- Removed RelatedObject and deprecated Field.related.Anssi Kääriäinen
2014-12-15Fixed #23822 -- Added support for serializing model managers in migrationMarkus Holtermann
2014-12-08Fixed #23968 -- Replaced list comprehension with generators and dict comprehe...Jon Dufresne
2014-11-27Fixed #23875 -- cleaned up query.get_count()Anssi Kääriäinen
2014-11-26Fixed #23867 -- removed DateQuerySet hacksAnssi Kääriäinen
2014-11-15Fixed #14030 -- Allowed annotations to accept all expressionsJosh Smeaton
2014-10-21Fixed #23396 -- Ensured ValueQuerySets are not checked by check_related_objects.Gabe Jackson
2014-10-16Fixed #23664 -- Provided a consistent definition for OrderedSet.__bool__Thomas Chaumeny
2014-10-16Fixed #23659 -- Kept annotate() args orderingClaude Paroz
2014-10-08Fixed #23555 -- Avoided suppressing IndexError in QuerySet.first() and .last()Artem Rizhov
2014-09-03Fixed #18757, #14462, #21565 -- Reworked database-python type conversionsMarc Tamlyn
2014-08-30Fixed #23370 -- defer() + select_related() crashed with inherited models.Akis Kesoglou
2014-08-29Fixed #23313 -- Corrected repr(RawQuery) with dict parameters.Andrew Torpedov
2014-08-12Fixed #23001 -- Fixed mixing defer and annotationsJosh Smeaton
2014-08-07Fixed flake8 warning.Tim Graham
2014-08-05Fixed #23061: Avoided setting a limit on a query for get with select_for_upda...Shai Berger
2014-07-01Fixed #19501 -- added Model.from_db() methodAnssi Kääriäinen
2014-06-11Fixed #21430 -- Added a RuntimeWarning when unpickling Models and QuerySets f...Anubhav Joshi
2014-05-28Fixed several typos in DjangoAlex Gaynor
2014-05-21Fixed the ordering of prefetch lookups so that latter lookups can refer to fo...Loic Bistuer
2014-05-21Fixed #22650 -- Fixed regression on prefetch_related.Loic Bistuer
2014-05-10Fixed #22508 -- Avoided overwriting select_related.Aymeric Augustin
2014-05-03Moved misplaced transaction.atomic from 0dce44e16bClaude Paroz
2014-05-02Fixed #22540 -- Made _create_object_from_params() call create()Claude Paroz
2014-04-26Fix many many typos in comments throughout the codebaseAlex Gaynor
2014-03-21Removed legacy transaction management per the deprecation timeline.Aymeric Augustin
2014-03-20Fixed #22163 -- Stopped ignoring unhandled kwargs in select_for_update.Aymeric Augustin
2014-03-03Allowed custom querysets when prefetching single valued relationsLoic Bistuer
2014-03-03Fixed many typos in comments and docstrings.Rodolfo Carvalho
2014-02-17Fixed #22023 -- Raised an error for values() followed by defer() or only().Artur Frysiak
2014-02-15Fixed #19299 -- Fixed Nullification of Foreign Keys To CharFieldsAlbert Wang
2014-02-02Ensure cursors are closed when no longer needed.Michael Manfre
2014-02-02Made SQLCompiler.execute_sql(result_type) more explicit.Michael Manfre
2013-12-14Fixed E127 pep8 warnings.Loic Bistuer
2013-12-06Fixed #21566 -- Fixed AttributeError when using bulk_create with ForeignObject.Roger Hu
2013-11-28Fixed E125 pep8 warningsChristopher Medrela
2013-11-27Added a bulk option to RelatedManager remove() and clear() methodsLoic Bistuer
2013-11-27Used simpler queries for m2m clearing when possible.Anssi Kääriäinen
2013-11-15Fixed the use of the -ise suffix, where -ize is preferedAlex Gaynor
2013-11-07Fixed #17001 -- Custom querysets for prefetch_related.Loic Bistuer
2013-11-03Fixed all E226 violationsAlex Gaynor
2013-11-02Fixed all E261 warningscoagulant