summaryrefslogtreecommitdiff
path: root/django/db
AgeCommit message (Expand)Author
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
2022-08-09Fixed #33895 -- Fixed Case() crash with filters that match everything in When().David Wobrock
2022-08-09Fixed #33902 -- Fixed Meta.constraints validation crash with F() expressions.Mariusz Felisiak
2022-08-08Fixed #33899 -- Fixed migration crash when removing indexed field on SQLite 3...Fiza Ashraf
2022-08-06Fixed #33898 -- Fixed Window() expression crash with ArrayAgg().Mariusz Felisiak
2022-08-03Fixed #33872 -- Deprecated django.contrib.postgres.fields.CIText/CICharField/...Mariusz Felisiak
2022-08-02Fixed #33881 -- Added support for database collations to ArrayField(Char/Text...Mariusz Felisiak
2022-07-27Fixed collation tests on MySQL 8.0.30+.Mariusz Felisiak
2022-07-27Refs #32948, Refs #32946 -- Used Q.create() internally for dynamic Q() objects.Nick Pope
2022-07-27Refs #32948 -- Simplified and optimized Q._combine() and __invert__().Nick Pope
2022-07-27Refs #32948 -- Added Node.__copy__().Nick Pope
2022-07-27Refs #32948 -- Simplified WhereNode and Node.__deepcopy__()/add().Nick Pope
2022-07-27Refs #32948 -- Renamed Node._new_instance() to Node.create().Nick Pope
2022-07-27Removed obsolete docstring from WhereNode.clone().Nick Pope
2022-07-27Used AND, OR, XOR constants instead of hard-coded values.Nick Pope
2022-07-26Refs #27236 -- Reverted "Refs #27236 -- Refactored out DeprecationForHistoric...Mariusz Felisiak