summaryrefslogtreecommitdiff
path: root/django/db/models/manager.py
AgeCommit message (Expand)Author
2022-06-01Fixed #33733 -- Preserved wrapper assignment for manager methods.kshivakumar
2022-02-07Refs #33476 -- Refactored code to strictly match 88 characters line length.Mariusz Felisiak
2022-02-07Refs #33476 -- Reformatted code with Black.django-bot
2020-12-29Used model's Options.label where applicable.Mariusz Felisiak
2020-10-27Improved naming consistency in BaseManage.contribute_to_class().Nguyen You
2020-04-15Fixed #31223 -- Added __class_getitem__() to Manager and QuerySet.sobolevn
2018-01-03Fixed #28982 -- Simplified code with and/or.Дилян Палаузов
2017-12-11Fixed #28909 -- Simplified code using tuple/list/set/dict unpacking.Nick Pope
2017-02-28Refs #27656 -- Updated django.db docstring verbs according to PEP 257.Anton Samarchyan
2017-01-25Refs #23919 -- Replaced super(ClassName, self) with super().chillaranand
2017-01-19Refs #23919 -- Stopped inheriting from object to define new style classes.Simon Charette
2017-01-18Refs #23919 -- Removed obsolete __ne__() methods.Aymeric Augustin
2017-01-18Refs #23919 -- Removed six.PY2/PY3 usageClaude Paroz
2017-01-18Refs #23919 -- Removed python_2_unicode_compatible decorator usageClaude Paroz
2016-05-17Fixed #10506, #13793, #14891, #25201 -- Introduced new APIs to specify models...Loïc Bistuer
2016-05-17Fixed #20932, #25897 -- Streamlined manager inheritance.Loïc Bistuer
2015-10-26Fixed #25611 -- Standardized descriptor signatures.Tim Graham
2015-07-02Fixed #25054 -- Added app_label to swapped model AttributeErrorChris Lamb
2015-06-30Fixed #24911 -- Made BaseManager.get_queryset() allow custom queryset args.Jonas Degrave
2015-06-29Removed unused condition for the abstract model in ensure_default_manager()Andriy Sokolovskiy
2015-06-19Fixed #24940 -- Made model managers hashableMarkus Holtermann
2015-05-02Fixed #24693 -- Added label and label_lower property to Model._metaLuis Del Giudice
2015-02-06Sorted 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