Skip to content

pyo3-object_store-v0.3.0

Compare
Choose a tag to compare
@kylebarron kylebarron released this 24 Mar 23:12
· 10 commits to main since this release

Compatibility release to use pyo3-object_store with object_store 0.11 and pyo3 0.23.

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.

    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").