01e49b33b7
Update copyright year
2025-02-24 15:18:26 +01:00
0e8a236583
Update copyright year
2024-01-03 08:47:06 +01:00
30ea01bc31
StringExample: remove obsolete comment
2023-09-24 18:12:01 +02:00
750d53f8c7
Update URLs to point to
https://arduinojson.org/v7/
2023-08-19 16:08:12 +02:00
7f459adc4b
Remove createNestedArray()
and createNestedObject()
2023-08-09 12:08:21 +02:00
bd2d232b40
JsonParseExample: use a const char*
instead of a char[]
2023-07-20 18:04:06 +02:00
b69a952e69
Examples: remove outdated comments
2023-07-20 18:04:06 +02:00
0f319e7ca4
Remove capacity from JsonDocument
's constructor
2023-07-18 09:08:55 +02:00
6b4dd3ff2f
Fix build on ESP32 (caused by espressif/arduino-esp32#7941 )
2023-05-02 10:48:02 +02:00
3f43c2b816
Remove JSON_ARRAY_SIZE()
, JSON_OBJECT_SIZE()
, and JSON_STRING_SIZE()
2023-03-29 19:18:06 +02:00
540901e219
Merge DynamicJsonDocument
with JsonDocument
2023-03-20 14:49:51 +01:00
17a482a9b1
Remove StaticJsonDocument
2023-03-20 10:40:35 +01:00
daa87e12dc
Update copyright notice
2023-02-16 11:45:01 +01:00
f73be9cf0f
Fix typo.
...
DeserializationOpion --> DeserializationOption
2022-08-10 09:06:45 +02:00
04872b6db8
Simplify ProgmemExample.ino
and StringExample.ino
2022-07-07 14:32:41 +02:00
af18994deb
Update copyright notice
2022-01-01 10:01:05 +01:00
67fc2d9897
Assume PROGMEM
is available as soon as ARDUINO
is defined ( #1693 )
2021-12-31 11:00:50 +01:00
d5d2209d09
Added "https://" prefix to all URLs so they are clickable in VS Code
2021-03-29 19:35:25 +02:00
e4ce75e20c
Simplified JsonVariant::as<T>()
to always return T
2021-03-08 19:33:52 +01:00
c72eccdd35
Added missing calls to client.stop() in JsonHttpClient.ino ( fixes #1485 )
2021-02-01 09:16:23 +01:00
322d13de0d
Examples: add a note about performance issues with streams ( #1476 )
2021-01-25 09:26:29 +01:00
97b7161d78
Update copyright notice for 2021
2021-01-25 09:14:15 +01:00
c4ec2ba88f
Added DeserializationError::f_str()
(issue #846 )
2020-09-14 18:40:00 +02:00
d8724e0a0b
Changed the array subscript to automatically add missing elements
2020-02-20 08:59:25 +01:00
66b12da4e7
Added DeserializationOption::Filter
( closes #959 )
2020-02-12 17:22:42 +01:00
f9cfea244a
Updated copyright notice
2020-01-09 15:48:38 +01:00
63d7d87080
Fixed example JsonConfigFile.ino
for ESP8266
2019-08-10 14:17:23 +02:00
4980ee8fb9
Fixed unexpected HTTP/1.0 ( closes #944 )
2019-05-26 21:07:01 +02:00
6071bd07ec
Added a link to the FAQ
2019-04-20 12:10:29 +02:00
afdd913a2f
Added links to the book page in each example
2019-03-04 12:17:41 +01:00
c3f71c1a99
Updated copyright year to 2019
2019-02-15 13:32:04 +01:00
070cd5b6c0
Added more tests of JsonVariant::is<T>()
2019-02-01 11:28:27 +01:00
6f55d1e58f
JsonVariant automatically promotes to JsonObject or JsonArray on write
2019-01-29 14:09:09 +01:00
70739f5cfd
Reduced the size of the pretty JSON serializer
2019-01-23 18:19:24 +01:00
9ac2ac303c
Removed default capacity of DynamicJsonDocument
2019-01-14 10:32:19 +01:00
e842838a23
fix a spelling error of JsonParserExample.ino
2018-10-25 17:22:23 +02:00
87fa87d87b
Renamed function RawJson()
to serialized()
2018-07-12 09:08:20 +02:00
b105e6f7c4
Return JsonArray
and JsonObject
by value ( closes #309 )
2018-07-02 09:35:21 +02:00
393f352b70
Minor changes in the examples
2018-06-07 11:21:54 +02:00
4592f23260
Merged MsgPackError and JsonError into DeserializationError.
...
Return NotSupported if the JSON input contains "\u".
2018-05-15 18:23:09 +02:00
1feb92679d
Added StaticJsonDocument and DynamicJsonDocument.
...
Removed StaticJsonArray and DynamicJsonArray.
Removed StaticJsonObject and DynamicJsonObject.
Removed StaticJsonVariant and DynamicJsonVariant.
2018-04-17 21:27:45 +02:00
a13b9e8bdc
Added example MsgPackParser.ino
(issue #358 )
2018-04-10 17:55:51 +02:00
b2a8085651
Added JsonError
2018-03-09 16:58:01 +01:00
83d73c93f7
Replaced printTo()
with serializeJson()
...
* Added `serializeJson()` and `serializeJsonPretty()`
* Added `measureJson()` and `measureJsonPretty()`
* Removed `printTo()` and `prettyPrintTo()`
* Removed `measureLength()` and `measurePrettyLength()`
2018-03-01 09:24:58 +01:00
7a2a64803a
Don't use JsonBuffer to create or parse objects and arrays.
...
* Added DynamicJsonArray and StaticJsonArray
* Added DynamicJsonObject and StaticJsonObject
* Added DynamicJsonVariant and StaticJsonVariant
* Added deserializeJson()
* Removed JsonBuffer::parseArray(), parseObject() and parse()
* Removed JsonBuffer::createArray() and createObject()
2018-02-26 16:05:16 +01:00
bae179ed67
RawJson()
accepts any kind of string and obeys to duplication rules
2018-01-18 09:43:37 +01:00
5c33fd4b94
Set copyright year to 2018
2018-01-05 09:20:01 +01:00
de47c0af9e
Updated links to the book
2017-12-27 14:15:49 +01:00
e53e4e3dd9
Fixed typos
2017-12-15 17:52:47 +01:00
7626db624e
Changed all link to point to HTTPS version
2017-12-11 17:26:50 +01:00