--------------------
Added
^^^^^
- New ``copy`` functionality to copy the value of another field. :doc:`Check it out <options/copy>`
Filter
""""""
- New ``ToDataclassFilter`` to convert a dictionary to a dataclass.
- New ``ToTypedDictFilter`` to convert a dictionary to a TypedDict.
Validator
"""""""""
- New ``CustomJsonValidator`` to check if a value is the format of a specific json.
- New ``IsDataclassValidator`` to check if a value is a dataclass.
- New ``IsTypedDictValidator`` to check if a value is a TypedDict.
Changed
^^^^^^^
- Moved external API call before the filter and validation process.
Before, filters and validators the the external API field where useless,
because the value of the field where replaced by the API result.
- Updated ``SlugifyFilter`` to remove accents and other special characters.