update min version of @azure/ms-rest-js to 1.8.10

This commit is contained in:
Amar Zavery 2019-06-04 17:32:21 -07:00
Родитель 06e0c03e99
Коммит c512fa1b5d
3 изменённых файлов: 12 добавлений и 5 удалений

Просмотреть файл

@ -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`.

Просмотреть файл

@ -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";
export const msRestAzureVersion = "1.3.7";

Просмотреть файл

@ -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": {