From 97014a2872435b7a8d64f92d80bf4ac5c55225ff Mon Sep 17 00:00:00 2001 From: Nev <54870357+MSNev@users.noreply.github.com> Date: Mon, 1 May 2023 12:56:46 -0700 Subject: [PATCH] [Release] Increase version to 2.8.13 (#2059) --- AISKU/README.md | 1 + AISKU/Tests/Perf/src/AISKUPerf.ts | 2 +- AISKU/Tests/Unit/src/AISKUSize.Tests.ts | 2 +- AISKU/Tests/Unit/src/CdnPackaging.tests.ts | 2 +- AISKU/package.json | 14 +- AISKULight/package.json | 8 +- RELEASES.md | 10 +- .../Tests/Unit/src/Sender.tests.ts | 2 +- .../package.json | 6 +- common/config/rush/npm-shrinkwrap.json | 408 +++++++++--------- examples/AISKU/package.json | 6 +- examples/dependency/package.json | 8 +- examples/shared-worker/package.json | 4 +- .../package.json | 10 +- .../package.json | 8 +- .../package.json | 6 +- .../package.json | 6 +- .../package.json | 4 +- .../package.json | 6 +- gruntfile.js | 2 +- package.json | 2 +- shared/AppInsightsCommon/package.json | 4 +- shared/AppInsightsCore/package.json | 2 +- tools/chrome-debug-extension/manifest.json | 4 +- tools/chrome-debug-extension/package.json | 6 +- tools/config/package.json | 2 +- version.json | 34 +- 27 files changed, 289 insertions(+), 280 deletions(-) diff --git a/AISKU/README.md b/AISKU/README.md index cf983ae1c..228fa019a 100644 --- a/AISKU/README.md +++ b/AISKU/README.md @@ -28,6 +28,7 @@ Refer to [our GitHub page](https://github.com/microsoft/applicationinsights-js) |---------|-----------|--------------|------------- | [<nightly3>](https://github.com/microsoft/ApplicationInsights-JS/tree/main/AISKU) | [![full size size](https://img.badgesize.io/https://js.monitor.azure.com/nightly/ai.3-nightly3.js.svg?label=full%20size&color=blue)](https://img.badgesize.io/https://js.monitor.azure.com/nightly/ai.3-nightly3.js.svg?label=full%20size&color=blue)| ![minified size size](https://img.badgesize.io/https://js.monitor.azure.com/nightly/ai.3-nightly3.min.js.svg?label=minified%20size&color=darkorchid) | ![gzip size](https://img.badgesize.io/https://js.monitor.azure.com/nightly/ai.3-nightly3.min.js.svg?compression=gzip&softmax=30000&max=35000) | <nightly> | [![full size size](https://img.badgesize.io/https://js.monitor.azure.com/nightly/ai.2-nightly.js.svg?label=full%20size&color=blue)](https://img.badgesize.io/https://js.monitor.azure.com/nightly/ai.2-nightly.js.svg?label=full%20size&color=blue)| ![minified size size](https://img.badgesize.io/https://js.monitor.azure.com/nightly/ai.2-nightly.min.js.svg?label=minified%20size&color=darkorchid) | ![gzip size](https://img.badgesize.io/https://js.monitor.azure.com/nightly/ai.2-nightly.min.js.svg?compression=gzip&softmax=30000&max=35000) +| 2.8.13: | [![full size size](https://img.badgesize.io/https://js.monitor.azure.com/scripts/b/ai.2.8.13.js.svg?label=full%20size&color=blue)](https://img.badgesize.io/https://js.monitor.azure.com/scripts/b/ai.2.8.13.js.svg?label=full%20size&color=blue)| ![minified size size](https://img.badgesize.io/https://js.monitor.azure.com/scripts/b/ai.2.8.13.min.js.svg?label=minified%20size&color=darkorchid) | ![gzip size](https://img.badgesize.io/https://js.monitor.azure.com/scripts/b/ai.2.8.13.min.js.svg?compression=gzip&softmax=30000&max=35000) | 2.8.12: | [![full size size](https://img.badgesize.io/https://js.monitor.azure.com/scripts/b/ai.2.8.12.js.svg?label=full%20size&color=blue)](https://img.badgesize.io/https://js.monitor.azure.com/scripts/b/ai.2.8.12.js.svg?label=full%20size&color=blue)| ![minified size size](https://img.badgesize.io/https://js.monitor.azure.com/scripts/b/ai.2.8.12.min.js.svg?label=minified%20size&color=darkorchid) | ![gzip size](https://img.badgesize.io/https://js.monitor.azure.com/scripts/b/ai.2.8.12.min.js.svg?compression=gzip&softmax=30000&max=35000) | 2.8.11: | [![full size size](https://img.badgesize.io/https://js.monitor.azure.com/scripts/b/ai.2.8.11.js.svg?label=full%20size&color=blue)](https://img.badgesize.io/https://js.monitor.azure.com/scripts/b/ai.2.8.11.js.svg?label=full%20size&color=blue)| ![minified size size](https://img.badgesize.io/https://js.monitor.azure.com/scripts/b/ai.2.8.11.min.js.svg?label=minified%20size&color=darkorchid) | ![gzip size](https://img.badgesize.io/https://js.monitor.azure.com/scripts/b/ai.2.8.11.min.js.svg?compression=gzip&softmax=30000&max=35000) | 2.8.10: | [![full size size](https://img.badgesize.io/https://js.monitor.azure.com/scripts/b/ai.2.8.10.js.svg?label=full%20size&color=blue)](https://img.badgesize.io/https://js.monitor.azure.com/scripts/b/ai.2.8.10.js.svg?label=full%20size&color=blue)| ![minified size size](https://img.badgesize.io/https://js.monitor.azure.com/scripts/b/ai.2.8.10.min.js.svg?label=minified%20size&color=darkorchid) | ![gzip size](https://img.badgesize.io/https://js.monitor.azure.com/scripts/b/ai.2.8.10.min.js.svg?compression=gzip&softmax=30000&max=35000) diff --git a/AISKU/Tests/Perf/src/AISKUPerf.ts b/AISKU/Tests/Perf/src/AISKUPerf.ts index a32aa3e45..92321edcf 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.12"; + var defaultVer = "2.8.13"; 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 0da5946f7..81f4865d0 100644 --- a/AISKU/Tests/Unit/src/AISKUSize.Tests.ts +++ b/AISKU/Tests/Unit/src/AISKUSize.Tests.ts @@ -11,7 +11,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.12"; + private readonly currentVer = "2.8.13"; 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 4a839e59a..696b22481 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.12"; + private readonly currentVer = "2.8.13"; public testInitialize() { } diff --git a/AISKU/package.json b/AISKU/package.json index 2db243c0b..3b413973c 100644 --- a/AISKU/package.json +++ b/AISKU/package.json @@ -1,6 +1,6 @@ { "name": "@microsoft/applicationinsights-web", - "version": "2.8.12", + "version": "2.8.13", "description": "Microsoft Application Insights JavaScript SDK - Web", "homepage": "https://github.com/microsoft/ApplicationInsights-JS#readme", "author": "Microsoft Application Insights Team", @@ -69,12 +69,12 @@ "dependencies": { "@microsoft/dynamicproto-js": "^1.1.9", "@microsoft/applicationinsights-shims": "2.0.2", - "@microsoft/applicationinsights-analytics-js": "2.8.12", - "@microsoft/applicationinsights-channel-js": "2.8.12", - "@microsoft/applicationinsights-common": "2.8.12", - "@microsoft/applicationinsights-core-js": "2.8.12", - "@microsoft/applicationinsights-dependencies-js": "2.8.12", - "@microsoft/applicationinsights-properties-js": "2.8.12" + "@microsoft/applicationinsights-analytics-js": "2.8.13", + "@microsoft/applicationinsights-channel-js": "2.8.13", + "@microsoft/applicationinsights-common": "2.8.13", + "@microsoft/applicationinsights-core-js": "2.8.13", + "@microsoft/applicationinsights-dependencies-js": "2.8.13", + "@microsoft/applicationinsights-properties-js": "2.8.13" }, "license": "MIT" } diff --git a/AISKULight/package.json b/AISKULight/package.json index 264c801fd..0a9a2f95f 100644 --- a/AISKULight/package.json +++ b/AISKULight/package.json @@ -1,6 +1,6 @@ { "name": "@microsoft/applicationinsights-web-basic", - "version": "2.8.12", + "version": "2.8.13", "description": "Microsoft Application Insights Javascript SDK core and channel", "homepage": "https://github.com/microsoft/ApplicationInsights-JS#readme", "author": "Microsoft Application Insights Team", @@ -54,9 +54,9 @@ "dependencies": { "@microsoft/dynamicproto-js": "^1.1.9", "@microsoft/applicationinsights-shims": "2.0.2", - "@microsoft/applicationinsights-common": "2.8.12", - "@microsoft/applicationinsights-channel-js": "2.8.12", - "@microsoft/applicationinsights-core-js": "2.8.12" + "@microsoft/applicationinsights-common": "2.8.13", + "@microsoft/applicationinsights-channel-js": "2.8.13", + "@microsoft/applicationinsights-core-js": "2.8.13" }, "license": "MIT" } diff --git a/RELEASES.md b/RELEASES.md index f37d505b4..7edd64db3 100644 --- a/RELEASES.md +++ b/RELEASES.md @@ -2,7 +2,15 @@ > 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.12 (Apr, 11th, 2023) +## 2.8.13 (May 1st, 2023) + +### Changelog + +- #2052 [BUG] Typing issue with generated types causing Type X is not assignable to type Y +- #2055 Add ability to disable the pollInternalLogs via config and change to stop using setInterval +- #2049 [Master] Fix Perf Tests + +## 2.8.12 (Apr 11th, 2023) ### Changelog 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 8bb6810ec..4cb1d3ed8 100644 --- a/channels/applicationinsights-channel-js/Tests/Unit/src/Sender.tests.ts +++ b/channels/applicationinsights-channel-js/Tests/Unit/src/Sender.tests.ts @@ -812,7 +812,7 @@ export class SenderTests extends AITestClass { QUnit.assert.ok(baseData.ver); QUnit.assert.equal(2, baseData.ver); - QUnit.assert.equal("javascript:2.8.12", appInsightsEnvelope.tags["ai.internal.sdkVersion"]); + QUnit.assert.equal("javascript:2.8.13", appInsightsEnvelope.tags["ai.internal.sdkVersion"]); } }) diff --git a/channels/applicationinsights-channel-js/package.json b/channels/applicationinsights-channel-js/package.json index b3edbadea..a308fddce 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.12", + "version": "2.8.13", "description": "Microsoft Application Insights JavaScript SDK Channel", "homepage": "https://github.com/microsoft/ApplicationInsights-JS#readme", "author": "Microsoft Application Insights Team", @@ -51,8 +51,8 @@ "dependencies": { "@microsoft/dynamicproto-js": "^1.1.9", "@microsoft/applicationinsights-shims": "2.0.2", - "@microsoft/applicationinsights-core-js": "2.8.12", - "@microsoft/applicationinsights-common": "2.8.12" + "@microsoft/applicationinsights-core-js": "2.8.13", + "@microsoft/applicationinsights-common": "2.8.13" }, "license": "MIT" } diff --git a/common/config/rush/npm-shrinkwrap.json b/common/config/rush/npm-shrinkwrap.json index 7b22c4212..ac3643eda 100644 --- a/common/config/rush/npm-shrinkwrap.json +++ b/common/config/rush/npm-shrinkwrap.json @@ -187,9 +187,9 @@ } }, "node_modules/@eslint-community/regexpp": { - "version": "4.5.0", - "resolved": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.5.0.tgz", - "integrity": "sha512-vITaYzIcNmjn5tF5uxcZ/ft7/RXGrMUIS9HalWckEOF6ESiwXKoMzAQf2UW0aVd6rnOeExTJVd5hmWXucBKGXQ==", + "version": "4.5.1", + "resolved": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.5.1.tgz", + "integrity": "sha512-Z5ba73P98O1KUYCCJTUeVpja9RcGoMdncZ6T49FCUl2lN38JtCJ+3WgIDBv0AuY4WChU5PmtJmOCTlN6FZTFKQ==", "peer": true, "engines": { "node": "^12.0.0 || ^14.0.0 || >=16.0.0" @@ -219,9 +219,9 @@ } }, "node_modules/@eslint/js": { - "version": "8.38.0", - "resolved": "https://registry.npmjs.org/@eslint/js/-/js-8.38.0.tgz", - "integrity": "sha512-IoD2MfUnOV58ghIHCiil01PcohxjbYR/qCxsoC+xNgUwh1EY8jOOrYmu3d3a71+tJJ23uscEV4X2HJWMsPJu4g==", + "version": "8.39.0", + "resolved": "https://registry.npmjs.org/@eslint/js/-/js-8.39.0.tgz", + "integrity": "sha512-kf9RB0Fg7NZfap83B3QOqOGg9QmD9yBudqQXzzOtn3i4y7ZUXe5ONeW34Gwi+TxhH4mvj72R1Zc300KUMa9Bng==", "peer": true, "engines": { "node": "^12.22.0 || ^14.17.0 || >=16.0.0" @@ -261,14 +261,14 @@ "peer": true }, "node_modules/@microsoft/api-extractor": { - "version": "7.34.4", - "resolved": "https://registry.npmjs.org/@microsoft/api-extractor/-/api-extractor-7.34.4.tgz", - "integrity": "sha512-HOdcci2nT40ejhwPC3Xja9G+WSJmWhCUKKryRfQYsmE9cD+pxmBaKBKCbuS9jUcl6bLLb4Gz+h7xEN5r0QiXnQ==", + "version": "7.34.7", + "resolved": "https://registry.npmjs.org/@microsoft/api-extractor/-/api-extractor-7.34.7.tgz", + "integrity": "sha512-8CrrYyOBWqc4XFviR1KSuHSlmJjlnC5CVpPkcFB8HXiLABUVaVWFTsOzJIwUU6z8mc4BZPZ8tSGAg/mwFDU31Q==", "dependencies": { - "@microsoft/api-extractor-model": "7.26.4", + "@microsoft/api-extractor-model": "7.26.7", "@microsoft/tsdoc": "0.14.2", "@microsoft/tsdoc-config": "~0.16.1", - "@rushstack/node-core-library": "3.55.2", + "@rushstack/node-core-library": "3.58.0", "@rushstack/rig-package": "0.3.18", "@rushstack/ts-command-line": "4.13.2", "colors": "~1.2.1", @@ -283,13 +283,13 @@ } }, "node_modules/@microsoft/api-extractor-model": { - "version": "7.26.4", - "resolved": "https://registry.npmjs.org/@microsoft/api-extractor-model/-/api-extractor-model-7.26.4.tgz", - "integrity": "sha512-PDCgCzXDo+SLY5bsfl4bS7hxaeEtnXj7XtuzEE+BtALp7B5mK/NrS2kHWU69pohgsRmEALycQdaQPXoyT2i5MQ==", + "version": "7.26.7", + "resolved": "https://registry.npmjs.org/@microsoft/api-extractor-model/-/api-extractor-model-7.26.7.tgz", + "integrity": "sha512-rx3Tq632VG3ddR74kPuPbv1qmUgO2IuCvn1z16hbNWNS5RhnTQqNPWIm7NVoi6lCh2E7uxzfmdnWXIXiJhM5IQ==", "dependencies": { "@microsoft/tsdoc": "0.14.2", "@microsoft/tsdoc-config": "~0.16.1", - "@rushstack/node-core-library": "3.55.2" + "@rushstack/node-core-library": "3.58.0" } }, "node_modules/@microsoft/api-extractor/node_modules/typescript": { @@ -374,20 +374,20 @@ } }, "node_modules/@nevware21/ts-async": { - "version": "0.2.2", - "resolved": "https://registry.npmjs.org/@nevware21/ts-async/-/ts-async-0.2.2.tgz", - "integrity": "sha512-4knGlJ+sg427PIuYRdfehxjJ/AcxxOT83T1wdr8ImmVo6gJd379zjJVQwN07XeMhI83m/9UqxEAbwPFWC6dtRQ==", + "version": "0.2.4", + "resolved": "https://registry.npmjs.org/@nevware21/ts-async/-/ts-async-0.2.4.tgz", + "integrity": "sha512-MjzaXcVPNzJIr0x0QzxaVn7j6N0fVjOKELISLrnihFCkoRjXx3fl/7KB1yGk6wqJ/wXRMAw4IHLOi0Ml7ovdyA==", "dependencies": { - "@nevware21/ts-utils": ">= 0.9.3 < 2.x" + "@nevware21/ts-utils": ">= 0.9.5 < 2.x" }, "peerDependencies": { "typescript": ">=1" } }, "node_modules/@nevware21/ts-utils": { - "version": "0.9.4", - "resolved": "https://registry.npmjs.org/@nevware21/ts-utils/-/ts-utils-0.9.4.tgz", - "integrity": "sha512-dvU51sDoIdU3k0EBnODmdGya4xpU4vkK97OYIy+nviB613g3+GcErx8ceTGTjBJXjS7PUI1FR5mUOK40cyeqxg==", + "version": "0.9.5", + "resolved": "https://registry.npmjs.org/@nevware21/ts-utils/-/ts-utils-0.9.5.tgz", + "integrity": "sha512-hCUM1/HKLcHKWeTjX/ervVOp6eim+XEdFI3U7NUU+yec7XPQTxe4sDujPY5unlTQ2CHpxTewRo7mIyaRdMFlUw==", "peerDependencies": { "typescript": ">=1" } @@ -523,7 +523,7 @@ "node_modules/@rush-temp/applicationinsights-analytics-js": { "version": "0.0.0", "resolved": "file:projects/applicationinsights-analytics-js.tgz", - "integrity": "sha512-YpRsRLiX1NNIla//Jbghs5OwgB4vp4f7hj5aAAsMDnB5fElg/OuveObLaokgcXHN6DfvQg5+CyQe8gShqE0PFA==", + "integrity": "sha512-QoC1KNjNxqNXld/OSkREVhu3nHYW6iJH1PGJX02NX5Kptmn6ySD5Kbjnh5e0WEtFKHBgMH7uLgSF22GDODPpPA==", "dependencies": { "@microsoft/api-extractor": "^7.18.1", "@microsoft/dynamicproto-js": "^1.1.9", @@ -549,7 +549,7 @@ "node_modules/@rush-temp/applicationinsights-channel-js": { "version": "0.0.0", "resolved": "file:projects/applicationinsights-channel-js.tgz", - "integrity": "sha512-STa6qYPoce+OoBLoGQJIX7cIsJVCwk3BRh6aUVX79B6ujaLauvqfbJXyqp4jSU4MH2w9emGiI7jMSZh59haJOg==", + "integrity": "sha512-K92pQ56HFJmESbCH/K4GR5K3vkvLAk5Cb7PXJl0eJn6BanH2fPf0EfrREIkeDeLIzWFsAgR1uktO5CoBxh14/w==", "dependencies": { "@microsoft/api-extractor": "^7.18.1", "@microsoft/dynamicproto-js": "^1.1.9", @@ -573,7 +573,7 @@ "node_modules/@rush-temp/applicationinsights-chrome-debug-extension": { "version": "0.0.0", "resolved": "file:projects/applicationinsights-chrome-debug-extension.tgz", - "integrity": "sha512-7UveZM+bjcsBtvO2S+V6H96AlRaZJx9B209LyVjJM7Cky6aAbHADydZFdY6SU6HOqkTNYn5p2wy/V72VedLvwQ==", + "integrity": "sha512-JGTnac7LgdTayYTV3IZGEd6plMwoLUrxaXDFJeOdZt9Bt19VnDbI4PsPMDd0fnl0yfvORe0KsmpQFda74arsiw==", "dependencies": { "@microsoft/dynamicproto-js": "^1.1.9", "@nevware21/grunt-eslint-ts": "^0.2.2", @@ -606,7 +606,7 @@ "node_modules/@rush-temp/applicationinsights-clickanalytics-js": { "version": "0.0.0", "resolved": "file:projects/applicationinsights-clickanalytics-js.tgz", - "integrity": "sha512-fMRBgw2eKRmK9RUxyI3FXNdP2hP62B9XKhqHcZkHFSxzejOI009yRwXmVGwwN6S1O53Ju/kRsG6kdDF2Aj6ADA==", + "integrity": "sha512-8cgWra2MGkaCayJS04gav/kdWBiG2QcvLN5rGp2hxgNkNxBLq5L6gJZH4jtBb/xkMUmzWnExc0XY8HPHDU1ZyQ==", "dependencies": { "@microsoft/api-extractor": "^7.18.1", "@microsoft/dynamicproto-js": "^1.1.9", @@ -629,7 +629,7 @@ "node_modules/@rush-temp/applicationinsights-common": { "version": "0.0.0", "resolved": "file:projects/applicationinsights-common.tgz", - "integrity": "sha512-Go0JWHlaEWREkU4qmQoameYcTd2SE+yqQuAWSzlMWwlyQ+Kjm4VbJ6Vrq9synb5D+WY9SaqPKjKd/qVgZyOvJw==", + "integrity": "sha512-kZqYpv8gkjI5dYY21rycvLU5QIFwft94AlUGj6E7YEV8G9EYxk9L2K66+JwxHZ2tXNDQKoWr1RKPjwJlo+EMpQ==", "dependencies": { "@microsoft/api-extractor": "^7.18.1", "@microsoft/dynamicproto-js": "^1.1.9", @@ -679,7 +679,7 @@ "node_modules/@rush-temp/applicationinsights-debugplugin-js": { "version": "0.0.0", "resolved": "file:projects/applicationinsights-debugplugin-js.tgz", - "integrity": "sha512-L7dWRdkyVttaJCB1M8DI/HPv4rDdvzcYabFFKLJqE4pnvbleGlBD1eoazYvf6XSneJydenUYv+OTOpSZ+M82ew==", + "integrity": "sha512-nhNtRBGXrUwFByDkFAuOEZ0tp+RAbWeBFxb+z3J70YawbARczxCM/ovVE3r0bLMbIU95gBcV1DnfzSa01eTFTA==", "dependencies": { "@microsoft/api-extractor": "^7.18.1", "@microsoft/dynamicproto-js": "^1.1.9", @@ -702,7 +702,7 @@ "node_modules/@rush-temp/applicationinsights-dependencies-js": { "version": "0.0.0", "resolved": "file:projects/applicationinsights-dependencies-js.tgz", - "integrity": "sha512-ZUMzQEWsSO23w3L6I7O21C3EDkGmXOExNeET9TKor3T7yB9IkrRh1iKaYsjIXp4IpEgln9QL20d/2ij5p/NfwQ==", + "integrity": "sha512-tClCx1l49+pD94pePdKJICFQgFvmDWqOzOOFlDjndshiWTqcyIXTP/ZjTF8QVoMV6c6ccv10uOaZYjiAQ3508A==", "dependencies": { "@microsoft/api-extractor": "^7.18.1", "@microsoft/dynamicproto-js": "^1.1.9", @@ -728,7 +728,7 @@ "node_modules/@rush-temp/applicationinsights-example-aisku": { "version": "0.0.0", "resolved": "file:projects/applicationinsights-example-aisku.tgz", - "integrity": "sha512-wbOkq1Ta0edhE4tDG+oReenCbGuxTCWkrippQPTHiezbJxY1aI53ZLmFkrmUiARhiLJSY2oQ1JUE5EtLENolyA==", + "integrity": "sha512-2PixRkaUJdUvlUKks/Uw5B7WXqUV1LAQRRpuoB/8mDJT43yUBqbeYjm+/3ox+IpwgzadoyyRCaQYeEvkZG4SwA==", "dependencies": { "@microsoft/dynamicproto-js": "^1.1.9", "@rollup/plugin-commonjs": "^18.0.0", @@ -745,7 +745,7 @@ "node_modules/@rush-temp/applicationinsights-example-dependencies": { "version": "0.0.0", "resolved": "file:projects/applicationinsights-example-dependencies.tgz", - "integrity": "sha512-p1ay5OCbhgFIfPdrOreL3l0+PrYY+8zhF6PXdjxbjomq1UiUsBL8Nkhf2eThVkd9EfqtQ33AQqV7i6t6kBq7uw==", + "integrity": "sha512-jqCjDcdDUEDCtKgQQ4wfhhOLRFmQo16NbuZ7HD+gvF0y2y5GcCcx6qduUm3bIYzHC2zL+dkcm6q8khx8XpfsIg==", "dependencies": { "@microsoft/dynamicproto-js": "^1.1.9", "@rollup/plugin-commonjs": "^18.0.0", @@ -762,7 +762,7 @@ "node_modules/@rush-temp/applicationinsights-example-shared-worker": { "version": "0.0.0", "resolved": "file:projects/applicationinsights-example-shared-worker.tgz", - "integrity": "sha512-WcVUnXZyyEbahS651waozAv7nmTOMnCMQKfgZ1f83CKABmVvaPh7UEKME5w0+Be/lDUavJwMGsbBxABz95/fJg==", + "integrity": "sha512-jzQCkAfFHjh+V2fIGkEynz82jUCbShiie6y4IeXJcojAtXAw8LQU64eFroj6CTkXhR+hxrTVieju0S7pm9W6Gw==", "dependencies": { "@microsoft/applicationinsights-web-snippet": "1.0.1", "@microsoft/dynamicproto-js": "^1.1.9", @@ -798,7 +798,7 @@ "node_modules/@rush-temp/applicationinsights-perfmarkmeasure-js": { "version": "0.0.0", "resolved": "file:projects/applicationinsights-perfmarkmeasure-js.tgz", - "integrity": "sha512-DWw37JM9ADB8YC6jRzRdZFnjeaKzAI+gAVmaKraANuMSkYKs4GW6blHKjAA3itN/HuB2aY95W50zMmwrOWLORg==", + "integrity": "sha512-sEznu2CGNwimB4E0NxNP4xGFFpzaLcmTgUdZdYwStO6OX8uRzL+rGzBr2k64thuYq3F7LCOAR3EM9+Q5mqShsg==", "dependencies": { "@microsoft/api-extractor": "^7.18.1", "@microsoft/dynamicproto-js": "^1.1.9", @@ -821,7 +821,7 @@ "node_modules/@rush-temp/applicationinsights-properties-js": { "version": "0.0.0", "resolved": "file:projects/applicationinsights-properties-js.tgz", - "integrity": "sha512-a6pe72ZPhcQ7EkoJ3zEIloYM7j3OLqqBHXmIvR9rbvk/T46KIIyp8+CJlKhN/O4dCOCfPyDDlv9Lo3loln5sAA==", + "integrity": "sha512-Sd45bdHVXUye7/5pI0DH269CAbQIf0LROSKK0+wjpBAkC2ZyjhN1ZoFSxaov6cqzPQby59GJorI/JenCQ5RESw==", "dependencies": { "@microsoft/api-extractor": "^7.18.1", "@microsoft/dynamicproto-js": "^1.1.9", @@ -908,7 +908,7 @@ "node_modules/@rush-temp/applicationinsights-web": { "version": "0.0.0", "resolved": "file:projects/applicationinsights-web.tgz", - "integrity": "sha512-MoP4ep9XUFBhiI9z5qO4Dyp6TA85ZDtcJBtUhN0zQ/DDXP7iBYocHnaE9Z9cgqZTv42gKKmMA+LcV98f9+pChA==", + "integrity": "sha512-PKp3M3FyjOWsbAMGQx4pdKUYANQWlhyhRO7jYiH8K32ymbGu5Idia3Tu8qZX9/3iFZrfILzIuh8vxa05qtiPSA==", "dependencies": { "@microsoft/api-extractor": "^7.18.1", "@microsoft/dynamicproto-js": "^1.1.9", @@ -936,7 +936,7 @@ "node_modules/@rush-temp/applicationinsights-web-basic": { "version": "0.0.0", "resolved": "file:projects/applicationinsights-web-basic.tgz", - "integrity": "sha512-7F0nhdhSy/eE5I812G3YjDJyrdU3cvlDrJ4GnZx68GHFhCgwl9EzS2gL5yeqdknAJEl4ucpex3y54y6/C64p+Q==", + "integrity": "sha512-ZLvUdzdfHZPGDLRFjJXdMXGg8fS/fqjl8uLdt8dcnfM88k7CIz4V6whrj6H81s8QogGrMue1s9x3npg7oWqa4w==", "dependencies": { "@microsoft/api-extractor": "^7.18.1", "@microsoft/dynamicproto-js": "^1.1.9", @@ -984,9 +984,9 @@ } }, "node_modules/@rushstack/node-core-library": { - "version": "3.55.2", - "resolved": "https://registry.npmjs.org/@rushstack/node-core-library/-/node-core-library-3.55.2.tgz", - "integrity": "sha512-SaLe/x/Q/uBVdNFK5V1xXvsVps0y7h1sN7aSJllQyFbugyOaxhNRF25bwEDnicARNEjJw0pk0lYnJQ9Kr6ev0A==", + "version": "3.58.0", + "resolved": "https://registry.npmjs.org/@rushstack/node-core-library/-/node-core-library-3.58.0.tgz", + "integrity": "sha512-DHAZ3LTOEq2/EGURznpTJDnB3SNE2CKMDXuviQ6afhru6RykE3QoqXkeyjbpLb5ib5cpIRCPE/wykNe0xmQj3w==", "dependencies": { "colors": "~1.2.1", "fs-extra": "~7.0.1", @@ -1189,9 +1189,9 @@ "integrity": "sha512-JCB8C6SnDoQf0cNycqd/35A7MjcnK+ZTqE7judS6o7utxUCg6imJg3QK2qzHKszlTjcj2cn+NwMB2i96ubpj7w==" }, "node_modules/@types/qunit": { - "version": "2.19.4", - "resolved": "https://registry.npmjs.org/@types/qunit/-/qunit-2.19.4.tgz", - "integrity": "sha512-EocRiD2JRWrOaA0dnyyLX083DIo1p3OSBBiGODcHaMzOFhteXtvRRp0kKsiYYqynnBSMqnqRI92iE32axdoXZw==" + "version": "2.19.5", + "resolved": "https://registry.npmjs.org/@types/qunit/-/qunit-2.19.5.tgz", + "integrity": "sha512-NvyN1m6nKlRpAXETsTdqzEfW6C+5xbIqrXxQbnm8PmfxM7Ixi73KPoHgXCLJZHw8fd9pvCm3gVeX3nBYRuZLYQ==" }, "node_modules/@types/react": { "version": "16.14.40", @@ -1204,9 +1204,9 @@ } }, "node_modules/@types/react-dom": { - "version": "16.9.18", - "resolved": "https://registry.npmjs.org/@types/react-dom/-/react-dom-16.9.18.tgz", - "integrity": "sha512-lmNARUX3+rNF/nmoAFqasG0jAA7q6MeGZK/fdeLwY3kAA4NPgHHrG5bNQe2B5xmD4B+x6Z6h0rEJQ7MEEgQxsw==", + "version": "16.9.19", + "resolved": "https://registry.npmjs.org/@types/react-dom/-/react-dom-16.9.19.tgz", + "integrity": "sha512-xC8D280Bf6p0zguJ8g62jcEOKZiUbx9sIe6O3tT/lKfR87A7A6g65q13z6D5QUMIa/6yFPkNhqjF5z/VVZEYqQ==", "dependencies": { "@types/react": "^16" } @@ -1253,15 +1253,15 @@ } }, "node_modules/@typescript-eslint/eslint-plugin": { - "version": "5.59.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.59.0.tgz", - "integrity": "sha512-p0QgrEyrxAWBecR56gyn3wkG15TJdI//eetInP3zYRewDh0XS+DhB3VUAd3QqvziFsfaQIoIuZMxZRB7vXYaYw==", + "version": "5.59.2", + "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.59.2.tgz", + "integrity": "sha512-yVrXupeHjRxLDcPKL10sGQ/QlVrA8J5IYOEWVqk0lJaSZP7X5DfnP7Ns3cc74/blmbipQ1htFNVGsHX6wsYm0A==", "peer": true, "dependencies": { "@eslint-community/regexpp": "^4.4.0", - "@typescript-eslint/scope-manager": "5.59.0", - "@typescript-eslint/type-utils": "5.59.0", - "@typescript-eslint/utils": "5.59.0", + "@typescript-eslint/scope-manager": "5.59.2", + "@typescript-eslint/type-utils": "5.59.2", + "@typescript-eslint/utils": "5.59.2", "debug": "^4.3.4", "grapheme-splitter": "^1.0.4", "ignore": "^5.2.0", @@ -1287,14 +1287,14 @@ } }, "node_modules/@typescript-eslint/parser": { - "version": "5.59.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-5.59.0.tgz", - "integrity": "sha512-qK9TZ70eJtjojSUMrrEwA9ZDQ4N0e/AuoOIgXuNBorXYcBDk397D2r5MIe1B3cok/oCtdNC5j+lUUpVB+Dpb+w==", + "version": "5.59.2", + "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-5.59.2.tgz", + "integrity": "sha512-uq0sKyw6ao1iFOZZGk9F8Nro/8+gfB5ezl1cA06SrqbgJAt0SRoFhb9pXaHvkrxUpZaoLxt8KlovHNk8Gp6/HQ==", "peer": true, "dependencies": { - "@typescript-eslint/scope-manager": "5.59.0", - "@typescript-eslint/types": "5.59.0", - "@typescript-eslint/typescript-estree": "5.59.0", + "@typescript-eslint/scope-manager": "5.59.2", + "@typescript-eslint/types": "5.59.2", + "@typescript-eslint/typescript-estree": "5.59.2", "debug": "^4.3.4" }, "engines": { @@ -1314,13 +1314,13 @@ } }, "node_modules/@typescript-eslint/scope-manager": { - "version": "5.59.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-5.59.0.tgz", - "integrity": "sha512-tsoldKaMh7izN6BvkK6zRMINj4Z2d6gGhO2UsI8zGZY3XhLq1DndP3Ycjhi1JwdwPRwtLMW4EFPgpuKhbCGOvQ==", + "version": "5.59.2", + "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-5.59.2.tgz", + "integrity": "sha512-dB1v7ROySwQWKqQ8rEWcdbTsFjh2G0vn8KUyvTXdPoyzSL6lLGkiXEV5CvpJsEe9xIdKV+8Zqb7wif2issoOFA==", "peer": true, "dependencies": { - "@typescript-eslint/types": "5.59.0", - "@typescript-eslint/visitor-keys": "5.59.0" + "@typescript-eslint/types": "5.59.2", + "@typescript-eslint/visitor-keys": "5.59.2" }, "engines": { "node": "^12.22.0 || ^14.17.0 || >=16.0.0" @@ -1331,13 +1331,13 @@ } }, "node_modules/@typescript-eslint/type-utils": { - "version": "5.59.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-5.59.0.tgz", - "integrity": "sha512-d/B6VSWnZwu70kcKQSCqjcXpVH+7ABKH8P1KNn4K7j5PXXuycZTPXF44Nui0TEm6rbWGi8kc78xRgOC4n7xFgA==", + "version": "5.59.2", + "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-5.59.2.tgz", + "integrity": "sha512-b1LS2phBOsEy/T381bxkkywfQXkV1dWda/z0PhnIy3bC5+rQWQDS7fk9CSpcXBccPY27Z6vBEuaPBCKCgYezyQ==", "peer": true, "dependencies": { - "@typescript-eslint/typescript-estree": "5.59.0", - "@typescript-eslint/utils": "5.59.0", + "@typescript-eslint/typescript-estree": "5.59.2", + "@typescript-eslint/utils": "5.59.2", "debug": "^4.3.4", "tsutils": "^3.21.0" }, @@ -1358,9 +1358,9 @@ } }, "node_modules/@typescript-eslint/types": { - "version": "5.59.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.59.0.tgz", - "integrity": "sha512-yR2h1NotF23xFFYKHZs17QJnB51J/s+ud4PYU4MqdZbzeNxpgUr05+dNeCN/bb6raslHvGdd6BFCkVhpPk/ZeA==", + "version": "5.59.2", + "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.59.2.tgz", + "integrity": "sha512-LbJ/HqoVs2XTGq5shkiKaNTuVv5tTejdHgfdjqRUGdYhjW1crm/M7og2jhVskMt8/4wS3T1+PfFvL1K3wqYj4w==", "peer": true, "engines": { "node": "^12.22.0 || ^14.17.0 || >=16.0.0" @@ -1371,13 +1371,13 @@ } }, "node_modules/@typescript-eslint/typescript-estree": { - "version": "5.59.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.59.0.tgz", - "integrity": "sha512-sUNnktjmI8DyGzPdZ8dRwW741zopGxltGs/SAPgGL/AAgDpiLsCFLcMNSpbfXfmnNeHmK9h3wGmCkGRGAoUZAg==", + "version": "5.59.2", + "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.59.2.tgz", + "integrity": "sha512-+j4SmbwVmZsQ9jEyBMgpuBD0rKwi9RxRpjX71Brr73RsYnEr3Lt5QZ624Bxphp8HUkSKfqGnPJp1kA5nl0Sh7Q==", "peer": true, "dependencies": { - "@typescript-eslint/types": "5.59.0", - "@typescript-eslint/visitor-keys": "5.59.0", + "@typescript-eslint/types": "5.59.2", + "@typescript-eslint/visitor-keys": "5.59.2", "debug": "^4.3.4", "globby": "^11.1.0", "is-glob": "^4.0.3", @@ -1398,17 +1398,17 @@ } }, "node_modules/@typescript-eslint/utils": { - "version": "5.59.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-5.59.0.tgz", - "integrity": "sha512-GGLFd+86drlHSvPgN/el6dRQNYYGOvRSDVydsUaQluwIW3HvbXuxyuD5JETvBt/9qGYe+lOrDk6gRrWOHb/FvA==", + "version": "5.59.2", + "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-5.59.2.tgz", + "integrity": "sha512-kSuF6/77TZzyGPhGO4uVp+f0SBoYxCDf+lW3GKhtKru/L8k/Hd7NFQxyWUeY7Z/KGB2C6Fe3yf2vVi4V9TsCSQ==", "peer": true, "dependencies": { "@eslint-community/eslint-utils": "^4.2.0", "@types/json-schema": "^7.0.9", "@types/semver": "^7.3.12", - "@typescript-eslint/scope-manager": "5.59.0", - "@typescript-eslint/types": "5.59.0", - "@typescript-eslint/typescript-estree": "5.59.0", + "@typescript-eslint/scope-manager": "5.59.2", + "@typescript-eslint/types": "5.59.2", + "@typescript-eslint/typescript-estree": "5.59.2", "eslint-scope": "^5.1.1", "semver": "^7.3.7" }, @@ -1424,12 +1424,12 @@ } }, "node_modules/@typescript-eslint/visitor-keys": { - "version": "5.59.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.59.0.tgz", - "integrity": "sha512-qZ3iXxQhanchCeaExlKPV3gDQFxMUmU35xfd5eCXB6+kUw1TUAbIy2n7QIrwz9s98DQLzNWyHp61fY0da4ZcbA==", + "version": "5.59.2", + "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.59.2.tgz", + "integrity": "sha512-EEpsO8m3RASrKAHI9jpavNv9NlEUebV4qmF1OWxSTtKSFBpC1NCmWazDQHFivRf0O1DV11BA645yrLEVQ0/Lig==", "peer": true, "dependencies": { - "@typescript-eslint/types": "5.59.0", + "@typescript-eslint/types": "5.59.2", "eslint-visitor-keys": "^3.3.0" }, "engines": { @@ -1818,9 +1818,9 @@ } }, "node_modules/caniuse-lite": { - "version": "1.0.30001480", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001480.tgz", - "integrity": "sha512-q7cpoPPvZYgtyC4VaBSN0Bt+PJ4c4EYRf0DrduInOz2SkFpHD5p3LnvEpqBp7UnJn+8x1Ogl1s38saUxe+ihQQ==", + "version": "1.0.30001481", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001481.tgz", + "integrity": "sha512-KCqHwRnaa1InZBtqXzP98LPg0ajCVujMKjqKDhZEthIpAsJl/YEIa3YvXjGXPVqzZVguccuu7ga9KOE1J9rKPQ==", "funding": [ { "type": "opencollective", @@ -2180,9 +2180,9 @@ "integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==" }, "node_modules/electron-to-chromium": { - "version": "1.4.367", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.367.tgz", - "integrity": "sha512-mNuDxb+HpLhPGUKrg0hSxbTjHWw8EziwkwlJNkFUj3W60ypigLDRVz04vU+VRsJPi8Gub+FDhYUpuTm9xiEwRQ==" + "version": "1.4.378", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.378.tgz", + "integrity": "sha512-RfCD26kGStl6+XalfX3DGgt3z2DNwJS5DKRHCpkPq5T/PqpZMPB1moSRXuK9xhkt/sF57LlpzJgNoYl7mO7Z6w==" }, "node_modules/encodeurl": { "version": "1.0.2", @@ -2226,15 +2226,15 @@ } }, "node_modules/eslint": { - "version": "8.38.0", - "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.38.0.tgz", - "integrity": "sha512-pIdsD2jwlUGf/U38Jv97t8lq6HpaU/G9NKbYmpWpZGw3LdTNhZLbJePqxOXGB5+JEKfOPU/XLxYxFh03nr1KTg==", + "version": "8.39.0", + "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.39.0.tgz", + "integrity": "sha512-mwiok6cy7KTW7rBpo05k6+p4YVZByLNjAZ/ACB9DRCu4YDRwjXI01tWHp6KAUWelsBetTxKK/2sHB0vdS8Z2Og==", "peer": true, "dependencies": { "@eslint-community/eslint-utils": "^4.2.0", "@eslint-community/regexpp": "^4.4.0", "@eslint/eslintrc": "^2.0.2", - "@eslint/js": "8.38.0", + "@eslint/js": "8.39.0", "@humanwhocodes/config-array": "^0.11.8", "@humanwhocodes/module-importer": "^1.0.1", "@nodelib/fs.walk": "^1.2.8", @@ -2244,7 +2244,7 @@ "debug": "^4.3.2", "doctrine": "^3.0.0", "escape-string-regexp": "^4.0.0", - "eslint-scope": "^7.1.1", + "eslint-scope": "^7.2.0", "eslint-visitor-keys": "^3.4.0", "espree": "^9.5.1", "esquery": "^1.4.2", @@ -4558,9 +4558,9 @@ } }, "node_modules/regexp-tree": { - "version": "0.1.25", - "resolved": "https://registry.npmjs.org/regexp-tree/-/regexp-tree-0.1.25.tgz", - "integrity": "sha512-szcL3aqw+vEeuxhL1AMYRyeMP+goYF5I/guaH10uJX5xbGyeQeNPPneaj3ZWVmGLCDxrVaaYekkr5R12gk4dJw==", + "version": "0.1.27", + "resolved": "https://registry.npmjs.org/regexp-tree/-/regexp-tree-0.1.27.tgz", + "integrity": "sha512-iETxpjK6YoRWJG5o6hXLwvjYAoW+FEZn9os0PD/b6AP6xQwsa/Y7lCVgIixBbUPMfhu+i2LtdeAqVTgGlQarfA==", "peer": true, "bin": { "regexp-tree": "bin/regexp-tree" @@ -5000,9 +5000,9 @@ } }, "node_modules/string-argv": { - "version": "0.3.1", - "resolved": "https://registry.npmjs.org/string-argv/-/string-argv-0.3.1.tgz", - "integrity": "sha512-a1uQGz7IyVy9YwhqjZIZu1c8JO8dNIe20xBmSS6qu9kv++k3JGzCVmprbNN5Kn+BgzD5E7YYwg1CcjuJMRNsvg==", + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/string-argv/-/string-argv-0.3.2.tgz", + "integrity": "sha512-aqD2Q0144Z+/RqG52NeHEkZauTAUWJO8c6yTftGJKO3Tja5tUgIfmIl6kExvhtxSDP7fXB6DvzkfMpCd/F3G+Q==", "engines": { "node": ">=0.6.19" } @@ -5588,9 +5588,9 @@ } }, "@eslint-community/regexpp": { - "version": "4.5.0", - "resolved": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.5.0.tgz", - "integrity": "sha512-vITaYzIcNmjn5tF5uxcZ/ft7/RXGrMUIS9HalWckEOF6ESiwXKoMzAQf2UW0aVd6rnOeExTJVd5hmWXucBKGXQ==", + "version": "4.5.1", + "resolved": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.5.1.tgz", + "integrity": "sha512-Z5ba73P98O1KUYCCJTUeVpja9RcGoMdncZ6T49FCUl2lN38JtCJ+3WgIDBv0AuY4WChU5PmtJmOCTlN6FZTFKQ==", "peer": true }, "@eslint/eslintrc": { @@ -5611,9 +5611,9 @@ } }, "@eslint/js": { - "version": "8.38.0", - "resolved": "https://registry.npmjs.org/@eslint/js/-/js-8.38.0.tgz", - "integrity": "sha512-IoD2MfUnOV58ghIHCiil01PcohxjbYR/qCxsoC+xNgUwh1EY8jOOrYmu3d3a71+tJJ23uscEV4X2HJWMsPJu4g==", + "version": "8.39.0", + "resolved": "https://registry.npmjs.org/@eslint/js/-/js-8.39.0.tgz", + "integrity": "sha512-kf9RB0Fg7NZfap83B3QOqOGg9QmD9yBudqQXzzOtn3i4y7ZUXe5ONeW34Gwi+TxhH4mvj72R1Zc300KUMa9Bng==", "peer": true }, "@humanwhocodes/config-array": { @@ -5640,14 +5640,14 @@ "peer": true }, "@microsoft/api-extractor": { - "version": "7.34.4", - "resolved": "https://registry.npmjs.org/@microsoft/api-extractor/-/api-extractor-7.34.4.tgz", - "integrity": "sha512-HOdcci2nT40ejhwPC3Xja9G+WSJmWhCUKKryRfQYsmE9cD+pxmBaKBKCbuS9jUcl6bLLb4Gz+h7xEN5r0QiXnQ==", + "version": "7.34.7", + "resolved": "https://registry.npmjs.org/@microsoft/api-extractor/-/api-extractor-7.34.7.tgz", + "integrity": "sha512-8CrrYyOBWqc4XFviR1KSuHSlmJjlnC5CVpPkcFB8HXiLABUVaVWFTsOzJIwUU6z8mc4BZPZ8tSGAg/mwFDU31Q==", "requires": { - "@microsoft/api-extractor-model": "7.26.4", + "@microsoft/api-extractor-model": "7.26.7", "@microsoft/tsdoc": "0.14.2", "@microsoft/tsdoc-config": "~0.16.1", - "@rushstack/node-core-library": "3.55.2", + "@rushstack/node-core-library": "3.58.0", "@rushstack/rig-package": "0.3.18", "@rushstack/ts-command-line": "4.13.2", "colors": "~1.2.1", @@ -5666,13 +5666,13 @@ } }, "@microsoft/api-extractor-model": { - "version": "7.26.4", - "resolved": "https://registry.npmjs.org/@microsoft/api-extractor-model/-/api-extractor-model-7.26.4.tgz", - "integrity": "sha512-PDCgCzXDo+SLY5bsfl4bS7hxaeEtnXj7XtuzEE+BtALp7B5mK/NrS2kHWU69pohgsRmEALycQdaQPXoyT2i5MQ==", + "version": "7.26.7", + "resolved": "https://registry.npmjs.org/@microsoft/api-extractor-model/-/api-extractor-model-7.26.7.tgz", + "integrity": "sha512-rx3Tq632VG3ddR74kPuPbv1qmUgO2IuCvn1z16hbNWNS5RhnTQqNPWIm7NVoi6lCh2E7uxzfmdnWXIXiJhM5IQ==", "requires": { "@microsoft/tsdoc": "0.14.2", "@microsoft/tsdoc-config": "~0.16.1", - "@rushstack/node-core-library": "3.55.2" + "@rushstack/node-core-library": "3.58.0" } }, "@microsoft/applicationinsights-web-snippet": { @@ -5727,17 +5727,17 @@ "requires": {} }, "@nevware21/ts-async": { - "version": "0.2.2", - "resolved": "https://registry.npmjs.org/@nevware21/ts-async/-/ts-async-0.2.2.tgz", - "integrity": "sha512-4knGlJ+sg427PIuYRdfehxjJ/AcxxOT83T1wdr8ImmVo6gJd379zjJVQwN07XeMhI83m/9UqxEAbwPFWC6dtRQ==", + "version": "0.2.4", + "resolved": "https://registry.npmjs.org/@nevware21/ts-async/-/ts-async-0.2.4.tgz", + "integrity": "sha512-MjzaXcVPNzJIr0x0QzxaVn7j6N0fVjOKELISLrnihFCkoRjXx3fl/7KB1yGk6wqJ/wXRMAw4IHLOi0Ml7ovdyA==", "requires": { - "@nevware21/ts-utils": ">= 0.9.3 < 2.x" + "@nevware21/ts-utils": ">= 0.9.5 < 2.x" } }, "@nevware21/ts-utils": { - "version": "0.9.4", - "resolved": "https://registry.npmjs.org/@nevware21/ts-utils/-/ts-utils-0.9.4.tgz", - "integrity": "sha512-dvU51sDoIdU3k0EBnODmdGya4xpU4vkK97OYIy+nviB613g3+GcErx8ceTGTjBJXjS7PUI1FR5mUOK40cyeqxg==", + "version": "0.9.5", + "resolved": "https://registry.npmjs.org/@nevware21/ts-utils/-/ts-utils-0.9.5.tgz", + "integrity": "sha512-hCUM1/HKLcHKWeTjX/ervVOp6eim+XEdFI3U7NUU+yec7XPQTxe4sDujPY5unlTQ2CHpxTewRo7mIyaRdMFlUw==", "requires": {} }, "@nodelib/fs.scandir": { @@ -5841,7 +5841,7 @@ }, "@rush-temp/applicationinsights-analytics-js": { "version": "file:projects\\applicationinsights-analytics-js.tgz", - "integrity": "sha512-YpRsRLiX1NNIla//Jbghs5OwgB4vp4f7hj5aAAsMDnB5fElg/OuveObLaokgcXHN6DfvQg5+CyQe8gShqE0PFA==", + "integrity": "sha512-QoC1KNjNxqNXld/OSkREVhu3nHYW6iJH1PGJX02NX5Kptmn6ySD5Kbjnh5e0WEtFKHBgMH7uLgSF22GDODPpPA==", "requires": { "@microsoft/api-extractor": "^7.18.1", "@microsoft/dynamicproto-js": "^1.1.9", @@ -5866,7 +5866,7 @@ }, "@rush-temp/applicationinsights-channel-js": { "version": "file:projects\\applicationinsights-channel-js.tgz", - "integrity": "sha512-STa6qYPoce+OoBLoGQJIX7cIsJVCwk3BRh6aUVX79B6ujaLauvqfbJXyqp4jSU4MH2w9emGiI7jMSZh59haJOg==", + "integrity": "sha512-K92pQ56HFJmESbCH/K4GR5K3vkvLAk5Cb7PXJl0eJn6BanH2fPf0EfrREIkeDeLIzWFsAgR1uktO5CoBxh14/w==", "requires": { "@microsoft/api-extractor": "^7.18.1", "@microsoft/dynamicproto-js": "^1.1.9", @@ -5889,7 +5889,7 @@ }, "@rush-temp/applicationinsights-chrome-debug-extension": { "version": "file:projects\\applicationinsights-chrome-debug-extension.tgz", - "integrity": "sha512-7UveZM+bjcsBtvO2S+V6H96AlRaZJx9B209LyVjJM7Cky6aAbHADydZFdY6SU6HOqkTNYn5p2wy/V72VedLvwQ==", + "integrity": "sha512-JGTnac7LgdTayYTV3IZGEd6plMwoLUrxaXDFJeOdZt9Bt19VnDbI4PsPMDd0fnl0yfvORe0KsmpQFda74arsiw==", "requires": { "@microsoft/dynamicproto-js": "^1.1.9", "@nevware21/grunt-eslint-ts": "^0.2.2", @@ -5921,7 +5921,7 @@ }, "@rush-temp/applicationinsights-clickanalytics-js": { "version": "file:projects\\applicationinsights-clickanalytics-js.tgz", - "integrity": "sha512-fMRBgw2eKRmK9RUxyI3FXNdP2hP62B9XKhqHcZkHFSxzejOI009yRwXmVGwwN6S1O53Ju/kRsG6kdDF2Aj6ADA==", + "integrity": "sha512-8cgWra2MGkaCayJS04gav/kdWBiG2QcvLN5rGp2hxgNkNxBLq5L6gJZH4jtBb/xkMUmzWnExc0XY8HPHDU1ZyQ==", "requires": { "@microsoft/api-extractor": "^7.18.1", "@microsoft/dynamicproto-js": "^1.1.9", @@ -5943,7 +5943,7 @@ }, "@rush-temp/applicationinsights-common": { "version": "file:projects\\applicationinsights-common.tgz", - "integrity": "sha512-Go0JWHlaEWREkU4qmQoameYcTd2SE+yqQuAWSzlMWwlyQ+Kjm4VbJ6Vrq9synb5D+WY9SaqPKjKd/qVgZyOvJw==", + "integrity": "sha512-kZqYpv8gkjI5dYY21rycvLU5QIFwft94AlUGj6E7YEV8G9EYxk9L2K66+JwxHZ2tXNDQKoWr1RKPjwJlo+EMpQ==", "requires": { "@microsoft/api-extractor": "^7.18.1", "@microsoft/dynamicproto-js": "^1.1.9", @@ -5991,7 +5991,7 @@ }, "@rush-temp/applicationinsights-debugplugin-js": { "version": "file:projects\\applicationinsights-debugplugin-js.tgz", - "integrity": "sha512-L7dWRdkyVttaJCB1M8DI/HPv4rDdvzcYabFFKLJqE4pnvbleGlBD1eoazYvf6XSneJydenUYv+OTOpSZ+M82ew==", + "integrity": "sha512-nhNtRBGXrUwFByDkFAuOEZ0tp+RAbWeBFxb+z3J70YawbARczxCM/ovVE3r0bLMbIU95gBcV1DnfzSa01eTFTA==", "requires": { "@microsoft/api-extractor": "^7.18.1", "@microsoft/dynamicproto-js": "^1.1.9", @@ -6013,7 +6013,7 @@ }, "@rush-temp/applicationinsights-dependencies-js": { "version": "file:projects\\applicationinsights-dependencies-js.tgz", - "integrity": "sha512-ZUMzQEWsSO23w3L6I7O21C3EDkGmXOExNeET9TKor3T7yB9IkrRh1iKaYsjIXp4IpEgln9QL20d/2ij5p/NfwQ==", + "integrity": "sha512-tClCx1l49+pD94pePdKJICFQgFvmDWqOzOOFlDjndshiWTqcyIXTP/ZjTF8QVoMV6c6ccv10uOaZYjiAQ3508A==", "requires": { "@microsoft/api-extractor": "^7.18.1", "@microsoft/dynamicproto-js": "^1.1.9", @@ -6038,7 +6038,7 @@ }, "@rush-temp/applicationinsights-example-aisku": { "version": "file:projects\\applicationinsights-example-aisku.tgz", - "integrity": "sha512-wbOkq1Ta0edhE4tDG+oReenCbGuxTCWkrippQPTHiezbJxY1aI53ZLmFkrmUiARhiLJSY2oQ1JUE5EtLENolyA==", + "integrity": "sha512-2PixRkaUJdUvlUKks/Uw5B7WXqUV1LAQRRpuoB/8mDJT43yUBqbeYjm+/3ox+IpwgzadoyyRCaQYeEvkZG4SwA==", "requires": { "@microsoft/dynamicproto-js": "^1.1.9", "@rollup/plugin-commonjs": "^18.0.0", @@ -6054,7 +6054,7 @@ }, "@rush-temp/applicationinsights-example-dependencies": { "version": "file:projects\\applicationinsights-example-dependencies.tgz", - "integrity": "sha512-p1ay5OCbhgFIfPdrOreL3l0+PrYY+8zhF6PXdjxbjomq1UiUsBL8Nkhf2eThVkd9EfqtQ33AQqV7i6t6kBq7uw==", + "integrity": "sha512-jqCjDcdDUEDCtKgQQ4wfhhOLRFmQo16NbuZ7HD+gvF0y2y5GcCcx6qduUm3bIYzHC2zL+dkcm6q8khx8XpfsIg==", "requires": { "@microsoft/dynamicproto-js": "^1.1.9", "@rollup/plugin-commonjs": "^18.0.0", @@ -6070,7 +6070,7 @@ }, "@rush-temp/applicationinsights-example-shared-worker": { "version": "file:projects\\applicationinsights-example-shared-worker.tgz", - "integrity": "sha512-WcVUnXZyyEbahS651waozAv7nmTOMnCMQKfgZ1f83CKABmVvaPh7UEKME5w0+Be/lDUavJwMGsbBxABz95/fJg==", + "integrity": "sha512-jzQCkAfFHjh+V2fIGkEynz82jUCbShiie6y4IeXJcojAtXAw8LQU64eFroj6CTkXhR+hxrTVieju0S7pm9W6Gw==", "requires": { "@microsoft/applicationinsights-web-snippet": "1.0.1", "@microsoft/dynamicproto-js": "^1.1.9", @@ -6104,7 +6104,7 @@ }, "@rush-temp/applicationinsights-perfmarkmeasure-js": { "version": "file:projects\\applicationinsights-perfmarkmeasure-js.tgz", - "integrity": "sha512-DWw37JM9ADB8YC6jRzRdZFnjeaKzAI+gAVmaKraANuMSkYKs4GW6blHKjAA3itN/HuB2aY95W50zMmwrOWLORg==", + "integrity": "sha512-sEznu2CGNwimB4E0NxNP4xGFFpzaLcmTgUdZdYwStO6OX8uRzL+rGzBr2k64thuYq3F7LCOAR3EM9+Q5mqShsg==", "requires": { "@microsoft/api-extractor": "^7.18.1", "@microsoft/dynamicproto-js": "^1.1.9", @@ -6126,7 +6126,7 @@ }, "@rush-temp/applicationinsights-properties-js": { "version": "file:projects\\applicationinsights-properties-js.tgz", - "integrity": "sha512-a6pe72ZPhcQ7EkoJ3zEIloYM7j3OLqqBHXmIvR9rbvk/T46KIIyp8+CJlKhN/O4dCOCfPyDDlv9Lo3loln5sAA==", + "integrity": "sha512-Sd45bdHVXUye7/5pI0DH269CAbQIf0LROSKK0+wjpBAkC2ZyjhN1ZoFSxaov6cqzPQby59GJorI/JenCQ5RESw==", "requires": { "@microsoft/api-extractor": "^7.18.1", "@microsoft/dynamicproto-js": "^1.1.9", @@ -6209,7 +6209,7 @@ }, "@rush-temp/applicationinsights-web": { "version": "file:projects\\applicationinsights-web.tgz", - "integrity": "sha512-MoP4ep9XUFBhiI9z5qO4Dyp6TA85ZDtcJBtUhN0zQ/DDXP7iBYocHnaE9Z9cgqZTv42gKKmMA+LcV98f9+pChA==", + "integrity": "sha512-PKp3M3FyjOWsbAMGQx4pdKUYANQWlhyhRO7jYiH8K32ymbGu5Idia3Tu8qZX9/3iFZrfILzIuh8vxa05qtiPSA==", "requires": { "@microsoft/api-extractor": "^7.18.1", "@microsoft/dynamicproto-js": "^1.1.9", @@ -6236,7 +6236,7 @@ }, "@rush-temp/applicationinsights-web-basic": { "version": "file:projects\\applicationinsights-web-basic.tgz", - "integrity": "sha512-7F0nhdhSy/eE5I812G3YjDJyrdU3cvlDrJ4GnZx68GHFhCgwl9EzS2gL5yeqdknAJEl4ucpex3y54y6/C64p+Q==", + "integrity": "sha512-ZLvUdzdfHZPGDLRFjJXdMXGg8fS/fqjl8uLdt8dcnfM88k7CIz4V6whrj6H81s8QogGrMue1s9x3npg7oWqa4w==", "requires": { "@microsoft/api-extractor": "^7.18.1", "@microsoft/dynamicproto-js": "^1.1.9", @@ -6282,9 +6282,9 @@ } }, "@rushstack/node-core-library": { - "version": "3.55.2", - "resolved": "https://registry.npmjs.org/@rushstack/node-core-library/-/node-core-library-3.55.2.tgz", - "integrity": "sha512-SaLe/x/Q/uBVdNFK5V1xXvsVps0y7h1sN7aSJllQyFbugyOaxhNRF25bwEDnicARNEjJw0pk0lYnJQ9Kr6ev0A==", + "version": "3.58.0", + "resolved": "https://registry.npmjs.org/@rushstack/node-core-library/-/node-core-library-3.58.0.tgz", + "integrity": "sha512-DHAZ3LTOEq2/EGURznpTJDnB3SNE2CKMDXuviQ6afhru6RykE3QoqXkeyjbpLb5ib5cpIRCPE/wykNe0xmQj3w==", "requires": { "colors": "~1.2.1", "fs-extra": "~7.0.1", @@ -6470,9 +6470,9 @@ "integrity": "sha512-JCB8C6SnDoQf0cNycqd/35A7MjcnK+ZTqE7judS6o7utxUCg6imJg3QK2qzHKszlTjcj2cn+NwMB2i96ubpj7w==" }, "@types/qunit": { - "version": "2.19.4", - "resolved": "https://registry.npmjs.org/@types/qunit/-/qunit-2.19.4.tgz", - "integrity": "sha512-EocRiD2JRWrOaA0dnyyLX083DIo1p3OSBBiGODcHaMzOFhteXtvRRp0kKsiYYqynnBSMqnqRI92iE32axdoXZw==" + "version": "2.19.5", + "resolved": "https://registry.npmjs.org/@types/qunit/-/qunit-2.19.5.tgz", + "integrity": "sha512-NvyN1m6nKlRpAXETsTdqzEfW6C+5xbIqrXxQbnm8PmfxM7Ixi73KPoHgXCLJZHw8fd9pvCm3gVeX3nBYRuZLYQ==" }, "@types/react": { "version": "16.14.40", @@ -6485,9 +6485,9 @@ } }, "@types/react-dom": { - "version": "16.9.18", - "resolved": "https://registry.npmjs.org/@types/react-dom/-/react-dom-16.9.18.tgz", - "integrity": "sha512-lmNARUX3+rNF/nmoAFqasG0jAA7q6MeGZK/fdeLwY3kAA4NPgHHrG5bNQe2B5xmD4B+x6Z6h0rEJQ7MEEgQxsw==", + "version": "16.9.19", + "resolved": "https://registry.npmjs.org/@types/react-dom/-/react-dom-16.9.19.tgz", + "integrity": "sha512-xC8D280Bf6p0zguJ8g62jcEOKZiUbx9sIe6O3tT/lKfR87A7A6g65q13z6D5QUMIa/6yFPkNhqjF5z/VVZEYqQ==", "requires": { "@types/react": "^16" } @@ -6534,15 +6534,15 @@ } }, "@typescript-eslint/eslint-plugin": { - "version": "5.59.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.59.0.tgz", - "integrity": "sha512-p0QgrEyrxAWBecR56gyn3wkG15TJdI//eetInP3zYRewDh0XS+DhB3VUAd3QqvziFsfaQIoIuZMxZRB7vXYaYw==", + "version": "5.59.2", + "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.59.2.tgz", + "integrity": "sha512-yVrXupeHjRxLDcPKL10sGQ/QlVrA8J5IYOEWVqk0lJaSZP7X5DfnP7Ns3cc74/blmbipQ1htFNVGsHX6wsYm0A==", "peer": true, "requires": { "@eslint-community/regexpp": "^4.4.0", - "@typescript-eslint/scope-manager": "5.59.0", - "@typescript-eslint/type-utils": "5.59.0", - "@typescript-eslint/utils": "5.59.0", + "@typescript-eslint/scope-manager": "5.59.2", + "@typescript-eslint/type-utils": "5.59.2", + "@typescript-eslint/utils": "5.59.2", "debug": "^4.3.4", "grapheme-splitter": "^1.0.4", "ignore": "^5.2.0", @@ -6552,53 +6552,53 @@ } }, "@typescript-eslint/parser": { - "version": "5.59.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-5.59.0.tgz", - "integrity": "sha512-qK9TZ70eJtjojSUMrrEwA9ZDQ4N0e/AuoOIgXuNBorXYcBDk397D2r5MIe1B3cok/oCtdNC5j+lUUpVB+Dpb+w==", + "version": "5.59.2", + "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-5.59.2.tgz", + "integrity": "sha512-uq0sKyw6ao1iFOZZGk9F8Nro/8+gfB5ezl1cA06SrqbgJAt0SRoFhb9pXaHvkrxUpZaoLxt8KlovHNk8Gp6/HQ==", "peer": true, "requires": { - "@typescript-eslint/scope-manager": "5.59.0", - "@typescript-eslint/types": "5.59.0", - "@typescript-eslint/typescript-estree": "5.59.0", + "@typescript-eslint/scope-manager": "5.59.2", + "@typescript-eslint/types": "5.59.2", + "@typescript-eslint/typescript-estree": "5.59.2", "debug": "^4.3.4" } }, "@typescript-eslint/scope-manager": { - "version": "5.59.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-5.59.0.tgz", - "integrity": "sha512-tsoldKaMh7izN6BvkK6zRMINj4Z2d6gGhO2UsI8zGZY3XhLq1DndP3Ycjhi1JwdwPRwtLMW4EFPgpuKhbCGOvQ==", + "version": "5.59.2", + "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-5.59.2.tgz", + "integrity": "sha512-dB1v7ROySwQWKqQ8rEWcdbTsFjh2G0vn8KUyvTXdPoyzSL6lLGkiXEV5CvpJsEe9xIdKV+8Zqb7wif2issoOFA==", "peer": true, "requires": { - "@typescript-eslint/types": "5.59.0", - "@typescript-eslint/visitor-keys": "5.59.0" + "@typescript-eslint/types": "5.59.2", + "@typescript-eslint/visitor-keys": "5.59.2" } }, "@typescript-eslint/type-utils": { - "version": "5.59.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-5.59.0.tgz", - "integrity": "sha512-d/B6VSWnZwu70kcKQSCqjcXpVH+7ABKH8P1KNn4K7j5PXXuycZTPXF44Nui0TEm6rbWGi8kc78xRgOC4n7xFgA==", + "version": "5.59.2", + "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-5.59.2.tgz", + "integrity": "sha512-b1LS2phBOsEy/T381bxkkywfQXkV1dWda/z0PhnIy3bC5+rQWQDS7fk9CSpcXBccPY27Z6vBEuaPBCKCgYezyQ==", "peer": true, "requires": { - "@typescript-eslint/typescript-estree": "5.59.0", - "@typescript-eslint/utils": "5.59.0", + "@typescript-eslint/typescript-estree": "5.59.2", + "@typescript-eslint/utils": "5.59.2", "debug": "^4.3.4", "tsutils": "^3.21.0" } }, "@typescript-eslint/types": { - "version": "5.59.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.59.0.tgz", - "integrity": "sha512-yR2h1NotF23xFFYKHZs17QJnB51J/s+ud4PYU4MqdZbzeNxpgUr05+dNeCN/bb6raslHvGdd6BFCkVhpPk/ZeA==", + "version": "5.59.2", + "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.59.2.tgz", + "integrity": "sha512-LbJ/HqoVs2XTGq5shkiKaNTuVv5tTejdHgfdjqRUGdYhjW1crm/M7og2jhVskMt8/4wS3T1+PfFvL1K3wqYj4w==", "peer": true }, "@typescript-eslint/typescript-estree": { - "version": "5.59.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.59.0.tgz", - "integrity": "sha512-sUNnktjmI8DyGzPdZ8dRwW741zopGxltGs/SAPgGL/AAgDpiLsCFLcMNSpbfXfmnNeHmK9h3wGmCkGRGAoUZAg==", + "version": "5.59.2", + "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.59.2.tgz", + "integrity": "sha512-+j4SmbwVmZsQ9jEyBMgpuBD0rKwi9RxRpjX71Brr73RsYnEr3Lt5QZ624Bxphp8HUkSKfqGnPJp1kA5nl0Sh7Q==", "peer": true, "requires": { - "@typescript-eslint/types": "5.59.0", - "@typescript-eslint/visitor-keys": "5.59.0", + "@typescript-eslint/types": "5.59.2", + "@typescript-eslint/visitor-keys": "5.59.2", "debug": "^4.3.4", "globby": "^11.1.0", "is-glob": "^4.0.3", @@ -6607,28 +6607,28 @@ } }, "@typescript-eslint/utils": { - "version": "5.59.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-5.59.0.tgz", - "integrity": "sha512-GGLFd+86drlHSvPgN/el6dRQNYYGOvRSDVydsUaQluwIW3HvbXuxyuD5JETvBt/9qGYe+lOrDk6gRrWOHb/FvA==", + "version": "5.59.2", + "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-5.59.2.tgz", + "integrity": "sha512-kSuF6/77TZzyGPhGO4uVp+f0SBoYxCDf+lW3GKhtKru/L8k/Hd7NFQxyWUeY7Z/KGB2C6Fe3yf2vVi4V9TsCSQ==", "peer": true, "requires": { "@eslint-community/eslint-utils": "^4.2.0", "@types/json-schema": "^7.0.9", "@types/semver": "^7.3.12", - "@typescript-eslint/scope-manager": "5.59.0", - "@typescript-eslint/types": "5.59.0", - "@typescript-eslint/typescript-estree": "5.59.0", + "@typescript-eslint/scope-manager": "5.59.2", + "@typescript-eslint/types": "5.59.2", + "@typescript-eslint/typescript-estree": "5.59.2", "eslint-scope": "^5.1.1", "semver": "^7.3.7" } }, "@typescript-eslint/visitor-keys": { - "version": "5.59.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.59.0.tgz", - "integrity": "sha512-qZ3iXxQhanchCeaExlKPV3gDQFxMUmU35xfd5eCXB6+kUw1TUAbIy2n7QIrwz9s98DQLzNWyHp61fY0da4ZcbA==", + "version": "5.59.2", + "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.59.2.tgz", + "integrity": "sha512-EEpsO8m3RASrKAHI9jpavNv9NlEUebV4qmF1OWxSTtKSFBpC1NCmWazDQHFivRf0O1DV11BA645yrLEVQ0/Lig==", "peer": true, "requires": { - "@typescript-eslint/types": "5.59.0", + "@typescript-eslint/types": "5.59.2", "eslint-visitor-keys": "^3.3.0" } }, @@ -6896,9 +6896,9 @@ "peer": true }, "caniuse-lite": { - "version": "1.0.30001480", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001480.tgz", - "integrity": "sha512-q7cpoPPvZYgtyC4VaBSN0Bt+PJ4c4EYRf0DrduInOz2SkFpHD5p3LnvEpqBp7UnJn+8x1Ogl1s38saUxe+ihQQ==" + "version": "1.0.30001481", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001481.tgz", + "integrity": "sha512-KCqHwRnaa1InZBtqXzP98LPg0ajCVujMKjqKDhZEthIpAsJl/YEIa3YvXjGXPVqzZVguccuu7ga9KOE1J9rKPQ==" }, "chalk": { "version": "4.1.2", @@ -7158,9 +7158,9 @@ "integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==" }, "electron-to-chromium": { - "version": "1.4.367", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.367.tgz", - "integrity": "sha512-mNuDxb+HpLhPGUKrg0hSxbTjHWw8EziwkwlJNkFUj3W60ypigLDRVz04vU+VRsJPi8Gub+FDhYUpuTm9xiEwRQ==" + "version": "1.4.378", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.378.tgz", + "integrity": "sha512-RfCD26kGStl6+XalfX3DGgt3z2DNwJS5DKRHCpkPq5T/PqpZMPB1moSRXuK9xhkt/sF57LlpzJgNoYl7mO7Z6w==" }, "encodeurl": { "version": "1.0.2", @@ -7192,15 +7192,15 @@ "peer": true }, "eslint": { - "version": "8.38.0", - "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.38.0.tgz", - "integrity": "sha512-pIdsD2jwlUGf/U38Jv97t8lq6HpaU/G9NKbYmpWpZGw3LdTNhZLbJePqxOXGB5+JEKfOPU/XLxYxFh03nr1KTg==", + "version": "8.39.0", + "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.39.0.tgz", + "integrity": "sha512-mwiok6cy7KTW7rBpo05k6+p4YVZByLNjAZ/ACB9DRCu4YDRwjXI01tWHp6KAUWelsBetTxKK/2sHB0vdS8Z2Og==", "peer": true, "requires": { "@eslint-community/eslint-utils": "^4.2.0", "@eslint-community/regexpp": "^4.4.0", "@eslint/eslintrc": "^2.0.2", - "@eslint/js": "8.38.0", + "@eslint/js": "8.39.0", "@humanwhocodes/config-array": "^0.11.8", "@humanwhocodes/module-importer": "^1.0.1", "@nodelib/fs.walk": "^1.2.8", @@ -7210,7 +7210,7 @@ "debug": "^4.3.2", "doctrine": "^3.0.0", "escape-string-regexp": "^4.0.0", - "eslint-scope": "^7.1.1", + "eslint-scope": "^7.2.0", "eslint-visitor-keys": "^3.4.0", "espree": "^9.5.1", "esquery": "^1.4.2", @@ -8974,9 +8974,9 @@ } }, "regexp-tree": { - "version": "0.1.25", - "resolved": "https://registry.npmjs.org/regexp-tree/-/regexp-tree-0.1.25.tgz", - "integrity": "sha512-szcL3aqw+vEeuxhL1AMYRyeMP+goYF5I/guaH10uJX5xbGyeQeNPPneaj3ZWVmGLCDxrVaaYekkr5R12gk4dJw==", + "version": "0.1.27", + "resolved": "https://registry.npmjs.org/regexp-tree/-/regexp-tree-0.1.27.tgz", + "integrity": "sha512-iETxpjK6YoRWJG5o6hXLwvjYAoW+FEZn9os0PD/b6AP6xQwsa/Y7lCVgIixBbUPMfhu+i2LtdeAqVTgGlQarfA==", "peer": true }, "resolve": { @@ -9310,9 +9310,9 @@ } }, "string-argv": { - "version": "0.3.1", - "resolved": "https://registry.npmjs.org/string-argv/-/string-argv-0.3.1.tgz", - "integrity": "sha512-a1uQGz7IyVy9YwhqjZIZu1c8JO8dNIe20xBmSS6qu9kv++k3JGzCVmprbNN5Kn+BgzD5E7YYwg1CcjuJMRNsvg==" + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/string-argv/-/string-argv-0.3.2.tgz", + "integrity": "sha512-aqD2Q0144Z+/RqG52NeHEkZauTAUWJO8c6yTftGJKO3Tja5tUgIfmIl6kExvhtxSDP7fXB6DvzkfMpCd/F3G+Q==" }, "strip-ansi": { "version": "6.0.1", diff --git a/examples/AISKU/package.json b/examples/AISKU/package.json index 96a2aa39f..cc98d5a40 100644 --- a/examples/AISKU/package.json +++ b/examples/AISKU/package.json @@ -1,7 +1,7 @@ { "name": "@microsoft/applicationinsights-example-aisku", "author": "Microsoft Application Insights Team", - "version": "2.8.12", + "version": "2.8.13", "description": "Microsoft Application Insights AISKU Example", "homepage": "https://github.com/microsoft/ApplicationInsights-JS#readme", "keywords": [ @@ -51,7 +51,7 @@ "dependencies": { "@microsoft/applicationinsights-shims": "2.0.2", "@microsoft/dynamicproto-js": "^1.1.9", - "@microsoft/applicationinsights-web": "2.8.12", - "@microsoft/applicationinsights-core-js": "2.8.12" + "@microsoft/applicationinsights-web": "2.8.13", + "@microsoft/applicationinsights-core-js": "2.8.13" } } diff --git a/examples/dependency/package.json b/examples/dependency/package.json index 07e7dbb5d..26e8ad9e0 100644 --- a/examples/dependency/package.json +++ b/examples/dependency/package.json @@ -1,7 +1,7 @@ { "name": "@microsoft/applicationinsights-example-dependencies", "author": "Microsoft Application Insights Team", - "version": "2.8.12", + "version": "2.8.13", "description": "Microsoft Application Insights Dependencies Example", "homepage": "https://github.com/microsoft/ApplicationInsights-JS#readme", "keywords": [ @@ -51,8 +51,8 @@ "dependencies": { "@microsoft/applicationinsights-shims": "2.0.2", "@microsoft/dynamicproto-js": "^1.1.9", - "@microsoft/applicationinsights-web": "2.8.12", - "@microsoft/applicationinsights-dependencies-js": "2.8.12", - "@microsoft/applicationinsights-core-js": "2.8.12" + "@microsoft/applicationinsights-web": "2.8.13", + "@microsoft/applicationinsights-dependencies-js": "2.8.13", + "@microsoft/applicationinsights-core-js": "2.8.13" } } diff --git a/examples/shared-worker/package.json b/examples/shared-worker/package.json index b7bccea93..cee9d21de 100644 --- a/examples/shared-worker/package.json +++ b/examples/shared-worker/package.json @@ -1,7 +1,7 @@ { "name": "@microsoft/applicationinsights-example-shared-worker", "author": "Microsoft Application Insights Team", - "version": "2.8.12", + "version": "2.8.13", "description": "Microsoft Application Insights Shared Worker Example", "homepage": "https://github.com/microsoft/ApplicationInsights-JS#readme", "keywords": [ @@ -64,7 +64,7 @@ "dependencies": { "@microsoft/applicationinsights-shims": "2.0.2", "@microsoft/dynamicproto-js": "^1.1.9", - "@microsoft/applicationinsights-web": "2.8.12", + "@microsoft/applicationinsights-web": "2.8.13", "@microsoft/applicationinsights-web-snippet": "1.0.1", "@nevware21/ts-utils": ">= 0.7 < 2.x" } diff --git a/extensions/applicationinsights-analytics-js/package.json b/extensions/applicationinsights-analytics-js/package.json index 1f1b34b37..4a40a3f6a 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.12", + "version": "2.8.13", "description": "Microsoft Application Insights JavaScript SDK - Web Analytics", "homepage": "https://github.com/microsoft/ApplicationInsights-JS#readme", "author": "Microsoft Application Insights Team", @@ -30,8 +30,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.12", - "@microsoft/applicationinsights-channel-js": "2.8.12", + "@microsoft/applicationinsights-properties-js": "2.8.13", + "@microsoft/applicationinsights-channel-js": "2.8.13", "@microsoft/api-extractor": "^7.18.1", "typescript": "^4.9.3", "tslib": "^2.0.0", @@ -57,8 +57,8 @@ "dependencies": { "@microsoft/dynamicproto-js": "^1.1.9", "@microsoft/applicationinsights-shims": "2.0.2", - "@microsoft/applicationinsights-core-js": "2.8.12", - "@microsoft/applicationinsights-common": "2.8.12" + "@microsoft/applicationinsights-core-js": "2.8.13", + "@microsoft/applicationinsights-common": "2.8.13" }, "license": "MIT" } diff --git a/extensions/applicationinsights-clickanalytics-js/package.json b/extensions/applicationinsights-clickanalytics-js/package.json index 710e126ce..7e506d689 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.12", + "version": "2.8.13", "description": "Microsoft Application Insights Click Analytics extension", "homepage": "https://github.com/microsoft/ApplicationInsights-JS#readme", "author": "Microsoft Application Insights Team", @@ -48,9 +48,9 @@ "dependencies": { "@microsoft/dynamicproto-js": "^1.1.9", "@microsoft/applicationinsights-shims": "2.0.2", - "@microsoft/applicationinsights-core-js": "2.8.12", - "@microsoft/applicationinsights-common": "2.8.12", - "@microsoft/applicationinsights-properties-js": "2.8.12" + "@microsoft/applicationinsights-core-js": "2.8.13", + "@microsoft/applicationinsights-common": "2.8.13", + "@microsoft/applicationinsights-properties-js": "2.8.13" }, "repository": { "type": "git", diff --git a/extensions/applicationinsights-debugplugin-js/package.json b/extensions/applicationinsights-debugplugin-js/package.json index a8ad92df6..b59923ef7 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.12", + "version": "2.8.13", "description": "Microsoft Application Insights JavaScript SDK - Debug Plugin extension", "homepage": "https://github.com/microsoft/ApplicationInsights-JS#readme", "author": "Microsoft Application Insights Team", @@ -49,8 +49,8 @@ }, "dependencies": { "@microsoft/dynamicproto-js": "^1.1.9", - "@microsoft/applicationinsights-common": "2.8.12", - "@microsoft/applicationinsights-core-js": "2.8.12", + "@microsoft/applicationinsights-common": "2.8.13", + "@microsoft/applicationinsights-core-js": "2.8.13", "@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 679c6903c..bf52f2872 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.12", + "version": "2.8.13", "description": "Microsoft Application Insights XHR dependencies plugin", "homepage": "https://github.com/microsoft/ApplicationInsights-JS#readme", "author": "Microsoft Application Insights Team", @@ -55,8 +55,8 @@ "dependencies": { "@microsoft/dynamicproto-js": "^1.1.9", "@microsoft/applicationinsights-shims": "2.0.2", - "@microsoft/applicationinsights-core-js": "2.8.12", - "@microsoft/applicationinsights-common": "2.8.12" + "@microsoft/applicationinsights-core-js": "2.8.13", + "@microsoft/applicationinsights-common": "2.8.13" }, "license": "MIT" } diff --git a/extensions/applicationinsights-perfmarkmeasure-js/package.json b/extensions/applicationinsights-perfmarkmeasure-js/package.json index b857bd8ad..fb824f332 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.12", + "version": "2.8.13", "description": "Microsoft Application Insights Performance Mark and Measure Manager plugin", "homepage": "https://github.com/microsoft/ApplicationInsights-JS#readme", "author": "Microsoft Application Insights Team", @@ -52,7 +52,7 @@ "dependencies": { "@microsoft/dynamicproto-js": "^1.1.9", "@microsoft/applicationinsights-shims": "2.0.2", - "@microsoft/applicationinsights-core-js": "2.8.12" + "@microsoft/applicationinsights-core-js": "2.8.13" }, "license": "MIT" } diff --git a/extensions/applicationinsights-properties-js/package.json b/extensions/applicationinsights-properties-js/package.json index 51a372050..0ada4059f 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.12", + "version": "2.8.13", "description": "Microsoft Application Insights properties (Part A) plugin", "homepage": "https://github.com/microsoft/ApplicationInsights-JS#readme", "author": "Microsoft Application Insights Team", @@ -55,8 +55,8 @@ "dependencies": { "@microsoft/dynamicproto-js": "^1.1.9", "@microsoft/applicationinsights-shims": "2.0.2", - "@microsoft/applicationinsights-core-js": "2.8.12", - "@microsoft/applicationinsights-common": "2.8.12" + "@microsoft/applicationinsights-core-js": "2.8.13", + "@microsoft/applicationinsights-common": "2.8.13" }, "license": "MIT" } diff --git a/gruntfile.js b/gruntfile.js index 426012e2d..31ea0fae5 100644 --- a/gruntfile.js +++ b/gruntfile.js @@ -154,7 +154,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.12"]; + const perfTestVersions=["2.8.13"]; function buildConfig(modules) { var buildCmds = { diff --git a/package.json b/package.json index 6cd6f2abf..f922124f7 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "@microsoft/applicationinsights-web", "description": "Microsoft Application Insights JavaScript SDK", - "version": "2.8.12", + "version": "2.8.13", "keywords": [ "browser performance monitoring", "script errors", diff --git a/shared/AppInsightsCommon/package.json b/shared/AppInsightsCommon/package.json index a3e6c8d17..1a036f919 100644 --- a/shared/AppInsightsCommon/package.json +++ b/shared/AppInsightsCommon/package.json @@ -1,6 +1,6 @@ { "name": "@microsoft/applicationinsights-common", - "version": "2.8.12", + "version": "2.8.13", "description": "Microsoft Application Insights Common JavaScript Library", "homepage": "https://github.com/microsoft/ApplicationInsights-JS#readme", "author": "Microsoft Application Insights Team", @@ -52,7 +52,7 @@ }, "dependencies": { "@microsoft/applicationinsights-shims": "2.0.2", - "@microsoft/applicationinsights-core-js": "2.8.12", + "@microsoft/applicationinsights-core-js": "2.8.13", "@microsoft/dynamicproto-js": "^1.1.9" }, "license": "MIT" diff --git a/shared/AppInsightsCore/package.json b/shared/AppInsightsCore/package.json index 10cbffaff..67192f601 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.12", + "version": "2.8.13", "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 fdee6e988..225ee3733 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.12", - "version_name": "0.3.12", + "version": "0.3.13", + "version_name": "0.3.13", "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 54a3df7f7..135161a4a 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.12", + "version": "0.3.13", "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.12", - "@microsoft/applicationinsights-common": "2.8.12", + "@microsoft/applicationinsights-core-js": "2.8.13", + "@microsoft/applicationinsights-common": "2.8.13", "@microsoft/applicationinsights-shims": "2.0.2", "@microsoft/dynamicproto-js": "^1.1.9", "file-saver": "^2.0.0", diff --git a/tools/config/package.json b/tools/config/package.json index 6945a61e2..1821914ad 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.4", + "version": "0.0.5", "copyright": "(c) Microsoft and contributors. All rights reserved.", "author": "Microsoft Application Insights Team", "repository": { diff --git a/version.json b/version.json index ffffefee8..ff6b60dfd 100644 --- a/version.json +++ b/version.json @@ -1,72 +1,72 @@ { "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.12", + "release": "2.8.13", "next": "patch", "pkgs": { "@microsoft/applicationinsights-web": { "package": "package.json", - "release": "2.8.12" + "release": "2.8.13" }, "@microsoft/applicationinsights-web-basic": { "package": "AISKULight/package.json", - "release": "2.8.12" + "release": "2.8.13" }, "@microsoft/applicationinsights-channel-js": { "package": "channels/applicationinsights-channel-js/package.json", - "release": "2.8.12" + "release": "2.8.13" }, "@microsoft/applicationinsights-analytics-js": { "package": "extensions/applicationinsights-analytics-js/package.json", - "release": "2.8.12" + "release": "2.8.13" }, "@microsoft/applicationinsights-clickanalytics-js": { "package": "extensions/applicationinsights-clickanalytics-js/package.json", - "release": "2.8.12" + "release": "2.8.13" }, "@microsoft/applicationinsights-debugplugin-js": { "package": "extensions/applicationinsights-debugplugin-js/package.json", - "release": "2.8.12" + "release": "2.8.13" }, "@microsoft/applicationinsights-dependencies-js": { "package": "extensions/applicationinsights-dependencies-js/package.json", - "release": "2.8.12" + "release": "2.8.13" }, "@microsoft/applicationinsights-perfmarkmeasure-js": { "package": "extensions/applicationinsights-perfmarkmeasure-js/package.json", - "release": "2.8.12" + "release": "2.8.13" }, "@microsoft/applicationinsights-properties-js": { "package": "extensions/applicationinsights-properties-js/package.json", - "release": "2.8.12" + "release": "2.8.13" }, "@microsoft/applicationinsights-common": { "package": "shared/AppInsightsCommon/package.json", - "release": "2.8.12" + "release": "2.8.13" }, "@microsoft/applicationinsights-core-js": { "package": "shared/AppInsightsCore/package.json", - "release": "2.8.12" + "release": "2.8.13" }, "@microsoft/applicationinsights-chrome-debug-extension": { "package": "tools/chrome-debug-extension/package.json", - "release": "0.3.12" + "release": "0.3.13" }, "applicationinsights-web-config": { "package": "tools/config/package.json", - "release": "0.0.4" + "release": "0.0.5" }, "@microsoft/applicationinsights-example-aisku": { "package": "examples/AISKU/package.json", - "release": "2.8.12" + "release": "2.8.13" }, "@microsoft/applicationinsights-example-dependencies": { "package": "examples/dependency/package.json", - "release": "2.8.12" + "release": "2.8.13" }, "@microsoft/applicationinsights-example-shared-worker": { "package": "examples/shared-worker/package.json", - "release": "2.8.12" + "release": "2.8.13" } } }