Skip to content

Latest commit

 

History

History
62 lines (38 loc) · 2.39 KB

CHANGELOG.md

File metadata and controls

62 lines (38 loc) · 2.39 KB

Releases

v1.3.9 (2024-10-17)

  • Added: More examples added to the documentation for clarity and completeness.

v1.3.8 (2024-10-07)

  • Improved: Documentation enhancements to improve readability and comprehensiveness.

v1.3.7 (2024-10-04)

  • Added: Automatic documentation generation using mkdocs.
  • Added: Enhanced error messages for log loading to aid in troubleshooting.
  • Updated: pyproject.toml file to include ruff linting rules for code quality.

v1.3.6 (2024-10-03)

  • Fixed: Corrected issues with the pyproject.toml file configuration.

v1.3.5 (2024-10-03)

  • Updated: Configuration migrated to a TOML file format for better maintainability.
  • Improved: Added support for custom serialization/deserialization. Fixed orjson serialization issues.

v1.3.4 (2024-09-30)

  • Added: New parameter to allow passing an opener when loading files.
  • Added: Ability to read JSONLines files with broken lines for fault tolerance.
  • Changed: Stricter argument passing enforced using / and * in function signatures.

v1.3.3 (2024-09-20)

  • Fixed: The dump_fork function now ensures that files are properly closed after writing to prevent resource leaks.

v1.3.1 (2024-09-20)

  • Updated: Revised README.md and code docstrings to improve consistency and clarity.
  • Improved: Optimized dumper function for better performance.

v1.3.0 (2024-09-20)

  • Improved: Enhanced loader and dumper functions for more efficient handling of both binary and text files.
  • Added: The dump function now includes a text_mode argument for better control over file types.

v1.2.0 (2024-09-20)

  • Added: Support for the .xz compression format.
  • Updated: Improvements to README.md and code docstrings for better documentation quality.
  • Added: Configuration for .pre-commit-config.yaml to enforce code standards.

v1.1.1 (2024-08-16)

  • Improved: Added additional examples to README.md for better user guidance.

v1.1.0 (2024-08-16)

  • Added: Support for orjson and ujson libraries as alternatives to the standard json library.
  • Added: Support for gzip-compressed JSON files (.gz and .gzip), as well as bzip2-compressed files (.bz2).
  • Breaking Change: API simplified by removing dump_into and load_from functions. The dump and load functions now handle their functionality.