Skip to content

Commit

Permalink
Updated CHANGELOGs and READMEs for the October 2020 Key Vault Beta re…
Browse files Browse the repository at this point in the history
…lease. (#16086)

* Updated CHANGELOGs.

* Updated READMEs.

* Updated CHANGELOG files to follow the new guidelines.

* Updated CHANGELOG dates.

* Applied PR feedback.
  • Loading branch information
vcolin7 authored Oct 9, 2020
1 parent 96ce505 commit 86f5367
Show file tree
Hide file tree
Showing 8 changed files with 88 additions and 11 deletions.
21 changes: 20 additions & 1 deletion sdk/keyvault/azure-security-keyvault-administration/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,26 @@
# Release History

## 4.0.0-beta.2 (Unreleased)
## 4.0.0-beta.2 (2020-10-09)

### New Features
- Added the new public APIs `getBackupOperation` and `getRestoreOperation` for querying the status of long-running operations in `KeyVaultBackupClient` and `KeyVaultBackupAsyncClient`.
- Added API overloads that allow for passing specific polling intervals for long-running operations:
- `KeyVaultBackupAsyncClient`
- `beginBackup(String, String, Duration)`
- `beginRestore(String, String, String, Duration)`
- `beginSelectiveRestore(String, String, String, String, Duration)`
- `KeyVaultBackupClient`
- `beginBackup(String, String, Duration)`
- `beginRestore(String, String, String, Duration)`
- `beginSelectiveRestore(String, String, String, String, Duration)`
- Added support for `com.azure.core.util.ClientOptions` in client builders.

### Dependency Updates
- Upgraded `azure-core` dependency to `1.9.0`
- Upgraded `azure-core-http-netty` dependency to `1.6.2`
- Upgraded `azure-core-http-okhttp` dependency to `1.3.2`
- Upgraded `azure-core-test` dependency to `1.5.0`
- Upgraded `azure-identity` dependency to `1.1.3`

## 4.0.0-beta.1 (2020-09-11)
- Added `KeyVaultBackupClient` and `KeyVaultBackupAsyncClient`.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Maven dependency for the Azure Key Vault Administration library. Add it to your
<dependency>
<groupId>com.azure</groupId>
<artifactId>azure-security-keyvault-administration</artifactId>
<version>4.0.0-beta.1</version>
<version>4.0.0-beta.2</version>
</dependency>
```
[//]: # ({x-version-update-end})
Expand Down
25 changes: 23 additions & 2 deletions sdk/keyvault/azure-security-keyvault-certificates/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,28 @@
# Release History

## 4.2.0-beta.2 (Unreleased)

## 4.2.0-beta.2 (2020-10-09)

### New Features
- Added `KeyVaultCertificateIdentifier`. Use its [`parse`](https://github.com/Azure/azure-sdk-for-java/blob/ff52067a3772a430e5913b898f2806078aec8ef2/sdk/keyvault/azure-security-keyvault-certificates/src/main/java/com/azure/security/keyvault/certificates/models/KeyVaultCertificateIdentifier.java#L79) method to parse the different elements of a given certificate identifier.
- Added API overloads that allow for passing specific polling intervals for long-running operations:
- `CertificateAsyncClient`
- `beginCreateCertificate(String, CertificatePolicy, Boolean, Map<String, String>, Duration)`
- `getCertificateOperation(String, Duration)`
- `beginDeleteCertificate(String, Duration)`
- `beginRecoverDeletedCertificate(String, Duration)`
- `CertificateClient`
- `beginCreateCertificate(String, CertificatePolicy, Boolean, Map<String, String>, Duration)`
- `getCertificateOperation(String, Duration)`
- `beginDeleteCertificate(String, Duration)`
- `beginRecoverDeletedCertificate(String, Duration)`
- Added support for `com.azure.core.util.ClientOptions` in client builders.

### Dependency Updates
- Upgraded `azure-core` dependency to `1.9.0`
- Upgraded `azure-core-http-netty` dependency to `1.6.2`
- Upgraded `azure-core-http-okhttp` dependency to `1.3.2`
- Upgraded `azure-core-test` dependency to `1.5.0`
- Upgraded `azure-identity` dependency to `1.1.3`

## 4.2.0-beta.1 (2020-09-11)
- Updated versions for azure-core and azure-identity.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ Maven dependency for the Azure Key Vault Certificate client library. Add it to y
<dependency>
<groupId>com.azure</groupId>
<artifactId>azure-security-keyvault-certificates</artifactId>
<version>4.1.1</version>
<version>4.2.0-beta.2</version>
</dependency>
```
[//]: # ({x-version-update-end})
Expand Down
24 changes: 22 additions & 2 deletions sdk/keyvault/azure-security-keyvault-keys/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,27 @@
# Release History

## 4.3.0-beta.2 (Unreleased)

## 4.3.0-beta.2 (2020-10-09)

### New Features
- Added `KeyVaultKeyIdentifier`. Use its [`parse`](https://github.com/Azure/azure-sdk-for-java/blob/ff52067a3772a430e5913b898f2806078aec8ef2/sdk/keyvault/azure-security-keyvault-keys/src/main/java/com/azure/security/keyvault/keys/models/KeyVaultKeyIdentifier.java#L78) method to parse the different elements of a given key identifier.
- Added API overloads that allow for passing specific polling intervals for long-running operations:
- `KeyAsyncClient`
- `beginDeleteKey(String, Duration)`
- `beginRecoverDeletedKey(String, Duration)`
- `KeyClient`
- `beginDeleteKey(String, Duration)`
- `beginRecoverDeletedKey(String, Duration)`
- Added support for `com.azure.core.util.ClientOptions` in client builders.

### Bug Fixes
- Fixed an issue that prevented the `tags` and `managed` members of `KeyProperties` from getting populated when retrieving a single key using `KeyClient`, `KeyAsyncClient`, `CryptographyClient` and `CryptographyAsyncClient`.

### Dependency updates
- Upgraded `azure-core` dependency to `1.9.0`
- Upgraded `azure-core-http-netty` dependency to `1.6.2`
- Upgraded `azure-core-http-okhttp` dependency to `1.3.2`
- Upgraded `azure-core-test` dependency to `1.5.0`
- Upgraded `azure-identity` dependency to `1.1.3`

## 4.3.0-beta.1 (2020-09-11)
- Updated versions for azure-core and azure-identity.
Expand Down
2 changes: 1 addition & 1 deletion sdk/keyvault/azure-security-keyvault-keys/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ Maven dependency for the Azure Key Vault Key client library. Add it to your proj
<dependency>
<groupId>com.azure</groupId>
<artifactId>azure-security-keyvault-keys</artifactId>
<version>4.2.1</version>
<version>4.3.0-beta.2</version>
</dependency>
```
[//]: # ({x-version-update-end})
Expand Down
21 changes: 19 additions & 2 deletions sdk/keyvault/azure-security-keyvault-secrets/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,24 @@
# Release History

## 4.3.0-beta.2 (Unreleased)

## 4.3.0-beta.2 (2020-10-09)

### New Features
- Added `KeyVaultSecretIdentifier`. Use its [`parse`](https://github.com/Azure/azure-sdk-for-java/blob/ff52067a3772a430e5913b898f2806078aec8ef2/sdk/keyvault/azure-security-keyvault-secrets/src/main/java/com/azure/security/keyvault/secrets/models/KeyVaultSecretIdentifier.java#L79) method to parse the different elements of a given secret identifier.
- Added API overloads that allow for passing specific polling intervals for long-running operations:
- `SecretAsyncClient`
- `beginDeleteSecret(String, Duration)`
- `beginRecoverDeletedSecret(String, Duration)`
- `SecretClient`
- `beginDeleteSecret(String, Duration)`
- `beginRecoverDeletedSecret(String, Duration)`
- Added support for `com.azure.core.util.ClientOptions` in client builders.

### Dependency Updates
- Upgraded `azure-core` dependency to `1.9.0`
- Upgraded `azure-core-http-netty` dependency to `1.6.2`
- Upgraded `azure-core-http-okhttp` dependency to `1.3.2`
- Upgraded `azure-core-test` dependency to `1.5.0`
- Upgraded `azure-identity` dependency to `1.1.3`

## 4.3.0-beta.1 (2020-09-11)
- Updated versions for azure-core and azure-identity.
Expand Down
2 changes: 1 addition & 1 deletion sdk/keyvault/azure-security-keyvault-secrets/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ Maven dependency for the Azure Key Vault Secrets client library. Add it to your
<dependency>
<groupId>com.azure</groupId>
<artifactId>azure-security-keyvault-secrets</artifactId>
<version>4.2.1</version>
<version>4.3.0-beta.2</version>
</dependency>
```
[//]: # ({x-version-update-end})
Expand Down

0 comments on commit 86f5367

Please sign in to comment.