Skip to content

Releases: jpsim/Yams

5.1.3

10 Jul 13:39
3036ba9
Compare
Choose a tag to compare

5.1.3

Breaking
  • None.
Enhancements
Bug Fixes

5.1.2

10 Apr 14:00
9234124
Compare
Choose a tag to compare
Breaking
  • None.
Enhancements
  • None.
Bug Fixes

5.1.1

08 Apr 15:06
23b6264
Compare
Choose a tag to compare
Breaking
  • None.
Enhancements
  • Allow specifying a newLineScalarStyle for encoding string scalars with newlines when using YAMLEncoder.
    Tejas Sharma
    #405

  • Improve support for Bazel 7.x.
    JP Simard

Bug Fixes
  • None.

5.1.0

23 Mar 20:33
8a835d9
Compare
Choose a tag to compare
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

5.0.6

19 Jun 16:36
0d9ee7e
Compare
Choose a tag to compare
Breaking
  • None.
Enhancements
  • Allow decoding from an existing Node.
    Rob Napier
Bug Fixes
  • Empty dictionaries can be now represented, regardless of its key or element
    type information.
    JP Simard
    #393

5.0.5

20 Feb 16:26
f47ba48
Compare
Choose a tag to compare
Breaking
  • None.
Enhancements
  • None.
Bug Fixes

5.0.4

31 Jan 15:29
4889c13
Compare
Choose a tag to compare
Breaking
  • None.
Enhancements
Bug Fixes
  • None.

5.0.3

16 Jan 14:10
c7facc5
Compare
Choose a tag to compare
Breaking
  • None.
Enhancements
Bug Fixes
  • None.

5.0.2

16 Jan 14:02
4b6baa8
Compare
Choose a tag to compare
Breaking
  • None.
Enhancements
Bug Fixes
  • None.

5.0.1

28 Apr 17:53
01835dc
Compare
Choose a tag to compare
Breaking
  • None.
Enhancements
  • None.
Bug Fixes
  • Build CYaml as PIC (Position Independent Code) when building with
    CMake.
    Yuta Saito