summaryrefslogtreecommitdiff
path: root/django/db/models
AgeCommit message (Expand)Author
2025-01-15Refs #35234 -- Removed CheckConstraint.check per deprecation timeline.Sarah Boyce
2025-01-15Refs #35060 -- Removed passing positional arguments to Model.save()/asave() p...Sarah Boyce
2025-01-15Refs #33651 -- Removed Prefetch.get_current_queryset() and get_prefetch_query...Sarah Boyce
2025-01-15Removed ChoicesMeta per deprecation timeline.Sarah Boyce
2025-01-15Refs #16055 -- Removed get_joining_columns()/get_reverse_joining_columns() me...Sarah Boyce
2025-01-15Refs #34547 -- Removed DatabaseOperations.field_cast_sql() per deprecation ti...Sarah Boyce
2025-01-15Refs #34355 -- Removed support for positional arguments in BaseConstraint per...Sarah Boyce
2025-01-15Fixed #36100 -- Checked if composite pk is set in get_next/get_previous.Jacob Walls
2025-01-14Fixed #36051 -- Declared arity on aggregate functions.Jacob Walls
2025-01-14Refs #36075 -- Adjusted MTI handling of _non_pk_concrete_field_names.Simon Charette
2025-01-14Refs #36075 -- Adjusted pk_fields usage in bulk_update eligibility checks.Simon Charette
2025-01-14Fixed #36093 -- Adjusted unique checks to account for inherited primary keys.Simon Charette
2025-01-14Fixed CVE-2024-56374 -- Mitigated potential DoS in IPv6 validation.Michael Manfre
2025-01-13Fixed #36092 -- Disallowed non-local fields in composite primary keys.Bendeguz Csirmaz
2025-01-13Refs #36075 -- Used field in pk_fields over field.primary_key.Sarah Boyce
2025-01-13Refs #36050 -- Fixed OuterRef support for CompositePrimaryKey on Oracle.Simon Charette
2025-01-13Fixed #36086 -- Fixed crash when using GeneratedField with non-AutoField pk.Simon Charette
2025-01-13Refs #373 -- Removed unused composite pk code in SQLInsertCompiler.Simon Charette
2025-01-10Fixed #36050 -- Added OuterRef support to CompositePrimaryKey.Bendeguz Csirmaz
2025-01-10Fixed #36064 -- Skipped an UPDATE when adding a model instance with a composi...Bendeguz Csirmaz
2025-01-10Refs #36064 -- Added Model.has_db_default() to encapsulate NOT_PROVIDED checks.Simon Charette
2025-01-10Fixed #36068 -- Raised ValueError when providing a composite PK field to bulk...Jacob Walls
2025-01-09Fixed #36074 -- Excluded composite primary key fields on save() updates.Simon Charette
2025-01-08Fixed #36062 -- Handled serialization of CompositePrimaryKeys.Sarah Boyce
2025-01-08Fixed #36065 -- Fixed ordering by expression referencing composite primary key.Simon Charette
2025-01-07Refs #36042 -- Raised ValueError when providing composite expressions to aggr...Jacob Walls
2025-01-07Fixed #36042 -- Raised ValueError when using CompositePrimaryKey as rhs.Jacob Walls
2025-01-06Fixed #35718 -- Add JSONArray to django.db.models.functions.John Parton
2025-01-06Fixed #36048 -- Preferred ValueError to NotSupportedError for composite pk sa...Jacob Walls
2025-01-03Fixed #35918 -- Added support for execute_sql to directly return row counts.Raphael Gaschignard
2025-01-03Fixed #36029 -- Handled implicit exact lookups in condition depth checks for ...Jacob Walls
2025-01-02Fixed typo in django/db/models/fields/related_descriptors.py.Jacob Walls
2025-01-02Fixed typo in django/db/models/query.py docstring.Jacob Walls
2025-01-02Fixed #36034 -- Added system check for ForeignKey/ForeignObject/ManyToManyFie...Mariusz Felisiak
2025-01-02Refs #373 -- Errored when providing db_column to CompositePrimaryKey.Jacob Walls
2024-12-17Fixed #35992, Fixed #35997 -- Added system check for CompositePrimaryKeys in ...Mariusz Felisiak
2024-12-16Refs #35718, Refs #32179 -- Moved JSONObject to django.db.models.functions.json.Sage Abdullah
2024-12-16Imported Coalesce from django.db.models.functions.Jacob Walls
2024-12-11Refs #35936 -- Avoided field placeholder lookup for each value inserted.Simon Charette
2024-12-09Fixed #35982 -- Made DecimalField.get_db_prep_value() call DatabaseOperations...Tim Graham
2024-12-04Fixed CVE-2024-53908 -- Prevented SQL injections in direct HasKeyLookup usage...Simon Charette
2024-12-03Refs #35842 -- Fixed handling of quotes in JSONField key lookups on Oracle.Sage Abdullah
2024-12-02Fixed #35950 -- Restored refreshing of relations when fields deferred.Adam Johnson
2024-11-29Fixed #373 -- Added CompositePrimaryKey.Bendeguz Csirmaz
2024-11-28Fixed #35038 -- Created AlterConstraint operation.Salvo Polizzi
2024-11-11Fixed #35815 -- Made system check accept db_default literals when DatabaseFea...Tim Graham
2024-11-06Fixed #35778 -- Used JSON_OBJECT database function on PostgreSQL 16+ with ser...John Parton
2024-11-06Removed definition of JSONObject ArgJoiner class in as_native function.Sarah Boyce
2024-11-04Refs #373 -- Added TupleIn subqueries.Bendeguz Csirmaz
2024-11-01Fixed #35837 -- Added missing alters_data=True to QuerySet and UserManager me...Sarah Boyce