aboutsummaryrefslogtreecommitdiffstats
path: root/rest_framework/serializers.py
AgeCommit message (Expand)Author
2014-11-13Refactor manyTom Christie
2014-11-13Split out .create and .update on ListSerializerTom Christie
2014-11-07Fix initial data on serializers to reflect writable fieldsTom Christie
2014-11-07Fix serializer initial dataTom Christie
2014-11-07Minor tweaksTom Christie
2014-11-07Serializer cleanupTom Christie
2014-11-06Drop usage of SortedDict. Closes #2027.Tom Christie
2014-11-06Fix exception style for py3Tom Christie
2014-11-06More precise assertion error for bulk updateTom Christie
2014-11-06Support for bulk create. Closes #1965.Tom Christie
2014-11-05Pass through kwargs to both Serializer and ListSerializerTom Christie
2014-11-05Minor cleanupTom Christie
2014-11-03Use invalid_data key for error message. Closes #2002.Tom Christie
2014-10-31Lazy loading of fields and validators. Closes #1963.Tom Christie
2014-10-31Validator documentation and tweaksTom Christie
2014-10-28unique_for_date/unique_for_month/unique_for_yearTom Christie
2014-10-22unique_for_month, unique_for_yearTom Christie
2014-10-22First pass at unique_for_date, unique_for_month, unique_for_yearTom Christie
2014-10-22.validate() can raise field errors or non-field errorsTom Christie
2014-10-17Use serializers.ValidationErrorTom Christie
2014-10-16get_attribute method on fieldsTom Christie
2014-10-16Stricter checking for failure cases.Tom Christie
2014-10-15Add a keys method to BindingDictMarty Alchin
2014-10-15Support fields that reference a simple callableTom Christie
2014-10-15Fix 'lookup_field' on ModelSerializer. Closes #1944.Tom Christie
2014-10-10Relations in 'read_only_fields' should not include a queryset kwargTom Christie
2014-10-10Flake8Tom Christie
2014-10-10TweaksTom Christie
2014-10-10exceptions.ValidationFailed, not Django's ValidationErrorTom Christie
2014-10-09Checks and repr on BoundFieldTom Christie
2014-10-09First pass on nested serializers in HTMLTom Christie
2014-10-08More gradual deprecationTom Christie
2014-10-08.validate() returning validated data. transform_<field> hooks.Tom Christie
2014-10-08Tweak pre/post save hooks. Return instance in .update().Tom Christie
2014-10-08Tests for generic relationshipsTom Christie
2014-10-03Serializer.save() takes keyword arguments, not 'extras' argumentTom Christie
2014-10-03Fix indentationTom Christie
2014-10-02Browsable API tweaksTom Christie
2014-10-02First pass on incorperating the form rendering into the browsable APITom Christie
2014-10-01First pass at HTML form renderingTom Christie
2014-09-29Absolute URLs for file fieldsTom Christie
2014-09-29UniqueTogetherValidatorTom Christie
2014-09-26Simplify serialization slightlyTom Christie
2014-09-26Added ListFieldTom Christie
2014-09-26Allow many, partial and context in BaseSerializerTom Christie
2014-09-26Release notesTom Christie
2014-09-26request.data attributeTom Christie
2014-09-25Partial supportTom Christie
2014-09-25Clean up bind - no longer needs to be called multiple times in nested fieldsTom Christie
2014-09-25Automatic field bindingTom Christie