Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

4.0.0-preview 5 and fixed #5003 #5075

Merged
merged 3 commits into from
Sep 9, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion sdk/cosmosdb/cosmos/review/cosmos.api.md
Original file line number Diff line number Diff line change
Expand Up @@ -579,12 +579,12 @@ export class Items {
query<T>(query: string | SqlQuerySpec, options: FeedOptions): QueryIterator<T>;
readAll(options?: FeedOptions): QueryIterator<ItemDefinition>;
readAll<T extends ItemDefinition>(options?: FeedOptions): QueryIterator<T>;
readChangeFeed<T>(changeFeedOptions?: ChangeFeedOptions): ChangeFeedIterator<T>;
// Warning: (ae-forgotten-export) The symbol "ChangeFeedOptions" needs to be exported by the entry point index.d.ts
// Warning: (ae-forgotten-export) The symbol "ChangeFeedIterator" needs to be exported by the entry point index.d.ts
readChangeFeed(partitionKey: string | number | boolean, changeFeedOptions: ChangeFeedOptions): ChangeFeedIterator<any>;
readChangeFeed(changeFeedOptions?: ChangeFeedOptions): ChangeFeedIterator<any>;
readChangeFeed<T>(partitionKey: string | number | boolean, changeFeedOptions: ChangeFeedOptions): ChangeFeedIterator<T>;
readChangeFeed<T>(changeFeedOptions?: ChangeFeedOptions): ChangeFeedIterator<T>;
upsert(body: any, options?: RequestOptions): Promise<ItemResponse<ItemDefinition>>;
upsert<T extends ItemDefinition>(body: T, options?: RequestOptions): Promise<ItemResponse<T>>;
}
Expand Down
4 changes: 4 additions & 0 deletions sdk/keyvault/keyvault-certificates/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
# Release History

## 4.0.0-preview.5 (2019-09-09)
- Released keyvault-certificates.
sadasant marked this conversation as resolved.
Show resolved Hide resolved
8 changes: 2 additions & 6 deletions sdk/keyvault/keyvault-certificates/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "@azure/keyvault-certificates",
"sdk-type": "client",
"author": "Microsoft Corporation",
"version": "0.0.1",
"version": "4.0.0-preview.5",
"license": "MIT",
"description": "Isomorphic client library for Azure KeyVault's certificates.",
"homepage": "https://github.com/Azure/azure-sdk-for-js#readme",
Expand Down Expand Up @@ -76,15 +76,13 @@
"devDependencies": {
"@azure/identity": "1.0.0-preview.3",
"@azure/test-utils-recorder": "1.0.0",
"@azure/keyvault-keys": "4.0.0-preview.4",
"@azure/keyvault-keys": "4.0.0-preview.5",
"@azure/keyvault-secrets": "4.0.0-preview.5",
"@microsoft/api-extractor": "^7.1.5",
"@types/chai": "^4.1.6",
"@types/dotenv": "^6.1.0",
"@types/fs-extra": "^8.0.0",
"@types/mocha": "^5.2.5",
"@types/nise": "^1.4.0",
"@types/nock": "^10.0.1",
"@types/node": "^8.0.0",
"@types/query-string": "6.2.0",
"@typescript-eslint/eslint-plugin": "^2.0.0",
Expand Down Expand Up @@ -115,8 +113,6 @@
"mocha": "^6.2.0",
"mocha-junit-reporter": "^1.18.0",
"mocha-multi": "^1.1.3",
"nise": "^1.4.10",
"nock": "^11.3.2",
"nyc": "^14.0.0",
"prettier": "^1.16.4",
"puppeteer": "^1.11.0",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import * as coreHttp from "@azure/core-http";
import * as coreArm from "@azure/core-arm";

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

export class KeyVaultClientContext extends coreArm.AzureServiceClient {
credentials: coreHttp.TokenCredential;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for license information.

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

export const RetryConstants = {
MIN_RETRY_INTERVAL_MS: 3000,
Expand Down
4 changes: 4 additions & 0 deletions sdk/keyvault/keyvault-keys/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Release History

## 4.0.0-preview.5 (2019-09-09)
- Improved tests and upgraded dependencies.
- Added the browser folder to the released bundle.

## 4.0.0-preview.3 (2019-08-06)
- Added a new CryptographyClient to handle cryptography tasks.
- Added browser support.
Expand Down
6 changes: 1 addition & 5 deletions sdk/keyvault/keyvault-keys/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "@azure/keyvault-keys",
"sdk-type": "client",
"author": "Microsoft Corporation",
"version": "4.0.0-preview.4",
"version": "4.0.0-preview.5",
sadasant marked this conversation as resolved.
Show resolved Hide resolved
"license": "MIT",
"description": "Isomorphic client library for Azure KeyVault's keys.",
"homepage": "https://github.com/Azure/azure-sdk-for-js#readme",
Expand Down Expand Up @@ -84,8 +84,6 @@
"@types/dotenv": "^6.1.0",
"@types/fs-extra": "^8.0.0",
"@types/mocha": "^5.2.5",
"@types/nise": "^1.4.0",
"@types/nock": "^10.0.1",
"@types/node": "^8.0.0",
"@types/query-string": "6.2.0",
"@typescript-eslint/eslint-plugin": "^2.0.0",
Expand Down Expand Up @@ -116,8 +114,6 @@
"mocha": "^6.2.0",
"mocha-junit-reporter": "^1.18.0",
"mocha-multi": "^1.1.3",
"nise": "^1.4.10",
"nock": "^11.3.2",
"nyc": "^14.0.0",
"prettier": "^1.16.4",
"puppeteer": "^1.11.0",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import * as coreHttp from "@azure/core-http";
import * as coreArm from "@azure/core-arm";

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

export class KeyVaultClientContext extends coreArm.AzureServiceClient {
credentials: coreHttp.TokenCredential;
Expand Down
2 changes: 1 addition & 1 deletion sdk/keyvault/keyvault-keys/src/core/utils/constants.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for license information.

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

export const RetryConstants = {
MIN_RETRY_INTERVAL_MS: 3000
Expand Down
4 changes: 4 additions & 0 deletions sdk/keyvault/keyvault-secrets/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Release History

## 4.0.0-preview.5 (2019-09-09)
- Improved tests and upgraded dependencies.
- Added the browser folder to the released bundle.

## 4.0.0-preview.4 (2019-08-09)
- Fixed the missing TypeScript types by adding back the generated `.d.ts` file to the package.json

Expand Down
4 changes: 0 additions & 4 deletions sdk/keyvault/keyvault-secrets/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -83,8 +83,6 @@
"@types/dotenv": "^6.1.0",
"@types/fs-extra": "^8.0.0",
"@types/mocha": "^5.2.5",
"@types/nise": "^1.4.0",
"@types/nock": "^10.0.1",
"@types/node": "^8.0.0",
"@types/query-string": "6.2.0",
"@typescript-eslint/eslint-plugin": "^2.0.0",
Expand Down Expand Up @@ -115,8 +113,6 @@
"mocha": "^6.2.0",
"mocha-junit-reporter": "^1.18.0",
"mocha-multi": "^1.1.3",
"nise": "^1.4.10",
"nock": "^11.3.2",
"nyc": "^14.0.0",
"prettier": "^1.16.4",
"puppeteer": "^1.11.0",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import * as coreHttp from "@azure/core-http";
import * as coreArm from "@azure/core-arm";

const packageName = "@azure/keyvault-secrets";
const packageVersion = "4.0.0-preview.2";
const packageVersion = "4.0.0-preview.5";

export class KeyVaultClientContext extends coreArm.AzureServiceClient {
credentials: coreHttp.TokenCredential;
Expand Down
2 changes: 1 addition & 1 deletion sdk/keyvault/keyvault-secrets/src/core/utils/constants.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for license information.

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

export const RetryConstants = {
MIN_RETRY_INTERVAL_MS: 3000
Expand Down