summaryrefslogtreecommitdiff
path: root/django/db/models/query_utils.py
AgeCommit message (Expand)Author
2021-02-19[3.2.x] Fixed #32455 -- Allowed right combining Q() with boolean expressions.Hasan Ramezani
2021-02-18[3.2.x] Fixed #32450 -- Fixed crash when ANDing/ORing an empty Q() with not p...starryrbs
2020-06-10Fixed #31680 -- Removed unnecessary getattr() call in DeferredAttribute.__get...alosultan
2020-01-29Simplified DeferredAttribute.__get__() a bit.Taoup
2019-12-06Fixed #31060 -- Reallowed window expressions to be used in conditions outside...Alex Aktsipetrov
2019-11-18Fixed #30988 -- Deprecated the InvalidQuery exception.Simon Charette
2019-11-18Replaced QueryWrapper single usage with RawSQL.Simon Charette
2019-10-01Fixed #30651 -- Made __eq__() methods return NotImplemented for not implement...ElizabethU
2019-07-25Refs #30657 -- Made DeferredAttribute.__init__() to take a field instance ins...Jon Dufresne
2019-04-03Fixed typo in django/db/models/query_utils.py comment.David Beitey
2018-10-08Replaced kwargs.pop() with keyword-only arguments.Jon Dufresne
2018-09-28Refs #28909 -- Simplifed code using unpacking generalizations.Sergey Fedoseev
2018-02-12Refs #29125 -- Made Q.deconstruct() omit 'query_utils' in the path and _conne...Tim Graham
2018-02-12Fixed #29125 -- Made Q.deconstruct() deterministic with multiple keyword argu...Tim Graham
2018-01-02Removed DeferredAttribute.__init__()'s unused model argument.Mariusz Felisiak
2017-12-08Refs #27849 -- Removed empty Q() hack in filtered Aggregate.as_sql().Simon Charette
2017-09-22Fixed #27332 -- Added FilteredRelation API for conditional join (ON clause) s...Nicolas Delaby
2017-07-28Prevented query_utils.refs_expression() from looking for empty string in anno...Sergey Fedoseev
2017-05-25Fixed #28211 -- Prevented ORing an empty Q() from reducing query join efficie...Tom
2017-02-28Refs #27656 -- Updated django.db docstring verbs according to PEP 257.Anton Samarchyan
2017-02-23Refs #11964 -- Made Q objects deconstructible.Ian Foote
2017-01-25Refs #23919 -- Replaced super(ClassName, self) with super().chillaranand
2017-01-21Refs #23919 -- Removed misc references to Python 2.Tim Graham
2017-01-19Refs #23919 -- Stopped inheriting from object to define new style classes.Simon Charette
2017-01-18Refs #23919 -- Stopped using django.utils.lru_cache().Aymeric Augustin
2017-01-18Refs #23919 -- Removed encoding preambles and future importsClaude Paroz
2016-09-26Removed obsolete lines in DeferredAttribute.__get__().Tim Graham
2016-08-11Fixed #26891 -- Fixed lookup registration for ForeignObject.Ryan P Kilby
2016-04-29Fixed #26207 -- Replaced dynamic classes with non-data descriptors for deferr...Anssi Kääriäinen
2016-04-25Removed unused Q.clone().Tim Graham
2016-04-22Removed unused BaseExpression.refs_aggregate().Tim Graham
2016-04-13Fixed #26486 -- Fixed a select_related() + defer() MTI edge case.Tim Graham
2016-02-18Fixed #26233 -- Fixed invalid reSt in models.Q docstring.Tim Graham
2015-10-26Fixed #25611 -- Standardized descriptor signatures.Tim Graham
2015-10-19Fixed #25563 -- Cached deferred models in their proxied model's _meta.apps.Simon Charette
2015-10-05Removed obsolete (since Python 2.3) __safe_for_unpickling__ attribute.Tim Graham
2015-09-21Fixed #24629 -- Unified Transform and Expression APIsJosh Smeaton
2015-06-29Fixed #23791 -- Corrected object type check for pk__in=qsAnssi Kääriäinen
2015-06-05Fixed #24924 -- Join promotion for multiple Case expressionsMark Lavin
2015-05-20Fixed #24705 -- Fixed negated Q objects in expressions.Anssi Kääriäinen
2015-05-16Removed redundant list() calls.Tim Graham
2015-05-11Fixed #24766 -- Added join promotion for Case expressionsAnssi Kääriäinen
2015-04-18Removed cases of six.iter* wrapped in a list()Curtis Maloney
2015-03-25Renamed Field.rel attribute to remote_fieldAnssi Kääriäinen
2015-03-25Refs #24267 -- Implemented lookups for related fieldsAnssi Kääriäinen
2015-02-06Sorted imports with isort; refs #23860.Tim Graham
2015-02-04Fixed #24268 -- removed Query.havingAnssi Kääriäinen
2015-01-15Replaced inner functions by class methods.Simon Charette
2015-01-12Fixed #24031 -- Added CASE expressions to the ORM.Michał Modzelewski
2015-01-08Fixed #24020 -- Refactored SQL compiler to use expressionsAnssi Kääriäinen