Skip to content

5.1.0

Compare
Choose a tag to compare
@jpsim jpsim released this 23 Mar 20:33
· 17 commits to main since this release
8a835d9
Breaking
  • None.
Enhancements
  • None.
Bug Fixes
  • Change how empty strings are decoded into nullable properties.
    key: "" previously decoded into
    struct Value: Codable { let key: String? } as Value(key: nil)
    whereas after this change it decodes as Value(key: "").
    This could be a breaking change if you were relying on the previous
    semantics.
    Liam Nichols
    #301

  • Fix parsing of unquoted URLs into Strings.
    Honza Dvorsky
    #337