summaryrefslogtreecommitdiff
path: root/tests/annotations
AgeCommit message (Expand)Author
2026-03-19Refs #36795 -- Removed unnecessary prohibits_dollar_signs_in_column_aliases f...Simon Charette
2026-02-03Fixed CVE-2026-1287 -- Protected against SQL injection in column aliases via ...Jake Howard
2026-01-16Fixed #36352 -- Improved error message for fields excluded by prior values()/...JaeHyuck Sa
2025-12-04Added DatabaseFeatures.prohibits_dollar_signs_in_column_aliases.Tim Graham
2025-12-02Fixed CVE-2025-13372 -- Protected FilteredRelation against SQL injection in c...Jacob Walls
2025-10-01Fixed CVE-2025-59681 -- Protected QuerySet.annotate(), alias(), aggregate(), ...Mariusz Felisiak
2025-09-22Fixed #36480 -- Made values() resolving error mention unselected aliases.Shubham Singh
2025-09-03Fixed CVE-2025-57833 -- Protected FilteredRelation against SQL injection in c...Jake Howard
2025-08-07Refs #36210 -- Added missing limits in Subquery tests.Jacob Walls
2025-07-23Refs #36500 -- Shortened some long docstrings and comments.Mike Edmunds
2025-06-20Fixed #36152 -- Deprecated use of "%" in column aliases.Jacob Walls
2025-04-05Fixed #36299 -- Prevented field selection on QuerySet.alias() after values().Simon Charette
2025-01-30Fixed #36155 -- Improved error handling when annotate arguments require an al...Vinko Mlačić
2024-08-12Fixed #35586 -- Added support for set-returning database functions.Devin Cox
2024-07-03Refs #28900 -- Made SELECT respect the order specified by values(*selected).Simon Charette
2023-03-25Fixed #34437 -- Made values() resolving error mention selected annotations.Simon Charette
2023-01-26Fixed #34254 -- Fixed return value of Exists() with empty queryset.Raj Desai
2022-11-07Refs #33374 -- Adjusted full match condition handling.Simon Charette
2022-11-07Refs #17144 -- Removed support for grouping by primary key.Simon Charette
2022-10-08Refs #33990 -- Renamed TransactionTestCase.assertQuerysetEqual() to assertQue...Gregor Gärtner
2022-09-09Fixed #33975 -- Fixed __in lookup when rhs is a queryset with annotate() and ...DevilsAutumn
2022-04-14Relaxed some query ordering assertions in various tests.Mariusz Felisiak
2022-04-11Fixed CVE-2022-28346 -- Protected QuerySet.annotate(), aggregate(), and extra...Mariusz Felisiak
2022-03-30Refs #33397 -- Added extra tests for resolving an output_field of CombinedExp...Luke Plant
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
2022-02-03Refs #33476 -- Refactored problematic code before reformatting by Black.Mariusz Felisiak
2021-12-21Fixed #33374 -- Fixed ExpressionWrapper annotations with full queryset.David Wobrock
2021-09-29Fixed #33018 -- Fixed annotations with empty queryset.David Wobrock
2021-07-07Used more specific unittest assertions in tests.Mads Jensen
2021-01-14Refs #31369 -- Removed models.NullBooleanField per deprecation timeline.Mariusz Felisiak
2020-12-10Fixed #32178 -- Allowed database backends to skip tests and mark expected fai...Hasan Ramezani
2020-11-27Fixed #25534, Fixed #31639 -- Added support for transform references in expre...Ian Foote
2020-11-19Fixed #32200 -- Fixed grouping by ExpressionWrapper() with Q objects.Hasan Ramezani
2020-10-29Fixed #32152 -- Fixed grouping by subquery aliases.Christian Klus
2020-09-16Refs #32007 -- Skipped test_q_expression_annotation_with_aggregation on Oracle.Mariusz Felisiak
2020-09-15Fixed #32007 -- Fixed queryset crash with Q() annotation and aggregation.Mariusz Felisiak
2020-08-17Fixed #31888 -- Avoided module-level MySQL queries in tests.Ahmad A. Hussein
2020-07-31Fixed #27719 -- Added QuerySet.alias() to allow creating reusable aliases.Alexandr Tatarinov
2020-07-30Bumped minimum isort version to 5.1.0.David Smith
2020-07-15Refs #30446 -- Removed unnecessary Value(..., output_field) in docs and tests.Simon Charette
2020-07-09Fixed #31773 -- Fixed preserving output_field in ExpressionWrapper for combin...Mariusz Felisiak
2020-06-12Fixed #31659 -- Made ExpressionWrapper preserve output_field for combined exp...Mariusz Felisiak
2020-06-08Fixed #31660 -- Fixed queryset crash when grouping by m2o relation.Mariusz Felisiak
2020-05-14Fixed #31584 -- Fixed crash when chaining values()/values_list() after Exists...Mariusz Felisiak
2020-05-14Fixed #31566 -- Fixed aliases crash when chaining values()/values_list() afte...Simon Charette
2020-04-30Removed unused __str__() methods in tests models.Mariusz Felisiak
2020-04-15Removed unused __str__() methods in tests models.Author: Mads Jensen
2019-11-18Relaxed some query ordering assertions in tests.Tim Graham
2019-07-11Fixed #28289 -- Fixed crash of RawSQL annotations on inherited model fields.can