Skip to content

Releases: tristanhimmelman/ObjectMapper

2.2.8

11 Jul 23:25
Compare
Choose a tag to compare
  • bug fixes for toObject mappings
  • shouldIncludeNilValues bug fix
  • immutable array of raw representable bug fix

2.2.7

26 May 15:43
Compare
Choose a tag to compare
  • Integer overflow fix
  • HexColorTransform fix
  • travis fix
  • other miscellaneous minor improvements

2.2.6

20 Apr 14:02
Compare
Choose a tag to compare
  • Increase decimal transform precision in NSDecimalTransform
  • Support for ImmutableMappable as property of Mappable
  • Allow URLTransform to accept custom character set

2.2.5

28 Feb 21:21
Compare
Choose a tag to compare

Integer mapping fix

2.2.4

25 Feb 20:38
Compare
Choose a tag to compare
  • Support for UnsignedInteger/SignedInteger (Thanks @devxoul)
  • Support for ImmutableMappable 2 dimensional arrays (Thanks @afonsograca)
  • Linux bug fixes (Thanks @foldericon)

2.2.3

15 Feb 18:13
Compare
Choose a tag to compare
  • Fix for Linux builds
  • Fix in HexColorTransform

Support for including null values in ToJSON output

11 Dec 23:28
Compare
Choose a tag to compare

Support for printing null values in ToJSON. See shouldIncludeNilValues variable in Mapper. Thanks @traylewin
Bug fix: MapContext is now being correctly passed down when mapping nested objects (for ImmutableMappable mappings) Thanks @haritowa

2.2.1

02 Nov 18:07
Compare
Choose a tag to compare
  • Support for a custom delimiter for nested mappings
  • Swift Package Manager bug fix
  • Other bug fixes

2.2.0

23 Oct 16:55
Compare
Choose a tag to compare
  • Improved support for ImmutableMapable (Thanks @devxoul)
  • New HexColorTransform (Thanks @vitkuzmenko)
  • Support for a custom nested key delimiter (Thanks @devxoul)
  • Support for Swift Package Manager (Thanks @diogoguimaraes)

`ImmutableMappable` - Support for immutable mappings

07 Oct 18:27
Compare
Choose a tag to compare
  • Support of Immutable mappings. Thanks to @devxoul!
    • New protocol ImmutableMappable which defines a throwing init function where immutable mappings can be performed
    • New operator for Model to JSON generation >>>
  • Bug fix: DateTransforms now marked as open
  • Map.currentKey is now public