All Versions
5
Latest Version
Avg Release Cycle
92 days
Latest Release
1267 days ago

Changelog History

  • v1.3.0 Changes

    October 09, 2020
    • Feature: Added warn_on_fail parameter to default_list_deserializer that allows to continue deserialization upon errors.
    • ๐Ÿ”‹ Feature: Added transform that can transform an object to an object of another type.
    • ๐Ÿ”‹ Feature: Added serializer and deserializer for pathlib.Path (thanks to alexmirrington).
    • ๐Ÿ”„ Change: When loading a list fails, the error message now points to the failing index.
    • ๐Ÿ›  Bugfix: Fixed bug when dumping an object with an innerclass.
  • v1.2.0 Changes

    July 03, 2020
    • ๐Ÿ›  Bugfix: Fixed bug with postponed typehints (PEP-563).
    • ๐Ÿ›  Bugfix: Loading an invalid value targeting an optional did not raise.
    • ๐Ÿ›  Bugfix: Loading a dict did not properly pass key_transformers.
    • ๐Ÿ›  Bugfix: Loading a namedtuple did not properly use key_transformers.
    • Bugfix: Utilized __annotations__ in favor _field_types because of deprecation as of 3.8.
  • v1.1.1 Changes

    December 22, 2019

    ๐Ÿ”„ Changes

    • ๐Ÿ”‹ Feature: Added a serializer for Union types.
    • ๐Ÿ”„ Change: Exceptions are more clear upon deserialization failure (thanks to haluzpav).
    • ๐Ÿ”„ Change: You can no longer announce a class with a custom name.
    • ๐Ÿ›  Bugfix: Fixed dumping optional attributes.
    • ๐Ÿ›  Bugfix: Dataclasses inheriting from JsonSerializable always dumped their attributes as if in strict mode.
  • v1.1.0 Changes

    December 04, 2019

    ๐Ÿ”„ Changes

    • ๐Ÿ”‹ Feature: Added strict parameter to dump to indicate that dumping a certain cls will ignore any extra data.
    • Feature: When using dump(obj, cls=x), x can now be any class (previously, only a class with __slots__).
    • ๐Ÿ”‹ Feature: Support for dumping Decimal (thanks to herdigiorgi).
    • ๐Ÿ”‹ Feature: Primitives are now cast if possible when dumping (e.g. dump(5, str)).
    • ๐Ÿ”‹ Feature: Dumping iterables with generic types (e.g. dump(obj, List[str])) will now dump with respect to that types (if strict)
    • ๐Ÿ”‹ Feature: The default_dict serializer now optionally accepts types: Optional[Dict[str, type]].
    • ๐ŸŽ Change: Improved performance when dumping using strict=True (up to 4 times faster!).
    • ๐Ÿ›  Bugfix: set_validator with multiple types did not work.
  • v1.0.0 Changes

    October 07, 2019

    ๐Ÿ”„ Changes

    • ๐Ÿ”‹ Feature: Added a serializer/deserializer for time.
    • ๐Ÿ”‹ Feature: Added a serializer/deserializer for timezone.
    • ๐Ÿ”‹ Feature: Added a serializer/deserializer for timedelta.
    • ๐Ÿ”‹ Feature: Added a serializer/deserializer for date.
    • ๐Ÿ›  Bugfix: Dumping verbose did not store the types of dicts (Dict[K, V]).
    • ๐Ÿ›  Bugfix: Loading with List (no generic type) failed.
    • ๐Ÿ›  Bugfix: Loading with Dict (no generic type) failed.
    • ๐Ÿ›  Bugfix: Loading with Tuple (no generic type) failed.