Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 2455d46

Browse files
authored
4.0.0-preview 5 and fixed Azure#5003 (Azure#5075)
* 4.0.0-preview 5 and fixed Azure#5003 Fixes Azure#5003 * updated the versions everywhere they needed to be updated
1 parent c4c3709 commit 2455d46

File tree

13 files changed

+22
-22
lines changed

13 files changed

+22
-22
lines changed

sdk/cosmosdb/cosmos/review/cosmos.api.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -579,12 +579,12 @@ export class Items {
579579
query<T>(query: string | SqlQuerySpec, options: FeedOptions): QueryIterator<T>;
580580
readAll(options?: FeedOptions): QueryIterator<ItemDefinition>;
581581
readAll<T extends ItemDefinition>(options?: FeedOptions): QueryIterator<T>;
582+
readChangeFeed<T>(changeFeedOptions?: ChangeFeedOptions): ChangeFeedIterator<T>;
582583
// Warning: (ae-forgotten-export) The symbol "ChangeFeedOptions" needs to be exported by the entry point index.d.ts
583584
// Warning: (ae-forgotten-export) The symbol "ChangeFeedIterator" needs to be exported by the entry point index.d.ts
584585
readChangeFeed(partitionKey: string | number | boolean, changeFeedOptions: ChangeFeedOptions): ChangeFeedIterator<any>;
585586
readChangeFeed(changeFeedOptions?: ChangeFeedOptions): ChangeFeedIterator<any>;
586587
readChangeFeed<T>(partitionKey: string | number | boolean, changeFeedOptions: ChangeFeedOptions): ChangeFeedIterator<T>;
587-
readChangeFeed<T>(changeFeedOptions?: ChangeFeedOptions): ChangeFeedIterator<T>;
588588
upsert(body: any, options?: RequestOptions): Promise<ItemResponse<ItemDefinition>>;
589589
upsert<T extends ItemDefinition>(body: T, options?: RequestOptions): Promise<ItemResponse<T>>;
590590
}
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
# Release History
2+
3+
## 4.0.0-preview.5 (2019-09-09)
4+
- Released keyvault-certificates.

sdk/keyvault/keyvault-certificates/package.json

Lines changed: 2 additions & 6 deletions
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": "0.0.1",
5+
"version": "4.0.0-preview.5",
66
"license": "MIT",
77
"description": "Isomorphic client library for Azure KeyVault's certificates.",
88
"homepage": "https://github.com/Azure/azure-sdk-for-js#readme",
@@ -76,15 +76,13 @@
7676
"devDependencies": {
7777
"@azure/identity": "1.0.0-preview.3",
7878
"@azure/test-utils-recorder": "1.0.0",
79-
"@azure/keyvault-keys": "4.0.0-preview.4",
79+
"@azure/keyvault-keys": "4.0.0-preview.5",
8080
"@azure/keyvault-secrets": "4.0.0-preview.5",
8181
"@microsoft/api-extractor": "^7.1.5",
8282
"@types/chai": "^4.1.6",
8383
"@types/dotenv": "^6.1.0",
8484
"@types/fs-extra": "^8.0.0",
8585
"@types/mocha": "^5.2.5",
86-
"@types/nise": "^1.4.0",
87-
"@types/nock": "^10.0.1",
8886
"@types/node": "^8.0.0",
8987
"@types/query-string": "6.2.0",
9088
"@typescript-eslint/eslint-plugin": "^2.0.0",
@@ -115,8 +113,6 @@
115113
"mocha": "^6.2.0",
116114
"mocha-junit-reporter": "^1.18.0",
117115
"mocha-multi": "^1.1.3",
118-
"nise": "^1.4.10",
119-
"nock": "^11.3.2",
120116
"nyc": "^14.0.0",
121117
"prettier": "^1.16.4",
122118
"puppeteer": "^1.11.0",

sdk/keyvault/keyvault-certificates/src/core/keyVaultClientContext.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ import * as coreHttp from "@azure/core-http";
1212
import * as coreArm from "@azure/core-arm";
1313

1414
const packageName = "@azure/keyvault-certificates";
15-
const packageVersion = "0.0.1";
15+
const packageVersion = "4.0.0-preview.5";
1616

1717
export class KeyVaultClientContext extends coreArm.AzureServiceClient {
1818
credentials: coreHttp.TokenCredential;

sdk/keyvault/keyvault-certificates/src/core/utils/constants.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// Copyright (c) Microsoft Corporation. All rights reserved.
22
// Licensed under the MIT License. See License.txt in the project root for license information.
33

4-
export const SDK_VERSION: string = "1.0.0-preview1";
4+
export const SDK_VERSION: string = "4.0.0-preview.5";
55

66
export const RetryConstants = {
77
MIN_RETRY_INTERVAL_MS: 3000,

sdk/keyvault/keyvault-keys/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Release History
22

3+
## 4.0.0-preview.5 (2019-09-09)
4+
- Improved tests and upgraded dependencies.
5+
- Added the browser folder to the released bundle.
6+
37
## 4.0.0-preview.3 (2019-08-06)
48
- Added a new CryptographyClient to handle cryptography tasks.
59
- Added browser support.

sdk/keyvault/keyvault-keys/package.json

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "@azure/keyvault-keys",
33
"sdk-type": "client",
44
"author": "Microsoft Corporation",
5-
"version": "4.0.0-preview.4",
5+
"version": "4.0.0-preview.5",
66
"license": "MIT",
77
"description": "Isomorphic client library for Azure KeyVault's keys.",
88
"homepage": "https://github.com/Azure/azure-sdk-for-js#readme",
@@ -84,8 +84,6 @@
8484
"@types/dotenv": "^6.1.0",
8585
"@types/fs-extra": "^8.0.0",
8686
"@types/mocha": "^5.2.5",
87-
"@types/nise": "^1.4.0",
88-
"@types/nock": "^10.0.1",
8987
"@types/node": "^8.0.0",
9088
"@types/query-string": "6.2.0",
9189
"@typescript-eslint/eslint-plugin": "^2.0.0",
@@ -116,8 +114,6 @@
116114
"mocha": "^6.2.0",
117115
"mocha-junit-reporter": "^1.18.0",
118116
"mocha-multi": "^1.1.3",
119-
"nise": "^1.4.10",
120-
"nock": "^11.3.2",
121117
"nyc": "^14.0.0",
122118
"prettier": "^1.16.4",
123119
"puppeteer": "^1.11.0",

sdk/keyvault/keyvault-keys/src/core/keyVaultClientContext.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ import * as coreHttp from "@azure/core-http";
1212
import * as coreArm from "@azure/core-arm";
1313

1414
const packageName = "@azure/keyvault-keys";
15-
const packageVersion = "4.0.0-preview.2";
15+
const packageVersion = "4.0.0-preview.5";
1616

1717
export class KeyVaultClientContext extends coreArm.AzureServiceClient {
1818
credentials: coreHttp.TokenCredential;

sdk/keyvault/keyvault-keys/src/core/utils/constants.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// Copyright (c) Microsoft Corporation. All rights reserved.
22
// Licensed under the MIT License. See License.txt in the project root for license information.
33

4-
export const SDK_VERSION: string = "4.0.0-preview.2";
4+
export const SDK_VERSION: string = "4.0.0-preview.5";
55

66
export const RetryConstants = {
77
MIN_RETRY_INTERVAL_MS: 3000

sdk/keyvault/keyvault-secrets/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Release History
22

3+
## 4.0.0-preview.5 (2019-09-09)
4+
- Improved tests and upgraded dependencies.
5+
- Added the browser folder to the released bundle.
6+
37
## 4.0.0-preview.4 (2019-08-09)
48
- Fixed the missing TypeScript types by adding back the generated `.d.ts` file to the package.json
59

0 commit comments

Comments
 (0)