summaryrefslogtreecommitdiff
path: root/django/db
AgeCommit message (Expand)Author
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-10-03Fixed #23353 -- Used "raise from" when raising TransactionManagementError.David Wobrock
2022-10-01Refs #34058 -- Fixed changing/deleting sequences when altering pre-Django 4.1...Mariusz Felisiak
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-29Fixed #34058 -- Changed sequence types when altering pre-Django 4.1 auto fiel...Mariusz Felisiak
2022-09-27Fixed #33464 -- Resolved output_field for combined numeric expressions with M...David Wobrock
2022-09-27Fixed #34050 -- Replaced invalid chars in migration names with '_'.Adam Johnson
2022-09-25Fixed #34027 -- Fixed migrations crash when altering type of char/text fields...David Sanders
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-13Fixed #31335 -- Fixed removing composed composed Meta constraints/indexes on ...Sergey Fursov
2022-09-12Refs #31335 -- Added SchemaEditor._create_missing_fk_index() on MySQL.Sergey Fursov
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-07Fixed #33982 -- Fixed migrations crash when adding model with ExclusionConstr...James Beith
2022-09-06Refs #33616 -- Updated BaseDatabaseWrapper.run_on_commit comment.DevilsAutumn
2022-09-06Fixed #33616 -- Allowed registering callbacks that can fail in transaction.on...SirAbhi13
2022-09-06Refs #26780 -- Made prefetch_related() don't use window expressions fo sliced...Mariusz Felisiak
2022-09-02Fixed #29799 -- Allowed registering lookups per field instances.Allen Jonathan David
2022-08-30Fixed #21204 -- Tracked field deferrals by field instead of models.Simon Charette
2022-08-30Merged nested if statements in select_related_descend().Simon Charette
2022-08-29Fixed #33960 -- Fixed migrations crash on SQLite < 3.26.Mariusz Felisiak
2022-08-27Fixed #33954 -- Prevented models.DecimalField from accepting NaN, Inf, and -I...Mohamed Karam
2022-08-27Fixed #33952 -- Reallowed creating reverse foreign key managers on unsaved in...David Wobrock
2022-08-27Fixed #33928 -- Avoided unnecessary queries when cascade updating.Simon Charette
2022-08-27Refs #33928 -- Removed unnecessary attribute assignment on on-delete updates.Simon Charette
2022-08-26Fixed #33953 -- Reverted "Fixed #33201 -- Made RenameModel operation a noop f...Iuri de Silvio
2022-08-25Fixed #33938 -- Fixed migration crash for m2m with a through model in another...Simon Charette
2022-08-25Fixed typo in django/db/models/fields/files.py comment.Jan Pieter Waagmeester
2022-08-25Fixed #33916 -- Added support for serialization of enum.Flag in migrations.Willem Van Onsem
2022-08-18Refs #26511 -- Fixed json.KeyTextTransform() on MySQL/MariaDB.Mariusz Felisiak
2022-08-17Fixed #33932 -- Fixed altering AutoFields to OneToOneField on PostgreSQL.BenoƮt Vinot
2022-08-15Fixed #26780 -- Added prefetch_related() support for sliced queries.Simon Charette
2022-08-15Refs #28333 -- Added partial support for filtering against window functions.Simon Charette
2022-08-15Fixed #33901 -- Skipped varchar_pattern_ops/text_pattern_ops index creation w...Haolun Chai
2022-08-12Fixed #33919 -- Fixed adding AutoFields on PostgreSQL.Mariusz Felisiak
2022-08-11Refs #28333 -- Moved SQLCompiler's forced column aliasing logic to get_select().Simon Charette
2022-08-11Replaced Expression.replace_references() with .replace_expressions().Simon Charette
2022-08-10Refs #33895 -- Fixed Case() crash with filters that match everything in When(...Mariusz Felisiak