This commit is contained in:
Hong Ooi 2022-05-25 06:11:25 +10:00
Родитель 8af5872be3
Коммит 5c65c10fa2
3 изменённых файлов: 4 добавлений и 3 удалений

Просмотреть файл

@ -1,6 +1,6 @@
Package: AzureStor
Title: Storage Management in 'Azure'
Version: 3.6.1.9000
Version: 3.7.0
Authors@R: c(
person("Hong", "Ooi", , "hongooi73@gmail.com", role = c("aut", "cre")),
person("Microsoft", role="cph")

Просмотреть файл

@ -1,10 +1,11 @@
# AzureStor 3.6.1.9000
# AzureStor 3.7.0
- Add support for blob snapshots and versions:
- New functions `create_blob_snapshot`, `list_blob_snapshots` and `delete_blob_snapshot` to manage snapshots, and `list_blob_versions` and `delete_blob_version` to manaage versions.
- Add generics `create_storage_snapshot`, `list_storage_snapshots`, `delete_blob_snapshot`, `list_storage_versions` and `list_storage_version`. These dispatch to the above functions for blob containers.
- Argument `snapshot` added to `download_blob`, `get_storage_properties` and `get_storage_metadata` to work with specific snapshots
- Add missing `directory_depth` argument for the `az_storage$get_service_sas` method (#114)
- Update client API version to "2021-06-08".
# AzureStor 3.6.1

Просмотреть файл

@ -15,7 +15,7 @@ globalVariables(c("self", "pool"), "AzureStor")
options(structure(list(value), names=name))
}
set_option("azure_storage_api_version", "2020-10-02")
set_option("azure_storage_api_version", "2021-06-08")
set_option("azure_storage_progress_bar", TRUE)
set_option("azure_storage_retries", 10)