[Release][Core] - Increase to version 2.5.8 (#1353)

[Release][Rollup-Es3] - Increase to version 1.1.3
- Update Deployment Scripts
This commit is contained in:
Nev 2020-08-28 12:24:20 -07:00 коммит произвёл GitHub
Родитель 9f7527cc56
Коммит 81afc5400d
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
22 изменённых файлов: 195 добавлений и 131 удалений

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

@ -27,6 +27,7 @@ Refer to [our GitHub page](https://github.com/microsoft/applicationinsights-js)
| Version | Full Size | Raw Minified | GZip Size
|---------|-----------|--------------|-------------
| 2.5.8: | ![full size size](https://img.badgesize.io/https://az416426.vo.msecnd.net/scripts/b/ai.2.5.8.js.svg?label=full%20size&color=blue)| ![minified size size](https://img.badgesize.io/https://az416426.vo.msecnd.net/scripts/b/ai.2.5.8.min.js.svg?label=minified%20size&color=darkorchid) | ![gzip size](https://img.badgesize.io/https://az416426.vo.msecnd.net/scripts/b/ai.2.5.8.min.js.svg?compression=gzip&softmax=30000&max=35000)
| 2.5.7: | ![full size size](https://img.badgesize.io/https://az416426.vo.msecnd.net/scripts/b/ai.2.5.7.js.svg?label=full%20size&color=blue)| ![minified size size](https://img.badgesize.io/https://az416426.vo.msecnd.net/scripts/b/ai.2.5.7.min.js.svg?label=minified%20size&color=darkorchid) | ![gzip size](https://img.badgesize.io/https://az416426.vo.msecnd.net/scripts/b/ai.2.5.7.min.js.svg?compression=gzip&softmax=30000&max=35000)
| 2.5.6: | ![full size size](https://img.badgesize.io/https://az416426.vo.msecnd.net/scripts/b/ai.2.5.6.js.svg?label=full%20size&color=blue)| ![minified size size](https://img.badgesize.io/https://az416426.vo.msecnd.net/scripts/b/ai.2.5.6.min.js.svg?label=minified%20size&color=darkorchid) | ![gzip size](https://img.badgesize.io/https://az416426.vo.msecnd.net/scripts/b/ai.2.5.6.min.js.svg?compression=gzip&softmax=30000&max=35000)
| 2.5.5: | ![full size size](https://img.badgesize.io/https://az416426.vo.msecnd.net/scripts/b/ai.2.5.5.js.svg?label=full%20size&color=blue)| ![minified size size](https://img.badgesize.io/https://az416426.vo.msecnd.net/scripts/b/ai.2.5.5.min.js.svg?label=minified%20size&color=darkorchid) | ![gzip size](https://img.badgesize.io/https://az416426.vo.msecnd.net/scripts/b/ai.2.5.5.min.js.svg?compression=gzip&softmax=30000&max=35000)

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

@ -1,6 +1,6 @@
{
"name": "@microsoft/applicationinsights-web",
"version": "2.5.7",
"version": "2.5.8",
"description": "Microsoft Application Insights Javascript SDK API 1.0 beta",
"main": "dist/applicationinsights-web.js",
"module": "dist-esm/applicationinsights-web.js",
@ -29,7 +29,7 @@
"nightwatch:done": "curl http://localhost:8000/_done"
},
"devDependencies": {
"@microsoft/applicationinsights-rollup-es3" : "1.1.2",
"@microsoft/applicationinsights-rollup-es3" : "1.1.3",
"chromedriver": "^2.45.0",
"finalhandler": "^1.1.1",
"grunt": "1.0.1",
@ -52,12 +52,12 @@
"dependencies": {
"@microsoft/dynamicproto-js": "^1.0.0",
"@microsoft/applicationinsights-shims" : "1.0.1",
"@microsoft/applicationinsights-analytics-js": "2.5.7",
"@microsoft/applicationinsights-channel-js": "2.5.7",
"@microsoft/applicationinsights-common": "2.5.7",
"@microsoft/applicationinsights-core-js": "2.5.7",
"@microsoft/applicationinsights-dependencies-js": "2.5.7",
"@microsoft/applicationinsights-properties-js": "2.5.7"
"@microsoft/applicationinsights-analytics-js": "2.5.8",
"@microsoft/applicationinsights-channel-js": "2.5.8",
"@microsoft/applicationinsights-common": "2.5.8",
"@microsoft/applicationinsights-core-js": "2.5.8",
"@microsoft/applicationinsights-dependencies-js": "2.5.8",
"@microsoft/applicationinsights-properties-js": "2.5.8"
},
"license": "MIT"
}

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

@ -326,7 +326,7 @@ Function GenerateUserSasToken
Function GetVersion(
[string] $name
) {
$regMatch = '^(.*\/)*([^\/\d]*\.)(\d+(\.\d+)*(-[^\.]+)?)(\.(?:js|min\.js)(?:\.map)?)$'
$regMatch = '^(.*\/)*([^\/\d]*\.)(\d+(\.\d+)*(-[^\.]+)?)(\.(?:cjs\.js|cjs\.min\.js|js|min\.js)(?:\.map)?)$'
$match = ($name | select-string $regMatch -AllMatches).matches
if ($null -eq $match) {

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

@ -663,7 +663,8 @@ if ($container -eq "beta" -or $container -eq "next") {
if ($files.ContainsKey($activeVersion) -ne $true) {
Log-Failure "Version [$activeVersion] does not appear to be deployed to [$container]"
} elseif ($files[$activeVersion].Count -ne 4 -or $files[$activeVersion].Count -ne 8) {
} elseif ($files[$activeVersion].Count -ne 4 -and # Prior to 2.5.8
$files[$activeVersion].Count -ne 8) { # Since 2.5.8
Log-Failure "Version [$activeVersion] does not fully deployed to [$container] -- only found [$($files[$activeVersion].Count)] file(s)"
}

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

@ -1,6 +1,6 @@
{
"name": "@microsoft/applicationinsights-web-basic",
"version": "2.5.7",
"version": "2.5.8",
"description": "Microsoft Application Insights Javascript SDK core and channel",
"main": "dist/applicationinsights-web-basic.js",
"module": "dist-esm/index.js",
@ -14,7 +14,7 @@
"lint": "tslint -p tsconfig.json"
},
"devDependencies": {
"@microsoft/applicationinsights-rollup-es3" : "1.1.2",
"@microsoft/applicationinsights-rollup-es3" : "1.1.3",
"grunt": "1.0.1",
"globby": "^11.0.0",
"rollup-plugin-node-resolve": "^3.4.0",
@ -29,9 +29,9 @@
"dependencies": {
"@microsoft/dynamicproto-js": "^1.0.0",
"@microsoft/applicationinsights-shims" : "1.0.1",
"@microsoft/applicationinsights-common": "2.5.7",
"@microsoft/applicationinsights-channel-js": "2.5.7",
"@microsoft/applicationinsights-core-js": "2.5.7"
"@microsoft/applicationinsights-common": "2.5.8",
"@microsoft/applicationinsights-channel-js": "2.5.8",
"@microsoft/applicationinsights-core-js": "2.5.8"
},
"peerDependencies": {
},

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

@ -1,5 +1,21 @@
# Releases
## 2.5.8 (August 31st, 2020)
### Changelog
- #1350 [BUG] The new IPerfEvent is using Date.now() which is not supported in an ES3 environment
- #1349 Update angular plugin track pageview logic and test
- #1343 [BUG] IPerfManager interface - the create() function is defined to return an IPerfEvent and not an IPerfEvent?
- #1340 Instrumentation Key validation
- #1018 Error Mismatched anonymous define() module
- #1352 add .cjs.js and .cjs.min.js
### Update applicationinsights-rollup-es3 to v1.1.3
- #1350 [BUG] The new IPerfEvent is using Date.now() which is not supported in an ES3 environment
- Added additional checks for Date.now() and Performance Api perf.now()
## 2.5.7 (August 7th, 2020)
### Changelog

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

@ -1,6 +1,6 @@
{
"name": "appinsights-extension-solution-sample",
"version": "0.0.2",
"version": "0.0.3",
"private": true,
"main": "lib/index.js",
"engines": {
@ -12,7 +12,7 @@
"test": "gulp test"
},
"dependencies": {
"@microsoft/applicationinsights-web": "^2.5.7",
"@microsoft/applicationinsights-web": "^2.5.8",
"@microsoft/decorators": "1.10.0",
"@microsoft/sp-application-base": "1.10.0",
"@microsoft/sp-core-library": "1.10.0",

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

@ -379,7 +379,7 @@ export class SenderTests extends TestClass {
QUnit.assert.ok(baseData.ver);
QUnit.assert.equal(2, baseData.ver);
QUnit.assert.equal("javascript:2.5.7", appInsightsEnvelope.tags["ai.internal.sdkVersion"]);
QUnit.assert.equal("javascript:2.5.8", appInsightsEnvelope.tags["ai.internal.sdkVersion"]);
}
})

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

@ -1,6 +1,6 @@
{
"name": "@microsoft/applicationinsights-channel-js",
"version": "2.5.7",
"version": "2.5.8",
"description": "Microsoft Application Insights JavaScript SDK Channel",
"main": "dist/applicationinsights-channel-js.js",
"module": "dist-esm/applicationinsights-channel-js.js",
@ -16,7 +16,7 @@
"lint": "tslint -p tsconfig.json"
},
"devDependencies": {
"@microsoft/applicationinsights-rollup-es3" : "1.1.2",
"@microsoft/applicationinsights-rollup-es3" : "1.1.3",
"@types/qunit": "^2.5.3",
"@types/sinon": "4.3.3",
"grunt": "1.0.1",
@ -38,8 +38,8 @@
"dependencies": {
"@microsoft/dynamicproto-js": "^1.0.0",
"@microsoft/applicationinsights-shims" : "1.0.1",
"@microsoft/applicationinsights-core-js": "2.5.7",
"@microsoft/applicationinsights-common": "2.5.7"
"@microsoft/applicationinsights-core-js": "2.5.8",
"@microsoft/applicationinsights-common": "2.5.8"
},
"license": "MIT"
}

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

@ -32,7 +32,7 @@ function _setValueIf<T>(target:T, field:keyof T, value:any) {
}
export abstract class EnvelopeCreator {
public static Version = "2.5.7";
public static Version = "2.5.8";
protected static extractPropsAndMeasurements(data: { [key: string]: any }, properties: { [key: string]: any }, measurements: { [key: string]: any }) {
if (!isNullOrUndefined(data)) {

198
common/config/rush/npm-shrinkwrap.json сгенерированный
Просмотреть файл

@ -150,9 +150,9 @@
"resolved": "https://registry.npmjs.org/@types/minimatch/-/minimatch-3.0.3.tgz"
},
"@types/node": {
"version": "14.0.26",
"version": "14.6.1",
"from": "@types/node@*",
"resolved": "https://registry.npmjs.org/@types/node/-/node-14.0.26.tgz"
"resolved": "https://registry.npmjs.org/@types/node/-/node-14.6.1.tgz"
},
"@types/qunit": {
"version": "2.9.1",
@ -175,9 +175,9 @@
"resolved": "https://registry.npmjs.org/agent-base/-/agent-base-4.3.0.tgz"
},
"ajv": {
"version": "6.12.3",
"from": "ajv@^6.5.5",
"resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.3.tgz"
"version": "6.12.4",
"from": "ajv@^6.12.3",
"resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.4.tgz"
},
"ansi-regex": {
"version": "2.1.1",
@ -249,7 +249,7 @@
},
"argparse": {
"version": "1.0.10",
"from": "argparse@>=1.0.2 <2.0.0",
"from": "argparse@^1.0.2",
"resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz"
},
"arr-diff": {
@ -338,9 +338,9 @@
"resolved": "https://registry.npmjs.org/aws-sign2/-/aws-sign2-0.7.0.tgz"
},
"aws4": {
"version": "1.10.0",
"version": "1.10.1",
"from": "aws4@^1.8.0",
"resolved": "https://registry.npmjs.org/aws4/-/aws4-1.10.0.tgz"
"resolved": "https://registry.npmjs.org/aws4/-/aws4-1.10.1.tgz"
},
"balanced-match": {
"version": "1.0.0",
@ -596,9 +596,9 @@
"resolved": "https://registry.npmjs.org/dateformat/-/dateformat-1.0.12.tgz"
},
"debug": {
"version": "2.6.9",
"from": "debug@>=2.6.9 <3.0.0",
"resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz"
"version": "4.1.1",
"from": "debug@^4.1.0",
"resolved": "https://registry.npmjs.org/debug/-/debug-4.1.1.tgz"
},
"decamelize": {
"version": "1.2.0",
@ -776,6 +776,11 @@
"from": "expand-brackets@>=2.1.4 <3.0.0",
"resolved": "https://registry.npmjs.org/expand-brackets/-/expand-brackets-2.1.4.tgz",
"dependencies": {
"debug": {
"version": "2.6.9",
"from": "debug@>=2.3.3 <3.0.0",
"resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz"
},
"define-property": {
"version": "0.2.5",
"from": "define-property@>=0.2.5 <0.3.0",
@ -785,6 +790,11 @@
"version": "2.0.1",
"from": "extend-shallow@>=2.0.1 <3.0.0",
"resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz"
},
"ms": {
"version": "2.0.0",
"from": "ms@2.0.0",
"resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz"
}
}
},
@ -839,8 +849,20 @@
},
"extract-zip": {
"version": "1.7.0",
"from": "extract-zip@^1.6.5",
"resolved": "https://registry.npmjs.org/extract-zip/-/extract-zip-1.7.0.tgz"
"from": "extract-zip@^1.6.6",
"resolved": "https://registry.npmjs.org/extract-zip/-/extract-zip-1.7.0.tgz",
"dependencies": {
"debug": {
"version": "2.6.9",
"from": "debug@>=2.6.9 <3.0.0",
"resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz"
},
"ms": {
"version": "2.0.0",
"from": "ms@2.0.0",
"resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz"
}
}
},
"extsprintf": {
"version": "1.3.0",
@ -885,7 +907,19 @@
"finalhandler": {
"version": "1.1.2",
"from": "finalhandler@^1.1.1",
"resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.1.2.tgz"
"resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.1.2.tgz",
"dependencies": {
"debug": {
"version": "2.6.9",
"from": "debug@2.6.9",
"resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz"
},
"ms": {
"version": "2.0.0",
"from": "ms@2.0.0",
"resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz"
}
}
},
"find-up": {
"version": "1.1.2",
@ -929,6 +963,11 @@
"from": "fresh@0.5.2",
"resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz"
},
"fs-extra": {
"version": "8.1.0",
"from": "fs-extra@^8.1.0",
"resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-8.1.0.tgz"
},
"fs.realpath": {
"version": "1.0.0",
"from": "fs.realpath@>=1.0.0 <2.0.0",
@ -964,11 +1003,21 @@
"from": "glob-parent@^5.1.0",
"resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.1.tgz"
},
"globalyzer": {
"version": "0.1.4",
"from": "globalyzer@^0.1.0",
"resolved": "https://registry.npmjs.org/globalyzer/-/globalyzer-0.1.4.tgz"
},
"globby": {
"version": "11.0.1",
"from": "globby@^11.0.0",
"resolved": "https://registry.npmjs.org/globby/-/globby-11.0.1.tgz"
},
"globrex": {
"version": "0.1.2",
"from": "globrex@^0.1.1",
"resolved": "https://registry.npmjs.org/globrex/-/globrex-0.1.2.tgz"
},
"graceful-fs": {
"version": "4.2.4",
"from": "graceful-fs@^4.1.2",
@ -1032,7 +1081,7 @@
},
"grunt-legacy-log": {
"version": "1.0.2",
"from": "grunt-legacy-log@>=1.0.0 <1.1.0",
"from": "grunt-legacy-log@~1.0.0",
"resolved": "https://registry.npmjs.org/grunt-legacy-log/-/grunt-legacy-log-1.0.2.tgz"
},
"grunt-legacy-log-utils": {
@ -1092,9 +1141,9 @@
"resolved": "https://registry.npmjs.org/har-schema/-/har-schema-2.0.0.tgz"
},
"har-validator": {
"version": "5.1.3",
"version": "5.1.5",
"from": "har-validator@~5.1.3",
"resolved": "https://registry.npmjs.org/har-validator/-/har-validator-5.1.3.tgz"
"resolved": "https://registry.npmjs.org/har-validator/-/har-validator-5.1.5.tgz"
},
"has-ansi": {
"version": "2.0.0",
@ -1164,11 +1213,6 @@
"version": "3.2.6",
"from": "debug@^3.1.0",
"resolved": "https://registry.npmjs.org/debug/-/debug-3.2.6.tgz"
},
"ms": {
"version": "2.1.2",
"from": "ms@^2.1.1",
"resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz"
}
}
},
@ -1405,6 +1449,11 @@
"from": "json5@^1.0.1",
"resolved": "https://registry.npmjs.org/json5/-/json5-1.0.1.tgz"
},
"jsonfile": {
"version": "4.0.0",
"from": "jsonfile@>=4.0.0 <5.0.0",
"resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-4.0.0.tgz"
},
"jsprim": {
"version": "1.4.1",
"from": "jsprim@>=1.2.2 <2.0.0",
@ -1431,9 +1480,9 @@
"resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-1.4.0.tgz"
},
"lodash": {
"version": "4.17.19",
"version": "4.17.20",
"from": "lodash@~4.17.5",
"resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.19.tgz"
"resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.20.tgz"
},
"lolex": {
"version": "4.2.0",
@ -1491,9 +1540,9 @@
"resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.2.tgz"
},
"mime": {
"version": "1.6.0",
"from": "mime@1.6.0",
"resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz"
"version": "2.4.6",
"from": "mime@^2.0.3",
"resolved": "https://registry.npmjs.org/mime/-/mime-2.4.6.tgz"
},
"mime-db": {
"version": "1.44.0",
@ -1533,9 +1582,9 @@
"resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.5.tgz"
},
"ms": {
"version": "2.0.0",
"from": "ms@2.0.0",
"resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz"
"version": "2.1.2",
"from": "ms@^2.1.1",
"resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz"
},
"nanomatch": {
"version": "1.2.13",
@ -1560,9 +1609,9 @@
}
},
"node-watch": {
"version": "0.6.1",
"from": "node-watch@0.6.1",
"resolved": "https://registry.npmjs.org/node-watch/-/node-watch-0.6.1.tgz"
"version": "0.6.4",
"from": "node-watch@0.6.4",
"resolved": "https://registry.npmjs.org/node-watch/-/node-watch-0.6.4.tgz"
},
"nopt": {
"version": "3.0.6",
@ -1773,26 +1822,11 @@
"from": "puppeteer@^1.11.0",
"resolved": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.20.0.tgz",
"dependencies": {
"debug": {
"version": "4.1.1",
"from": "debug@^4.1.0",
"resolved": "https://registry.npmjs.org/debug/-/debug-4.1.1.tgz"
},
"glob": {
"version": "7.1.6",
"from": "glob@^7.1.3",
"resolved": "https://registry.npmjs.org/glob/-/glob-7.1.6.tgz"
},
"mime": {
"version": "2.4.6",
"from": "mime@^2.0.3",
"resolved": "https://registry.npmjs.org/mime/-/mime-2.4.6.tgz"
},
"ms": {
"version": "2.1.2",
"from": "ms@^2.1.1",
"resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz"
},
"rimraf": {
"version": "2.7.1",
"from": "rimraf@^2.6.1",
@ -1806,19 +1840,14 @@
"resolved": "https://registry.npmjs.org/qs/-/qs-6.5.2.tgz"
},
"qunit": {
"version": "2.10.1",
"version": "2.11.1",
"from": "qunit@^2.9.1",
"resolved": "https://registry.npmjs.org/qunit/-/qunit-2.10.1.tgz",
"resolved": "https://registry.npmjs.org/qunit/-/qunit-2.11.1.tgz",
"dependencies": {
"commander": {
"version": "2.12.2",
"from": "commander@2.12.2",
"resolved": "https://registry.npmjs.org/commander/-/commander-2.12.2.tgz"
},
"resolve": {
"version": "1.9.0",
"from": "resolve@1.9.0",
"resolved": "https://registry.npmjs.org/resolve/-/resolve-1.9.0.tgz"
"version": "6.0.0",
"from": "commander@6.0.0",
"resolved": "https://registry.npmjs.org/commander/-/commander-6.0.0.tgz"
}
}
},
@ -1934,7 +1963,7 @@
},
"request": {
"version": "2.88.2",
"from": "request@^2.81.0",
"from": "request@^2.88.0",
"resolved": "https://registry.npmjs.org/request/-/request-2.88.2.tgz"
},
"resolve": {
@ -1972,11 +2001,6 @@
"from": "rollup-plugin-copy@^3.1.0",
"resolved": "https://registry.npmjs.org/rollup-plugin-copy/-/rollup-plugin-copy-3.3.0.tgz",
"dependencies": {
"fs-extra": {
"version": "8.1.0",
"from": "fs-extra@^8.1.0",
"resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-8.1.0.tgz"
},
"glob": {
"version": "7.1.6",
"from": "glob@^7.1.3",
@ -1991,11 +2015,6 @@
"version": "3.0.1",
"from": "is-plain-object@^3.0.0",
"resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-3.0.1.tgz"
},
"jsonfile": {
"version": "4.0.0",
"from": "jsonfile@>=4.0.0 <5.0.0",
"resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-4.0.0.tgz"
}
}
},
@ -2037,9 +2056,9 @@
"resolved": "https://registry.npmjs.org/rollup-plugin-uglify/-/rollup-plugin-uglify-6.0.4.tgz",
"dependencies": {
"uglify-js": {
"version": "3.10.0",
"version": "3.10.2",
"from": "uglify-js@^3.4.9",
"resolved": "https://registry.npmjs.org/uglify-js/-/uglify-js-3.10.0.tgz"
"resolved": "https://registry.npmjs.org/uglify-js/-/uglify-js-3.10.2.tgz"
}
}
},
@ -2088,6 +2107,23 @@
"from": "send@0.17.1",
"resolved": "https://registry.npmjs.org/send/-/send-0.17.1.tgz",
"dependencies": {
"debug": {
"version": "2.6.9",
"from": "debug@2.6.9",
"resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz",
"dependencies": {
"ms": {
"version": "2.0.0",
"from": "ms@2.0.0",
"resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz"
}
}
},
"mime": {
"version": "1.6.0",
"from": "mime@1.6.0",
"resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz"
},
"ms": {
"version": "2.1.1",
"from": "ms@2.1.1",
@ -2154,6 +2190,11 @@
"from": "snapdragon@>=0.8.1 <0.9.0",
"resolved": "https://registry.npmjs.org/snapdragon/-/snapdragon-0.8.2.tgz",
"dependencies": {
"debug": {
"version": "2.6.9",
"from": "debug@>=2.2.0 <3.0.0",
"resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz"
},
"define-property": {
"version": "0.2.5",
"from": "define-property@>=0.2.5 <0.3.0",
@ -2163,6 +2204,11 @@
"version": "2.0.1",
"from": "extend-shallow@>=2.0.1 <3.0.0",
"resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz"
},
"ms": {
"version": "2.0.0",
"from": "ms@2.0.0",
"resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz"
}
}
},
@ -2323,14 +2369,14 @@
"version": "4.1.0",
"from": "debug@4.1.0",
"resolved": "https://registry.npmjs.org/debug/-/debug-4.1.0.tgz"
},
"ms": {
"version": "2.1.2",
"from": "ms@^2.1.1",
"resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz"
}
}
},
"tiny-glob": {
"version": "0.2.6",
"from": "tiny-glob@0.2.6",
"resolved": "https://registry.npmjs.org/tiny-glob/-/tiny-glob-0.2.6.tgz"
},
"to-object-path": {
"version": "0.3.0",
"from": "to-object-path@>=0.3.0 <0.4.0",

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

@ -1,6 +1,6 @@
{
"name": "@microsoft/applicationinsights-analytics-js",
"version": "2.5.7",
"version": "2.5.8",
"description": "Microsoft Application Insights Javascript SDK apis",
"main": "dist/applicationinsights-analytics-js.js",
"module": "dist-esm/applicationinsights-analytics-js.js",
@ -18,8 +18,8 @@
"lint": "tslint -p tsconfig.json"
},
"devDependencies": {
"@microsoft/applicationinsights-rollup-es3" : "1.1.2",
"@microsoft/applicationinsights-properties-js": "2.5.7",
"@microsoft/applicationinsights-rollup-es3" : "1.1.3",
"@microsoft/applicationinsights-properties-js": "2.5.8",
"typescript": "2.5.3",
"globby": "^11.0.0",
"rollup-plugin-node-resolve": "^3.4.0",
@ -36,8 +36,8 @@
"dependencies": {
"@microsoft/dynamicproto-js": "^1.0.0",
"@microsoft/applicationinsights-shims" : "1.0.1",
"@microsoft/applicationinsights-core-js": "2.5.7",
"@microsoft/applicationinsights-common": "2.5.7"
"@microsoft/applicationinsights-core-js": "2.5.8",
"@microsoft/applicationinsights-common": "2.5.8"
},
"license": "MIT"
}

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

@ -36,7 +36,7 @@ function _dispatchEvent(target:EventTarget, evnt: Event) {
}
export class ApplicationInsights extends BaseTelemetryPlugin implements IAppInsights, IAppInsightsInternal {
public static Version = "2.5.7"; // Not currently used anywhere
public static Version = "2.5.8"; // Not currently used anywhere
public static getDefaultConfig(config?: IConfig): IConfig {
if (!config) {

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

@ -1,6 +1,6 @@
{
"name": "@microsoft/applicationinsights-angular-js",
"version": "2.5.7",
"version": "2.5.8",
"description": "Microsoft Application Insights Angular plugin",
"main": "dist/applicationinsights-angular-js.js",
"module": "dist-esm/applicationinsights-angular-js.js",
@ -18,8 +18,8 @@
"lint": "tslint -p tsconfig.json"
},
"devDependencies": {
"@microsoft/applicationinsights-rollup-es3": "1.1.2",
"@microsoft/applicationinsights-properties-js": "2.5.7",
"@microsoft/applicationinsights-rollup-es3" : "1.1.3",
"@microsoft/applicationinsights-properties-js": "2.5.8",
"@angular/core": "~8.1.2",
"@angular/router": "~8.1.2",
"grunt": "1.0.1",
@ -39,9 +39,9 @@
"tslint-config-prettier": "^1.18.0"
},
"dependencies": {
"@microsoft/applicationinsights-shims": "1.0.1",
"@microsoft/applicationinsights-common": "2.5.7",
"@microsoft/applicationinsights-core-js": "2.5.7"
"@microsoft/applicationinsights-shims" : "1.0.1",
"@microsoft/applicationinsights-common": "2.5.8",
"@microsoft/applicationinsights-core-js": "2.5.8"
},
"license": "MIT"
}

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

@ -1,6 +1,6 @@
{
"name": "@microsoft/applicationinsights-debugplugin-js",
"version": "2.5.7-beta",
"version": "2.5.8-beta",
"description": "Microsoft Application Insights Javascript SDK apis",
"main": "dist/applicationinsights-debugplugin-js.js",
"module": "dist-esm/applicationinsights-debugplugin-js.js",
@ -18,7 +18,7 @@
"lint": "tslint -p tsconfig.json"
},
"devDependencies": {
"@microsoft/applicationinsights-rollup-es3": "1.1.2",
"@microsoft/applicationinsights-rollup-es3": "1.1.3",
"typescript": "2.5.3",
"grunt": "1.0.1",
"grunt-contrib-qunit": "^3.1.0",
@ -33,8 +33,8 @@
},
"dependencies": {
"@microsoft/dynamicproto-js": "^1.0.0",
"@microsoft/applicationinsights-common": "2.5.7",
"@microsoft/applicationinsights-core-js": "2.5.7",
"@microsoft/applicationinsights-common": "2.5.8",
"@microsoft/applicationinsights-core-js": "2.5.8",
"@microsoft/applicationinsights-shims": "1.0.1"
},
"license": "MIT"

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

@ -1,6 +1,6 @@
{
"name": "@microsoft/applicationinsights-dependencies-js",
"version": "2.5.7",
"version": "2.5.8",
"description": "Microsoft Application Insights XHR dependencies plugin",
"main": "dist/applicationinsights-dependencies-js.js",
"module": "dist-esm/applicationinsights-dependencies-js.js",
@ -18,7 +18,7 @@
"lint": "tslint -p tsconfig.json"
},
"devDependencies": {
"@microsoft/applicationinsights-rollup-es3" : "1.1.2",
"@microsoft/applicationinsights-rollup-es3" : "1.1.3",
"typescript": "2.5.3",
"grunt": "1.0.1",
"grunt-contrib-qunit": "^3.1.0",
@ -35,8 +35,8 @@
"dependencies": {
"@microsoft/dynamicproto-js": "^1.0.0",
"@microsoft/applicationinsights-shims" : "1.0.1",
"@microsoft/applicationinsights-core-js": "2.5.7",
"@microsoft/applicationinsights-common": "2.5.7"
"@microsoft/applicationinsights-core-js": "2.5.8",
"@microsoft/applicationinsights-common": "2.5.8"
},
"license": "MIT"
}

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

@ -1,6 +1,6 @@
{
"name": "@microsoft/applicationinsights-properties-js",
"version": "2.5.7",
"version": "2.5.8",
"description": "Microsoft Application Insights properties (Part A) plugin",
"main": "dist/applicationinsights-properties-js.js",
"module": "dist-esm/applicationinsights-properties-js.js",
@ -18,7 +18,7 @@
"lint": "tslint -p tsconfig.json"
},
"devDependencies": {
"@microsoft/applicationinsights-rollup-es3" : "1.1.2",
"@microsoft/applicationinsights-rollup-es3" : "1.1.3",
"typescript": "2.5.3",
"grunt": "1.0.1",
"grunt-contrib-qunit": "^3.1.0",
@ -33,8 +33,8 @@
},
"dependencies": {
"@microsoft/applicationinsights-shims" : "1.0.1",
"@microsoft/applicationinsights-core-js": "2.5.7",
"@microsoft/applicationinsights-common": "2.5.7"
"@microsoft/applicationinsights-core-js": "2.5.8",
"@microsoft/applicationinsights-common": "2.5.8"
},
"license": "MIT"
}

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

@ -4,7 +4,7 @@
import { IInternal } from '@microsoft/applicationinsights-common';
import { ITelemetryConfig } from '../Interfaces/ITelemetryConfig';
const Version = "2.5.7";
const Version = "2.5.8";
export class Internal implements IInternal {

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

@ -1,6 +1,6 @@
{
"name": "@microsoft/applicationinsights-common",
"version": "2.5.7",
"version": "2.5.8",
"description": "Microsoft Application Insights Common JavaScript Library",
"main": "./dist/applicationinsights-common.js",
"module": "./dist-esm/applicationinsights-common.js",
@ -18,7 +18,7 @@
"lint": "tslint -p tsconfig.json"
},
"devDependencies": {
"@microsoft/applicationinsights-rollup-es3" : "1.1.2",
"@microsoft/applicationinsights-rollup-es3" : "1.1.3",
"grunt": "1.0.1",
"grunt-contrib-qunit": "^3.1.0",
"grunt-contrib-uglify": "3.1.0",
@ -34,7 +34,7 @@
},
"dependencies": {
"@microsoft/applicationinsights-shims" : "1.0.1",
"@microsoft/applicationinsights-core-js": "2.5.7"
"@microsoft/applicationinsights-core-js": "2.5.8"
},
"license": "MIT"
}

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

@ -1,7 +1,7 @@
{
"name": "@microsoft/applicationinsights-core-js",
"author": "Microsoft Corporation",
"version": "2.5.7",
"version": "2.5.8",
"description": "Microsoft Application Insights Core Javascript SDK",
"keywords": [
"azure",
@ -30,7 +30,7 @@
"license": "MIT",
"sideEffects": false,
"devDependencies": {
"@microsoft/applicationinsights-rollup-es3" : "1.1.2",
"@microsoft/applicationinsights-rollup-es3" : "1.1.3",
"grunt": "1.0.1",
"grunt-contrib-clean": "^1.1.0",
"grunt-contrib-qunit": "^3.1.0",

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

@ -1,7 +1,7 @@
{
"name": "@microsoft/applicationinsights-rollup-es3",
"author": "Microsoft Corporation",
"version": "1.1.2",
"version": "1.1.3",
"description": "Microsoft Application Insights JavaScript SDK - Rollup Plugin for ES3 support",
"keywords": [
"azure",

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

@ -29,7 +29,7 @@
"license": "MIT",
"sideEffects": false,
"devDependencies": {
"@microsoft/applicationinsights-rollup-es3" : "1.1.2",
"@microsoft/applicationinsights-rollup-es3" : "1.1.3",
"grunt": "1.0.1",
"grunt-contrib-clean": "^1.1.0",
"grunt-contrib-uglify": "3.1.0",