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 22 kB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462
  1. 0.14 (up to commit 9ed00a6, 2020/04/14)
  2. =========================================
  3. Deprecated and removed features:
  4. --------------------------------
  5. * bits.h has been removed
  6. * lh_abort() has been removed
  7. * lh_table_lookup() has been removed, use lh_table_lookup_ex() instead.
  8. * Remove TRUE and FALSE defines, use 1 and 0 instead.
  9. Build changes:
  10. --------------
  11. ## Deprecated and removed features:
  12. * bits.h has been removed
  13. * lh_abort() has been removed
  14. * lh_table_lookup() has been removed, use lh_table_lookup_ex() instead.
  15. * Remove TRUE and FALSE defines, use 1 and 0 instead.
  16. * autoconf support, including autogen.sh, has been removed. See details about cmake, below.
  17. * 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.
  18. * 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.
  19. * Reports of success, or pull requests to correct issues are welcome.
  20. ## Notable improvements and new features
  21. ### Builds and documentation
  22. * Build machinery has been switched to CMake. See README.md for details about how to build.
  23. * TL;DR: `mkdir build ; cd build ; cmake -DCMAKE_INSTALL_PREFIX=/some/path ../json-c ; make all test install`
  24. * To ease the transition, there is a `cmake-configure` wrapper that emulates the old autoconf-based configure script.
  25. * 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.
  26. * The json-c style guide has been updated to specify the use of clang-format, and all code has been reformatted.
  27. * Since many lines of code have trivial changes now, when using git blame, be sure to specify -w
  28. * Numerous improvements have been made to the documentation including function effects on refcounts, when passing a NULL is safe, and so on.
  29. ### json_tokener changes
  30. * Added a json_tokener_get_parse_end() function to replace direct access of tok->char_offset.
  31. * 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
  32. * json_tokener_parse_ex() now accepts a new JSON_TOKENER_VALIDATE_UTF8 flag to validate that input is UTF8.
  33. * If validation fails, json_tokener_get_error(tok) will return json_tokener_error_parse_utf8_string (see enum json_tokener_error).
  34. ### Other changes and additions
  35. * Add support for unsigned 64-bit integers, uint64_t, to gain one extra bit of magnitude for positive ints.
  36. * json_tokener will now parse values up to UINT64_MAX (18446744073709551615)
  37. * Existing methods returning int32_t or int64_t will cap out-of-range values at INT32_MAX or INT64_MAX, preserving existing behavior.
  38. * The implementation includes the possibility of easily extending this to larger sizes in the future.
  39. * A total of 7 new functions were added:
  40. * json_object_get_uint64 ( struct json_object const* jso )
  41. * json_object_new_uint64 ( uint64_t i )
  42. * json_object_set_uint64 ( struct json_object* jso, uint64_t new_value )
  43. * json_parse_uint64 ( char const* buf, uint64_t* retval )
  44. * See description of uint64 support, above.
  45. * json_tokener_get_parse_end ( struct json_tokener* tok )
  46. * See details under "json_tokener changes", above.
  47. * json_object_from_fd_ex ( int fd, int in_depth )
  48. * Allows the max nesting depth to be specified.
  49. * json_object_new_null ( )
  50. * Simply returns NULL. Its use is not recommended.
  51. * The size of struct json_object has decreased from 96 bytes to 88 bytes.
  52. ### Testing
  53. * Many updates were made to test cases, increasing code coverage.
  54. * There is now a quick way (JSONC_TEST_TRACE=1) to turn on shell tracing in tests.
  55. * To run tests, use `make test`; the old "check" target no longer exists.
  56. ## Significant bug fixes
  57. For the full list of issues and pull requests since the previous release, please see issues_closed_for_0.14.md
  58. * [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.
  59. * [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.
  60. * [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.
  61. * [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.
  62. * [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.
  63. * [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.
  64. * [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.
  65. * [Issue #488](https://github.com/json-c/json-c/issues/488): use JSON_EXPORT on functions so they are properly exported on Windows.
  66. * [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.
  67. ***
  68. 0.13.1 (up to commit 0f814e5, 2018/03/04)
  69. =========================================
  70. * Bump the major version of the .so library generated up to 4.0 to avoid
  71. conflicts because some downstream packagers of json-c had already done
  72. their own bump to ".so.3" for a much older 0.12 release.
  73. * Add const size_t json_c_object_sizeof()
  74. * Avoid invalid free (and thus a segfault) when ref_count gets < 0
  75. * PR#394: fix handling of custom double formats that include a ".0"
  76. * Avoid uninitialized variable warnings in json_object_object_foreach
  77. * Issue #396: fix build for certain uClibc based systems.
  78. * Add a top level fuzz directory for fuzzers run by OSS-Fuzz
  79. 0.13 (up to commit 5dae561, 2017/11/29)
  80. =================================
  81. This release, being three and a half years after the 0.12 branch (f84d9c),
  82. has quite a number of changes included. The following is a sampling of
  83. the most significant ones.
  84. Since the 0.12 release, 250 issues and pull requests have been closed.
  85. See issues_closed_for_0.13.md for a complete list.
  86. Deprecated and removed features:
  87. --------------------------------
  88. * All internal use of bits.h has been eliminated. The file will be removed.
  89. Do not use: hexdigit(), error_ptr(), error_descrition() and it_error()
  90. * lh_abort() is deprecated. It will be removed.
  91. Behavior changes:
  92. -----------------
  93. * Tighten the number parsing algorithm to raise errors instead of truncating
  94. the results. For example 12.3.4 or 2015-01-15, which now return null.
  95. See commit 99d8fc
  96. * Use size_t for array length and size. Platforms where sizeof(size_t) != sizeof(int) may not be backwards compatible
  97. See commits 45c56b, 92e9a5 and others.
  98. * Check for failue when allocating memory, returning NULL and errno=ENOMEM.
  99. See commit 2149a04.
  100. * 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)
  101. New features:
  102. -------------
  103. * We're aiming to follow RFC 7159 now.
  104. * Add a couple of additional option to json_object_to_json_string_ext:
  105. JSON_C_TO_STRING_PRETTY_TAB
  106. JSON_C_TO_STRING_NOSLASHESCAPE
  107. * Add a json_object_object_add_ex() function to allow for performance
  108. improvements when certain constraints are known to be true.
  109. * Make serialization format of doubles configurable, in two different ways:
  110. Call json_object_set_serializer with json_object_double_to_json_string and a custom
  111. format on each double object, or
  112. Call json_c_set_serialization_double_format() to set a global or thread-wide format.
  113. * Add utility function for comparing json_objects - json_object_equal()
  114. * Add a way to copy entire object trees: json_object_deep_copy()
  115. * Add json_object_set_<type> function to modify the value of existing json_object's
  116. without the need to recreate them. Also add a json_object_int_inc function to
  117. adjust an int's value.
  118. * Add support for JSON pointer, RFC 6901. See json_pointer.h
  119. * Add a json_util_get_last_err() function to retrieve the string describing the
  120. cause of errors, instead of printing to stderr.
  121. * Add perllike hash function for strings, and json_global_set_string_hash() 8f8d03d
  122. * Add a json_c_visit() function to provide a way to iterate over a tree of json-c objects.
  123. Notable bug fixes and other improvements:
  124. -----------------------------------------
  125. * Make reference increment and decrement atomic to allow passing json objects between threads.
  126. * Fix json_object_object_foreach to avoid uninitialized variable warnings.
  127. * Improve performance by removing unneeded data items from hashtable code and reducing duplicate hash computation.
  128. * Improve performance by storing small strings inside json_object
  129. * Improve performance of json_object_to_json_string by removing variadic printf. commit 9ff0f49
  130. * Issue #371: fix parsing of "-Infinity", and avoid needlessly copying the input when doing so.
  131. * Fix stack buffer overflow in json_object_double_to_json_string_format() - commit 2c2deb87
  132. * Fix various potential null ptr deref and int32 overflows
  133. * 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.
  134. * Issue #195: use uselocale() instead of setlocale() in json_tokener to behave better in threaded environments.
  135. * Issue #275: fix out of bounds read when handling unicode surrogate pairs.
  136. * Ensure doubles that happen to be a whole number are emitted with ".0" - commit ca7a19
  137. * PR#331: for Visual Studio, use a snprintf/vsnprintf wrapper that ensures the string is terminated.
  138. * Fix double to int cast overflow in json_object_get_int64.
  139. * Clamp double to int32 when narrowing in json_object_get_int.
  140. * Use strtoll() to parse ints - instead of sscanf
  141. * Miscellaneous smaller changes, including removing unused variables, fixing warning
  142. about uninitialized variables adding const qualifiers, reformatting code, etc...
  143. Build changes:
  144. --------------
  145. * Add Appveyor and Travis build support
  146. * Switch to using CMake when building on Windows with Visual Studio.
  147. A dynamic .dll is generated instead of a .lib
  148. config.h is now generated, config.h.win32 should no longer be manually copied
  149. * Add support for MacOS through CMake too.
  150. * Enable silent build by default
  151. * Link against libm when needed
  152. * Add support for building with AddressSanitizer
  153. * Add support for building with Clang
  154. * Add a --enable-threading configure option, and only use the (slower) __sync_add_and_fetch()/__sync_sub_and_fetch() function when it is specified.
  155. List of new functions added:
  156. ----------------------------
  157. ### json_object.h
  158. * array_list_bsearch()
  159. * array_list_del_idx()
  160. * json_object_to_json_string_length()
  161. * json_object_get_userdata()
  162. * json_object_set_userdata()
  163. * json_object_object_add_ex()
  164. * json_object_array_bsearch()
  165. * json_object_array_del_idx()
  166. * json_object_set_boolean()
  167. * json_object_set_int()
  168. * json_object_int_inc()
  169. * json_object_set_int64()
  170. * json_c_set_serialization_double_format()
  171. * json_object_double_to_json_string()
  172. * json_object_set_double()
  173. * json_object_set_string()
  174. * json_object_set_string_len()
  175. * json_object_equal()
  176. * json_object_deep_copy()
  177. ### json_pointer.h
  178. * json_pointer_get()
  179. * json_pointer_getf()
  180. * json_pointer_set()
  181. * json_pointer_setf()
  182. ### json_util.h
  183. * json_object_from_fd()
  184. * json_object_to_fd()
  185. * json_util_get_last_err()
  186. ### json_visit.h
  187. * json_c_visit()
  188. ### linkhash.h
  189. * json_global_set_string_hash()
  190. * lh_table_resize()
  191. ### printbuf.h
  192. * printbuf_strappend()
  193. 0.12.1
  194. ======
  195. * Minimal changes to address compile issues.
  196. 0.12
  197. ====
  198. * Address security issues:
  199. * CVE-2013-6371: hash collision denial of service
  200. * CVE-2013-6370: buffer overflow if size_t is larger than int
  201. * Avoid potential overflow in json_object_get_double
  202. * Eliminate the mc_abort() function and MC_ABORT macro.
  203. * Make the json_tokener_errors array local. It has been deprecated for
  204. a while, and json_tokener_error_desc() should be used instead.
  205. * change the floating point output format to %.17g so values with
  206. more than 6 digits show up in the output.
  207. * Remove the old libjson.so name compatibility support. The library is
  208. only created as libjson-c.so now and headers are only installed
  209. into the ${prefix}/json-c directory.
  210. * When supported by the linker, add the -Bsymbolic-functions flag.
  211. * Various changes to fix the build on MSVC.
  212. * Make strict mode more strict:
  213. * number must not start with 0
  214. * no single-quote strings
  215. * no comments
  216. * trailing char not allowed
  217. * only allow lowercase literals
  218. * Added a json_object_new_double_s() convenience function to allow
  219. an exact string representation of a double to be specified when
  220. creating the object and use it in json_tokener_parse_ex() so
  221. a re-serialized object more exactly matches the input.
  222. * Add support NaN and Infinity
  223. 0.11
  224. ====
  225. * IMPORTANT: the name of the library has changed to libjson-c.so and
  226. the header files are now in include/json-c.
  227. The pkgconfig name has also changed from json to json-c.
  228. You should change your build to use appropriate -I and -l options.
  229. A compatibility shim is in place so builds using the old name will
  230. continue to work, but that will be removed in the next release.
  231. * Maximum recursion depth is now a runtime option.
  232. json_tokener_new() is provided for compatibility.
  233. json_tokener_new_ex(depth)
  234. * Include json_object_iterator.h in the installed headers.
  235. * Add support for building on Android.
  236. * Rewrite json_object_object_add to replace just the value if the key already exists so keys remain valid.
  237. * Make it safe to delete keys while iterating with the json_object_object_foreach macro.
  238. * Add a json_set_serializer() function to allow the string output of a json_object to be customized.
  239. * Make float parsing locale independent.
  240. * Add a json_tokener_set_flags() function and a JSON_TOKENER_STRICT flag.
  241. * Enable -Werror when building.
  242. * speed improvements to parsing 64-bit integers on systems with working sscanf
  243. * Add a json_object_object_length function.
  244. * Fix a bug (buffer overrun) when expanding arrays to more than 64 entries.
  245. 0.10
  246. ====
  247. * Add a json_object_to_json_string_ext() function to allow output to be
  248. formatted in a more human readable form.
  249. * Add json_object_object_get_ex(), a NULL-safe get object method, to be able
  250. to distinguish between a key not present and the value being NULL.
  251. * Add an alternative iterator implementation, see json_object_iterator.h
  252. * Make json_object_iter public to enable external use of the
  253. json_object_object_foreachC macro.
  254. * Add a printbuf_memset() function to provide an effecient way to set and
  255. append things like whitespace indentation.
  256. * Adjust json_object_is_type and json_object_get_type so they return
  257. json_type_null for NULL objects and handle NULL passed to
  258. json_objct_object_get().
  259. * Rename boolean type to json_bool.
  260. * Fix various compile issues for Visual Studio and MinGW.
  261. * Allow json_tokener_parse_ex() to be re-used to parse multiple object.
  262. Also, fix some parsing issues with capitalized hexadecimal numbers and
  263. number in E notation.
  264. * Add json_tokener_get_error() and json_tokener_error_desc() to better
  265. encapsulate the process of retrieving errors while parsing.
  266. * Various improvements to the documentation of many functions.
  267. * Add new json_object_array_sort() function.
  268. * Fix a bug in json_object_get_int(), which would incorrectly return 0
  269. when called on a string type object.
  270. Eric Haszlakiewicz
  271. * Add a json_type_to_name() function.
  272. Eric Haszlakiewicz
  273. * Add a json_tokener_parse_verbose() function.
  274. Jehiah Czebotar
  275. * Improve support for null bytes within JSON strings.
  276. Jehiah Czebotar
  277. * Fix file descriptor leak if memory allocation fails in json_util
  278. Zachary Blair, zack_blair at hotmail dot com
  279. * Add int64 support. Two new functions json_object_net_int64 and
  280. json_object_get_int64. Binary compatibility preserved.
  281. Eric Haszlakiewicz, EHASZLA at transunion com
  282. Rui Miguel Silva Seabra, rms at 1407 dot org
  283. * Fix subtle bug in linkhash where lookup could hang after all slots
  284. were filled then successively freed.
  285. Spotted by Jean-Marc Naud, j dash m at newtraxtech dot com
  286. * Make json_object_from_file take const char *filename
  287. Spotted by Vikram Raj V, vsagar at attinteractive dot com
  288. * Add handling of surrogate pairs (json_tokener.c, test4.c, Makefile.am)
  289. Brent Miller, bdmiller at yahoo dash inc dot com
  290. * Correction to comment describing printbuf_memappend in printbuf.h
  291. Brent Miller, bdmiller at yahoo dash inc dot com
  292. 0.9
  293. ===
  294. * Add README.html README-WIN32.html config.h.win32 to Makefile.am
  295. Michael Clark, <michael@metaparadigm.com>
  296. * Add const qualifier to the json_tokener_parse functions
  297. Eric Haszlakiewicz, EHASZLA at transunion dot com
  298. * Rename min and max so we can never clash with C or C++ std library
  299. Ian Atha, thatha at yahoo dash inc dot com
  300. * Fix any noticeable spelling or grammar errors.
  301. * Make sure every va_start has a va_end.
  302. * Check all pointers for validity.
  303. Erik Hovland, erik at hovland dot org
  304. * Fix json_object_get_boolean to return false for empty string
  305. Spotted by Vitaly Kruglikov, Vitaly dot Kruglikov at palm dot com
  306. * optimizations to json_tokener_parse_ex(), printbuf_memappend()
  307. Brent Miller, bdmiller at yahoo dash inc dot com
  308. * Disable REFCOUNT_DEBUG by default in json_object.c
  309. * Don't use this as a variable, so we can compile with a C++ compiler
  310. * Add casts from void* to type of assignment when using malloc
  311. * Add #ifdef __cplusplus guards to all of the headers
  312. * Add typedefs for json_object, json_tokener, array_list, printbuf, lh_table
  313. Michael Clark, <michael@metaparadigm.com>
  314. * Null pointer dereference fix. Fix json_object_get_boolean strlen test
  315. to not return TRUE for zero length string. Remove redundant includes.
  316. Erik Hovland, erik at hovland dot org
  317. * Fixed warning reported by adding -Wstrict-prototypes
  318. -Wold-style-definition to the compilatin flags.
  319. Dotan Barak, dotanba at gmail dot com
  320. * Add const correctness to public interfaces
  321. Gerard Krol, g dot c dot krol at student dot tudelft dot nl
  322. 0.8
  323. ===
  324. * Add va_end for every va_start
  325. Dotan Barak, dotanba at gmail dot com
  326. * Add macros to enable compiling out debug code
  327. Geoffrey Young, geoff at modperlcookbook dot org
  328. * Fix bug with use of capital E in numbers with exponents
  329. Mateusz Loskot, mateusz at loskot dot net
  330. * Add stddef.h include
  331. * Patch allows for json-c compile with -Werror and not fail due to
  332. -Wmissing-prototypes -Wstrict-prototypes -Wmissing-declarations
  333. Geoffrey Young, geoff at modperlcookbook dot org
  334. 0.7
  335. ===
  336. * Add escaping of backslash to json output
  337. * Add escaping of foward slash on tokenizing and output
  338. * Changes to internal tokenizer from using recursion to
  339. using a depth state structure to allow incremental parsing
  340. 0.6
  341. ===
  342. * Fix bug in escaping of control characters
  343. Johan Björklund, johbjo09 at kth dot se
  344. * Remove include "config.h" from headers (should only
  345. be included from .c files)
  346. Michael Clark <michael@metaparadigm.com>
  347. 0.5
  348. ===
  349. * Make headers C++ compatible by change *this to *obj
  350. * Add ifdef C++ extern "C" to headers
  351. * Use simpler definition of min and max in bits.h
  352. Larry Lansing, llansing at fuzzynerd dot com
  353. * Remove automake 1.6 requirement
  354. * Move autogen commands into autogen.sh. Update README
  355. * Remove error pointer special case for Windows
  356. * Change license from LGPL to MIT
  357. Michael Clark <michael@metaparadigm.com>
  358. 0.4
  359. ===
  360. * Fix additional error case in object parsing
  361. * Add back sign reversal in nested object parse as error pointer
  362. value is negative, while error value is positive.
  363. Michael Clark <michael@metaparadigm.com>
  364. 0.3
  365. ===
  366. * fix pointer arithmetic bug for error pointer check in is_error() macro
  367. * fix type passed to printbuf_memappend in json_tokener
  368. * update autotools bootstrap instructions in README
  369. Michael Clark <michael@metaparadigm.com>
  370. 0.2
  371. ===
  372. * printbuf.c - C. Watford (christopher.watford@gmail.com)
  373. Added a Win32/Win64 compliant implementation of vasprintf
  374. * debug.c - C. Watford (christopher.watford@gmail.com)
  375. Removed usage of vsyslog on Win32/Win64 systems, needs to be handled
  376. by a configure script
  377. * json_object.c - C. Watford (christopher.watford@gmail.com)
  378. Added scope operator to wrap usage of json_object_object_foreach, this
  379. needs to be rethought to be more ANSI C friendly
  380. * json_object.h - C. Watford (christopher.watford@gmail.com)
  381. Added Microsoft C friendly version of json_object_object_foreach
  382. * json_tokener.c - C. Watford (christopher.watford@gmail.com)
  383. Added a Win32/Win64 compliant implementation of strndup
  384. * json_util.c - C. Watford (christopher.watford@gmail.com)
  385. Added cast and mask to suffice size_t v. unsigned int conversion
  386. correctness
  387. * json_tokener.c - sign reversal issue on error info for nested object parse
  388. spotted by Johan Björklund (johbjo09 at kth.se)
  389. * json_object.c - escape " in json_escape_str
  390. * Change to automake and libtool to build shared and static library
  391. Michael Clark <michael@metaparadigm.com>
  392. 0.1
  393. ===
  394. * initial release