* 2.5.0 release

* Update

* Adding package-lock.json

* Update

* Adding policheck exclusions file
This commit is contained in:
Hector Hernandez 2023-02-28 14:37:19 -08:00 коммит произвёл GitHub
Родитель 1307dd185d
Коммит da0762e0d4
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
4 изменённых файлов: 246 добавлений и 4564 удалений

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

@ -1,6 +1,6 @@
import Contracts = require("./Contracts")
export const APPLICATION_INSIGHTS_SDK_VERSION = "2.4.2";
export const APPLICATION_INSIGHTS_SDK_VERSION = "2.5.0";
export const DEFAULT_BREEZE_ENDPOINT = "https://dc.services.visualstudio.com";
export const DEFAULT_LIVEMETRICS_ENDPOINT = "https://rt.services.visualstudio.com";
export const DEFAULT_LIVEMETRICS_HOST = "rt.services.visualstudio.com";

4795
package-lock.json сгенерированный

Разница между файлами не показана из-за своего большого размера Загрузить разницу

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

@ -3,7 +3,7 @@
"author": "Microsoft Application Insights Team",
"license": "MIT",
"bugs": "https://github.com/microsoft/ApplicationInsights-node.js/issues",
"version": "2.4.2",
"version": "2.5.0",
"description": "Microsoft Application Insights module for Node.js",
"repository": {
"type": "git",

11
policheck-exclusions.xml Normal file
Просмотреть файл

@ -0,0 +1,11 @@
<PoliCheckExclusions>
<!-- All strings must be UPPER CASE -->
<!--Each of these exclusions is a folder name -if \[name]\exists in the file path, it will be skipped -->
<Exclusion Type="FolderPathFull">GENERATED</Exclusion>
<!--Each of these exclusions is a folder name -if any folder or file starts with "\[name]", it will be skipped -->
<!--<Exclusion Type="FolderPathStart">ABC|XYZ</Exclusion>-->
<!--Each of these file types will be completely skipped for the entire scan -->
<!--<Exclusion Type="FileType">.ABC|.XYZ</Exclusion>-->
<!--The specified file names will be skipped during the scan regardless which folder they are in -->
<!--<Exclusion Type="FileName">ABC.TXT|XYZ.CS</Exclusion>-->
</PoliCheckExclusions>