summaryrefslogtreecommitdiff
path: root/django/db/models/fields
AgeCommit message (Expand)Author
2021-12-02Refs #32690 -- Altered lookups Query rhs alterations during initialization.Simon Charette
2021-11-08Fixed #32980 -- Made models cache related managers.Keryn Knight
2021-11-03Fixed #32996 -- Cached PathInfos on relations.Keryn Knight
2021-10-06Fixed #33131 -- Improved error messages for clashing reverse accessor names.Bernd Wechner
2021-09-28Fixed #33033 -- Prevented models.DecimalField from accepting NaN values.Chinmoy Chakraborty
2021-09-24Fixed #33124 -- Avoided accessing the database connections when not necessary.Keryn Knight
2021-09-23Fixed #33133 -- Fixed handling NullBooleanField in historical migrations.Mariusz Felisiak
2021-09-09Fixed #33084 -- Removed incorrect system check for ManyToManyField with limit...Hasan Ramezani
2021-08-06Fixed #32983 -- Added system check for redundant related_name on symmetrical ...Nick Touran
2021-07-30Refs #32966 -- Refactored out DateTimeCheckMixin._check_if_value_fixed().Chris Jerdonek
2021-07-30Refs #32966 -- Simplified the _check_fix_default_value() implementations.Chris Jerdonek
2021-07-30Refs #32966 -- Added _to_naive() and _get_naive_now() for use in DateTimeChec...Chris Jerdonek
2021-07-30Fixed #32966 -- Fixed TimeField.check() crash for timezone-aware times in def...Chris Jerdonek
2021-07-28Refs #32946 -- Changed internal usage of dynamic Q() objects construction to ...Keryn Knight
2021-07-26Fixed #32947 -- Fixed hash() crash on reverse M2M relation when through_field...Tom Wojcik
2021-07-22Fixed #32951 -- Removed Query.where_class & co.Nick Pope
2021-07-15Refs #32508 -- Raised Type/ValueError instead of using "assert" in django.db....Daniyal
2021-07-09Fixed #27021 -- Allowed lookup expressions in annotations, aggregations, and ...Ian Foote
2021-07-07Fixed #32840 -- Optimized Field.get_col().Keryn Knight
2021-06-15Fixed #30427, Fixed #16176 -- Corrected setting descriptor in Field.contribut...Carlton Gibson
2021-05-28Fixed #32676 -- Prevented migrations from rendering related field attributes ...David Wobrock
2021-05-13Fixed #32718 -- Relaxed file name validation in FileField.Mariusz Felisiak
2021-05-04Fixed CVE-2021-31542 -- Tightened path & file name sanitation in file uploads.Florian Apolloner
2021-04-13Corrected typo in Field.deconstruct docstring.Daniel Hahler
2021-04-08Fixed #32620 -- Allowed subclasses of Big/SmallAutoField for DEFAULT_AUTO_FIELD.Adam Johnson
2021-03-23Fixed #32483 -- Fixed QuerySet.values()/values_list() on JSONField key transf...Mariusz Felisiak
2021-02-05Fixed #32411 -- Fixed __icontains lookup for JSONField on MySQL.Hasan Ramezani
2021-01-14Refs #31369 -- Removed models.NullBooleanField per deprecation timeline.Mariusz Felisiak
2020-12-30Fixed #32294 -- Prevented ManyToManyField's hidden related name collisions be...manav014
2020-12-29Added app labels to related fields checks messages E302-E305.Mariusz Felisiak
2020-12-29Used model's Options.label where applicable.Mariusz Felisiak
2020-12-11Fixed #32252 -- Fixed __isnull=True on key transforms on SQLite and Oracle.sage
2020-12-07Removed lhs_only argument from KeyTransform.preprocess_lhs().sage
2020-11-25Fixed #32203 -- Fixed QuerySet.values()/values_list() crash on key transforms...sage
2020-11-24Simplified JSONField key transforms by using JSON_OBJECT() on Oracle.Mariusz Felisiak
2020-11-10Fixed #32182 -- Fixed crash of JSONField nested key transforms with subquery ...Hannes Ljungberg
2020-11-02Fixed #32132 -- Fixed column types in m2m intermediary tables for Positive(Bi...David-Wobrock
2020-10-15Refs #32096 -- Made JSONField check respect Meta.required_db_vendor.Mariusz Felisiak
2020-10-14Refs #32096 -- Fixed __in lookup crash against key transforms for JSONField.Mariusz Felisiak
2020-10-12Fixed #32098 -- Made FieldFile use FileField.attname.Sultan
2020-10-06Refs #20577 -- Deferred filtering of prefetched related querysets by reverse ...Bob Renwick
2020-10-05Refs #31926 -- Fixed reverse related identity crash on Q() limit_choices_to.Simon Charette
2020-10-05Fixed #31926 -- Fixed recreating queryset with FilteredRelation when using a ...David-Wobrock
2020-09-21Fixed #31777 -- Added support for database collations to Char/TextFields.Tom Carrick
2020-09-09Fixed #31750 -- Made models.Field equality compare models for inherited fields.Ryan Hiebert
2020-09-02Fixed #31941 -- Corrected FileField.deconstruct() with a callable storage.Brian Helba
2020-08-31Fixed #31952 -- Fixed EmptyFieldListFilter crash with reverse relationships.Federico Jaramillo Martínez
2020-08-28Fixed #31956 -- Fixed crash of ordering by JSONField with a custom decoder on...Mariusz Felisiak
2020-08-26Fixed #31936 -- Fixed __in lookup on key transforms for JSONField.Mariusz Felisiak
2020-07-30Removed unnecessary list() call in RelatedManager.add().Sergey Fedoseev