summaryrefslogtreecommitdiff
path: root/tests/queries/models.py
AgeCommit message (Expand)Author
2024-01-26Applied Black's 2024 stable style.Mariusz Felisiak
2022-10-04Fixed #34012 -- Made QuerySet.order_by() apply transforms on related fields f...David Sanders
2022-09-22Fixed #34015 -- Allowed filtering by transforms on relation fields.Mariusz Felisiak
2022-02-07Refs #33476 -- Reformatted code with Black.django-bot
2021-12-08Fixed #33319 -- Fixed crash when combining with the | operator querysets with...Ömer Faruk Abacı
2021-10-08Fixed tests.queries.models.StaffUser.__str__().Jacob Walls
2020-10-27Fixed some queries tests when primary key values are large.Tim Graham
2020-07-29Fixed #31783 -- Fixed crash when filtering againts "negate" field.Hasan Ramezani
2020-07-06Fixed #23797 -- Fixed QuerySet.exclude() when rhs is a nullable column.Jacob Walls
2020-06-08Fixed #31664 -- Reallowed using non-expressions having filterable attribute a...Nicolas Baccelli
2020-05-15Refs #13227 -- Adjusted a test to avoid making a shared test model unpickable.Simon Charette
2020-05-08Fixed #12990, Refs #27694 -- Added JSONField model field.sage
2020-05-04Changed `'%s' % value` pattern to `str(value)`.Nick Pope
2019-09-09Refs #29444 -- Allowed returning multiple fields from INSERT statements on Po...Johannes Hoppe
2019-07-10Fixed #30628 -- Adjusted expression identity to differentiate bound fields.Simon Charette
2019-06-25Fixed #30477 -- Made reverse lookup use Field.get_db_prep_value() from the ta...can
2018-11-21Fixed #29974 -- Fixed non-truthy primary key values for QuerySet.bulk_update().Tom Forbes
2018-09-18Fixed #23646 -- Added QuerySet.bulk_update() to efficiently update many models.Tom Forbes
2018-03-20Fixed #29227 -- Allowed BooleanField to be null=True.Tim Graham
2018-01-20Refs #20487 -- Added test for querying mixed case fields with common related ...Mariusz Felisiak
2017-12-28Removed unnecessary trailing commas and spaces in various code.Mariusz Felisiak
2017-04-23Fixed #28101 -- Fixed a regression with nested __in subquery lookups and to_f...Simon Charette
2017-03-06Fixed #26522 -- Fixed a nondeterministic AssertionError in QuerySet combining.Bo Marchman
2017-02-09Fixed #26551 -- Fixed negated Q() queries that span relations.François Freitag
2017-01-25Refs #23919 -- Replaced super(ClassName, self) with super().chillaranand
2017-01-18Refs #23919 -- Removed six.<various>_types usageClaude Paroz
2017-01-18Refs #23919 -- Removed python_2_unicode_compatible decorator usageClaude Paroz
2017-01-18Refs #23919 -- Removed encoding preambles and future importsClaude Paroz
2016-09-09Refs #25415 -- Fixed invalid models in the test suite.Adam Chainz
2016-08-17Refs #26983 -- Added test for isnull lookup to CharField with primary_key=True.Chris Lamb
2015-12-03Fixed many spelling mistakes in code, comments, and docs.Josh Soref
2015-09-05Fixed #24525 -- Fixed AssertionError in some complex queries.Tim Graham
2015-07-27Fixed #21127 -- Started deprecation toward requiring on_delete for ForeignKey...Flavio Curella
2015-07-13Refs #24090 -- Added a test for multi-table inheritance + subqueries.Anssi Kääriäinen
2015-04-16Fixed #24605 -- Fixed incorrect reference to alias in subquery.Anssi Kääriäinen
2014-11-20Fixed #23605 -- Fixed nested subquery regressionAnssi Kääriäinen
2014-10-28Fixed #23721 -- check_related_objects without calling __iter__Collin Anderson
2014-07-09Fixed #19671 -- Added warnings that null and validators are ignored for ManyT...Anubhav Joshi
2014-07-01Fixed #14334 -- Query relation lookups now check object types.Anubhav Joshi
2014-06-25Split tests.basic.ModelTests in several tests; refs #18586.zsoldosp
2014-05-05Fixed #22429 -- Incorrect SQL when using ~Q and FAnssi Kääriäinen
2014-03-03Fixed many typos in comments and docstrings.Rodolfo Carvalho
2014-01-28Added tests for m2m queries with custom pk on the end modelsAnssi Kääriäinen
2013-11-07Fixed #21376 -- New implementation for query join promotion logicAnssi Kääriäinen
2013-11-02Fixing E302 ErrorsJason Myers
2013-11-02Fixed #14511 -- bug in .exclude() queryAnssi Kääriäinen
2013-10-01Fixed #21203 -- resolve_columns fields misalignmentAnssi Kääriäinen
2013-09-29Fixed #15786 -- Added a regression test for o2o excludes using F().Simon Charette
2013-09-06Fixed #11811 -- Data-loss bug in queryset.update.Aymeric Augustin
2013-09-03Fixed "indentation is not a multiple of four" pep8 issues.Tim Graham