- Microseconds no longer gets lost when deserializing datetimes without dateutil installed (:issue:`1147`).
2.19.3
*******************
Bug fixes:
- Fix bug where nested fields in ``Meta.exclude`` would not work on multiple instantiations (:issue:`1212`). Thanks :user:`MHannila` for reporting.
2.19.2
*******************
Bug fixes:
- Handle ``OverflowError`` when (de)serializing large integers with ``fields.Float`` (:pr:`1177`). Thanks :user:`brycedrennan` for the PR.
2.19.1
*******************
Bug fixes:
- Fix bug where ``Nested(many=True)`` would skip first element when serializing a generator (:issue:`1163`). Thanks :user:`khvn26` for the catch and patch.
2.19.0
*******************
Deprecation/Removal:
- A ``RemovedInMarshmallow3`` warning is raised when using ``fields.FormattedString``. Use ``fields.Method`` or ``fields.Function`` instead (:issue:`1141`).
2.18.1
*******************
Bug fixes:
- A ``ChangedInMarshmallow3Warning`` is no longer raised when ``strict=False`` (:issue:`1108`). Thanks :user:`Aegdesil` for reporting.