From c512fa1b5dac623006845da8fd3d28bd12644cb4 Mon Sep 17 00:00:00 2001 From: Amar Zavery Date: Tue, 4 Jun 2019 17:32:21 -0700 Subject: [PATCH] update min version of @azure/ms-rest-js to 1.8.10 --- Changelog.md | 3 +++ lib/util/constants.ts | 10 +++++++--- package.json | 4 ++-- 3 files changed, 12 insertions(+), 5 deletions(-) diff --git a/Changelog.md b/Changelog.md index aa91703..bb117fd 100644 --- a/Changelog.md +++ b/Changelog.md @@ -1,4 +1,7 @@ # Changelog +## 1.3.7 - 2019-06-04 +- Updated `@azure/ms-rest-js` to `^1.8.10` + ## 1.3.6 - 2019-06-03 - Fixed a bug where we were throwing an Error if the final GET on the resource while polling a long running DELETE operation would return a 404. [#azure-sdk-for-js/issues/2842](https://github.com/Azure/azure-sdk-for-js/issues/2842) - Fixed vulnerabilities by updating package version of `nyc`. diff --git a/lib/util/constants.ts b/lib/util/constants.ts index 1a31451..28f069e 100644 --- a/lib/util/constants.ts +++ b/lib/util/constants.ts @@ -1,14 +1,18 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for license information. - /** * Defines constants for long running operation states. * * @const * @type {string} */ -export type LongRunningOperationStates = "InProgress" | "Succeeded" | "Failed" | "Canceled" | "Cancelled"; +export type LongRunningOperationStates = + | "InProgress" + | "Succeeded" + | "Failed" + | "Canceled" + | "Cancelled"; /** * The default language in the request header. @@ -23,4 +27,4 @@ export const DEFAULT_LANGUAGE = "en-us"; * @const * @type {string} */ -export const msRestAzureVersion = "0.1.0"; \ No newline at end of file +export const msRestAzureVersion = "1.3.7"; diff --git a/package.json b/package.json index 54328ae..ea75896 100644 --- a/package.json +++ b/package.json @@ -5,7 +5,7 @@ "email": "azsdkteam@microsoft.com", "url": "https://github.com/Azure/ms-rest-azure-js" }, - "version": "1.3.6", + "version": "1.3.7", "description": "Isomorphic Azure client runtime for Typescript/node.js/browser javascript client libraries generated using AutoRest", "tags": [ "isomorphic", @@ -41,7 +41,7 @@ ], "license": "MIT", "dependencies": { - "@azure/ms-rest-js": "^1.8.8", + "@azure/ms-rest-js": "^1.8.10", "tslib": "^1.9.3" }, "devDependencies": {