summaryrefslogtreecommitdiff
path: root/django/db/models/base.py
AgeCommit message (Expand)Author
2024-08-05[5.1.x] Refs #35638 -- Avoided wrapping expressions with Value in _get_field_...David Sanders
2024-07-04[5.1.x] Fixed #35560 -- Made Model.full_clean() ignore GeneratedFields for co...Mark Gensler
2024-06-26[5.1.x] Fixed #35561 -- Made *args and **kwargs parsing more strict in Model....nessita
2024-06-25[5.1.x] Fixed #35554, Refs #35060 -- Corrected deprecated *args parsing in Mo...Adam Johnson
2024-05-07Fixed #35425 -- Avoided INSERT with force_update and explicit pk.Jacob Walls
2024-04-10Fixed #35350 -- Fixed save() with pk set on models with GeneratedFields.Sarah Boyce
2024-03-08Fixed #35044 -- Avoided clearing reverse relations and private fields when ac...Giannis Terzopoulos
2024-03-08Optimized Model.refresh_from_db(fields=...) by using a set.Giannis Terzopoulos
2024-03-08Fixed #35223 -- Made Model.full_clean() ignore fields with db_default when va...Ben Cail
2024-02-29Refs #35234 -- Moved constraint system checks to Check/UniqueConstraint methods.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-19Fixed #35127 -- Made Model.full_clean() ignore GeneratedFields.Mariusz Felisiak
2024-01-15Fixed #28344 -- Allowed customizing queryset in Model.refresh_from_db()/arefr...Aivars Kalvans
2024-01-02Fixed #35060 -- Deprecated passing positional arguments to Model.save()/asave().Salvo Polizzi
2023-12-08Fixed #35019 -- Fixed save() on models with both GeneratedFields and ForeignK...Sarah Boyce
2023-11-25Refs #34925 -- Avoided altering passed by reference refresh_from_db(fields).Simon Charette
2023-11-24Fixed #34925 -- Prevented Model.refresh_from_db() from mutating list of fields.trontelj
2023-09-18Refs #27236 -- Removed Meta.index_together per deprecation timeline.Mariusz Felisiak
2023-09-07Fixed #31300 -- Added GeneratedField model field.Jeremy Nauta
2023-08-11Fixed #34743 -- Fixed Meta.constraints validation crash when using pk.Francesco Panico
2023-07-19Fixed #34701 -- Added support for NULLS [NOT] DISTINCT on PostgreSQL 15+.Simon Charette
2023-06-29Fixed #30382 -- Allowed specifying parent classes in force_insert of Model.sa...Akash Kumar Sen
2023-06-20Fixed #34634 -- Adjusted system check for clashing fields to warn about links...Akash Kumar Sen
2023-06-15Fixed #33414 -- Fixed creating diamond-shaped MTI objects for common ancestor...Akash Kumar Sen
2023-05-12Fixed #470 -- Added support for database defaults on fields.Ian Foote
2023-02-08Fixed #34319 -- Fixed Model.validate_constraints() crash on ValidationError w...Mariusz Felisiak
2023-01-18Refs #34233 -- Used str.removeprefix()/removesuffix().Mariusz Felisiak
2022-12-28Fixed #18468 -- Added support for comments on columns and tables.kimsoungryoul
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-09-30Fixed #33984 -- Reverted "Fixed #32980 -- Made models cache related managers."Mariusz Felisiak
2022-09-29Refs #32095 -- Added model's Options._non_pk_concrete_field_names property.sarahboyce
2022-07-27Refs #32948, Refs #32946 -- Used Q.create() internally for dynamic Q() objects.Nick Pope
2022-07-21Refs #27236 -- Made cosmetic edits to Meta.index_together deprecation.Mariusz Felisiak
2022-05-31Fixed #33191 -- Avoided clearing cached reference when saving child after par...Allen Jonathan David
2022-05-10Fixed #30581 -- Added support for Meta.constraints validation.Gagaro
2022-04-21Fixed #33004 -- Made saving objects with unsaved GenericForeignKey raise Valu...sarahboyce
2022-03-16Used sets for field names for exclusion.Gagaro
2022-02-09Fixed #33501 -- Made order_with_respect_to respect database routers.Damian Posener
2022-02-07Refs #33476 -- Refactored code to strictly match 88 characters line length.Mariusz Felisiak
2022-02-07Refs #33476 -- Reformatted code with Black.django-bot
2022-01-13Improved Model.__init__() properties loop.Adam Johnson
2022-01-11Fixed #13251 -- Made pre/post_delete signals dispatch the origin.mgaligniana
2021-12-03Fixed #33333 -- Fixed setUpTestData() crash with models.BinaryField on Postgr...Mariusz Felisiak
2021-11-29Fixed #33322 -- Fixed loss of assigned related object when saving relation wi...Hannes Ljungberg
2021-11-08Fixed #32980 -- Made models cache related managers.Keryn Knight
2021-11-03Fixed #32996 -- Cached PathInfos on relations.Keryn Knight