diff --git a/AISKU/Tests/Perf/src/AISKUPerf.ts b/AISKU/Tests/Perf/src/AISKUPerf.ts index 1d6540bc5..d86fe3121 100644 --- a/AISKU/Tests/Perf/src/AISKUPerf.ts +++ b/AISKU/Tests/Perf/src/AISKUPerf.ts @@ -19,7 +19,7 @@ export class AppInsightsInitPerfTestClass { * should update version after new release * version with doperf(): after 2.5.6 * */ - var defaultVer = "2.8.9"; + var defaultVer = "2.8.10"; this.version = ver? ver:this._getQueryParameterVersion(defaultVer); this.perfEventsBuffer = []; this.perfEventWaitBuffer = []; diff --git a/AISKU/Tests/Unit/src/AISKUSize.Tests.ts b/AISKU/Tests/Unit/src/AISKUSize.Tests.ts index c2f46e0a3..7ef8b3632 100644 --- a/AISKU/Tests/Unit/src/AISKUSize.Tests.ts +++ b/AISKU/Tests/Unit/src/AISKUSize.Tests.ts @@ -10,7 +10,7 @@ export class AISKUSizeCheck extends AITestClass { private readonly MAX_BUNDLE_DEFLATE_SIZE = 47; private readonly rawFilePath = "../dist/applicationinsights-web.min.js"; // Automatically updated by version scripts - private readonly currentVer = "2.8.9"; + private readonly currentVer = "2.8.10"; private readonly prodFilePath = `../browser/ai.${this.currentVer[0]}.min.js`; public testInitialize() { diff --git a/AISKU/Tests/Unit/src/CdnPackaging.tests.ts b/AISKU/Tests/Unit/src/CdnPackaging.tests.ts index 1ab342e0b..6f2702781 100644 --- a/AISKU/Tests/Unit/src/CdnPackaging.tests.ts +++ b/AISKU/Tests/Unit/src/CdnPackaging.tests.ts @@ -16,7 +16,7 @@ const enum CdnFormat { export class CdnPackagingChecks extends AITestClass { // Automatically updated by version scripts - private readonly currentVer = "2.8.9"; + private readonly currentVer = "2.8.10"; public testInitialize() { } diff --git a/AISKU/package.json b/AISKU/package.json index 5c52ddb23..e0130d7ec 100644 --- a/AISKU/package.json +++ b/AISKU/package.json @@ -1,6 +1,6 @@ { "name": "@microsoft/applicationinsights-web", - "version": "2.8.9", + "version": "2.8.10", "description": "Microsoft Application Insights JavaScript SDK - Web", "homepage": "https://github.com/microsoft/ApplicationInsights-JS#readme", "author": "Microsoft Application Insights Team", @@ -68,12 +68,12 @@ "dependencies": { "@microsoft/dynamicproto-js": "^1.1.7", "@microsoft/applicationinsights-shims": "2.0.2", - "@microsoft/applicationinsights-analytics-js": "2.8.9", - "@microsoft/applicationinsights-channel-js": "2.8.9", - "@microsoft/applicationinsights-common": "2.8.9", - "@microsoft/applicationinsights-core-js": "2.8.9", - "@microsoft/applicationinsights-dependencies-js": "2.8.9", - "@microsoft/applicationinsights-properties-js": "2.8.9" + "@microsoft/applicationinsights-analytics-js": "2.8.10", + "@microsoft/applicationinsights-channel-js": "2.8.10", + "@microsoft/applicationinsights-common": "2.8.10", + "@microsoft/applicationinsights-core-js": "2.8.10", + "@microsoft/applicationinsights-dependencies-js": "2.8.10", + "@microsoft/applicationinsights-properties-js": "2.8.10" }, "license": "MIT" } diff --git a/AISKULight/package.json b/AISKULight/package.json index f661840a6..8d26fc375 100644 --- a/AISKULight/package.json +++ b/AISKULight/package.json @@ -1,6 +1,6 @@ { "name": "@microsoft/applicationinsights-web-basic", - "version": "2.8.9", + "version": "2.8.10", "description": "Microsoft Application Insights Javascript SDK core and channel", "homepage": "https://github.com/microsoft/ApplicationInsights-JS#readme", "author": "Microsoft Application Insights Team", @@ -53,9 +53,9 @@ "dependencies": { "@microsoft/dynamicproto-js": "^1.1.7", "@microsoft/applicationinsights-shims": "2.0.2", - "@microsoft/applicationinsights-common": "2.8.9", - "@microsoft/applicationinsights-channel-js": "2.8.9", - "@microsoft/applicationinsights-core-js": "2.8.9" + "@microsoft/applicationinsights-common": "2.8.10", + "@microsoft/applicationinsights-channel-js": "2.8.10", + "@microsoft/applicationinsights-core-js": "2.8.10" }, "license": "MIT" } diff --git a/RELEASES.md b/RELEASES.md index 90a3b14c4..2e00efcd4 100644 --- a/RELEASES.md +++ b/RELEASES.md @@ -2,6 +2,17 @@ > Note: ES3/IE8 compatibility will be removed in the future v3.x.x releases (scheduled for mid-late 2022), so if you need to retain ES3 compatibility you will need to remain on the 2.x.x versions of the SDK or your runtime will need install polyfill's to your ES3 environment before loading / initializing the SDK. +## 2.8.10 (Feb 6th, 2023) + +### Changelog + +- #1940 [BUG] Application Insights reports 'not_specified' to Azure when tracking unhandled browser exception +- #1979 [BUG][ThrottleMgr] Incorrectly fires based on the number of days past +- #1970 Add the Aborted flag to the dependency initializer / listeners +- #1981 [AI][Task]16961420: fix throttleMgr incorrectly fires based on the number of days past +- #1956 [AI Light][Task]14130466: Instrumentation key API is being deprecated - need to add support +- #1962 Add --no-sandbox to test runs + ## 2.8.9 (Oct 25th, 2022) - Updates Chrome Debug Extension to 0.3.9 diff --git a/channels/applicationinsights-channel-js/Tests/Unit/src/Sender.tests.ts b/channels/applicationinsights-channel-js/Tests/Unit/src/Sender.tests.ts index 0f7749f70..f20db9e23 100644 --- a/channels/applicationinsights-channel-js/Tests/Unit/src/Sender.tests.ts +++ b/channels/applicationinsights-channel-js/Tests/Unit/src/Sender.tests.ts @@ -724,7 +724,7 @@ export class SenderTests extends AITestClass { QUnit.assert.ok(baseData.ver); QUnit.assert.equal(2, baseData.ver); - QUnit.assert.equal("javascript:2.8.9", appInsightsEnvelope.tags["ai.internal.sdkVersion"]); + QUnit.assert.equal("javascript:2.8.10", appInsightsEnvelope.tags["ai.internal.sdkVersion"]); } }) diff --git a/channels/applicationinsights-channel-js/package.json b/channels/applicationinsights-channel-js/package.json index 35d61e2c8..8488d12d5 100644 --- a/channels/applicationinsights-channel-js/package.json +++ b/channels/applicationinsights-channel-js/package.json @@ -1,6 +1,6 @@ { "name": "@microsoft/applicationinsights-channel-js", - "version": "2.8.9", + "version": "2.8.10", "description": "Microsoft Application Insights JavaScript SDK Channel", "homepage": "https://github.com/microsoft/ApplicationInsights-JS#readme", "author": "Microsoft Application Insights Team", @@ -50,8 +50,8 @@ "dependencies": { "@microsoft/dynamicproto-js": "^1.1.7", "@microsoft/applicationinsights-shims": "2.0.2", - "@microsoft/applicationinsights-core-js": "2.8.9", - "@microsoft/applicationinsights-common": "2.8.9" + "@microsoft/applicationinsights-core-js": "2.8.10", + "@microsoft/applicationinsights-common": "2.8.10" }, "license": "MIT" } diff --git a/common/config/rush/npm-shrinkwrap.json b/common/config/rush/npm-shrinkwrap.json index 4d8327775..722708cc3 100644 --- a/common/config/rush/npm-shrinkwrap.json +++ b/common/config/rush/npm-shrinkwrap.json @@ -563,7 +563,7 @@ "node_modules/@rush-temp/applicationinsights-analytics-js": { "version": "0.0.0", "resolved": "file:projects/applicationinsights-analytics-js.tgz", - "integrity": "sha512-g4WDDPur0kwXH5HHVEFpLyaVi9ctct7eUmYhp3iBpfuSlWv3ZU7Ue+mCTr2qAWyvZjV5XGmLAlB+3t3+wsptbw==", + "integrity": "sha512-Mo3m/gkiGzANRsMhP7+KWpoQ4bZHQlypNQ8IwdPk2eUiKhSSW35kD/wxozgMiqk9uTUAmjGbpKw4CoJMWNNf2w==", "dependencies": { "@microsoft/api-extractor": "^7.18.1", "@microsoft/dynamicproto-js": "^1.1.7", @@ -589,7 +589,7 @@ "node_modules/@rush-temp/applicationinsights-channel-js": { "version": "0.0.0", "resolved": "file:projects/applicationinsights-channel-js.tgz", - "integrity": "sha512-uzi1U9Ieb2fku/hmrWwLUqQw8C1WbTB0KY8i3No2vUYaATRg11iN7wN1mYRsXKT67usFh5jioXwJoRGeu0CxnA==", + "integrity": "sha512-gZscVracnqDAkZ+6+4KiLzyHoZd4+AZns9CJf5M9kqTs5lpRHmteoEgaSyaIw6PlTADtLu7cNvOUInd0qh1FUw==", "dependencies": { "@microsoft/api-extractor": "^7.18.1", "@microsoft/dynamicproto-js": "^1.1.7", @@ -613,7 +613,7 @@ "node_modules/@rush-temp/applicationinsights-chrome-debug-extension": { "version": "0.0.0", "resolved": "file:projects/applicationinsights-chrome-debug-extension.tgz", - "integrity": "sha512-DZll85eyJN0rHbUHBjXwL4sgjwumBjqT4VLvnyps68mNz+puMd60YKqYSXGv5D/UHP/j5uX5p+mG528ofboxuQ==", + "integrity": "sha512-5IXW+eWhyn+vSfK9oPB+J/i4PpgJ6aaQn8hTiC4YmJB/GWvFZlOAZyG4cY0nV3f6ciYWYCsPhJzNCWqomG3AnA==", "dependencies": { "@microsoft/dynamicproto-js": "^1.1.7", "@nevware21/grunt-eslint-ts": "^0.2.2", @@ -646,7 +646,7 @@ "node_modules/@rush-temp/applicationinsights-clickanalytics-js": { "version": "0.0.0", "resolved": "file:projects/applicationinsights-clickanalytics-js.tgz", - "integrity": "sha512-h+f6IHQ2i9nS7CHBqx7LkKwDErwmk8psIKDkFMYj8XhpqgoDVwE5b89ubieBeuxH7Xw7dcBmX9LDaFPAX5q8yQ==", + "integrity": "sha512-L86U+aBF1IR/HGRgHfwjSuRT/sazY9Eyle3dXYuZjtSiSLAbfGmtiZNtgo4dXPxK4suPndV3GuK+brq6fzkuwA==", "dependencies": { "@microsoft/api-extractor": "^7.18.1", "@microsoft/dynamicproto-js": "^1.1.7", @@ -669,7 +669,7 @@ "node_modules/@rush-temp/applicationinsights-common": { "version": "0.0.0", "resolved": "file:projects/applicationinsights-common.tgz", - "integrity": "sha512-U86Awn5V6JqBdMNCi0727pJPcnG48k0dME83sH6qpn4YxFI2xpNcrwv8HFiuybPVkRgqDsHNOGmhH9SXh/BjAg==", + "integrity": "sha512-mv5AUbbMbnPsDOknF7pJN/K8wmnbEfvEO9Ae1LwkIHW/dXyQH86JWV5ksN4fZzFOHD7nB6PRfRxsJMZuCpEs1Q==", "dependencies": { "@microsoft/api-extractor": "^7.18.1", "@microsoft/dynamicproto-js": "^1.1.7", @@ -719,7 +719,7 @@ "node_modules/@rush-temp/applicationinsights-debugplugin-js": { "version": "0.0.0", "resolved": "file:projects/applicationinsights-debugplugin-js.tgz", - "integrity": "sha512-/1t5+/SXpLoJGFjkL7x6lNAAATFiNaR0BKKsngMfTq5vzf4oGGUgjilMfnzY/K9VHJI7fX2CnPgfFzK/olYndA==", + "integrity": "sha512-b8HTJxXNf2KMYTYTtyUNFHgiAQCFo+aIpIDv6t0tM6rPkAa1c6UFXpy8yLNkVcoEOqknM7+0WDYGkADhr901zw==", "dependencies": { "@microsoft/api-extractor": "^7.18.1", "@microsoft/dynamicproto-js": "^1.1.7", @@ -742,7 +742,7 @@ "node_modules/@rush-temp/applicationinsights-dependencies-js": { "version": "0.0.0", "resolved": "file:projects/applicationinsights-dependencies-js.tgz", - "integrity": "sha512-GqQkRS6fd2dkwogUPMVrv8MzUzhnR+VyUuJCmujommkykbmlF65Z5v+VJfuOjS5SwMRyg+CShqpOvvHIaQXxBg==", + "integrity": "sha512-kOthYVn830b5vfwF4/7xARvTJk0Ypf7wMO8XYbWZO4g1IhjKoiEr3EqvRSqc0idcui6PxouhahTcWK/r47EXeA==", "dependencies": { "@microsoft/api-extractor": "^7.18.1", "@microsoft/dynamicproto-js": "^1.1.7", @@ -777,7 +777,7 @@ "node_modules/@rush-temp/applicationinsights-perfmarkmeasure-js": { "version": "0.0.0", "resolved": "file:projects/applicationinsights-perfmarkmeasure-js.tgz", - "integrity": "sha512-eTmt+B2pRisFXt4nhrNyZGLjDIMOMolNJ8upU2R8SQq0GtG8JdVNxuXAZU+cc9bp45jBruKmdLESsGMq7GSm9Q==", + "integrity": "sha512-cIMaCtGax0d+2m5YHrkZt5NZcDRQGCpexAgHoOvYoMvpJ4ph5zlVT1TPKz9WqRAdWybtDO8Ya3we9IJv7YbCFA==", "dependencies": { "@microsoft/api-extractor": "^7.18.1", "@microsoft/dynamicproto-js": "^1.1.7", @@ -800,7 +800,7 @@ "node_modules/@rush-temp/applicationinsights-properties-js": { "version": "0.0.0", "resolved": "file:projects/applicationinsights-properties-js.tgz", - "integrity": "sha512-tl8Lk94KGHQ5Cahkr+EtulpQnlJS6PG5HeZUYSEKiv0Src5OyV1hhYVnTYEYVdfojifQfXTT22CORzP86Fd2Pw==", + "integrity": "sha512-JafaMLTNhM5B8jjwOSyYPBO6sZjUXhh2UZbt4h/237fIHW0ce63fP0wAsn8dbptcr1q+Yi/qXrTaAy09bImDuA==", "dependencies": { "@microsoft/api-extractor": "^7.18.1", "@microsoft/dynamicproto-js": "^1.1.7", @@ -887,7 +887,7 @@ "node_modules/@rush-temp/applicationinsights-web": { "version": "0.0.0", "resolved": "file:projects/applicationinsights-web.tgz", - "integrity": "sha512-gbGGNVBbKRRbNwOD/hzhRzytMtplm7fU48LdazN20YsOuUIMsXwgWO0HbnyIkfkOiTVyx3Qwo3VE/S2uekNBCA==", + "integrity": "sha512-cD5xi4tfwURknqH3XFUQvuXAgkq06NtRbt0zFw2GdC3rxBRgsbvPz8okbRxhE+nCC/HTcinLATw+2S87821hlw==", "dependencies": { "@microsoft/api-extractor": "^7.18.1", "@microsoft/dynamicproto-js": "^1.1.7", @@ -915,7 +915,7 @@ "node_modules/@rush-temp/applicationinsights-web-basic": { "version": "0.0.0", "resolved": "file:projects/applicationinsights-web-basic.tgz", - "integrity": "sha512-t9h2zhlCv83YoRC4jaZstldgYJ13bi9yHwzwe/iJK7R9iDrQ+mroZ9PBsKuyAVW/fwQuQk1vRbABXxovtxdRlQ==", + "integrity": "sha512-Zg/tAsFfYL0Q9QfIsfNMz82uTdAsupSKhoHkd3in6iR1FihTTrRfcG/EF3LY0kCnsSi/P3pxUtoYtOrVwQoGvA==", "dependencies": { "@microsoft/api-extractor": "^7.18.1", "@microsoft/dynamicproto-js": "^1.1.7", @@ -2143,9 +2143,9 @@ "integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==" }, "node_modules/electron-to-chromium": { - "version": "1.4.284", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.284.tgz", - "integrity": "sha512-M8WEXFuKXMYMVr45fo8mq0wUrrJHheiKZf6BArTKk9ZBYCKJEOU5H8cdWgDT+qCVZf7Na4lVUaZsA+h6uA9+PA==" + "version": "1.4.286", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.286.tgz", + "integrity": "sha512-Vp3CVhmYpgf4iXNKAucoQUDcCrBQX3XLBtwgFqP9BUXuucgvAV9zWp1kYU7LL9j4++s9O+12cb3wMtN4SJy6UQ==" }, "node_modules/encodeurl": { "version": "1.0.2", @@ -2257,9 +2257,9 @@ } }, "node_modules/eslint-plugin-security": { - "version": "1.7.0", - "resolved": "https://registry.npmjs.org/eslint-plugin-security/-/eslint-plugin-security-1.7.0.tgz", - "integrity": "sha512-+ahcCh7M5w7fdFaNccaChBGq8nd3Wa+XvGJS+hY74kvrMhG4EuLbljRIjilOqh1iDMW/EckB1oOWmiVIYlVACQ==", + "version": "1.7.1", + "resolved": "https://registry.npmjs.org/eslint-plugin-security/-/eslint-plugin-security-1.7.1.tgz", + "integrity": "sha512-sMStceig8AFglhhT2LqlU5r+/fn9OwsA72O5bBuQVTssPCdQAOQzL+oMn/ZcpeUY6KcNfLJArgcrsSULNjYYdQ==", "peer": true, "dependencies": { "safe-regex": "^2.1.1" @@ -5344,9 +5344,9 @@ } }, "node_modules/validator": { - "version": "13.7.0", - "resolved": "https://registry.npmjs.org/validator/-/validator-13.7.0.tgz", - "integrity": "sha512-nYXQLCBkpJ8X6ltALua9dRrZDHVYxjJ1wgskNt1lH9fzGjs3tgojGSCBjmEPwkWS1y29+DrizMTW19Pr9uB2nw==", + "version": "13.9.0", + "resolved": "https://registry.npmjs.org/validator/-/validator-13.9.0.tgz", + "integrity": "sha512-B+dGG8U3fdtM0/aNK4/X8CXq/EcxU2WPrPEkJGslb47qyHsxmbggTWK0yEA4qnYVNF+nxNlN88o14hIcPmSIEA==", "engines": { "node": ">= 0.10" } @@ -5856,7 +5856,7 @@ }, "@rush-temp/applicationinsights-analytics-js": { "version": "file:projects\\applicationinsights-analytics-js.tgz", - "integrity": "sha512-g4WDDPur0kwXH5HHVEFpLyaVi9ctct7eUmYhp3iBpfuSlWv3ZU7Ue+mCTr2qAWyvZjV5XGmLAlB+3t3+wsptbw==", + "integrity": "sha512-Mo3m/gkiGzANRsMhP7+KWpoQ4bZHQlypNQ8IwdPk2eUiKhSSW35kD/wxozgMiqk9uTUAmjGbpKw4CoJMWNNf2w==", "requires": { "@microsoft/api-extractor": "^7.18.1", "@microsoft/dynamicproto-js": "^1.1.7", @@ -5881,7 +5881,7 @@ }, "@rush-temp/applicationinsights-channel-js": { "version": "file:projects\\applicationinsights-channel-js.tgz", - "integrity": "sha512-uzi1U9Ieb2fku/hmrWwLUqQw8C1WbTB0KY8i3No2vUYaATRg11iN7wN1mYRsXKT67usFh5jioXwJoRGeu0CxnA==", + "integrity": "sha512-gZscVracnqDAkZ+6+4KiLzyHoZd4+AZns9CJf5M9kqTs5lpRHmteoEgaSyaIw6PlTADtLu7cNvOUInd0qh1FUw==", "requires": { "@microsoft/api-extractor": "^7.18.1", "@microsoft/dynamicproto-js": "^1.1.7", @@ -5904,7 +5904,7 @@ }, "@rush-temp/applicationinsights-chrome-debug-extension": { "version": "file:projects\\applicationinsights-chrome-debug-extension.tgz", - "integrity": "sha512-DZll85eyJN0rHbUHBjXwL4sgjwumBjqT4VLvnyps68mNz+puMd60YKqYSXGv5D/UHP/j5uX5p+mG528ofboxuQ==", + "integrity": "sha512-5IXW+eWhyn+vSfK9oPB+J/i4PpgJ6aaQn8hTiC4YmJB/GWvFZlOAZyG4cY0nV3f6ciYWYCsPhJzNCWqomG3AnA==", "requires": { "@microsoft/dynamicproto-js": "^1.1.7", "@nevware21/grunt-eslint-ts": "^0.2.2", @@ -5936,7 +5936,7 @@ }, "@rush-temp/applicationinsights-clickanalytics-js": { "version": "file:projects\\applicationinsights-clickanalytics-js.tgz", - "integrity": "sha512-h+f6IHQ2i9nS7CHBqx7LkKwDErwmk8psIKDkFMYj8XhpqgoDVwE5b89ubieBeuxH7Xw7dcBmX9LDaFPAX5q8yQ==", + "integrity": "sha512-L86U+aBF1IR/HGRgHfwjSuRT/sazY9Eyle3dXYuZjtSiSLAbfGmtiZNtgo4dXPxK4suPndV3GuK+brq6fzkuwA==", "requires": { "@microsoft/api-extractor": "^7.18.1", "@microsoft/dynamicproto-js": "^1.1.7", @@ -5958,7 +5958,7 @@ }, "@rush-temp/applicationinsights-common": { "version": "file:projects\\applicationinsights-common.tgz", - "integrity": "sha512-U86Awn5V6JqBdMNCi0727pJPcnG48k0dME83sH6qpn4YxFI2xpNcrwv8HFiuybPVkRgqDsHNOGmhH9SXh/BjAg==", + "integrity": "sha512-mv5AUbbMbnPsDOknF7pJN/K8wmnbEfvEO9Ae1LwkIHW/dXyQH86JWV5ksN4fZzFOHD7nB6PRfRxsJMZuCpEs1Q==", "requires": { "@microsoft/api-extractor": "^7.18.1", "@microsoft/dynamicproto-js": "^1.1.7", @@ -6006,7 +6006,7 @@ }, "@rush-temp/applicationinsights-debugplugin-js": { "version": "file:projects\\applicationinsights-debugplugin-js.tgz", - "integrity": "sha512-/1t5+/SXpLoJGFjkL7x6lNAAATFiNaR0BKKsngMfTq5vzf4oGGUgjilMfnzY/K9VHJI7fX2CnPgfFzK/olYndA==", + "integrity": "sha512-b8HTJxXNf2KMYTYTtyUNFHgiAQCFo+aIpIDv6t0tM6rPkAa1c6UFXpy8yLNkVcoEOqknM7+0WDYGkADhr901zw==", "requires": { "@microsoft/api-extractor": "^7.18.1", "@microsoft/dynamicproto-js": "^1.1.7", @@ -6028,7 +6028,7 @@ }, "@rush-temp/applicationinsights-dependencies-js": { "version": "file:projects\\applicationinsights-dependencies-js.tgz", - "integrity": "sha512-GqQkRS6fd2dkwogUPMVrv8MzUzhnR+VyUuJCmujommkykbmlF65Z5v+VJfuOjS5SwMRyg+CShqpOvvHIaQXxBg==", + "integrity": "sha512-kOthYVn830b5vfwF4/7xARvTJk0Ypf7wMO8XYbWZO4g1IhjKoiEr3EqvRSqc0idcui6PxouhahTcWK/r47EXeA==", "requires": { "@microsoft/api-extractor": "^7.18.1", "@microsoft/dynamicproto-js": "^1.1.7", @@ -6061,7 +6061,7 @@ }, "@rush-temp/applicationinsights-perfmarkmeasure-js": { "version": "file:projects\\applicationinsights-perfmarkmeasure-js.tgz", - "integrity": "sha512-eTmt+B2pRisFXt4nhrNyZGLjDIMOMolNJ8upU2R8SQq0GtG8JdVNxuXAZU+cc9bp45jBruKmdLESsGMq7GSm9Q==", + "integrity": "sha512-cIMaCtGax0d+2m5YHrkZt5NZcDRQGCpexAgHoOvYoMvpJ4ph5zlVT1TPKz9WqRAdWybtDO8Ya3we9IJv7YbCFA==", "requires": { "@microsoft/api-extractor": "^7.18.1", "@microsoft/dynamicproto-js": "^1.1.7", @@ -6083,7 +6083,7 @@ }, "@rush-temp/applicationinsights-properties-js": { "version": "file:projects\\applicationinsights-properties-js.tgz", - "integrity": "sha512-tl8Lk94KGHQ5Cahkr+EtulpQnlJS6PG5HeZUYSEKiv0Src5OyV1hhYVnTYEYVdfojifQfXTT22CORzP86Fd2Pw==", + "integrity": "sha512-JafaMLTNhM5B8jjwOSyYPBO6sZjUXhh2UZbt4h/237fIHW0ce63fP0wAsn8dbptcr1q+Yi/qXrTaAy09bImDuA==", "requires": { "@microsoft/api-extractor": "^7.18.1", "@microsoft/dynamicproto-js": "^1.1.7", @@ -6166,7 +6166,7 @@ }, "@rush-temp/applicationinsights-web": { "version": "file:projects\\applicationinsights-web.tgz", - "integrity": "sha512-gbGGNVBbKRRbNwOD/hzhRzytMtplm7fU48LdazN20YsOuUIMsXwgWO0HbnyIkfkOiTVyx3Qwo3VE/S2uekNBCA==", + "integrity": "sha512-cD5xi4tfwURknqH3XFUQvuXAgkq06NtRbt0zFw2GdC3rxBRgsbvPz8okbRxhE+nCC/HTcinLATw+2S87821hlw==", "requires": { "@microsoft/api-extractor": "^7.18.1", "@microsoft/dynamicproto-js": "^1.1.7", @@ -6193,7 +6193,7 @@ }, "@rush-temp/applicationinsights-web-basic": { "version": "file:projects\\applicationinsights-web-basic.tgz", - "integrity": "sha512-t9h2zhlCv83YoRC4jaZstldgYJ13bi9yHwzwe/iJK7R9iDrQ+mroZ9PBsKuyAVW/fwQuQk1vRbABXxovtxdRlQ==", + "integrity": "sha512-Zg/tAsFfYL0Q9QfIsfNMz82uTdAsupSKhoHkd3in6iR1FihTTrRfcG/EF3LY0kCnsSi/P3pxUtoYtOrVwQoGvA==", "requires": { "@microsoft/api-extractor": "^7.18.1", "@microsoft/dynamicproto-js": "^1.1.7", @@ -7110,9 +7110,9 @@ "integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==" }, "electron-to-chromium": { - "version": "1.4.284", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.284.tgz", - "integrity": "sha512-M8WEXFuKXMYMVr45fo8mq0wUrrJHheiKZf6BArTKk9ZBYCKJEOU5H8cdWgDT+qCVZf7Na4lVUaZsA+h6uA9+PA==" + "version": "1.4.286", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.286.tgz", + "integrity": "sha512-Vp3CVhmYpgf4iXNKAucoQUDcCrBQX3XLBtwgFqP9BUXuucgvAV9zWp1kYU7LL9j4++s9O+12cb3wMtN4SJy6UQ==" }, "encodeurl": { "version": "1.0.2", @@ -7218,9 +7218,9 @@ } }, "eslint-plugin-security": { - "version": "1.7.0", - "resolved": "https://registry.npmjs.org/eslint-plugin-security/-/eslint-plugin-security-1.7.0.tgz", - "integrity": "sha512-+ahcCh7M5w7fdFaNccaChBGq8nd3Wa+XvGJS+hY74kvrMhG4EuLbljRIjilOqh1iDMW/EckB1oOWmiVIYlVACQ==", + "version": "1.7.1", + "resolved": "https://registry.npmjs.org/eslint-plugin-security/-/eslint-plugin-security-1.7.1.tgz", + "integrity": "sha512-sMStceig8AFglhhT2LqlU5r+/fn9OwsA72O5bBuQVTssPCdQAOQzL+oMn/ZcpeUY6KcNfLJArgcrsSULNjYYdQ==", "peer": true, "requires": { "safe-regex": "^2.1.1" @@ -9538,9 +9538,9 @@ } }, "validator": { - "version": "13.7.0", - "resolved": "https://registry.npmjs.org/validator/-/validator-13.7.0.tgz", - "integrity": "sha512-nYXQLCBkpJ8X6ltALua9dRrZDHVYxjJ1wgskNt1lH9fzGjs3tgojGSCBjmEPwkWS1y29+DrizMTW19Pr9uB2nw==" + "version": "13.9.0", + "resolved": "https://registry.npmjs.org/validator/-/validator-13.9.0.tgz", + "integrity": "sha512-B+dGG8U3fdtM0/aNK4/X8CXq/EcxU2WPrPEkJGslb47qyHsxmbggTWK0yEA4qnYVNF+nxNlN88o14hIcPmSIEA==" }, "webidl-conversions": { "version": "3.0.1", diff --git a/extensions/applicationinsights-analytics-js/package.json b/extensions/applicationinsights-analytics-js/package.json index 83b9a6178..3dc403657 100644 --- a/extensions/applicationinsights-analytics-js/package.json +++ b/extensions/applicationinsights-analytics-js/package.json @@ -1,6 +1,6 @@ { "name": "@microsoft/applicationinsights-analytics-js", - "version": "2.8.9", + "version": "2.8.10", "description": "Microsoft Application Insights JavaScript SDK - Web Analytics", "homepage": "https://github.com/microsoft/ApplicationInsights-JS#readme", "author": "Microsoft Application Insights Team", @@ -29,8 +29,8 @@ "@microsoft/ai-test-framework": "0.0.1", "@microsoft/applicationinsights-rollup-plugin-uglify3-js": "1.0.0", "@microsoft/applicationinsights-rollup-es3": "1.1.3", - "@microsoft/applicationinsights-properties-js": "2.8.9", - "@microsoft/applicationinsights-channel-js": "2.8.9", + "@microsoft/applicationinsights-properties-js": "2.8.10", + "@microsoft/applicationinsights-channel-js": "2.8.10", "@microsoft/api-extractor": "^7.18.1", "typescript": "^4.9.3", "tslib": "^2.0.0", @@ -56,8 +56,8 @@ "dependencies": { "@microsoft/dynamicproto-js": "^1.1.7", "@microsoft/applicationinsights-shims": "2.0.2", - "@microsoft/applicationinsights-core-js": "2.8.9", - "@microsoft/applicationinsights-common": "2.8.9" + "@microsoft/applicationinsights-core-js": "2.8.10", + "@microsoft/applicationinsights-common": "2.8.10" }, "license": "MIT" } diff --git a/extensions/applicationinsights-clickanalytics-js/package.json b/extensions/applicationinsights-clickanalytics-js/package.json index fed81f953..c867be3e8 100644 --- a/extensions/applicationinsights-clickanalytics-js/package.json +++ b/extensions/applicationinsights-clickanalytics-js/package.json @@ -1,6 +1,6 @@ { "name": "@microsoft/applicationinsights-clickanalytics-js", - "version": "2.8.9", + "version": "2.8.10", "description": "Microsoft Application Insights Click Analytics extension", "homepage": "https://github.com/microsoft/ApplicationInsights-JS#readme", "author": "Microsoft Application Insights Team", @@ -47,9 +47,9 @@ "dependencies": { "@microsoft/dynamicproto-js": "^1.1.7", "@microsoft/applicationinsights-shims": "2.0.2", - "@microsoft/applicationinsights-core-js": "2.8.9", - "@microsoft/applicationinsights-common": "2.8.9", - "@microsoft/applicationinsights-properties-js": "2.8.9" + "@microsoft/applicationinsights-core-js": "2.8.10", + "@microsoft/applicationinsights-common": "2.8.10", + "@microsoft/applicationinsights-properties-js": "2.8.10" }, "repository": { "type": "git", diff --git a/extensions/applicationinsights-debugplugin-js/package.json b/extensions/applicationinsights-debugplugin-js/package.json index a418afdef..d5c764ba6 100644 --- a/extensions/applicationinsights-debugplugin-js/package.json +++ b/extensions/applicationinsights-debugplugin-js/package.json @@ -1,6 +1,6 @@ { "name": "@microsoft/applicationinsights-debugplugin-js", - "version": "2.8.9", + "version": "2.8.10", "description": "Microsoft Application Insights JavaScript SDK - Debug Plugin extension", "homepage": "https://github.com/microsoft/ApplicationInsights-JS#readme", "author": "Microsoft Application Insights Team", @@ -48,8 +48,8 @@ }, "dependencies": { "@microsoft/dynamicproto-js": "^1.1.7", - "@microsoft/applicationinsights-common": "2.8.9", - "@microsoft/applicationinsights-core-js": "2.8.9", + "@microsoft/applicationinsights-common": "2.8.10", + "@microsoft/applicationinsights-core-js": "2.8.10", "@microsoft/applicationinsights-shims": "2.0.2" }, "license": "MIT" diff --git a/extensions/applicationinsights-dependencies-js/package.json b/extensions/applicationinsights-dependencies-js/package.json index 65dc296fa..01057e797 100644 --- a/extensions/applicationinsights-dependencies-js/package.json +++ b/extensions/applicationinsights-dependencies-js/package.json @@ -1,6 +1,6 @@ { "name": "@microsoft/applicationinsights-dependencies-js", - "version": "2.8.9", + "version": "2.8.10", "description": "Microsoft Application Insights XHR dependencies plugin", "homepage": "https://github.com/microsoft/ApplicationInsights-JS#readme", "author": "Microsoft Application Insights Team", @@ -54,8 +54,8 @@ "dependencies": { "@microsoft/dynamicproto-js": "^1.1.7", "@microsoft/applicationinsights-shims": "2.0.2", - "@microsoft/applicationinsights-core-js": "2.8.9", - "@microsoft/applicationinsights-common": "2.8.9" + "@microsoft/applicationinsights-core-js": "2.8.10", + "@microsoft/applicationinsights-common": "2.8.10" }, "license": "MIT" } diff --git a/extensions/applicationinsights-perfmarkmeasure-js/package.json b/extensions/applicationinsights-perfmarkmeasure-js/package.json index 731e894e4..1eecc73eb 100644 --- a/extensions/applicationinsights-perfmarkmeasure-js/package.json +++ b/extensions/applicationinsights-perfmarkmeasure-js/package.json @@ -1,6 +1,6 @@ { "name": "@microsoft/applicationinsights-perfmarkmeasure-js", - "version": "2.8.9", + "version": "2.8.10", "description": "Microsoft Application Insights Performance Mark and Measure Manager plugin", "homepage": "https://github.com/microsoft/ApplicationInsights-JS#readme", "author": "Microsoft Application Insights Team", @@ -51,7 +51,7 @@ "dependencies": { "@microsoft/dynamicproto-js": "^1.1.7", "@microsoft/applicationinsights-shims": "2.0.2", - "@microsoft/applicationinsights-core-js": "2.8.9" + "@microsoft/applicationinsights-core-js": "2.8.10" }, "license": "MIT" } diff --git a/extensions/applicationinsights-properties-js/package.json b/extensions/applicationinsights-properties-js/package.json index fc228a0ac..cb843394f 100644 --- a/extensions/applicationinsights-properties-js/package.json +++ b/extensions/applicationinsights-properties-js/package.json @@ -1,6 +1,6 @@ { "name": "@microsoft/applicationinsights-properties-js", - "version": "2.8.9", + "version": "2.8.10", "description": "Microsoft Application Insights properties (Part A) plugin", "homepage": "https://github.com/microsoft/ApplicationInsights-JS#readme", "author": "Microsoft Application Insights Team", @@ -54,8 +54,8 @@ "dependencies": { "@microsoft/dynamicproto-js": "^1.1.7", "@microsoft/applicationinsights-shims": "2.0.2", - "@microsoft/applicationinsights-core-js": "2.8.9", - "@microsoft/applicationinsights-common": "2.8.9" + "@microsoft/applicationinsights-core-js": "2.8.10", + "@microsoft/applicationinsights-common": "2.8.10" }, "license": "MIT" } diff --git a/gruntfile.js b/gruntfile.js index 9d4c6cea6..778746306 100644 --- a/gruntfile.js +++ b/gruntfile.js @@ -146,7 +146,7 @@ module.exports = function (grunt) { // const perfTestVersions = ["2.0.0","2.0.1","2.1.0","2.2.0","2.2.1","2.2.2","2.3.0","2.3.1", // "2.4.1","2.4.3","2.4.4","2.5.2","2.5.3","2.5.4","2.5.5","2.5.6","2.5.7","2.5.8","2.5.9","2.5.10","2.5.11", // "2.6.0","2.6.1","2.6.2","2.6.3","2.6.4","2.6.5","2.7.0"]; - const perfTestVersions=["2.8.9"]; + const perfTestVersions=["2.8.10"]; function buildConfig(modules) { var buildCmds = { diff --git a/package.json b/package.json index 9d5349d79..d6122c4a6 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "@microsoft/applicationinsights-web", "description": "Microsoft Application Insights JavaScript SDK", - "version": "2.8.9", + "version": "2.8.10", "keywords": [ "browser performance monitoring", "script errors", diff --git a/shared/AppInsightsCommon/package.json b/shared/AppInsightsCommon/package.json index f478fb9f0..259a17778 100644 --- a/shared/AppInsightsCommon/package.json +++ b/shared/AppInsightsCommon/package.json @@ -1,6 +1,6 @@ { "name": "@microsoft/applicationinsights-common", - "version": "2.8.9", + "version": "2.8.10", "description": "Microsoft Application Insights Common JavaScript Library", "homepage": "https://github.com/microsoft/ApplicationInsights-JS#readme", "author": "Microsoft Application Insights Team", @@ -51,7 +51,7 @@ }, "dependencies": { "@microsoft/applicationinsights-shims": "2.0.2", - "@microsoft/applicationinsights-core-js": "2.8.9", + "@microsoft/applicationinsights-core-js": "2.8.10", "@microsoft/dynamicproto-js": "^1.1.7" }, "license": "MIT" diff --git a/shared/AppInsightsCore/package.json b/shared/AppInsightsCore/package.json index 275a3cf50..ef85fa656 100644 --- a/shared/AppInsightsCore/package.json +++ b/shared/AppInsightsCore/package.json @@ -1,7 +1,7 @@ { "name": "@microsoft/applicationinsights-core-js", "author": "Microsoft Application Insights Team", - "version": "2.8.9", + "version": "2.8.10", "description": "Microsoft Application Insights Core Javascript SDK", "homepage": "https://github.com/microsoft/ApplicationInsights-JS#readme", "keywords": [ diff --git a/tools/chrome-debug-extension/manifest.json b/tools/chrome-debug-extension/manifest.json index 3c0d372fd..7c92a6ee9 100644 --- a/tools/chrome-debug-extension/manifest.json +++ b/tools/chrome-debug-extension/manifest.json @@ -2,8 +2,8 @@ "name": "Telemetry Viewer", "short_name": "Telemetry Viewer", "description": "A browser extension that provides a real time view of what's happening in Application Insights including what telemetry is being logged by the web application", - "version": "0.3.9", - "version_name": "0.3.9", + "version": "0.3.10", + "version_name": "0.3.10", "manifest_version": 2, "icons": { "16": "images/icon-16.png", diff --git a/tools/chrome-debug-extension/package.json b/tools/chrome-debug-extension/package.json index 889f82e74..eba455401 100644 --- a/tools/chrome-debug-extension/package.json +++ b/tools/chrome-debug-extension/package.json @@ -1,6 +1,6 @@ { "name": "@microsoft/applicationinsights-chrome-debug-extension", - "version": "0.3.9", + "version": "0.3.10", "description": "A chrome based browser extension that provides a real time view of what's happening in Application Insights including what telemetry is being logged by the web application", "homepage": "https://github.com/microsoft/ApplicationInsights-JS/tree/master/tools/chrome-debug-extension#readme", "keywords": [ @@ -42,8 +42,8 @@ "license": "MIT", "sideEffects": false, "dependencies": { - "@microsoft/applicationinsights-core-js": "2.8.9", - "@microsoft/applicationinsights-common": "2.8.9", + "@microsoft/applicationinsights-core-js": "2.8.10", + "@microsoft/applicationinsights-common": "2.8.10", "@microsoft/applicationinsights-shims": "2.0.2", "@microsoft/dynamicproto-js": "^1.1.7", "file-saver": "^2.0.0", diff --git a/tools/config/package.json b/tools/config/package.json index adfab2e0d..7157c3729 100644 --- a/tools/config/package.json +++ b/tools/config/package.json @@ -1,7 +1,7 @@ { "name": "applicationinsights-web-config", "description": " Application Insights JavaScript SDK - Web Config", - "version": "0.0.1", + "version": "0.0.2", "copyright": "(c) Microsoft and contributors. All rights reserved.", "author": "Microsoft Application Insights Team", "repository": { @@ -13,7 +13,7 @@ "build:browser": "grunt copy", "rebuild": "npm run build", "test": "" - }, + }, "license": "MIT", "bugs": { "url": "https://github.com/microsoft/ApplicationInsights-JS/issues" diff --git a/version.json b/version.json index fc3950cdc..f3e3fa201 100644 --- a/version.json +++ b/version.json @@ -1,60 +1,60 @@ { "description": "The release value identifies the base version that will be applied via the tools/release-tools/setVersion.js", "usage": "When creating a new release you should update this value directly or via the eg. 'npm run setVersion -- 3.2.0' or 'npm run setVersion -- -patch' or 'npm run setVersion -- -minor'", - "release": "2.8.9", + "release": "2.8.10", "next": "patch", "pkgs": { "@microsoft/applicationinsights-web": { "package": "package.json", - "release": "2.8.9" + "release": "2.8.10" }, "@microsoft/applicationinsights-web-basic": { "package": "AISKULight/package.json", - "release": "2.8.9" + "release": "2.8.10" }, "@microsoft/applicationinsights-channel-js": { "package": "channels/applicationinsights-channel-js/package.json", - "release": "2.8.9" + "release": "2.8.10" }, "@microsoft/applicationinsights-analytics-js": { "package": "extensions/applicationinsights-analytics-js/package.json", - "release": "2.8.9" + "release": "2.8.10" }, "@microsoft/applicationinsights-clickanalytics-js": { "package": "extensions/applicationinsights-clickanalytics-js/package.json", - "release": "2.8.9" + "release": "2.8.10" }, "@microsoft/applicationinsights-debugplugin-js": { "package": "extensions/applicationinsights-debugplugin-js/package.json", - "release": "2.8.9" + "release": "2.8.10" }, "@microsoft/applicationinsights-dependencies-js": { "package": "extensions/applicationinsights-dependencies-js/package.json", - "release": "2.8.9" + "release": "2.8.10" }, "@microsoft/applicationinsights-perfmarkmeasure-js": { "package": "extensions/applicationinsights-perfmarkmeasure-js/package.json", - "release": "2.8.9" + "release": "2.8.10" }, "@microsoft/applicationinsights-properties-js": { "package": "extensions/applicationinsights-properties-js/package.json", - "release": "2.8.9" + "release": "2.8.10" }, "@microsoft/applicationinsights-common": { "package": "shared/AppInsightsCommon/package.json", - "release": "2.8.9" + "release": "2.8.10" }, "@microsoft/applicationinsights-core-js": { "package": "shared/AppInsightsCore/package.json", - "release": "2.8.9" + "release": "2.8.10" }, "@microsoft/applicationinsights-chrome-debug-extension": { "package": "tools/chrome-debug-extension/package.json", - "release": "0.3.9" + "release": "0.3.10" }, "applicationinsights-web-config": { "package": "tools/config/package.json", - "release": "0.0.1" + "release": "0.0.2" } } }