summaryrefslogtreecommitdiff
path: root/django/db/models/fields
AgeCommit message (Expand)Author
2025-03-31Refs #28909 -- Simplified code using unpacking generalizations.Aarni Koskela
2025-03-31Fixed #22977 -- Added system check for clashing managers and reverse related ...Anthony Joseph
2025-03-28Fixed #36239 -- Fixed a crash in ManyToManyField.through_fields check when to...saJaeHyukc
2025-03-25Fixed #36262 -- Made GeneratedField.db_persist a required key-word argument.Jason Cameron
2025-02-18Fixed #35167 -- Delegated to super() in JSONField.get_db_prep_save().Jacob Walls
2025-02-18Fixed #36197 -- Fixed improper many-to-many count() and exists() for non-pk t...Simon Charette
2025-02-18Refs #36005 -- Used datetime.UTC alias instead of datetime.timezone.utc.Mariusz Felisiak
2025-02-13Refs #36181 -- Removed the obsolete SubqueryConstraint machinery.Simon Charette
2025-02-13Fixed #36181 -- Allowed Subquery usage in __in lookups against composite pks.Simon Charette
2025-02-11Fixed #36149 -- Allowed subquery values against tuple exact and in lookups.Simon Charette
2025-02-09Fixed #36148 -- Enabled native tuple comparison lookups on SQLite 3.37+ and O...Simon Charette
2025-02-09Refs #36148 -- Relied on a feature switch to define tuple lookups support.Simon Charette
2025-02-09Refs #373 -- Delegated Tuple compilation to compiler.Simon Charette
2025-02-06Fixed #36061 -- Added migration support for ManyToManyField.through_fields.brian
2025-02-06Fixed #35677 -- Avoided non-sticky filtering of prefetched many-to-many.Simon Charette
2025-02-03Fixed #36135 -- Fixed reverse GenericRelation prefetching.Simon Charette
2025-01-21Fixed #36116 -- Optimized multi-column ForwardManyToOne prefetching.Simon Charette
2025-01-20Fixed #36005 -- Dropped support for Python 3.10 and 3.11.Mariusz Felisiak
2025-01-15Refs #35405 -- Removed FieldCacheMixin.get_cache_name() per deprecation timel...Sarah Boyce
2025-01-15Refs #33651 -- Removed Prefetch.get_current_queryset() and get_prefetch_query...Sarah Boyce
2025-01-15Refs #16055 -- Removed get_joining_columns()/get_reverse_joining_columns() me...Sarah Boyce
2025-01-14Fixed CVE-2024-56374 -- Mitigated potential DoS in IPv6 validation.Michael Manfre
2025-01-13Refs #36050 -- Fixed OuterRef support for CompositePrimaryKey on Oracle.Simon Charette
2025-01-10Fixed #36050 -- Added OuterRef support to CompositePrimaryKey.Bendeguz Csirmaz
2025-01-10Refs #36064 -- Added Model.has_db_default() to encapsulate NOT_PROVIDED checks.Simon Charette
2025-01-08Fixed #36062 -- Handled serialization of CompositePrimaryKeys.Sarah Boyce
2025-01-07Refs #36042 -- Raised ValueError when providing composite expressions to aggr...Jacob Walls
2025-01-06Fixed #36048 -- Preferred ValueError to NotSupportedError for composite pk sa...Jacob Walls
2025-01-02Fixed typo in django/db/models/fields/related_descriptors.py.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-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-11-29Fixed #373 -- Added CompositePrimaryKey.Bendeguz Csirmaz
2024-11-11Fixed #35815 -- Made system check accept db_default literals when DatabaseFea...Tim Graham
2024-11-04Refs #373 -- Added TupleIn subqueries.Bendeguz Csirmaz
2024-10-14Refs #373 -- Added additional validations to tuple lookups.Bendeguz Csirmaz
2024-09-26Refs #373 -- Added support for using tuple lookups in filters.Bendeguz Csirmaz
2024-09-20Refs #373 -- Updated TupleIsNull lookup to check if any is NULL rather than all.Bendeguz Csirmaz
2024-09-11Refs #373 -- Removed outdated comment in RelatedIn lookup.Csirmaz Bendegúz
2024-09-11Refs #373 -- Refactored variable assignments in ColPairs and tuple lookups.Bendeguz Csirmaz
2024-09-11Refs #373 -- Improved test coverage of tuple lookup checks.Bendeguz Csirmaz
2024-09-09Refs #373 -- Added Model._is_pk_set() abstraction to check if a Model's PK is...Csirmaz Bendegúz
2024-08-28Refs #35405 -- Adjusted deprecation warning stacklevel in FieldCacheMixin.get...Simon Charette
2024-08-28Refs #16055 -- Adjusted deprecation warning stacklevel in get_joining_columns...Simon Charette
2024-08-05Fixed #35657 -- Made FileField handle db_default values.Sarah Boyce
2024-08-05Fixed #35638 -- Updated validate_constraints to consider db_default.David Sanders
2024-08-01Refs #373 -- Added tuple lookups.Bendeguz Csirmaz
2024-07-09Fixed #35580 -- Allowed related fields referencing auto-created through models.jason_bruce