summaryrefslogtreecommitdiff
path: root/django/db/models
AgeCommit message (Expand)Author
2022-11-29Refs #10929 -- Fixed aggregates crash when passing strings as defaults.Simon Charette
2022-11-23Fixed #31679 -- Delayed annotating aggregations.Simon Charette
2022-11-22Fixed #34171 -- Fixed QuerySet.bulk_create() on fields with db_column in uniq...DevilsAutumn
2022-11-22Fixed #34177 -- Fixed QuerySet.bulk_create() crash on "pk" in unique_fields.Mariusz Felisiak
2022-11-18Removed unnecessary ForeignKey.get_reverse_path_info().Mariusz Felisiak
2022-11-15Refs #33308 -- Used get_db_prep_value() to adapt JSONFields.Simon Charette
2022-11-15Refs #33308 -- Stopped inheriting from FieldGetDbPrepValueMixin by PostgresOp...Simon Charette
2022-11-15Fixed #34123 -- Fixed combinator order by alias when using select_related().Simon Charette
2022-11-15Avoided unnecessary usage of RawSQL.Simon Charette
2022-11-14Refs #25307 -- Replaced SQLQuery.rewrite_cols() by replace_expressions().Simon Charette
2022-11-14Reduced nesting inside Query.get_aggregation().Simon Charette
2022-11-14Refs #28477 -- Fixed handling aliased annotations on aggregation.Simon Charette
2022-11-11Refs #28477 -- Reduced complexity of aggregation over qualify queries.Simon Charette
2022-11-09Fixed #28477 -- Stripped unused annotations on aggregation.Simon Charette
2022-11-09Fixed #34135 -- Added async-compatible interface to related managers.Jon Janzen
2022-11-08Fixed #34139 -- Fixed acreate(), aget_or_create(), and aupdate_or_create() me...Jon Janzen
2022-11-07Refs #33374 -- Adjusted full match condition handling.Simon Charette
2022-11-07Refs #33308 -- Improved adapting DecimalField values to decimal.Florian Apolloner
2022-11-07Refs #17144 -- Removed support for grouping by primary key.Simon Charette
2022-11-07Fixed #31331 -- Switched MySQL to group by selected primary keys.Simon Charette
2022-11-07Refs #27849 -- Fixed filtered aggregates crash on filters that match everything.Simon Charette
2022-11-07Fixed #34137 -- Made Model.refresh_from_db() clear cached generic relations.Bhuvnesh
2022-11-04Fixed #27654 -- Propagated alters_data attribute to callables overridden in s...LightDiscord
2022-11-02Fixed #34112 -- Added async-compatible interface to Model methods.DevilsAutumn
2022-10-31Used more augmented assignment statements.Nick Pope
2022-10-31Fixed #16211 -- Added logical NOT support to F expressions.David Wobrock
2022-10-29Fixed #34125 -- Fixed sliced QuerySet.union() crash on a single non-empty que...Simon Charette
2022-10-28Used Query.is_sliced in SQLCompiler.as_sql().Simon Charette
2022-10-24Refs #34070 -- Fixed date format in Now() on SQLite.Mariusz Felisiak
2022-10-18Fixed #34105 -- Fixed crash of ordering by nested selected expression.Simon Charette
2022-10-06Refs #30158 -- Removed alias argument for Expression.get_group_by_cols().Simon Charette
2022-10-06Refs #31150 -- Enabled implicit GROUP BY aliases.Simon Charette
2022-10-06Refs #33992 -- Refactored subquery grouping logic.Simon Charette
2022-10-06Refs #33308 -- Enabled explicit GROUP BY and ORDER BY aliases.Simon Charette
2022-10-05Fixed #33768 -- Fixed ordering compound queries by nulls_first/nulls_last on ...Simon Charette
2022-10-04Avoided unnecessary call to .get_source_expressions().Simon Charette
2022-10-04Fixed #34012 -- Made QuerySet.order_by() apply transforms on related fields f...David Sanders
2022-10-03Fixed #34070 -- Added subsecond support to Now() on SQLite and MySQL.Lily Foote
2022-09-30Fixed #33984 -- Reverted "Fixed #32980 -- Made models cache related managers."Mariusz Felisiak
2022-09-30Fixed #32095 -- Made QuerySet.update_or_create() save only fields passed in d...sarahboyce
2022-09-29Refs #32095 -- Added model's Options._non_pk_concrete_field_names property.sarahboyce
2022-09-27Fixed #33464 -- Resolved output_field for combined numeric expressions with M...David Wobrock
2022-09-23Fixed #34024 -- Fixed crash when aggregating querysets with Q objects annotat...David Sanders
2022-09-22Fixed #34015 -- Allowed filtering by transforms on relation fields.Mariusz Felisiak
2022-09-16Fixed #33966 -- Added support for using KeyTextTransform from lookup.Allen Jonathan David
2022-09-15Refs #28333 -- Explicitly ordered outer qualify query on window filtering.Simon Charette
2022-09-13Fixed #33996 -- Fixed CheckConstraint validation on NULL values.David Sanders
2022-09-09Fixed #33975 -- Fixed __in lookup when rhs is a queryset with annotate() and ...DevilsAutumn
2022-09-08Fixed #33992 -- Fixed queryset crash when aggregating over a group containing...Simon Charette
2022-09-06Refs #26780 -- Made prefetch_related() don't use window expressions fo sliced...Mariusz Felisiak