Skip to content

Latest commit

 

History

History
52 lines (40 loc) · 1.53 KB

CHANGELOG.md

File metadata and controls

52 lines (40 loc) · 1.53 KB

Changelog

All notable changes to this project will be documented in this file.

The format is based on Keep a Changelog, and this project adheres to Semantic Versioning.

[1.1.8] - 2020-10-28

Fixed

  • Allow decoding of immutable associative arrays.

[1.1.7] - 2020-10-01

Fixed

  • Revert 1.1.3
  • Implement different solution: remove problematic foreach (...; readArray).

[1.1.6] - 2020-09-30

Fixed

  • Support decode!(const JSONValue).

[1.1.5] - 2020-09-29

Fixed

  • Fix typo in text.json.Encode.

[1.1.4] - 2020-09-29

Fixed

  • Fix JSON encoding of classes.

[1.1.3] - 2020-09-29

Fixed

  • Remove pointless @disable this(this) that was breaking array-of-struct decoding.

[1.1.2] - 2020-09-24

Fixed

[1.1.1] - 2020-09-24

Fixed

  • Include a copy of std_data_json and taggedalgebraic directly. Work around DMD bug 21235 by hacking opEquals to be non-templated. This change should be reverted once the upstream issues are fixed. (Hah. Right.)

[1.1.0] - 2020-09-01

Added

  • Allow loading any type with a fromString static method from a string, such as an XML attribute.

[1.0.1] - 2020-07-27

Fixed

  • Remember to pop stream for numbers when decoding JSONValue.

[1.0.0] - 2020-07-27

Added

  • Initial version: move text.xml, text.json over from internal Utilities repo; switch json decoding to stdx_data_json.