10000 Tags · sgrsn/ArduinoJson · GitHub
[go: up one dir, main page]

Skip to content

Tags: sgrsn/ArduinoJson

Tags

v6.19.4

Toggle v6.19.4's commit message
ArduinoJson 6.19.4

* Add `ElementProxy::memoryUsage()`
* Add `MemberProxy::memoryUsage()` (issue bblanchon#1730)
* Add implicit conversion from `JsonDocument` to `JsonVariant`
* Fix comparisons operators with `const JsonDocument&`

v6.19.3

Toggle v6.19.3's commit message
ArduinoJson 6.19.3

* Fix `call of overloaded 'String(const char*, int)' is ambiguous`
* Fix `JsonString` operator `==` and `!=` for non-zero-terminated string
* Fix `-Wsign-conversion` on GCC 8 (issue bblanchon#1715)
* MessagePack: serialize round floats as integers (issue bblanchon#1718)

v6.19.2

Toggle v6.19.2's commit message
ArduinoJson 6.19.2

* Fix `cannot convert 'pgm_p' to 'const void*'` (issue bblanchon#1707)

v6.19.1

Toggle v6.19.1's commit message
ArduinoJson 6.19.1

* Fix crash when adding an object member in a too small `JsonDocument`
* Fix filter not working in zero-copy mode (issue bblanchon#1697)

v6.19.0

Toggle v6.19.0's commit message
ArduinoJson 6.19.0

* Remove `ARDUINOJSON_EMBEDDED_MODE` and assume we run on an embedded platform.

v6.18.5

Toggle v6.18.5's commit message
ArduinoJson 6.18.5

* Set `ARDUINOJSON_EMBEDDED_MODE` to `1` on Nios II (issue bblanchon#1657)

v6.18.4

Toggle v6.18.4's commit message
ArduinoJson 6.18.4
973A


* Fixed error `'dummy' may be used uninitialized` on GCC 11
* Fixed error `expected unqualified-id before 'const'` on GCC 11 (issue bblanchon#1622)
* Filter: exact match takes precedence over wildcard (issue bblanchon#1628)
* Fixed deserialization of `\u0000` (issue bblanchon#1646)

v6.18.3

Toggle v6.18.3's commit message
ArduinoJson 6.18.3

* Changed return type of `convertToJson()` and `Converter<T>::toJson()` to `void`
* Added `as<std::string_view>()` and `is<std::string_view>()`

v6.18.2

Toggle v6.18.2's commit message
ArduinoJson 6.18.2

* Removed a symlink because the Arduino Library Specification forbids it

v6.18.1

Toggle v6.18.1's commit message
ArduinoJson 6.18.1

* Fixed support for `volatile float` and `volatile double` (issue bblanchon#1557)
* Fixed error `[Pe070]: incomplete type is not allowed` on IAR (issue bblanchon#1560)
* Fixed `serializeJson(doc, String)` when allocation fails (issue bblanchon#1572)
* Fixed clang-tidy warnings (issue bblanchon#1574, PR bblanchon#1577 by @armandas)
* Added fake class `InvalidConversion<T1,T2>` to easily identify invalid conversions (issue bblanchon#1585)
* Added support for `std::string_view` (issue bblanchon#1578, PR bblanchon#1554 by @0xFEEDC0DE64)
* Fixed warning `definition of implicit copy constructor for 'MsgPackDeserializer' is deprecated because it has a user-declared copy assignment operator`
* Added `JsonArray::clear()` (issue bblanchon#1597)
* Fixed `JsonVariant::as<unsigned>()` (issue bblanchon#1601)
* Added support for ESP-IDF component build (PR bblanchon#1562 by @qt1, PR bblanchon#1599 by @andreaskuster)
0