You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

ChangeLog 31 kB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668
  1. 0.18.99 (future release)
  2. ========================================
  3. Deprecated and removed features:
  4. --------------------------------
  5. * none yet
  6. New features
  7. ------------
  8. * none yet
  9. Significant changes and bug fixes
  10. ---------------------------------
  11. * none yet
  12. 0.18 (up to commit 6bfab90, 2023-09-15)
  13. ========================================
  14. Deprecated and removed features:
  15. --------------------------------
  16. * Clean up pre-3.9 CMake support in CMakeLists.txt
  17. New features
  18. ------------
  19. * Build pkg-config for msvc as well
  20. Significant changes and bug fixes
  21. ---------------------------------
  22. * Critical fix for binary compatibility with 0.16: Move the
  23. json_tokener_error_memory entry to the end of enum json_tokener_error.
  24. * Issue #829: attempt to detect clang-cl.exe and pass MSVC-compatile command
  25. line arguments.
  26. * PR #831 - rename WIN32 to _WIN32
  27. * PR #839 - Fix gcc 5 "may be used uninitialized" failure in json_pointer.c
  28. * PR #849 - random_seed.c: add a Coverity Scan suppression
  29. * Issue #854: Set error=json_tokener_error_memory in
  30. json_tokener_parser_verbose() when allocating the tokener fails.
  31. * Issue #857: fix a few places where json_tokener should have been returning
  32. json_tokener_error_memory but wasn't.
  33. * Handle yet another out-of-memory condition in json_tokener, duplocate can
  34. return NULL.
  35. * Various fixes in the fuzzers
  36. * A few minor doc fixes
  37. ***
  38. 0.17 (up to commit 077661f, 2023-08-08)
  39. ========================================
  40. Known Bugs
  41. ----------
  42. * DO NOT USE THE 0.17 RELEASE: json_tokener_error_memory in misplaced in the
  43. json_tokener_error enum, leading to binary compatibility issues.
  44. Deprecated and removed features:
  45. --------------------------------
  46. * None
  47. New features
  48. ------------
  49. * json_patch: add first implementation only with patch application
  50. * Add --disable-static and --disable-dynamic options to the cmake-configure script.
  51. * Add -DBUILD_APPS=NO option to disable app build
  52. * Minimum cmake version is now 3.9
  53. Significant changes and bug fixes
  54. ---------------------------------
  55. * When serializing with JSON_C_TO_STRING_PRETTY set, keep the opening and
  56. closing curly or square braces on same line for empty objects or arrays.
  57. * Disable locale handling when targeting a uClibc system due to problems
  58. with its duplocale() function.
  59. * When parsing with JSON_TOKENER_STRICT set, integer overflow/underflow
  60. now result in a json_tokener_error_parse_number. Without that flag
  61. values are capped at INT64_MIN/UINT64_MAX.
  62. * Fix memory leak with emtpy strings in json_object_set_string
  63. * json_object_from_fd_ex: fail if file is too large (>=INT_MAX bytes)
  64. * Add back json_number_chars, but only because it's part of the public API.
  65. * Entirely drop mode bits from open(O_RDONLY) to avoid warnings on certain
  66. platforms.
  67. * Specify dependent libraries, including -lbsd, in a more consistent way so
  68. linking against a static json-c works better
  69. * Fix a variety of build problems and add & improve tests
  70. * Update RFC reference to https://www.rfc-editor.org/rfc/rfc8259
  71. ***
  72. 0.16 (up to commit 66dcdf5, 2022-04-13)
  73. ========================================
  74. Deprecated and removed features:
  75. --------------------------------
  76. * JSON_C_OBJECT_KEY_IS_CONSTANT is deprecated in favor of
  77. JSON_C_OBJECT_ADD_CONSTANT_KEY
  78. * Direct access to lh_table and lh_entry structure members is deprecated.
  79. Use access functions instead, lh_table_head(), lh_entry_next(), etc...
  80. * Drop REFCOUNT_DEBUG code.
  81. New features
  82. ------------
  83. * The 0.16 release introduces no new features
  84. Build changes
  85. -------------
  86. * Add a DISABLE_EXTRA_LIBS option to skip using libbsd
  87. * Add a DISABLE_JSON_POINTER option to skip compiling in json_pointer support.
  88. Significant changes and bug fixes
  89. ---------------------------------
  90. * Cap string length at INT_MAX to avoid various issues with very long strings.
  91. * json_object_deep_copy: fix deep copy of strings containing '\0'
  92. * Fix read past end of buffer in the "json_parse" command
  93. * Avoid out of memory accesses in the locally provided vasprintf() function
  94. (for those platforms that use it)
  95. * Handle allocation failure in json_tokener_new_ex
  96. * Fix use-after-free in json_tokener_new_ex() in the event of printbuf_new() returning NULL
  97. * printbuf_memset(): set gaps to zero - areas within the print buffer which
  98. have not been initialized by using printbuf_memset
  99. * printbuf: return -1 on invalid arguments (len < 0 or total buffer > INT_MAX)
  100. * sprintbuf(): propagate printbuf_memappend errors back to the caller
  101. Optimizations
  102. --------------
  103. * Speed up parsing by replacing ctype functions with simplified, faster
  104. non-locale-sensitive ones in json_tokener and json_object_to_json_string.
  105. * Neither vertical tab nor formfeed are considered whitespace per the JSON spec
  106. * json_object: speed up creation of objects, calloc() -> malloc() + set fields
  107. * Avoid needless extra strlen() call in json_c_shallow_copy_default() and
  108. json_object_equal() when the object is known to be a json_type_string.
  109. Other changes
  110. -------------
  111. * Validate size arguments in arraylist functions.
  112. * Use getrandom() if available; with GRND_NONBLOCK to allow use of json-c
  113. very early during boot, such as part of cryptsetup.
  114. * Use arc4random() if it's available.
  115. * random_seed: on error, continue to next method instead of exiting the process
  116. * Close file when unable to read from /dev/urandom in get_dev_random_seed()
  117. ***
  118. 0.15 (up to commit 870965e, 2020/07/26)
  119. ========================================
  120. Deprecated and removed features:
  121. --------------------------------
  122. * Deprecate `array_list_new()` in favor of `array_list_new2()`
  123. * Remove the THIS_FUNCTION_IS_DEPRECATED define.
  124. * Remove config.h.win32
  125. New features
  126. ------------
  127. * Add a `JSON_TOKENER_ALLOW_TRAILING_CHARS` flag to allow multiple objects
  128. to be parsed even when `JSON_TOKENER_STRICT` is set.
  129. * Add `json_object_new_array_ext(int)` and `array_list_new_2(int)` to allow
  130. arrays to be allocated with the exact size needed, when known.
  131. * Add `json_object_array_shrink()` (and `array_list_shrink()`) and use it in
  132. json_tokener to minimize the amount of memory used.
  133. * Add a json_parse binary, for use in testing changes (not installed, but
  134. available in the apps directory).
  135. Build changes
  136. -------------
  137. * #639/#621 - Add symbol versions to all exported symbols
  138. * #508/#634 - Always enable -fPIC to allow use of the json-c static library in
  139. other libraries
  140. * Build both static and shared libraries at the same time.
  141. * #626 - Restore compatibility with cmake 2.8
  142. * #471 - Always create directories with mode 0755, regardless of umask.
  143. * #606/#604 - Improve support for OSes like AIX and IBM i, as well as for
  144. MINGW32 and old versions of MSVC
  145. * #451/#617 - Add a DISABLE_THREAD_LOCAL_STORAGE cmake option to disable
  146. the use of thread-local storage.
  147. Significant changes and bug fixes
  148. ---------------------------------
  149. * Split the internal json_object structure into several sub-types, one for
  150. each json_type (json_object_object, json_object_string, etc...).
  151. This improves memory usage and speed, with the benchmark under
  152. bench/ report 5.8% faster test time and 6%(max RSS)-12%(peak heap)
  153. less memory usage.
  154. Memory used just for json_object structures decreased 27%, so use cases
  155. with fewer arrays and/or strings would benefit more.
  156. * Minimize memory usage in array handling in json_tokener by shrinking
  157. arrays to the exact number of elements parsed. On bench/ benchmark:
  158. 9% faster test time, 39%(max RSS)-50%(peak heap) less memory usage.
  159. Add json_object_array_shrink() and array_list_shrink() functions.
  160. * #616 - Parsing of surrogate pairs in unicode escapes now properly handles
  161. incremental parsing.
  162. * Fix incremental parsing of numbers, especially those with exponents, e.g.
  163. so parsing "[0", "e+", "-]" now properly returns an error.
  164. Strict mode now rejects missing exponents ("0e").
  165. * Successfully return number objects at the top level even when they are
  166. followed by a "-", "." or "e". This makes parsing things like "123-45"
  167. behave consistently with things like "123xyz".
  168. Other changes
  169. -------------
  170. * #589 - Detect broken RDRAND during initialization; also, fix segfault
  171. in the CPUID check.
  172. * #592 - Fix integer overflows to prevert out of bounds write on large input.
  173. * Protect against division by zero in linkhash, when created with zero size.
  174. * #602 - Fix json_parse_uint64() internal error checking, leaving the retval
  175. untouched in more failure cases.
  176. * #614 - Prevent truncation when custom double formatters insert extra \0's
  177. ***
  178. 0.14 (up to commit 9ed00a6, 2020/04/14)
  179. =========================================
  180. Deprecated and removed features:
  181. --------------------------------
  182. * bits.h has been removed
  183. * lh_abort() has been removed
  184. * lh_table_lookup() has been removed, use lh_table_lookup_ex() instead.
  185. * Remove TRUE and FALSE defines, use 1 and 0 instead.
  186. Build changes:
  187. --------------
  188. ## Deprecated and removed features:
  189. * bits.h has been removed
  190. * lh_abort() has been removed
  191. * lh_table_lookup() has been removed, use lh_table_lookup_ex() instead.
  192. * Remove TRUE and FALSE defines, use 1 and 0 instead.
  193. * autoconf support, including autogen.sh, has been removed. See details about cmake, below.
  194. * With the addition of json_tokener_get_parse_end(), access to internal fields of json_tokener, as well as use of many other symbols and types in json_tokener.h, is deprecated now.
  195. * The use of Android.configure.mk to build for Android no longer works, and it is unknown how (or if) the new cmake-based build machinery can be used.
  196. * Reports of success, or pull requests to correct issues are welcome.
  197. ## Notable improvements and new features
  198. ### Builds and documentation
  199. * Build machinery has been switched to CMake. See README.md for details about how to build.
  200. * TL;DR: `mkdir build ; cd build ; cmake -DCMAKE_INSTALL_PREFIX=/some/path ../json-c ; make all test install`
  201. * To ease the transition, there is a `cmake-configure` wrapper that emulates the old autoconf-based configure script.
  202. * This has enabled improvements to the build on Windows system; also all public functions have been fixed to be properly exported. For best results, use Visual Studio 2015 or newer.
  203. * The json-c style guide has been updated to specify the use of clang-format, and all code has been reformatted.
  204. * Since many lines of code have trivial changes now, when using git blame, be sure to specify -w
  205. * Numerous improvements have been made to the documentation including function effects on refcounts, when passing a NULL is safe, and so on.
  206. ### json_tokener changes
  207. * Added a json_tokener_get_parse_end() function to replace direct access of tok->char_offset.
  208. * The char_offset field, and the rest of the json_tokener structure remain exposed for now, but expect a future release to hide it like is done with json_object_private.h
  209. * json_tokener_parse_ex() now accepts a new JSON_TOKENER_VALIDATE_UTF8 flag to validate that input is UTF8.
  210. * If validation fails, json_tokener_get_error(tok) will return json_tokener_error_parse_utf8_string (see enum json_tokener_error).
  211. ### Other changes and additions
  212. * Add support for unsigned 64-bit integers, uint64_t, to gain one extra bit of magnitude for positive ints.
  213. * json_tokener will now parse values up to UINT64_MAX (18446744073709551615)
  214. * Existing methods returning int32_t or int64_t will cap out-of-range values at INT32_MAX or INT64_MAX, preserving existing behavior.
  215. * The implementation includes the possibility of easily extending this to larger sizes in the future.
  216. * A total of 7 new functions were added:
  217. * json_object_get_uint64 ( struct json_object const* jso )
  218. * json_object_new_uint64 ( uint64_t i )
  219. * json_object_set_uint64 ( struct json_object* jso, uint64_t new_value )
  220. * json_parse_uint64 ( char const* buf, uint64_t* retval )
  221. * See description of uint64 support, above.
  222. * json_tokener_get_parse_end ( struct json_tokener* tok )
  223. * See details under "json_tokener changes", above.
  224. * json_object_from_fd_ex ( int fd, int in_depth )
  225. * Allows the max nesting depth to be specified.
  226. * json_object_new_null ( )
  227. * Simply returns NULL. Its use is not recommended.
  228. * The size of struct json_object has decreased from 96 bytes to 88 bytes.
  229. ### Testing
  230. * Many updates were made to test cases, increasing code coverage.
  231. * There is now a quick way (JSONC_TEST_TRACE=1) to turn on shell tracing in tests.
  232. * To run tests, use `make test`; the old "check" target no longer exists.
  233. ## Significant bug fixes
  234. For the full list of issues and pull requests since the previous release, please see issues_closed_for_0.14.md
  235. * [Issue #389](https://github.com/json-c/json-c/issues/389): Add an assert to explicitly crash when _ref_count is corrupted, instead of a later "double free" error.
  236. * [Issue #407](https://github.com/json-c/json-c/issues/407): fix incorrect casts in calls to ctype functions (isdigit and isspace) so we don't crash when asserts are enabled on certain platforms and characters > 128 are parsed.
  237. * [Issue #418](https://github.com/json-c/json-c/issues/418): Fix docs for json_util_from_fd and json_util_from_file to say that they return NULL on failures.
  238. * [Issue #422](https://github.com/json-c/json-c/issues/422): json_object.c:set errno in json_object_get_double() when called on a json_type_string object with bad content.
  239. * [Issue #453](https://github.com/json-c/json-c/issues/453): Fixed misalignment in JSON serialization when JSON_C_TO_STRING_SPACED and JSON_C_TO_STRING_PRETTY are used together.
  240. * [Issue #463](https://github.com/json-c/json-c/issues/463): fix newlocale() call to use LC_NUMERIC_MASK instead of LC_NUMERIC, and remove incorrect comment.
  241. * [Issue #486](https://github.com/json-c/json-c/issues/486): append a missing ".0" to negative double values to ensure they are serialized as floating point numbers.
  242. * [Issue #488](https://github.com/json-c/json-c/issues/488): use JSON_EXPORT on functions so they are properly exported on Windows.
  243. * [Issue #539](https://github.com/json-c/json-c/issues/539): use an internal-only serializer function in json_object_new_double_s() to avoid potential conflicts with user code that uses the json_object_userdata_to_json_string serializer.
  244. ***
  245. 0.13.1 (up to commit 0f814e5, 2018/03/04)
  246. =========================================
  247. * Bump the major version of the .so library generated up to 4.0 to avoid
  248. conflicts because some downstream packagers of json-c had already done
  249. their own bump to ".so.3" for a much older 0.12 release.
  250. * Add const size_t json_c_object_sizeof()
  251. * Avoid invalid free (and thus a segfault) when ref_count gets < 0
  252. * PR#394: fix handling of custom double formats that include a ".0"
  253. * Avoid uninitialized variable warnings in json_object_object_foreach
  254. * Issue #396: fix build for certain uClibc based systems.
  255. * Add a top level fuzz directory for fuzzers run by OSS-Fuzz
  256. 0.13 (up to commit 5dae561, 2017/11/29)
  257. =================================
  258. This release, being three and a half years after the 0.12 branch (f84d9c),
  259. has quite a number of changes included. The following is a sampling of
  260. the most significant ones.
  261. Since the 0.12 release, 250 issues and pull requests have been closed.
  262. See issues_closed_for_0.13.md for a complete list.
  263. Deprecated and removed features:
  264. --------------------------------
  265. * All internal use of bits.h has been eliminated. The file will be removed.
  266. Do not use: hexdigit(), error_ptr(), error_descrition() and it_error()
  267. * lh_abort() is deprecated. It will be removed.
  268. Behavior changes:
  269. -----------------
  270. * Tighten the number parsing algorithm to raise errors instead of truncating
  271. the results. For example 12.3.4 or 2015-01-15, which now return null.
  272. See commit 99d8fc
  273. * Use size_t for array length and size. Platforms where sizeof(size_t) != sizeof(int) may not be backwards compatible
  274. See commits 45c56b, 92e9a5 and others.
  275. * Check for failure when allocating memory, returning NULL and errno=ENOMEM.
  276. See commit 2149a04.
  277. * Change json_object_object_add() return type from void to int, and will return -1 on failures, instead of exiting. (Note: this is not an ABI change)
  278. New features:
  279. -------------
  280. * We're aiming to follow RFC 7159 now.
  281. * Add a couple of additional option to json_object_to_json_string_ext:
  282. JSON_C_TO_STRING_PRETTY_TAB
  283. JSON_C_TO_STRING_NOSLASHESCAPE
  284. * Add a json_object_object_add_ex() function to allow for performance
  285. improvements when certain constraints are known to be true.
  286. * Make serialization format of doubles configurable, in two different ways:
  287. Call json_object_set_serializer with json_object_double_to_json_string and a custom
  288. format on each double object, or
  289. Call json_c_set_serialization_double_format() to set a global or thread-wide format.
  290. * Add utility function for comparing json_objects - json_object_equal()
  291. * Add a way to copy entire object trees: json_object_deep_copy()
  292. * Add json_object_set_<type> function to modify the value of existing json_object's
  293. without the need to recreate them. Also add a json_object_int_inc function to
  294. adjust an int's value.
  295. * Add support for JSON pointer, RFC 6901. See json_pointer.h
  296. * Add a json_util_get_last_err() function to retrieve the string describing the
  297. cause of errors, instead of printing to stderr.
  298. * Add perllike hash function for strings, and json_global_set_string_hash() 8f8d03d
  299. * Add a json_c_visit() function to provide a way to iterate over a tree of json-c objects.
  300. Notable bug fixes and other improvements:
  301. -----------------------------------------
  302. * Make reference increment and decrement atomic to allow passing json objects between threads.
  303. * Fix json_object_object_foreach to avoid uninitialized variable warnings.
  304. * Improve performance by removing unneeded data items from hashtable code and reducing duplicate hash computation.
  305. * Improve performance by storing small strings inside json_object
  306. * Improve performance of json_object_to_json_string by removing variadic printf. commit 9ff0f49
  307. * Issue #371: fix parsing of "-Infinity", and avoid needlessly copying the input when doing so.
  308. * Fix stack buffer overflow in json_object_double_to_json_string_format() - commit 2c2deb87
  309. * Fix various potential null ptr deref and int32 overflows
  310. * Issue #332: fix a long-standing bug in array_list_put_idx() where it would attempt to free previously free'd entries due to not checking the current array length.
  311. * Issue #195: use uselocale() instead of setlocale() in json_tokener to behave better in threaded environments.
  312. * Issue #275: fix out of bounds read when handling unicode surrogate pairs.
  313. * Ensure doubles that happen to be a whole number are emitted with ".0" - commit ca7a19
  314. * PR#331: for Visual Studio, use a snprintf/vsnprintf wrapper that ensures the string is terminated.
  315. * Fix double to int cast overflow in json_object_get_int64.
  316. * Clamp double to int32 when narrowing in json_object_get_int.
  317. * Use strtoll() to parse ints - instead of sscanf
  318. * Miscellaneous smaller changes, including removing unused variables, fixing warning
  319. about uninitialized variables adding const qualifiers, reformatting code, etc...
  320. Build changes:
  321. --------------
  322. * Add Appveyor and Travis build support
  323. * Switch to using CMake when building on Windows with Visual Studio.
  324. A dynamic .dll is generated instead of a .lib
  325. config.h is now generated, config.h.win32 should no longer be manually copied
  326. * Add support for MacOS through CMake too.
  327. * Enable silent build by default
  328. * Link against libm when needed
  329. * Add support for building with AddressSanitizer
  330. * Add support for building with Clang
  331. * Add a --enable-threading configure option, and only use the (slower) __sync_add_and_fetch()/__sync_sub_and_fetch() function when it is specified.
  332. List of new functions added:
  333. ----------------------------
  334. ### json_object.h
  335. * array_list_bsearch()
  336. * array_list_del_idx()
  337. * json_object_to_json_string_length()
  338. * json_object_get_userdata()
  339. * json_object_set_userdata()
  340. * json_object_object_add_ex()
  341. * json_object_array_bsearch()
  342. * json_object_array_del_idx()
  343. * json_object_set_boolean()
  344. * json_object_set_int()
  345. * json_object_int_inc()
  346. * json_object_set_int64()
  347. * json_c_set_serialization_double_format()
  348. * json_object_double_to_json_string()
  349. * json_object_set_double()
  350. * json_object_set_string()
  351. * json_object_set_string_len()
  352. * json_object_equal()
  353. * json_object_deep_copy()
  354. ### json_pointer.h
  355. * json_pointer_get()
  356. * json_pointer_getf()
  357. * json_pointer_set()
  358. * json_pointer_setf()
  359. ### json_util.h
  360. * json_object_from_fd()
  361. * json_object_to_fd()
  362. * json_util_get_last_err()
  363. ### json_visit.h
  364. * json_c_visit()
  365. ### linkhash.h
  366. * json_global_set_string_hash()
  367. * lh_table_resize()
  368. ### printbuf.h
  369. * printbuf_strappend()
  370. 0.12.1
  371. ======
  372. * Minimal changes to address compile issues.
  373. 0.12
  374. ====
  375. * Address security issues:
  376. * CVE-2013-6371: hash collision denial of service
  377. * CVE-2013-6370: buffer overflow if size_t is larger than int
  378. * Avoid potential overflow in json_object_get_double
  379. * Eliminate the mc_abort() function and MC_ABORT macro.
  380. * Make the json_tokener_errors array local. It has been deprecated for
  381. a while, and json_tokener_error_desc() should be used instead.
  382. * change the floating point output format to %.17g so values with
  383. more than 6 digits show up in the output.
  384. * Remove the old libjson.so name compatibility support. The library is
  385. only created as libjson-c.so now and headers are only installed
  386. into the ${prefix}/json-c directory.
  387. * When supported by the linker, add the -Bsymbolic-functions flag.
  388. * Various changes to fix the build on MSVC.
  389. * Make strict mode more strict:
  390. * number must not start with 0
  391. * no single-quote strings
  392. * no comments
  393. * trailing char not allowed
  394. * only allow lowercase literals
  395. * Added a json_object_new_double_s() convenience function to allow
  396. an exact string representation of a double to be specified when
  397. creating the object and use it in json_tokener_parse_ex() so
  398. a re-serialized object more exactly matches the input.
  399. * Add support NaN and Infinity
  400. 0.11
  401. ====
  402. * IMPORTANT: the name of the library has changed to libjson-c.so and
  403. the header files are now in include/json-c.
  404. The pkgconfig name has also changed from json to json-c.
  405. You should change your build to use appropriate -I and -l options.
  406. A compatibility shim is in place so builds using the old name will
  407. continue to work, but that will be removed in the next release.
  408. * Maximum recursion depth is now a runtime option.
  409. json_tokener_new() is provided for compatibility.
  410. json_tokener_new_ex(depth)
  411. * Include json_object_iterator.h in the installed headers.
  412. * Add support for building on Android.
  413. * Rewrite json_object_object_add to replace just the value if the key already exists so keys remain valid.
  414. * Make it safe to delete keys while iterating with the json_object_object_foreach macro.
  415. * Add a json_set_serializer() function to allow the string output of a json_object to be customized.
  416. * Make float parsing locale independent.
  417. * Add a json_tokener_set_flags() function and a JSON_TOKENER_STRICT flag.
  418. * Enable -Werror when building.
  419. * speed improvements to parsing 64-bit integers on systems with working sscanf
  420. * Add a json_object_object_length function.
  421. * Fix a bug (buffer overrun) when expanding arrays to more than 64 entries.
  422. 0.10
  423. ====
  424. * Add a json_object_to_json_string_ext() function to allow output to be
  425. formatted in a more human readable form.
  426. * Add json_object_object_get_ex(), a NULL-safe get object method, to be able
  427. to distinguish between a key not present and the value being NULL.
  428. * Add an alternative iterator implementation, see json_object_iterator.h
  429. * Make json_object_iter public to enable external use of the
  430. json_object_object_foreachC macro.
  431. * Add a printbuf_memset() function to provide an efficient way to set and
  432. append things like whitespace indentation.
  433. * Adjust json_object_is_type and json_object_get_type so they return
  434. json_type_null for NULL objects and handle NULL passed to
  435. json_objct_object_get().
  436. * Rename boolean type to json_bool.
  437. * Fix various compile issues for Visual Studio and MinGW.
  438. * Allow json_tokener_parse_ex() to be re-used to parse multiple object.
  439. Also, fix some parsing issues with capitalized hexadecimal numbers and
  440. number in E notation.
  441. * Add json_tokener_get_error() and json_tokener_error_desc() to better
  442. encapsulate the process of retrieving errors while parsing.
  443. * Various improvements to the documentation of many functions.
  444. * Add new json_object_array_sort() function.
  445. * Fix a bug in json_object_get_int(), which would incorrectly return 0
  446. when called on a string type object.
  447. Eric Haszlakiewicz
  448. * Add a json_type_to_name() function.
  449. Eric Haszlakiewicz
  450. * Add a json_tokener_parse_verbose() function.
  451. Jehiah Czebotar
  452. * Improve support for null bytes within JSON strings.
  453. Jehiah Czebotar
  454. * Fix file descriptor leak if memory allocation fails in json_util
  455. Zachary Blair, zack_blair at hotmail dot com
  456. * Add int64 support. Two new functions json_object_net_int64 and
  457. json_object_get_int64. Binary compatibility preserved.
  458. Eric Haszlakiewicz, EHASZLA at transunion com
  459. Rui Miguel Silva Seabra, rms at 1407 dot org
  460. * Fix subtle bug in linkhash where lookup could hang after all slots
  461. were filled then successively freed.
  462. Spotted by Jean-Marc Naud, j dash m at newtraxtech dot com
  463. * Make json_object_from_file take const char *filename
  464. Spotted by Vikram Raj V, vsagar at attinteractive dot com
  465. * Add handling of surrogate pairs (json_tokener.c, test4.c, Makefile.am)
  466. Brent Miller, bdmiller at yahoo dash inc dot com
  467. * Correction to comment describing printbuf_memappend in printbuf.h
  468. Brent Miller, bdmiller at yahoo dash inc dot com
  469. 0.9
  470. ===
  471. * Add README.html README-WIN32.html config.h.win32 to Makefile.am
  472. Michael Clark, <michael@metaparadigm.com>
  473. * Add const qualifier to the json_tokener_parse functions
  474. Eric Haszlakiewicz, EHASZLA at transunion dot com
  475. * Rename min and max so we can never clash with C or C++ std library
  476. Ian Atha, thatha at yahoo dash inc dot com
  477. * Fix any noticeable spelling or grammar errors.
  478. * Make sure every va_start has a va_end.
  479. * Check all pointers for validity.
  480. Erik Hovland, erik at hovland dot org
  481. * Fix json_object_get_boolean to return false for empty string
  482. Spotted by Vitaly Kruglikov, Vitaly dot Kruglikov at palm dot com
  483. * optimizations to json_tokener_parse_ex(), printbuf_memappend()
  484. Brent Miller, bdmiller at yahoo dash inc dot com
  485. * Disable REFCOUNT_DEBUG by default in json_object.c
  486. * Don't use this as a variable, so we can compile with a C++ compiler
  487. * Add casts from void* to type of assignment when using malloc
  488. * Add #ifdef __cplusplus guards to all of the headers
  489. * Add typedefs for json_object, json_tokener, array_list, printbuf, lh_table
  490. Michael Clark, <michael@metaparadigm.com>
  491. * Null pointer dereference fix. Fix json_object_get_boolean strlen test
  492. to not return TRUE for zero length string. Remove redundant includes.
  493. Erik Hovland, erik at hovland dot org
  494. * Fixed warning reported by adding -Wstrict-prototypes
  495. -Wold-style-definition to the compilatin flags.
  496. Dotan Barak, dotanba at gmail dot com
  497. * Add const correctness to public interfaces
  498. Gerard Krol, g dot c dot krol at student dot tudelft dot nl
  499. 0.8
  500. ===
  501. * Add va_end for every va_start
  502. Dotan Barak, dotanba at gmail dot com
  503. * Add macros to enable compiling out debug code
  504. Geoffrey Young, geoff at modperlcookbook dot org
  505. * Fix bug with use of capital E in numbers with exponents
  506. Mateusz Loskot, mateusz at loskot dot net
  507. * Add stddef.h include
  508. * Patch allows for json-c compile with -Werror and not fail due to
  509. -Wmissing-prototypes -Wstrict-prototypes -Wmissing-declarations
  510. Geoffrey Young, geoff at modperlcookbook dot org
  511. 0.7
  512. ===
  513. * Add escaping of backslash to json output
  514. * Add escaping of forward slash on tokenizing and output
  515. * Changes to internal tokenizer from using recursion to
  516. using a depth state structure to allow incremental parsing
  517. 0.6
  518. ===
  519. * Fix bug in escaping of control characters
  520. Johan Björklund, johbjo09 at kth dot se
  521. * Remove include "config.h" from headers (should only
  522. be included from .c files)
  523. Michael Clark <michael@metaparadigm.com>
  524. 0.5
  525. ===
  526. * Make headers C++ compatible by change *this to *obj
  527. * Add ifdef C++ extern "C" to headers
  528. * Use simpler definition of min and max in bits.h
  529. Larry Lansing, llansing at fuzzynerd dot com
  530. * Remove automake 1.6 requirement
  531. * Move autogen commands into autogen.sh. Update README
  532. * Remove error pointer special case for Windows
  533. * Change license from LGPL to MIT
  534. Michael Clark <michael@metaparadigm.com>
  535. 0.4
  536. ===
  537. * Fix additional error case in object parsing
  538. * Add back sign reversal in nested object parse as error pointer
  539. value is negative, while error value is positive.
  540. Michael Clark <michael@metaparadigm.com>
  541. 0.3
  542. ===
  543. * fix pointer arithmetic bug for error pointer check in is_error() macro
  544. * fix type passed to printbuf_memappend in json_tokener
  545. * update autotools bootstrap instructions in README
  546. Michael Clark <michael@metaparadigm.com>
  547. 0.2
  548. ===
  549. * printbuf.c - C. Watford (christopher.watford@gmail.com)
  550. Added a Win32/Win64 compliant implementation of vasprintf
  551. * debug.c - C. Watford (christopher.watford@gmail.com)
  552. Removed usage of vsyslog on Win32/Win64 systems, needs to be handled
  553. by a configure script
  554. * json_object.c - C. Watford (christopher.watford@gmail.com)
  555. Added scope operator to wrap usage of json_object_object_foreach, this
  556. needs to be rethought to be more ANSI C friendly
  557. * json_object.h - C. Watford (christopher.watford@gmail.com)
  558. Added Microsoft C friendly version of json_object_object_foreach
  559. * json_tokener.c - C. Watford (christopher.watford@gmail.com)
  560. Added a Win32/Win64 compliant implementation of strndup
  561. * json_util.c - C. Watford (christopher.watford@gmail.com)
  562. Added cast and mask to suffice size_t v. unsigned int conversion
  563. correctness
  564. * json_tokener.c - sign reversal issue on error info for nested object parse
  565. spotted by Johan Björklund (johbjo09 at kth.se)
  566. * json_object.c - escape " in json_escape_str
  567. * Change to automake and libtool to build shared and static library
  568. Michael Clark <michael@metaparadigm.com>
  569. 0.1
  570. ===
  571. * initial release