All Versions
6
Latest Version
Avg Release Cycle
193 days
Latest Release
2392 days ago

Changelog History

  • v0.3.1 Changes

    November 28, 2017
    • Don't catch AttributeError and KeyError for MethodField
  • v0.3.0 Changes

    November 28, 2017
    • โช Revert behavior in #38, and match behavior in DRF which is:
    required=True required=False
    data = {'value': 1} {'value': 1} {'value': 1}
    data = {'value': None} {'value': None} {'value': None}
    data = {} KeyError('value',) {}
  • v0.2.0 Changes

    September 29, 2017
    • If required=False, None values will now be dropped from the output
    • ๐Ÿ‘ป MethodFields with required=True will trigger an exception when None value is returned
    • โฌ‡๏ธ Drop support for Python 2.6
    • โž• Add support for Python 3.5 and 3.6
  • v0.1.1 Changes

    April 12, 2016
    • โž• Added label parameter to Field to be able to specify the output label
    • ๐Ÿ“š Updated documentation
  • v0.1.0 Changes

    September 11, 2015

    API changes:

    • argument for the object to be serialized changed name from obj to instance
    • Serializer now takes context kwarg and ignores it for Django REST Framework compat
    • Serializer now takes data kwarg and errors for Django REST Framework compat
  • v0.0.3

    April 07, 2015