1. e8161a1 Issue #15: add a way to set a JSON_TOKENER_STRICT flag to forbid commas at the end of arrays and objects. by Eric Haszlakiewicz · 11 years ago
  2. 889400d Merge pull request #73 from ghazel/master by Eric Haszlakiewicz · 11 years ago
  3. 88bf1c9 one definition of json_object_object_foreach only works on c99 and later by Greg Hazel · 11 years ago
  4. 5ec65e4 Merge pull request #71 from WillDignazio/master by Eric Haszlakiewicz · 11 years ago
  5. 32eddd6 Fix broken build by using ADVANCE_CHAR macro return. by William Dignazio · 11 years ago
  6. bb492d4 Rename misnomer POP_CHAR to PEEK_CHAR. by William Dignazio · 11 years ago
  7. b64d5ab Merge pull request #70 from tg--/master by Eric Haszlakiewicz · 11 years ago
  8. 1aa29b6 Issue #68: use -std=gnu99 because some versions of gcc seem to think that -std=c99 also implies -ansi, which causes warnings and build breakage. by Eric Haszlakiewicz · 11 years ago
  9. 36ec47d configure.in: mv AM_CONFIG_HEADER to AC_CONFIG_HEADER by Thomas Gstädtner · 11 years ago
  10. 94aeed2 Include the test_locale test in the tests that run. by Eric Haszlakiewicz · 11 years ago
  11. 5b36a43 Merge branch 'remicollet-issue-float' by Eric Haszlakiewicz · 11 years ago
  12. 9b64c05 Mark the "val" variable in json_object_object_foreach as unused so the compiler doesn't complain. Fix warnings in the testReplaceExisting test. by Eric Haszlakiewicz · 11 years ago
  13. bfb3292 Add a runtime check to see if parse_int64 needs to workaround sscanf bugs. If that workaround is not needed parsing is nearly twice as fast. by Eric Haszlakiewicz · 11 years ago
  14. ca8b27d Enable -Werror and fix a number of minor warnings that existed. by Eric Haszlakiewicz · 11 years ago
  15. 92d289f Add a comment briefly describing json_object_object_length() by Eric Haszlakiewicz · 11 years ago
  16. c6b3991 Merge pull request #62 from ghazel/master by Eric Haszlakiewicz · 11 years ago
  17. ebeb6a4 Merge pull request #66 from ichernev/fix-test-parse by Eric Haszlakiewicz · 11 years ago
  18. 78b089b Fixed test_parse for \f by Iskren Chernev · 11 years ago
  19. cca74c6 add json_object_object_length by Greg Hazel · 11 years ago
  20. 3ae296f Merge pull request #60 from ghazel/master by Eric Haszlakiewicz · 11 years ago
  21. 77d0493 rename _errno by Greg Hazel · 11 years ago
  22. 85da28c Merge pull request #58 from Abioy/master by Eric Haszlakiewicz · 11 years ago
  23. 7eaa849 escape '\f' in json_escape_str by Abioy · 11 years ago
  24. fcc768e Bump the version up to 0.10.99 to make it clear that the master branch is beyond anything on the 0.10 branch. by Eric Haszlakiewicz · 11 years ago
  25. 2943691 Merge branch 'master' of https://github.com/json-c/json-c by Eric Haszlakiewicz · 11 years ago
  26. 1461b49 Add a json_c_version.h header (included from json.h), and several macros and functions for retrieving the json-c version at compile-time and run-time. by Eric Haszlakiewicz · 11 years ago
  27. 56166e2 Merge pull request #51 from remicollet/issue-dyndepth by Eric Haszlakiewicz · 11 years ago
  28. d7de3aa Update the release checklist to include the INSTALL file, and adjust the git command to add the doc directory. by Eric Haszlakiewicz · 11 years ago
  29. 2e9fef3 Revert the test_null test back to emitted to stdout, and update the expected output to match. by Eric Haszlakiewicz · 11 years ago
  30. 86aedc2 Merge pull request #56 from TheCount/develop by Eric Haszlakiewicz · 11 years ago
  31. 18abf6e More warnings, fewer errors, C99 by Alexander Klauer · 11 years ago
  32. 024d86c Prepend DESTDIR to paths for staged installs by Alexander Klauer · 11 years ago
  33. 57f36ed Write additional test info to stderr instead of stdout so as not to mar the expected output by Alexander Klauer · 11 years ago
  34. 827a4a9 Fixed memory leak in testReplaceExisting by Alexander Klauer · 11 years ago
  35. beb12d4 Make macro json_object_object_foreach multiple-use safe by Alexander Klauer · 11 years ago
  36. 20ef1bd Remove and ignore autogenerated installation instructions by Alexander Klauer · 11 years ago
  37. 8f58f09 Ignore editor swap files by Alexander Klauer · 11 years ago
  38. 54d551c Ignore doc dir for now by Alexander Klauer · 11 years ago
  39. b1d61d1 Library is now called libjson-c by Alexander Klauer · 11 years ago
  40. a3a0f5b Need to explicitly remove include/json-c directory by Alexander Klauer · 11 years ago
  41. b670f6f -d test is useless as symlinks are dereferenced by Alexander Klauer · 11 years ago
  42. e176965 Ignore valgrind output files by Alexander Klauer · 11 years ago
  43. 32d149c probably worth an option for this by Remi Collet · 11 years ago
  44. 8c84796 Save space, drop unuseful trailing zeroes by Remi Collet · 11 years ago
  45. 4014fe8 Simple fix to double encode by Remi Collet · 11 years ago
  46. a01b659 move locale change to be global for perf by Remi Collet · 11 years ago
  47. 4e4af93 Fix issue #53 - ensure explicit length string are still NUL terminated, and fix json_tokener_parse() to work properly with embedded unicode \u0000 values in strings. by Eric Haszlakiewicz · 11 years ago
  48. 7a4506d Remove configure as part of maintainer-clean instead of distclean. Addresses issue #48. by Eric Haszlakiewicz · 11 years ago
  49. 7653d49 Add PACKAGE_URL to config.h.in by Eric Haszlakiewicz · 11 years ago
  50. aec8763 Add a missing json_object_get() so we don't try to use a freed object in test1. by Eric Haszlakiewicz · 11 years ago
  51. 447b88a Fix a memory leak in the test_printbuf test. by Eric Haszlakiewicz · 11 years ago
  52. 23461c7 Include json_object_iterator.c in the list of sources. by Eric Haszlakiewicz · 11 years ago
  53. 16a4a32 float parsing must be locale independent by Remi Collet · 11 years ago
  54. 197cb1d Make maximum recursion depth a runtime option by Remi Collet · 11 years ago
  55. f6b27cb Make it safe to delete keys while iterating with the json_object_object_foreach macro. by Eric Haszlakiewicz · 12 years ago
  56. 5abc0ea Reformat the json_object_object_foreach macro so it is readable, and document what is allowed to be done with the object while iterating. by Eric Haszlakiewicz · 12 years ago
  57. e36e562 Reformat json_object_object_get() and json_object_object_get_ex(). by Eric Haszlakiewicz · 12 years ago
  58. 5450bed Fix json_object_object_get() so it returns NULL if the incoming json_object is NULL. by Eric Haszlakiewicz · 12 years ago
  59. 5f4739e Change json_object_put to return 1 if the object passed was actually freed. (or 0 if only the reference count was decremented) by Eric Haszlakiewicz · 12 years ago
  60. c3d1d59 Fix a memory leak in test1 with respect to how json_object_object_del was used. by Eric Haszlakiewicz · 12 years ago
  61. c3068bf Reformat the test sources. No functional change. by Eric Haszlakiewicz · 12 years ago
  62. d1f237e Fix the home page in the README, and add a list of prerequisites. by Eric Haszlakiewicz · 12 years ago
  63. 059e8f4 Merge pull request #44 from lastquestion/fix_gnu_macosx by Eric Haszlakiewicz · 12 years ago
  64. e7e0600 Add an autoconf test to test whether the .section .gnu<warning> by Lin Xu · 12 years ago
  65. 4b1a066 Update the set_serializer test to match the actual output. by Eric Haszlakiewicz · 12 years ago
  66. 38f421a Add a json_set_serializer() function to allow the string output of a json_object to be customized. by Eric Haszlakiewicz · 12 years ago
  67. f74e8f8 Add my copyright. by Eric Haszlakiewicz · 12 years ago
  68. d305cae Ignore the tests/testReplaceExisting binary. by Eric Haszlakiewicz · 12 years ago
  69. 8ce53f9 Note the rename in the ChangeLog, and update the instructions in the README file. by Eric Haszlakiewicz · 12 years ago
  70. 2f2180b Take a guess as to the rename changes changes needed to the Android part of the build. by Eric Haszlakiewicz · 12 years ago
  71. 1f9d199 Re-add the "json" pkg-config file as a compatibility shim. by Eric Haszlakiewicz · 12 years ago
  72. 9f16e25 Bump the version of the new library since programs will need to be re-linked to use it. by Eric Haszlakiewicz · 12 years ago
  73. 943b7a4 Add a compatibility symlink json->json-c in the include directory. by Eric Haszlakiewicz · 12 years ago
  74. 075b783 Add a --disable-oldname-compat option to configure to turn off the creation of the libjson.so library, and only include libjson-c.so by Eric Haszlakiewicz · 12 years ago
  75. c7a2120 Ignore a couple more generated files. by Eric Haszlakiewicz · 12 years ago
  76. 082419e Fix the Libs line in json-uninstalled.pc to use -ljson-c by Eric Haszlakiewicz · 12 years ago
  77. b98aa6e Create an additional libjson.so library that simply links against libjson-c, but emits a warning encouraging the use of the new library. by Eric Haszlakiewicz · 12 years ago
  78. eb37094 Check for the sys/cdefs.h header which on some systems defines the __warn_references macro. by Eric Haszlakiewicz · 12 years ago
  79. ba1c381 Remove test_parse from the top level directory. (accidentally re-introduced with the last merge) by Eric Haszlakiewicz · 12 years ago
  80. c2d3ccf Merge branch 'rename_library' of https://github.com/kdopen/json-c into kdopen-rename_library by Eric Haszlakiewicz · 12 years ago
  81. 92f31bd Handle the \f escape sequence (the two characters: backslash followed by an f, not a literal formfeed) and extend the test_parse test to check all valid escape sequences. by Eric Haszlakiewicz · 12 years ago
  82. 8fcfeb6 Default autogen.sh to not running configure, unless some command line options are specified. by Eric Haszlakiewicz · 12 years ago
  83. 77c6239 Initialize errno before calling sscanf in json_parse_int64() so parsing valid numbers after parsing an out of range number works. by Eric Haszlakiewicz · 12 years ago
  84. 2da148d Merge pull request #37 from cgwalters/master by Eric Haszlakiewicz · 12 years ago
  85. 6988f53 Rewrite json_object_object_add to replace just the value if the key already exists so keys remain valid. by Eric Haszlakiewicz · 12 years ago
  86. 6d94377 autogen.sh: Add /bin/sh interpreter, honor NOCONFIGURE=1 by Colin Walters · 12 years ago
  87. 381f77c Merge pull request #26 from ford-prefect/master by Eric Haszlakiewicz · 12 years ago
  88. 4154c55 Add json_object_iterator.h to installed headers. by Eric Haszlakiewicz · 12 years ago
  89. 9791c38 Fix git commands for tagging a release. by Eric Haszlakiewicz · 12 years ago
  90. eead1a7 Remove unnecessary comment from json_util.c by Eric Haszlakiewicz · 12 years ago
  91. 7bd49df Merge pull request #33 from mloskot/master by Eric Haszlakiewicz · 12 years ago
  92. 984303d Added a bunch of missing HAVE_* defines tested with ./configure script to fix compilation on Linux with GCC 4.7.1. The issue likely caused by my previous commits related to Visual C++ port of the code. by Mateusz Loskot · 12 years ago
  93. a789601 Merge pull request #27 from OBI-1/master by Eric Haszlakiewicz · 12 years ago
  94. c58386f Merge pull request #29 from mloskot/msvc-port by Eric Haszlakiewicz · 12 years ago
  95. 837d685 Use "nodoc", not "doc", for the name of the tarball w/o docs. by Eric Haszlakiewicz · 12 years ago
  96. 271c53e Missing explicit casts from void* to specific pointers required. Added #define strcasecmp for Visual C++. by Mateusz Loskot · 12 years ago
  97. a6f39a3 Replaced #if HAVE_X with #ifdef HAVE_X as the former test is troublemaker with #define HAVE_X where #define HAVE_X 1|0 is meant. by Mateusz Loskot · 12 years ago
  98. b6ff1c2 array_list_expand_internal needs length, not index. by OBI-1 · 12 years ago
  99. 1abaaee Update the ChangeLog with the rest of the changes that will be included in the 0.10 release. by Eric Haszlakiewicz · 12 years ago
  100. e7bd2e9 Fill in the missing pieces of the release checklist. by Eric Haszlakiewicz · 12 years ago