Skip to content

6.7.0

Compare
Choose a tag to compare
@jacobwilliams jacobwilliams released this 10 Jul 13:14
· 301 commits to master since this release

See also

Summary

  • Made the two arguments to json_check_for_errors() optional, so now either or both can be used. Note that if no error has been raised, then error_msg is now returned unallocated.
  • Added an additional error check in json_value_print() to check for an unassociated pointer.
  • Added remove() method to json_file
  • Added additional error checks to json_value_add_member(). Now it will raise an exception if try to add a child to a non-array or non-object.
  • Added some additional unit tests to increase coverage.
  • Fixed a bug in json_value_clone_func() where it could crash if attempting to clone an array element. Updated this routine to improve behavior when cloning an array element (the subsequent entries are no longer cloned). 🐞