- Add
as_managed_identity
argument tokey_vault
, to allow authenticating with a managed identity from inside an Azure VM or container. - Update API version to 7.2.
- Change maintainer email address.
- Support the soft-delete feature for Key Vaults. By default, a new vault will be created with soft-deletion enabled, which protects the vault and its contents from accidental/malicious deletion. A soft-deleted vault is held for a retention period (90 days) during which it can be restored. To hard-delete a soft-deleted vault, call the new
purge_key_vault
method, or specifypurge=TRUE
when deleting the vault.
- Use
utils::askYesNo
for confirmation prompts on R >= 3.5; this fixes a bug in reading the input. As a side-effect, Windows users who are using RGUI.exe will see a popup dialog box instead of a message in the terminal.
- Allow tokens to be passed to
key_vault
as character strings, as well as objects of classAzureToken
. - Better handling of nulls in API calls.
- Initial CRAN release