summaryrefslogtreecommitdiff
path: root/django/db/models/query.py
AgeCommit message (Expand)Author
2025-11-05[6.0.x] Refs CVE-2025-64459 -- Avoided propagating invalid arguments to Q on ...Jacob Walls
2025-10-14[6.0.x] Fixed #36648, Refs #33772 -- Accounted for composite pks in first()/l...Jacob Walls
2025-09-22[6.0.x] Fixed #35453 -- Made ManyToManyField.concrete False.Ryan P Kilby
2025-09-16Fixed #36606 -- Optimized QuerySet.values_list(flat=True) without fields.Adam Johnson
2025-09-16Fixed #36426 -- Added support for further iterables in prefetch_related_objec...blingblin-g
2025-09-14Refs #27222 -- Refreshed GeneratedFields values on save() initiated update.Simon Charette
2025-08-29Refs #36152 -- Suppressed duplicate warning when using "%" in alias via value...Jacob Walls
2025-08-21Refs #36430, #36416, #34378 -- Simplified batch size calculation in QuerySet....Jacob Walls
2025-08-15Refs #36490 -- Simplified QuerySet._batched_insert returning fields handling.Simon Charette
2025-08-15Fixed #36490 -- Avoided unnecessary transaction in bulk_create.Simon Charette
2025-07-23Refs #36500 -- Corrected rewrapped long lines fixed via a script.Mike Edmunds
2025-07-23Refs #36500 -- Rewrapped long docstrings and block comments via a script.django-bot
2025-07-23Removed double spaces after periods and within phrases.Sarah Boyce
2025-06-03Fixed #36416 -- Made QuerySet.in_bulk() account for composite pks in id_list.Jacob Walls
2025-06-03Fixed #36060 -- Prevented IntegrityError in bulk_create() with order_with_res...myoungjinGo-BE
2025-05-19Fixed #36388 -- Made QuerySet.union() return self when called with no arguments.Colleen Dunlap
2025-05-12Fixed #36373 -- Fixed select_related() crash on foreign object for a composit...Simon Charette
2025-04-30Fixed #36360 -- Fixed QuerySet.update() crash when referring annotations thro...Simon Charette
2025-04-26Refs #36326 -- Fixed QuerySet.raw() crash on models with CompositePrimaryKey ...Mariusz Felisiak
2025-04-17Fixed #36326 -- Added CompositePrimaryKey support in QuerySet.raw().SaJH
2025-04-11Fixed #36288 -- Addressed improper handling of duplicates in values_list().Simon Charette
2025-03-31Refs #28909 -- Simplified code using unpacking generalizations.Aarni Koskela
2025-03-26Refs #36260 -- Moved _is_pk_set checks into _prepare_for_bulk_create().Simon Charette
2025-03-26Fixed #36260 -- Made bulk_create() work with DB-generated primary keys.Dmitry Shachnev
2025-02-11Fixed #36149 -- Allowed subquery values against tuple exact and in lookups.Simon Charette
2025-02-01Fixed #36088 -- Avoided unnecessary DEFAULT usage on bulk_create().Simon Charette
2025-01-30Fixed #36155 -- Improved error handling when annotate arguments require an al...Vinko Mlačić
2025-01-29Fixed #36118 -- Accounted for multiple primary keys in bulk_update max_batch_...Sarah Boyce
2025-01-15Refs #33651 -- Removed Prefetch.get_current_queryset() and get_prefetch_query...Sarah Boyce
2025-01-14Refs #36075 -- Adjusted pk_fields usage in bulk_update eligibility checks.Simon Charette
2025-01-13Refs #36075 -- Used field in pk_fields over field.primary_key.Sarah Boyce
2025-01-10Fixed #36068 -- Raised ValueError when providing a composite PK field to bulk...Jacob Walls
2025-01-03Fixed #35918 -- Added support for execute_sql to directly return row counts.Raphael Gaschignard
2025-01-02Fixed typo in django/db/models/query.py docstring.Jacob Walls
2024-11-29Fixed #373 -- Added CompositePrimaryKey.Bendeguz Csirmaz
2024-11-01Fixed #35837 -- Added missing alters_data=True to QuerySet and UserManager me...Sarah Boyce
2024-09-09Refs #373 -- Added Model._is_pk_set() abstraction to check if a Model's PK is...Csirmaz Bendegúz
2024-09-02Fixed #35690 -- Errored nicely when using in_bulk() with a values() or values...John Parton
2024-07-03Refs #28900 -- Made SELECT respect the order specified by values(*selected).Simon Charette
2024-02-26Fixed #35241 -- Cached model's full parent list.Adam Johnson
2024-02-20Fixed #35236 -- Used Field.attname/column attributes instead of get_attname()...Adam Johnson
2024-01-26Applied Black's 2024 stable style.Mariusz Felisiak
2024-01-02Improved variable names in QuerySet.delete().Michael
2023-10-06Fixed #34889 -- Fixed get_prefetch_queryset() fallback in prefetch_one_level().Mariusz Felisiak
2023-09-18Fixed #33651 -- Added support for prefetching GenericForeignKey.Clément Escolano
2023-09-07Fixed #34791 -- Fixed incorrect Prefetch()'s cache for singly related objects.Maxime Toussaint
2023-09-07Fixed #31300 -- Added GeneratedField model field.Jeremy Nauta
2023-08-25Simplified QuerySet.update_or_create() a bit.Muzaffer Cikay
2023-08-09Fixed #34586 -- Made QuerySet.create() raise ValueError for reverse one-to-ma...Mariana
2023-07-31Fixed #34331 -- Added QuerySet.aiterator() support for prefetch_related().John Parton