Skip to content

Releases: mangiucugna/json_repair

Release 0.10.1

06 Mar 08:57
Compare
Choose a tag to compare

Fixed

  • Fixed #17, the library was not dealing with escaped quotes properly. Updated code, documentation and tests to deal with that corner case

Thanks to @michalkkkd for reporting

Release 0.10.0

06 Mar 08:43
Compare
Choose a tag to compare

Added

  • Support for slanted double quotes “ ”

Fixed

  • Some code improvements to fix some corner cases that now are handled more elegantly

Release 0.9.0

24 Feb 16:10
Compare
Choose a tag to compare

Added

  • PR #16. Support for "number-like" strings such as number ranges or IP addresses, those will be interpreted as string. Thanks to @tmcdonnell87 for his contribution!

Release 0.8.1

12 Feb 09:34
Compare
Choose a tag to compare

Fixed

  • Fixes #15, a nasty corner case crashed the library. Thanks to @imsiriuse for reporting

Release 0.8.0

28 Jan 07:14
Compare
Choose a tag to compare

Added

  • A slightly more general solution to the code markdown issue solved in 0.7.0. From now on the library won't throw an exception anymore in case of garbage characters but just ignore them.

Release 0.7.0

27 Jan 22:10
Compare
Choose a tag to compare

Added

  • Fixes #13. Sometimes json blocks are returned as markdown codeblocks, remove the backticks before processing the json. Thanks to @Manouchehri for the feature request.

Release 0.6.2

24 Jan 09:13
Compare
Choose a tag to compare

Fixed

  • Small changes in code led to quite significant improvements in performance, releasing this patch version for anyone that cares about performance since the last releases added some features that slowed down the library (we are talking microseconds but still)

Release 0.6.1

23 Jan 08:44
Compare
Choose a tag to compare

Fixed

  • Fixed a couple of corner cases that shouldn't have affected anybody but is good to have them covered. Also improved readability.

Release 0.6.0

22 Jan 18:33
Compare
Choose a tag to compare

Added

  • Feature request #12. Added support for broken markdown links with unquoted quotes like { "content": "[LINK]("link")" }

Thanks to @michalkkkd for reporting the issue

Release 0.5.1

18 Jan 17:20
Compare
Choose a tag to compare

Fixed

  • Fixed issue #11, an empty key in an object would cause the library to go into an infinite loop. Thanks to @jenniferhaefner for reporting!