summaryrefslogtreecommitdiff
path: root/django/db/models/query.py
Commit message (Expand)AuthorAgeFilesLines
* Fixed #34421 -- Fixed QuerySet.update() on querysets in descending order by a...hb6h0572023-03-181-1/+8
* Fixed #34378 -- Made QuerySet.in_bulk() not clear odering when id_list is pas...Ekaterina Vahrusheva2023-03-031-2/+2
* Fixed #34280 -- Allowed specifying different field values for create operatio...tschilling2023-02-141-7/+15
* Refs #33476 -- Applied Black's 2023 stable style.David Smith2023-02-011-1/+1
* Refs #29984 -- Made QuerySet.iterator() without chunk_size raise ValueError a...Mariusz Felisiak2023-01-171-11/+3
* Refs #32365 -- Removed is_dst argument for various methods and functions.Mariusz Felisiak2023-01-171-6/+1
* Fixed #31679 -- Delayed annotating aggregations.Simon Charette2022-11-231-20/+2
* Fixed #34171 -- Fixed QuerySet.bulk_create() on fields with db_column in uniq...DevilsAutumn2022-11-221-5/+4
* Fixed #34177 -- Fixed QuerySet.bulk_create() crash on "pk" in unique_fields.Mariusz Felisiak2022-11-221-5/+7
* Fixed #27654 -- Propagated alters_data attribute to callables overridden in s...LightDiscord2022-11-041-2/+6
* Fixed #32095 -- Made QuerySet.update_or_create() save only fields passed in d...sarahboyce2022-09-301-2/+20
* Fixed #33799, Refs #31685 -- Added parameters for updating conflicts to Query...DhruvaPatil982022-06-231-1/+12
* Fixed #28897 -- Fixed QuerySet.update() on querysets ordered by annotations.David Wobrock2022-06-171-0/+14
* Fixed #33772 -- Added QuerySet.first()/last() error message on unordered quer...Pablo Pissi2022-06-141-2/+21
* Made QuerySet.bulk_update() raise an error when batch_size is zero.Ebram Shehata2022-06-131-1/+1
* Refs #33646 -- Reduced sync_to_async hops on async QuerySet iteration.Simon Charette2022-05-041-14/+2
* Refs #33646 -- Made QuerySet.raw() async-compatible.Mariusz Felisiak2022-05-021-0/+16
* Refs #33646 -- Added RawModelIterable.Mariusz Felisiak2022-05-021-35/+45
* Fixed #33646 -- Added async-compatible interface to QuerySet.Andrew Godwin2022-04-261-1/+157
* Fixed #29865 -- Added logical XOR support for Q() and querysets.Ryan Heard2022-03-041-0/+19
* Fixed #33506 -- Made QuerySet.bulk_update() perform atomic writes against wri...Simon Charette2022-02-091-1/+3
* Refs #33476 -- Refactored code to strictly match 88 characters line length.Mariusz Felisiak2022-02-071-1/+2
* Refs #33476 -- Reformatted code with Black.django-bot2022-02-071-254/+475
* Refs #33476 -- Refactored problematic code before reformatting by Black.Mariusz Felisiak2022-02-031-6/+3
* Fixed #33463 -- Fixed QuerySet.bulk_update() with F() expressions.Jörg Breitbart2022-01-271-2/+2
* Fixed #29984 -- Added QuerySet.iterator() support for prefetching related obj...Jacob Walls2022-01-251-6/+33
* Fixed #31685 -- Added support for updating conflicts to QuerySet.bulk_create().sean_c_hsu2022-01-191-13/+106
* Fixed #13251 -- Made pre/post_delete signals dispatch the origin.mgaligniana2022-01-111-1/+1
* Fixed #33322 -- Fixed loss of assigned related object when saving relation wi...Hannes Ljungberg2021-11-291-0/+2
* Fixed #33124 -- Avoided accessing the database connections when not necessary.Keryn Knight2021-09-241-10/+10
* Fixed #33127 -- Added error messages on | and & operators with combined query...Hasan Ramezani2021-09-241-0/+6
* Fixed #32365 -- Made zoneinfo the default timezone implementation.Carlton Gibson2021-09-161-1/+3
* Fixed #33003 -- Removed **kwargs from QuerySet._chain().Keryn Knight2021-08-091-6/+5
* Refs #32508 -- Raised Type/ValueError instead of using "assert" in django.db....Daniyal2021-07-151-13/+21
* Refs #32786 -- Made Query.clear_ordering() not to cause side effects by default.Hannes Ljungberg2021-06-301-4/+4
* Fixed #32381 -- Made QuerySet.bulk_update() return the number of objects upda...abhiabhi942021-06-291-2/+4
* Refs #32508 -- Raised TypeError instead of using "assert" on unsupported oper...Mariusz Felisiak2021-03-101-22/+20
* Fixed #24141 -- Added QuerySet.contains().Johan Schiff2021-03-061-0/+21
* Fixed #32433 -- Added error message on QuerySet.delete() following distinct().Egidijus Macijauskas2021-02-111-0/+2
* Fixed #32231 -- Allowed passing None params to QuerySet.raw().Alexander Lyabah2021-01-051-3/+3
* Fixed #32089 -- Fixed prefetch_related_objects() when some objects are alread...Alexey Nigin2020-12-161-10/+26
* Made small readability improvements.Martin Thoma2020-10-281-1/+1
* Fixed #29497 -- Fixed loss of assigned parent when saving child with bulk_cre...Hannes Ljungberg2020-10-261-2/+4
* Fixed #32116 -- Fixed QuerySet.order_by() crash on EmptyQuerySet with union()...Hannes Ljungberg2020-10-191-1/+5
* Fixed #32068 -- Added error messages on get() with filters following union(),...Hasan Ramezani2020-10-051-0/+5
* Fixed #31880 -- Made QuerySet.aggregate() raise FieldError when aggregating o...David Wobrock2020-09-291-2/+10
* Fixed #31843 -- Fixed pickling named values from QuerySet.values_list().Kwist2020-09-161-11/+2
* Fixed #31990 -- Fixed QuerySet.ordered for GROUP BY queries on models with Me...Mariusz Felisiak2020-09-141-1/+6
* Fixed #31943 -- Fixed recreating QuerySet.values()/values_list() when using a...Hasan Ramezani2020-09-111-0/+2
* Fixed #31947 -- Made QuerySet.update_or_create() reuse get_or_create().Alexander2020-08-271-29/+17