summaryrefslogtreecommitdiff
path: root/django/db/models/manager.py
AgeCommit message (Expand)Author
2015-02-09[1.8.x] Sorted imports with isort; refs #23860.Tim Graham
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
2015-01-02Fixed #9104 -- Moved FieldDoesNotExist to core.exceptionsDaniel Pyrathon
2014-12-15Fixed #23822 -- Added support for serializing model managers in migrationMarkus Holtermann
2014-12-15Changed internal storing of abstract and concrete managers to be in a single ...Markus Holtermann
2014-09-05Limited lines to 119 characters in django/Tim Graham
2014-04-05Fixed #22236 -- Removed inappropriate usage of signalsClaude Paroz
2014-03-30Corrected many style guide violations that the newest version of flake8 catchesAlex Gaynor
2014-03-21Removed backward compatible shims to rename get_query_set and similar queryse...Tim Graham
2014-03-08Fixed #21188 -- Introduced subclasses for to-be-removed-in-django-XX warningsClaude Paroz
2014-01-28Fixed #21853 -- Fixed Manager.__module__ to properly return 'django.db.models...Loic Bistuer
2014-01-20Fixed #16905 -- Added extensible checks (nee validation) frameworkRussell Keith-Magee
2013-09-30Fixed #13724: Corrected routing of write queries involving managers.Russell Keith-Magee
2013-07-31Fixed #20826 -- Moved Manager.raw() and Manager._insert() to the QuerySet class.Loic Bistuer
2013-07-26Fixed #20625 -- Chainable Manager/QuerySet methods.Loic Bistuer
2013-07-12Fixed #20429 -- Added QuerySet.update_or_createKarol Sikora
2013-07-08A large number of stylistic cleanups across django/db/Alex Gaynor
2013-06-29Advanced deprecation warnings for Django 1.7.Aymeric Augustin
2013-05-21Fixed #19326 -- Added first() and last() methods to QuerySetSelwin Ong
2013-03-08Fixed #15363 -- Renamed and normalized to `get_queryset` the methods that ret...Loic Bistuer
2013-02-16Fixed #17260 -- Added time zone aware aggregation and lookups.Aymeric Augustin
2013-02-04Fixed #19653 -- Removed `Manager.get_empty_query_set`.Simon Charette
2013-01-20Fixed #17813 -- Added a .earliest() method to QuerySetNick Sandford
2013-01-06Fixed #19173 -- Made EmptyQuerySet a marker class onlyAnssi Kääriäinen
2012-10-06Fixed #19069 -- Improved the error message when trying to query a swapped model.Russell Keith-Magee
2012-09-26Fixed #3011 -- Added swappable auth.User models.Russell Keith-Magee
2011-10-05Fixed #16937 - added `QuerySet.prefetch_related` to prefetch many related obj...Luke Plant
2011-09-09Fixed #7596. Added Model.objects.bulk_create, and make use of it in several ...Alex Gaynor
2011-07-13Fixed #16225 -- Removed unused imports. Many thanks to Aymeric Augustin for t...Jannis Leidel
2011-04-20Fixed #2705: added a `select_for_update()` clause to querysets.Jacob Kaplan-Moss
2011-03-28Removed a bunch more Python 2.4 workarounds now that we don't support that ve...Adrian Holovaty
2010-01-22Fixed #12540, #12541 -- Added database routers, allowing for configurable dat...Russell Keith-Magee
2010-01-10Changed a whole bunch of places to raise exception instances instead of old-s...Adrian Holovaty
2009-12-22Fixed #1142 -- Added multiple database support.Russell Keith-Magee
2009-12-20Fixed #11863: added a `Model.objects.raw()` method for executing raw SQL quer...Jacob Kaplan-Moss
2009-12-17Fixed #11753 - Q objects with callables no longer explode on Python 2.4. Than...Jacob Kaplan-Moss
2009-10-24Fixed a bug in r11646 - refs #11402 Luke Plant
2009-10-24Fixed #11402: added a `QuerySet.exists()` method. Thanks, Alex Gaynor.Jacob Kaplan-Moss
2009-05-11Fixed #10953, #10955: proxies of proxies now work correctly, though I still d...Jacob Kaplan-Moss
2009-03-19Fixed #5420 -- Added support for delayed loading of model fields.Malcolm Tredinnick
2009-03-18Fixed #10356 -- Added pure-Python inheritance for models (a.k.a proxy models).Malcolm Tredinnick
2009-03-15Use plain model.Manager, or suitable proxy, for model saving.Malcolm Tredinnick
2009-01-15Fixed #3566 -- Added support for aggregation to the ORM. See the documentatio...Russell Keith-Magee
2008-09-02Fixed #7154 -- Inherit all model managers from abstract base classes.Malcolm Tredinnick
2008-08-06Major refactoring of django.dispatch with an eye towards speed. The net resul...Jacob Kaplan-Moss
2008-04-27Merged the queryset-refactor branch into trunk.Malcolm Tredinnick
2007-09-15Fixed #3032 -- Added some useful methods and attributes so that AnonymousUser...Malcolm Tredinnick
2007-08-06Fixed British spelling of 'customize' and 'behavior' in Manager.get_query_set...Adrian Holovaty
2007-07-22Fixed #4945 -- Removed unused `GET_ITERATOR_CHUNK_SIZE` definition from manag...Gary Wilson Jr