This project is mirrored from https://*****:*****@github.com/bblanchon/ArduinoJson.git.
Pull mirroring updated .
-
v5.1.0
ArduinoJson 5.1.0 * Added support of `long long` (issue #171) * Moved all build settings to `ArduinoJson/Configuration.hpp`
-
v5.1.0-beta.2
ArduinoJson 5.1.0 beta 2 Fixed build on Visual Studio 2010 and 2012, MinGW32 and GCC 5
-
v5.1.0-beta.1
ArduinoJson 5.1.0 beta 1 * Added support of `long long` (issue #171) * Moved all build settings to `ArduinoJson/Configuration.hpp`
-
v5.0.8
ArduinoJson v5.0.8 * Made the library compatible with [PlatformIO](http://platformio.org/) (issue #181) * Fixed `JsonVariant::is<bool>()` that was incorrectly returning false (issue #214)
-
v5.0.7
ArduinoJson 5.0.7 * Made library easier to use from a CMake project: simply `add_subdirectory(ArduinoJson/src)` * Changed `String` to be a `typedef` of `std::string` (issues #142 and #161) **BREAKING CHANGES**: - `JsonVariant(true).as<String>()` now returns `"true"` instead of `"1"` - `JsonVariant(false).as<String>()` now returns `"false"` instead of `"0"`
-
v5.0.6
Arduino 5.0.6 * Added parameter to `DynamicJsonBuffer` constructor to set initial size (issue #152) * Fixed warning about library category in Arduino 1.6.6 (issue #147) * Examples: Added a loop to wait for serial port to be ready (issue #156)
-
v5.0.5
ArduinoJson 5.0.5 * Add overload `JsonObjectSuscript::set(value, decimals)` (issue #143) * Use `float` instead of `double` to reduce the size of `JsonVariant` (issue #134)
-
v5.0.4
ArduinoJson 5.0.4 * Fixed ambiguous overload with `JsonArraySubscript` and `JsonObjectSubscript` (issue #122)
-
v5.0.3
ArduinoJson 5.0.3 * Fixed `printTo(String)` which wrote numbers instead of strings (issue #120) * Fixed return type of `JsonArray::is<T>()` and some others (issue #121)
-
v5.0.2
ArduinoJson 5.0.2 * Fixed segmentation fault in `parseObject(String)` and `parseArray(String)`, when the `StaticJsonBuffer` is too small to hold a copy of the string * Fixed Clang warning "register specifier is deprecated" (issue #102) * Fixed GCC warning "declaration shadows a member" (issue #103) * Fixed memory alignment, which made ESP8266 crash (issue #104) * Fixed compilation on Visual Studio 2010 and 2012 (issue #107)
-
v5.0.1
ArduinoJson 5.0.0 * Fixed compilation with Arduino 1.0.6 (issue #99)
-
v5.0.0
ArduinoJson 5.0.0 * Added support of `String` class (issues #55, #56, #70, #77) * Added `JsonBuffer::strdup()` to make a copy of a string (issues #10, #57) * Implicitly call `strdup()` for `String` but not for `char*` (issues #84, #87) * Added support of non standard JSON input (issue #44) * Added support of comments in JSON input (issue #88) * Added implicit cast between numerical types (issues #64, #69, #93) * Added ability to read number values as string (issue #90) * Redesigned `JsonVariant` to leverage converting constructors instead of assignment operators (issue #66) * Switched to new the library layout (requires Arduino 1.0.6 or above)
-
v5.0-beta-5
ArduinoJson 5.0 beta 5 * Added implicit cast between numerical types (issues #64, #69, #93) * Added ability to read number values as string (issue #90)
-
-
v4.6
ArduinoJson v4.6 * Fixed segmentation fault in `DynamicJsonBuffer` when memory allocation fails (issue #92)
-
-
v5.0-beta-3
ArduinoJson 5.0 beta 3 * Added `JsonBuffer::strdup()` to make a copy of a string (issues #10, #57) * Implicitly call `strdup()` for `String` but not for `char*` (issues #84, #87)
-
v5.0-beta-2
ArduinoJson 5.0 beta 2 * Added support of non standard JSON input (issue #44) * Fixed buffer overflow when input contains a backslash followed by a terminator (issue #81)
-
v4.5
ArduinoJson 4.5 * Fixed buffer overflow when input contains a backslash followed by a terminator (issue #81)
-
v5.0-beta-1
ArduinoJson 5.0 beta 1 * Added support of `String` class (issue #55, #56, #70, #77) * Redesigned `JsonVariant` to leverage converting constructors instead of assignment operators * Switched to new library layout (requires Arduino 1.0.6 or above)