9. Changelog

9.1. Changes in v0.9.1

  • Fix cannot add validators to DateTimeField and DateField

9.2. Changes in v0.8.0

  • Add support for custom error message when declaring a field

9.3. Changes in v0.7.0

  • Add support for EmailField
  • Add support for ChoiceField

9.4. Changes in v0.6.0

  • Defining Meta class on the serializer class is not required.

9.5. Changes in v0.5.2

  • Add ability to set allow_blank_source on serializer class. If this is set to True the serializer class will not throw error if source is not available.

9.6. Changes in v0.4.1

  • Fix bug where nested serialization where caching data.

9.7. Changes in v0.4.0

  • Add support for MethodField

9.8. Changes in v0.3.1

  • Fixes bug with defining source with dot syntax

9.9. Changes in v0.3.0

  • Add support for FloatField
  • Add support for DecimalField
  • Add support for DictField
  • Add support for UrlField
  • Add support for BooleanField
  • Add support for RawField

9.10. Changes in v0.2.1

  • Fix Field errors are not caught during the validation and stored in error object, but are raised when accessing the object
  • Updated documentation for Create Custom Validators
  • Updated documentation for Create Custom Fields

9.11. Changes in v0.2.0

  • Hooked in the field validators with the serializer
  • Added is_valid() method on the Serializer class
  • Added errors property on the Serializer class
  • Added documentations for the above