You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Adds LosslessDecodingStrategy allowing you to create a custom variant for lossless decoding scenarios.
Adds ISO8601WithFractionalSecondsStrategy type when working with ISO601 dates with fractional seconds.
Enhancements
Codable types have been separated into Encodable and Decodable variants. This is helpful if you only need a property wrapper for decoding. Existing code will continue to work. (@yonaskolb)
Bug Fixes
LosslessValue was incorrectly parsing numeric 1 as true and would fail if this was expected to be parsed as a numeric type. #39
Breaking Changes
LosslessBoolValue has been split from LosslessValue when preserving boolean types is preferred.