Skip to content

Releases: mangiucugna/json_repair

Release 0.29.1

05 Sep 06:54
Compare
Choose a tag to compare

Fixed

  • Fix documentation and tests for CLI, add the --output option as it was missing in the first release

Release 0.29.0

04 Sep 19:32
Compare
Choose a tag to compare

Added

  • Feature Request #68, added the ability to call json_repair from the CLI. Please refer to README.md to check all the options available via command-line.

Release 0.28.4

28 Aug 12:09
Compare
Choose a tag to compare

Fixed

  • Fix #66, from_file() was extremely slow because it was reading one byte at a time, now the library will read the file in large chunks to speed up. Thanks to @benjamingr for reporting the issue and pushing a PR to resolve the bug.

Sponsors

This release is sponsored by @graingerkid. Thank you very much for your donation!

This library is free for everyone and it's maintained and developed as a side project so, if you find this library useful for your work, consider offering me a beer via this link: https://github.com/sponsors/mangiucugna

Release 0.28.3

19 Aug 15:41
Compare
Choose a tag to compare

Fixed

  • The previous release broke python 3.8 and 3.9. Sorry folks

Release 0.28.2

19 Aug 15:32
Compare
Choose a tag to compare

Fixed

  • For the developers using mypy, the library is finally 100% compliant with mypy and it's part of pre-commit checks from now on. Feel free to push a PR or open an issue if you find more warnings/errors with mypy

Release 0.28.1

19 Aug 14:24
Compare
Choose a tag to compare

Fixed

  • PR #65, More type hinting fixes to be compatible with mypy users. Thanks to @d-hage for pushing this PR

Release 0.28.0

16 Aug 04:42
Compare
Choose a tag to compare

Added

  • Fix #64, so far the library was fully typed but would throw a warning with mypy. Added support for it

Minor

  • The library has now achieved 100% test coverage!

Release 0.27.2

11 Aug 13:12
Compare
Choose a tag to compare

Fixed

  • Better handling of empty key values and remove lots of dead code, plus better test coverage

Release 0.27.1

11 Aug 05:27
Compare
Choose a tag to compare

Fixed

  • Fix #62, an off by one error made it so that correct escaped sequences were not treated properly if they were at the beginning of the string. Thanks to @didmar for reporting!

Release 0.27.0

08 Aug 16:50
359bb73
Compare
Choose a tag to compare

Added

  • PR #63, allow numbers to be object keys, transforming them to string first

Thanks to @andsmi97 for contributing with this PR!