Skip to content

jsoncons 0.167.0

Compare
Choose a tag to compare
@danielaparker danielaparker released this 06 Aug 16:09
· 1992 commits to master since this release

Bugs fixed:

  • Fixed issue with a json_cursor hanging if opened with an empty file
    or string, detected by google/OSS-fuzz.

  • Fixed issue with the unary minus in a JSONPath filter expression,
    where an expression such as $[[email protected] > -42] would fail to parse.

  • Fixed issue with private typedef and Intel C++ Compiler
    via PR #327

Changes:

  • In the csv extension, the enum name mapping_kind has been
    renamed to csv_mapping_kind, and the csv_options.mapping function
    has been renamed to csv_options.mapping_kind. The old names have
    been deprecated but are still usable.

Enhancements:

  • Added support for JSON Merge Patch.

  • Added support in JSONPath expressions for '%' (modulus) operator