summaryrefslogtreecommitdiff
path: root/django/db/models/manager.py
Commit message (Expand)AuthorAgeFilesLines
* Fixed #13724: Corrected routing of write queries involving managers.Russell Keith-Magee2013-09-301-4/+6
* Fixed #20826 -- Moved Manager.raw() and Manager._insert() to the QuerySet class.Loic Bistuer2013-07-311-7/+1
* Fixed #20625 -- Chainable Manager/QuerySet methods.Loic Bistuer2013-07-261-116/+52
* Fixed #20429 -- Added QuerySet.update_or_createKarol Sikora2013-07-121-0/+3
* A large number of stylistic cleanups across django/db/Alex Gaynor2013-07-081-1/+2
* Advanced deprecation warnings for Django 1.7.Aymeric Augustin2013-06-291-2/+2
* Fixed #19326 -- Added first() and last() methods to QuerySetSelwin Ong2013-05-211-0/+6
* Fixed #15363 -- Renamed and normalized to `get_queryset` the methods that ret...Loic Bistuer2013-03-081-38/+46
* Fixed #17260 -- Added time zone aware aggregation and lookups.Aymeric Augustin2013-02-161-0/+3
* Fixed #19653 -- Removed `Manager.get_empty_query_set`.Simon Charette2013-02-041-5/+2
* Fixed #17813 -- Added a .earliest() method to QuerySetNick Sandford2013-01-201-0/+3
* Fixed #19173 -- Made EmptyQuerySet a marker class onlyAnssi Kääriäinen2013-01-061-2/+6
* Fixed #19069 -- Improved the error message when trying to query a swapped model.Russell Keith-Magee2012-10-061-2/+35
* Fixed #3011 -- Added swappable auth.User models.Russell Keith-Magee2012-09-261-2/+7
* Fixed #16937 - added `QuerySet.prefetch_related` to prefetch many related obj...Luke Plant2011-10-051-0/+3
* Fixed #7596. Added Model.objects.bulk_create, and make use of it in several ...Alex Gaynor2011-09-091-2/+5
* Fixed #16225 -- Removed unused imports. Many thanks to Aymeric Augustin for t...Jannis Leidel2011-07-131-1/+0
* Fixed #2705: added a `select_for_update()` clause to querysets.Jacob Kaplan-Moss2011-04-201-0/+3
* Removed a bunch more Python 2.4 workarounds now that we don't support that ve...Adrian Holovaty2011-03-281-1/+1
* Fixed #12540, #12541 -- Added database routers, allowing for configurable dat...Russell Keith-Magee2010-01-221-11/+9
* Changed a whole bunch of places to raise exception instances instead of old-s...Adrian Holovaty2010-01-101-2/+2
* Fixed #1142 -- Added multiple database support.Russell Keith-Magee2009-12-221-4/+22
* Fixed #11863: added a `Model.objects.raw()` method for executing raw SQL quer...Jacob Kaplan-Moss2009-12-201-1/+4
* Fixed #11753 - Q objects with callables no longer explode on Python 2.4. Than...Jacob Kaplan-Moss2009-12-171-1/+1
* Fixed a bug in r11646 - refs #11402 Luke Plant2009-10-241-1/+1
* Fixed #11402: added a `QuerySet.exists()` method. Thanks, Alex Gaynor.Jacob Kaplan-Moss2009-10-241-1/+3
* Fixed #10953, #10955: proxies of proxies now work correctly, though I still d...Jacob Kaplan-Moss2009-05-111-1/+1
* Fixed #5420 -- Added support for delayed loading of model fields.Malcolm Tredinnick2009-03-191-0/+6
* Fixed #10356 -- Added pure-Python inheritance for models (a.k.a proxy models).Malcolm Tredinnick2009-03-181-0/+3
* Use plain model.Manager, or suitable proxy, for model saving.Malcolm Tredinnick2009-03-151-1/+25
* Fixed #3566 -- Added support for aggregation to the ORM. See the documentatio...Russell Keith-Magee2009-01-151-0/+6
* Fixed #7154 -- Inherit all model managers from abstract base classes.Malcolm Tredinnick2008-09-021-3/+15
* Major refactoring of django.dispatch with an eye towards speed. The net resul...Jacob Kaplan-Moss2008-08-061-3/+2
* Merged the queryset-refactor branch into trunk.Malcolm Tredinnick2008-04-271-6/+34
* Fixed #3032 -- Added some useful methods and attributes so that AnonymousUser...Malcolm Tredinnick2007-09-151-0/+4
* Fixed British spelling of 'customize' and 'behavior' in Manager.get_query_set...Adrian Holovaty2007-08-061-1/+1
* Fixed #4945 -- Removed unused `GET_ITERATOR_CHUNK_SIZE` definition from manag...Gary Wilson Jr2007-07-221-4/+0
* Fixed #3283 -- Added support for empty QuerySets via none() method. Thanks fo...Adrian Holovaty2007-01-231-1/+7
* Second half of little cleanup tweaks suggested by pyflakes.Jacob Kaplan-Moss2006-07-211-3/+0
* Added {{{Manager.create()}}} method to create and save an object in a single ...Jacob Kaplan-Moss2006-06-271-2/+5
* Fixed the detection of when a custom manager is required because an 'objects'Malcolm Tredinnick2006-06-151-2/+6
* Added Manager.get_or_create()Adrian Holovaty2006-06-071-0/+3
* Fixed #1579 - added support for 'Q' objects in limit_choices_to.Luke Plant2006-05-061-0/+3
* MERGED MAGIC-REMOVAL BRANCH TO TRUNK. This change is highly backwards-incompa...Adrian Holovaty2006-05-021-0/+101