History¶
0.3.2 (2018-11-21)¶
- Fixing
DoubleAsStrJsonEncoderby subclassing from DRF which supports datetimes, etc
0.3.1 (2018-11-07)¶
- Fixing
SwappingSerializerMixinby supportingListSerializer
0.3.0 (2018-11-05)¶
- Added
SwappingSerializerMixin. Allows to declaratively swap fields any field instances in child serializers. - Added
DoubleAsStrJsonEncoderfor handicapped API clients.
0.2.3 (2017-10-18)¶
- Fixed how choices are normalized in
SerializerFormto[(key, key)]vs previously[(key, value)]to match DRF’s handling of choices unlike Django forms. - Added support for
Form.all_fieldsandForm.all_base_fieldsinSerializerFormwhich supports custom form classes which implement such API. - Added support for
FormSerializer.Meta.excludewhich allows to specify fields to exclude.
0.2.2 (2017-05-09)¶
- Added
roundingparameter toRoundedDecimalFieldwhich allows to define rounding direction when rounding value.
0.2.1 (2017-04-27)¶
- Fixed bugs in
RoundedDecimalField
0.2.0 (2017-04-25)¶
- Added
RoundedDecimalFieldfor rounding off decimal to specifieddecimal_placesinstead of validing that higher precision is not allowed - Added
URLFieldfor automatic mapping between django forms and DRF serializers
0.1.6 (2016-02-29)¶
- Fixed a bug in
SerializerFormin which form cleaned data was replaced with serializer data instead of updating it.
0.1.5 (2015-07-15)¶
- Fixed a bug in
EnforceValidationFieldMixinthat it was overwritingto_internal_valueinstead ofrun_validation
0.1.4 (2015-07-13)¶
- Test coverage is now at 100%!
0.1.3 (2015-07-10)¶
- Fixed bugs in
AllowBlankNullFieldMixin - All DRF fields not subclass both
AllowBlankNullFieldMixinandEmptyStringFieldMixin
0.1.2 (2015-07-02)¶
- Added custom
to_representation()toEmptyStringFieldMixinwhich allows to pass empty string orNonevalues. This is especially useful for fields likeIntegerFieldwhich would blow up when passing empty string value for non-required fields.
0.1.1 (2015-06-25)¶
- Fixed a bug in
FormSerializerwhich did not honorfield_mappingin any of the subclasses
0.1.0 (2015-06-15)¶
- First release on PyPI.