Releases: Dobiasd/undictify
Releases · Dobiasd/undictify
0.6.5
- Fixed handling of optional unions
0.6.4
- Support for custom converter functions.
0.6.2
- Allow target values of type Any to accept dicts.
0.6.1
- Disallow conversion when Unions are used as target.
- Improved exception messages.
0.6.0
- Support for unions made of built-in types
- Support for dictionaries as parameters in target functions
0.5.0
Add support for meaningful conversions from string to bool (with convert==True
):
True <- ['1', 'yes', 'true', 'on']
False <- ['0', 'no', 'false', 'off']
0.4.3
Add support for omitting function parameters with default value
0.4.1
- Add support for PEP 563 (postponed evaluation of annotations)
0.4
- Add
type_checked_constructor
to preserve meta-information of classes