summaryrefslogtreecommitdiff
path: root/django/db/models/fields
AgeCommit message (Expand)Author
2018-05-29[2.1.x] Refs #28748 -- Reallowed lazy model field choices.Tim Graham
2018-05-14Refs #28834 -- Moved ancestor field cached value fallback to related fields d...Paulo
2018-05-10Fixed #27629 -- Added router.allow_relation() calls for assignments between u...Stefan R. Filipek
2018-04-20Fixed #29247 -- Allowed blank model field choice to be defined in nested choi...orlnub123
2018-04-17Fixed #29334 -- Updated pypi.python.org URLs to pypi.org.Brett Cannon
2018-03-20Refs #29227 -- Simplified NullBooleanField by making it subclass BooleanField.Nick Pope
2018-03-20Fixed #29227 -- Allowed BooleanField to be null=True.Tim Graham
2018-03-03Added model name to AutoField error message.Almad
2018-02-20Fixed #28442 -- Fixed crash with nested OuterRefs that reference AutoField.Oliver Sauder
2018-02-05Refs #28814 -- Imported from collections.abc to fix Python 3.7 deprecation wa...Raymond Hettinger
2018-02-05Refs #28723 -- Fixed stale prefetch_related cache after add/remove.Jon Dufresne
2018-02-02Fixed imports per isort 4.3.1.Tim Graham
2018-02-01Fixed imports per isort 4.3.0.Mariusz Felisiak
2018-01-27Refs #28748 -- Reallowed lazy values in model field choices.François Freitag
2018-01-24Fixed #28748 -- Made model field choices check more strict for named groups.François Freitag
2018-01-12Fixed #28996 -- Simplified some boolean constructs and removed trivial contin...Дилян Палаузов
2018-01-03Fixed #28982 -- Simplified code with and/or.Дилян Палаузов
2018-01-03Fixed #28984 -- Made assorted code simplifications.Tim Graham
2018-01-03Fixed #28985 -- Removed unneeded None checks before hasattr().Дилян Палаузов
2018-01-02Removed DeferredAttribute.__init__()'s unused model argument.Mariusz Felisiak
2017-12-28Fixed #28926 -- Fixed loss of precision of big DurationField values on SQLite...Sergey Fedoseev
2017-12-26Refs #28459 -- Improved performance of loading DecimalField on SQLite.Sergey Fedoseev
2017-12-26Fixed #28930 -- Simplified code with any() and all().Дилян Палаузов
2017-12-22Fixed #28937 -- Allowed BinaryField to be editable=True.Cameron Curry
2017-12-11Fixed #28909 -- Simplified code using tuple/list/set/dict unpacking.Nick Pope
2017-12-04Fixed #28873 -- Used dict.setdefault() to set model and form field defaults.Дилян Палаузов
2017-12-04Fixed #28860 -- Removed unnecessary len() calls.Дилян Палаузов
2017-11-30Fixed #28856 -- Fixed a regression in caching of a GenericForeignKey pointing...Simon Charette
2017-11-29Fixed #28834 -- Followed ancestor links on field cache lookup failure.Simon Charette
2017-11-11Simplified Field.get_choices().Sergey Fedoseev
2017-11-06Fixed #28776 -- Fixed a/an/and typos in docs and comments.Дилян Палаузов
2017-11-02Fixed #28723 -- Fixed RelatedManager's prefetch_related() cache name.Mike Hansen
2017-10-30Fixed #28742 -- Fixed AttributeError crash when assigning None to cached reve...Paulo
2017-10-18Refs #28575 -- Made RelatedObjectDoesNotExist classes pickable.Simon Charette
2017-10-18Fixed outdated comment in RelatedObjectDoesNotExist.Simon Charette
2017-10-13Corrected examples in related field descriptor docstrings.Simon Charette
2017-10-02Refs #23919 -- Removed unneeded float()/int() calls.Mariusz Felisiak
2017-09-22Fixed #27332 -- Added FilteredRelation API for conditional join (ON clause) s...Nicolas Delaby
2017-09-11Refs #28492 -- Stopped accessing settings at Field.db_tablespace initialization.Simon Charette
2017-09-06Refs #23919 -- Replaced usage of django.utils.functional.curry() with functoo...Sergey Fedoseev
2017-08-31Fixed #28543 -- Prevented ManyToManyField.value_from_object() from being lazy.Tim Graham
2017-08-21Fixed #28375 -- Fixed KeyError crash on reverse prefetch of a model with OneT...Paulo
2017-08-10Refs #16043 -- Refactored internal fields value cache.Paulo
2017-07-31Fixed #27985 -- Fixed query for __exact=value when get_prep_value() converts ...Sergey Fedoseev
2017-07-29Avoided creation of temporary sets.Sergey Fedoseev
2017-07-27Fixed #28371 -- Fixed Cast() with CharField if the max_length argument isn't ...Mariusz Felisiak
2017-07-26Allowed database backends to specify data types for Cast().Mariusz Felisiak
2017-07-20Fixed #28370 -- Deprecated the context arg of Field.from_db_value() and Expre...Tim Graham
2017-07-20Removed unused models.DecimalField._format().Sergey Fedoseev
2017-07-17Fixed #28391 -- Fixed Cast() with CharField and max_length on MySQL.Mariusz Felisiak