Skip to content

py-v0.6.0

Latest
Compare
Choose a tag to compare
@kylebarron kylebarron released this 24 Mar 16:28
· 14 commits to main since this release
13a4eed

See also a blog post announcing this release.

New Features 🪄

Breaking changes 🔧

Object store methods

No breaking changes.

Store constructors

  • In the AzureStore constructor, the container positional argument was renamed to container_name to match the container_name key in AzureConfig. by @kylebarron in #380

    This is a breaking change if you had been calling AzureStore(container="my container name").

    This is not breaking if you had been using it as a positional argument AzureStore("my container name") or if you had already been using AzureStore(container_name="my container name").

    The idea here is that we want one and only one argument name for each underlying config parameter. Most of these breaking changes took place in 0.5.0, but this was overlooked.

Bug fixes 🐛

  • Fix import errors on Python 3.9:
  • Define __all__ to fix type checking import paths #389

Documentation 📖

Other

Full Changelog: py-v0.5.1...py-v0.6.0

[0.5.1] - 2025-03-17

Bug fixes 🐛

  • Fix import errors for Python 3.9 and 3.10. Update CI. by @kylebarron in #372

Full Changelog: py-v0.5.0...py-v0.5.1