Skip to content

Commit 0108193

Browse files
authored
[KeyVault] Prepare for August release (Azure#22835)
1 parent 95e3961 commit 0108193

File tree

23 files changed

+683
-681
lines changed

23 files changed

+683
-681
lines changed

sdk/keyvault/keyvault-admin/CHANGELOG.md

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,11 @@
11
# Release History
22

3-
## 4.2.2 (Unreleased)
4-
5-
### Features Added
6-
7-
### Breaking Changes
8-
9-
### Bugs Fixed
3+
## 4.2.2 (2022-08-09)
104

115
### Other Changes
126

7+
- Improvements to documentation.
8+
139
## 4.2.1 (2022-07-05)
1410

1511
### Bugs Fixed

sdk/keyvault/keyvault-certificates/CHANGELOG.md

Lines changed: 12 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,23 @@
11
# Release History
22

3-
## 4.5.0-beta.2 (Unreleased)
4-
5-
### Features Added
3+
## 4.5.0 (2022-08-09)
64

75
### Breaking Changes
86

9-
### Bugs Fixed
7+
- Migrated to the Core v2 HTTP pipeline. As a result of this migration:
8+
- The response types no longer contain the raw response `_response`. To access the raw response, an `onResponse` callback has to be passed in the request options bag, for example:
9+
```ts
10+
let rawResponse: FullOperationResponse | undefined;
11+
await client.operationName(/* ...parameters... */, {
12+
onResponse: (response) => (rawResponse = response),
13+
});
14+
```
15+
- The re-export of the `PipelineOptions` type from `@azure/core-http` has been removed. If you previously relied on this export, consider either using the more specific `CertificateClientOptions` type or importing `PipelineOptions` from `@azure/core-http` directly.
1016

1117
### Other Changes
1218

19+
- Documentation fixes.
20+
1321
## 4.5.0-beta.1 (2022-07-07)
1422

1523
### Breaking Changes

sdk/keyvault/keyvault-certificates/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "@azure/keyvault-certificates",
33
"sdk-type": "client",
44
"author": "Microsoft Corporation",
5-
"version": "4.5.0-beta.2",
5+
"version": "4.5.0",
66
"license": "MIT",
77
"description": "Isomorphic client library for Azure KeyVault's certificates.",
88
"homepage": "https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/keyvault/keyvault-certificates/README.md",

sdk/keyvault/keyvault-certificates/recordings/browsers/certificates_client__merge_and_import_certificates/recording_can_import_a_certificate_from_a_certificates_base64_secret_value.json

Lines changed: 127 additions & 127 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

sdk/keyvault/keyvault-certificates/recordings/browsers/certificates_client__merge_and_import_certificates/recording_can_import_a_certificate_from_a_certificates_non_base64_secret_value.json

Lines changed: 127 additions & 127 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

sdk/keyvault/keyvault-certificates/recordings/node/certificates_client__create_read_update_and_delete/recording_can_get_a_certificates_secret_in_pem_format.json

Lines changed: 124 additions & 126 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

sdk/keyvault/keyvault-certificates/recordings/node/certificates_client__merge_and_import_certificates/recording_can_import_a_certificate_from_a_certificates_base64_secret_value.json

Lines changed: 127 additions & 129 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

sdk/keyvault/keyvault-certificates/recordings/node/certificates_client__merge_and_import_certificates/recording_can_import_a_certificate_from_a_certificates_non_base64_secret_value.json

Lines changed: 127 additions & 129 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
// Copyright (c) Microsoft Corporation.
22
// Licensed under the MIT license.
33

4-
export const SDK_VERSION: string = "4.5.0-beta.2";
4+
export const SDK_VERSION: string = "4.5.0";

sdk/keyvault/keyvault-certificates/src/generated/keyVaultClient.ts

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)