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