XMLCoder v0.12.0 Release Notes

Release Date: 2021-01-26 // about 3 years ago
  • ๐Ÿš€ This release adds a few new features. Namely:

    • ๐Ÿ†• New charactersEscapedInAttributes and charactersEscapedInElements properties on XMLEncoder that allow customizing how certain characters are escaped.
    • You can now override the implementation of TopLevelEncoder Combine protocol conformance when subclassing XMLEncoder.
    • ๐Ÿ†• New prettyPrintIndentation property on XMLEncoder, which can take XMLEncoder.PrettyPrintIndentation values such as .tabs(1) or .spaces(2).

    Thanks to Kenta Kubo for the contribution!

    Closed issues:

    • How to decode <itunes:episode> tags (#201)
    • ๐Ÿ— Fail to build in Xcode 12 beta (#196)
    • Changing the root node name ? (#191)
    • " in XML element may not always be escaping (#187)
    • &#10; in XML attributes (#185)
    • " and &quot; are not decoded equally (#184)
    • ๐Ÿ–จ Use 2 spaces instead of 4 when .prettyPrinted (#183)
    • (Help using) How to decode this XML? (#180)

    ๐Ÿ”€ Merged pull requests:

    • โœ… Test DynamicNodeEncoding for root elements (#195) via @MaxDesiatov
    • ๐Ÿ‘‰ Make character escaping customizable in XMLEncoder (#188) via @MaxDesiatov
    • โž• Add prettyPrintIndentation property on XMLEncoder (#186) via @MaxDesiatov
    • ๐Ÿ‘‰ Make TopLevelEncoder implementation overridable (#182) via @kkk669