pyo3-object_store-v0.3.0
·
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, thecontainer
positional argument was renamed tocontainer_name
to match thecontainer_name
key inAzureConfig
.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 argumentAzureStore("my container name")
or if you had already been usingAzureStore(container_name="my container name")
.