ArduinoJson v6.2.0-beta Release Notes

Release Date: 2018-07-12 // almost 6 years ago
    • Disabled lazy number deserialization (issue #772)
    • ๐Ÿ›  Fixed JsonVariant::is<int>() that returned true for empty strings
    • ๐Ÿ‘Œ Improved float serialization when -fsingle-precision-constant is used
    • ๐Ÿ“‡ Renamed function RawJson() to serialized()
    • ๐Ÿ‘ serializeMsgPack() now supports values marked with serialized()

    BREAKING CHANGES

    Non quoted strings

    Non quoted strings are now forbidden in values, but they are still allowed in keys. For example, {key:"value"} is accepted, but {key:value} is not.

    Preformatted values

    Old code:

    object["values"] = RawJson("[1,2,3,4]");
    

    New code:

    object["values"] = serialized("[1,2,3,4]");