5.0.0-beta.3 (2021-03-09)
Breaking Changes
- The configuration section name for URI configuration was changed from
endpoint
toserviceUri
to be consistent with other clients.
In case of JSON, from:
{
"MyConnection": {
"endpoint": "https://<my_account>.blob.core.windows.net"
}
}
To
{
"MyConnection": {
"serviceUri": "https://<my_account>.blob.core.windows.net"
}
}
Or using environment variables, from:
MyConnection__endpoint=https://<my_account>.blob.core.windows.net
To
MyConnection__serviceUri=https://<my_account>.blob.core.windows.net