diff --git a/AISKU/README.md b/AISKU/README.md index 44fa1c9d9..95c09337a 100644 --- a/AISKU/README.md +++ b/AISKU/README.md @@ -34,6 +34,7 @@ See [Breaking Changes](https://microsoft.github.io/ApplicationInsights-JS/upgrad | Version | Full Size | Raw Minified | GZip Size |---------|-----------|--------------|------------- | [<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) +| 3.0.6: | [![full size size](https://img.badgesize.io/https://js.monitor.azure.com/scripts/b/ai.3.0.6.js.svg?label=full%20size&color=blue)](https://img.badgesize.io/https://js.monitor.azure.com/scripts/b/ai.3.0.6.js.svg?label=full%20size&color=blue)| ![minified size size](https://img.badgesize.io/https://js.monitor.azure.com/scripts/b/ai.3.0.6.min.js.svg?label=minified%20size&color=darkorchid) | ![gzip size](https://img.badgesize.io/https://js.monitor.azure.com/scripts/b/ai.3.0.5.min.js.svg?compression=gzip&softmax=30000&max=35000) | 3.0.5: | [![full size size](https://img.badgesize.io/https://js.monitor.azure.com/scripts/b/ai.3.0.5.js.svg?label=full%20size&color=blue)](https://img.badgesize.io/https://js.monitor.azure.com/scripts/b/ai.3.0.5.js.svg?label=full%20size&color=blue)| ![minified size size](https://img.badgesize.io/https://js.monitor.azure.com/scripts/b/ai.3.0.5.min.js.svg?label=minified%20size&color=darkorchid) | ![gzip size](https://img.badgesize.io/https://js.monitor.azure.com/scripts/b/ai.3.0.5.min.js.svg?compression=gzip&softmax=30000&max=35000) | 3.0.4: | [![full size size](https://img.badgesize.io/https://js.monitor.azure.com/scripts/b/ai.3.0.4.js.svg?label=full%20size&color=blue)](https://img.badgesize.io/https://js.monitor.azure.com/scripts/b/ai.3.0.4.js.svg?label=full%20size&color=blue)| ![minified size size](https://img.badgesize.io/https://js.monitor.azure.com/scripts/b/ai.3.0.4.min.js.svg?label=minified%20size&color=darkorchid) | ![gzip size](https://img.badgesize.io/https://js.monitor.azure.com/scripts/b/ai.3.0.4.min.js.svg?compression=gzip&softmax=30000&max=35000) | 3.0.3: | [![full size size](https://img.badgesize.io/https://js.monitor.azure.com/scripts/b/ai.3.0.3.js.svg?label=full%20size&color=blue)](https://img.badgesize.io/https://js.monitor.azure.com/scripts/b/ai.3.0.3.js.svg?label=full%20size&color=blue)| ![minified size size](https://img.badgesize.io/https://js.monitor.azure.com/scripts/b/ai.3.0.3.min.js.svg?label=minified%20size&color=darkorchid) | ![gzip size](https://img.badgesize.io/https://js.monitor.azure.com/scripts/b/ai.3.0.3.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 b7c0dc9d2..4f9b5251a 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 = "3.0.5"; + var defaultVer = "3.0.6"; 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 668cb3235..bec9f7b4d 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 = 54; private readonly rawFilePath = "../dist/es5/applicationinsights-web.min.js"; // Automatically updated by version scripts - private readonly currentVer = "3.0.5"; + private readonly currentVer = "3.0.6"; private readonly prodFilePath = `../browser/es5/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 7c13aae8d..50246c78b 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 = "3.0.5"; + private readonly currentVer = "3.0.6"; public testInitialize() { } diff --git a/AISKU/Tests/es6-module-type-check/package.json b/AISKU/Tests/es6-module-type-check/package.json index ea63d08dd..d16c2e748 100644 --- a/AISKU/Tests/es6-module-type-check/package.json +++ b/AISKU/Tests/es6-module-type-check/package.json @@ -1,7 +1,7 @@ { "name": "@microsoft/applicationinsights-test-module-type-check", "author": "Microsoft Application Insights Team and Contributors", - "version": "3.0.5", + "version": "3.0.6", "description": "Microsoft Application Insights ES6 Module and Type check Example", "homepage": "https://github.com/microsoft/ApplicationInsights-JS#readme", "keywords": [ @@ -32,7 +32,7 @@ "tslib": "*" }, "dependencies": { - "@microsoft/applicationinsights-common": "3.0.5", - "@microsoft/applicationinsights-web": "3.0.5" + "@microsoft/applicationinsights-common": "3.0.6", + "@microsoft/applicationinsights-web": "3.0.6" } } diff --git a/AISKU/package.json b/AISKU/package.json index 4277f3e00..f696ad312 100644 --- a/AISKU/package.json +++ b/AISKU/package.json @@ -1,6 +1,6 @@ { "name": "@microsoft/applicationinsights-web", - "version": "3.0.5", + "version": "3.0.6", "description": "Microsoft Application Insights JavaScript SDK - Web", "homepage": "https://github.com/microsoft/ApplicationInsights-JS#readme", "author": "Microsoft Application Insights Team", @@ -63,13 +63,13 @@ "dependencies": { "@microsoft/dynamicproto-js": "^2.0.2", "@microsoft/applicationinsights-shims": "3.0.1", - "@microsoft/applicationinsights-analytics-js": "3.0.5", - "@microsoft/applicationinsights-channel-js": "3.0.5", - "@microsoft/applicationinsights-cfgsync-js": "3.0.5", - "@microsoft/applicationinsights-common": "3.0.5", - "@microsoft/applicationinsights-core-js": "3.0.5", - "@microsoft/applicationinsights-dependencies-js": "3.0.5", - "@microsoft/applicationinsights-properties-js": "3.0.5", + "@microsoft/applicationinsights-analytics-js": "3.0.6", + "@microsoft/applicationinsights-channel-js": "3.0.6", + "@microsoft/applicationinsights-cfgsync-js": "3.0.6", + "@microsoft/applicationinsights-common": "3.0.6", + "@microsoft/applicationinsights-core-js": "3.0.6", + "@microsoft/applicationinsights-dependencies-js": "3.0.6", + "@microsoft/applicationinsights-properties-js": "3.0.6", "@nevware21/ts-utils": ">= 0.10.1 < 2.x", "@nevware21/ts-async": ">= 0.3.0 < 2.x" }, diff --git a/AISKULight/Tests/Unit/src/AISKULightSize.Tests.ts b/AISKULight/Tests/Unit/src/AISKULightSize.Tests.ts index d80a8821e..dc026c7c7 100644 --- a/AISKULight/Tests/Unit/src/AISKULightSize.Tests.ts +++ b/AISKULight/Tests/Unit/src/AISKULightSize.Tests.ts @@ -7,7 +7,7 @@ export class AISKULightSizeCheck extends AITestClass { private readonly MAX_RAW_DEFLATE_SIZE = 34; private readonly MAX_BUNDLE_DEFLATE_SIZE = 34; private readonly rawFilePath = "../dist/es5/applicationinsights-web-basic.min.js"; - private readonly currentVer = "3.0.5"; + private readonly currentVer = "3.0.6"; private readonly prodFilePath = `../browser/es5/aib.${this.currentVer[0]}.min.js`; public testInitialize() { diff --git a/AISKULight/package.json b/AISKULight/package.json index f55ce921c..4ed68b1df 100644 --- a/AISKULight/package.json +++ b/AISKULight/package.json @@ -1,6 +1,6 @@ { "name": "@microsoft/applicationinsights-web-basic", - "version": "3.0.5", + "version": "3.0.6", "description": "Microsoft Application Insights JavaScript SDK - Web Basic", "homepage": "https://github.com/microsoft/ApplicationInsights-JS#readme", "author": "Microsoft Application Insights Team", @@ -57,9 +57,9 @@ "dependencies": { "@microsoft/dynamicproto-js": "^2.0.2", "@microsoft/applicationinsights-shims": "3.0.1", - "@microsoft/applicationinsights-common": "3.0.5", - "@microsoft/applicationinsights-channel-js": "3.0.5", - "@microsoft/applicationinsights-core-js": "3.0.5", + "@microsoft/applicationinsights-common": "3.0.6", + "@microsoft/applicationinsights-channel-js": "3.0.6", + "@microsoft/applicationinsights-core-js": "3.0.6", "@nevware21/ts-utils": ">= 0.10.1 < 2.x", "@nevware21/ts-async": ">= 0.3.0 < 2.x" }, diff --git a/RELEASES.md b/RELEASES.md index f930627e1..aa2bbb9f1 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. +## 3.0.6 (Dec 7th, 2023) + +This release fixes an issue with the `sendBeacon` usage during page unload, where the SDK was not correctly splitting the payload into multiple requests when the payload size exceeded the maximum allowed size for a single request. This issue was introduced in the 3.0.4 release and only affects the `sendBeacon` usage during page unload, it does not affect the `fetch` usage during page unload. + +### Changelog + +- #2195 [BUG] Beacon sender causes flood of thousands of requests on page unload +- #2201 [BUG] applicationinsights.azure.com/v2/track making hundreds of thousands of requests when third party cookies are disabled +- #2205 [BUG] Duplicate customEvent entries +- #2204 [BUG] Beacon sender reports error for success when diagnostics are enabled + ## 3.0.5 (Nov 1st, 2023) ### Changelog diff --git a/channels/1ds-post-js/package.json b/channels/1ds-post-js/package.json index d8aad5be5..aaba3b6f8 100644 --- a/channels/1ds-post-js/package.json +++ b/channels/1ds-post-js/package.json @@ -1,6 +1,6 @@ { "name": "@microsoft/1ds-post-js", - "version": "4.0.4", + "version": "4.0.5", "description": "Microsoft Application Insights JavaScript SDK - 1ds-post-channel-js", "author": "Microsoft Application Insights Team", "homepage": "https://github.com/microsoft/ApplicationInsights-JS#readme", @@ -27,7 +27,7 @@ "dependencies": { "@microsoft/applicationinsights-shims": "3.0.1", "@microsoft/dynamicproto-js": "^2.0.2", - "@microsoft/1ds-core-js": "4.0.4", + "@microsoft/1ds-core-js": "4.0.5", "@nevware21/ts-utils": ">= 0.10.1 < 2.x", "@nevware21/ts-async": ">= 0.3.0 < 2.x" }, 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 50c564d9c..f9d3a0fcc 100644 --- a/channels/applicationinsights-channel-js/Tests/Unit/src/Sender.tests.ts +++ b/channels/applicationinsights-channel-js/Tests/Unit/src/Sender.tests.ts @@ -2249,7 +2249,7 @@ export class SenderTests extends AITestClass { QUnit.assert.ok(baseData.ver); QUnit.assert.equal(2, baseData.ver); - QUnit.assert.equal("javascript:3.0.5", appInsightsEnvelope.tags["ai.internal.sdkVersion"]); + QUnit.assert.equal("javascript:3.0.6", appInsightsEnvelope.tags["ai.internal.sdkVersion"]); } }) diff --git a/channels/applicationinsights-channel-js/package.json b/channels/applicationinsights-channel-js/package.json index 7a2b9ed16..9f3b40005 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": "3.0.5", + "version": "3.0.6", "description": "Microsoft Application Insights JavaScript SDK Channel", "homepage": "https://github.com/microsoft/ApplicationInsights-JS#readme", "author": "Microsoft Application Insights Team", @@ -53,8 +53,8 @@ "dependencies": { "@microsoft/dynamicproto-js": "^2.0.2", "@microsoft/applicationinsights-shims": "3.0.1", - "@microsoft/applicationinsights-core-js": "3.0.5", - "@microsoft/applicationinsights-common": "3.0.5", + "@microsoft/applicationinsights-core-js": "3.0.6", + "@microsoft/applicationinsights-common": "3.0.6", "@nevware21/ts-utils": ">= 0.10.1 < 2.x", "@nevware21/ts-async": ">= 0.3.0 < 2.x" }, diff --git a/channels/tee-channel-js/package.json b/channels/tee-channel-js/package.json index bd1063d06..1cd732ef4 100644 --- a/channels/tee-channel-js/package.json +++ b/channels/tee-channel-js/package.json @@ -1,6 +1,6 @@ { "name": "@microsoft/applicationinsights-teechannel-js", - "version": "3.0.5", + "version": "3.0.6", "description": "Microsoft Application Insights JavaScript SDK Tee Channel", "homepage": "https://github.com/microsoft/ApplicationInsights-JS#readme", "author": "Microsoft Application Insights Team", @@ -54,8 +54,8 @@ "dependencies": { "@microsoft/dynamicproto-js": "^2.0.2", "@microsoft/applicationinsights-shims": "3.0.1", - "@microsoft/applicationinsights-core-js": "3.0.5", - "@microsoft/applicationinsights-common": "3.0.5", + "@microsoft/applicationinsights-core-js": "3.0.6", + "@microsoft/applicationinsights-common": "3.0.6", "@nevware21/ts-utils": ">= 0.10.1 < 2.x", "@nevware21/ts-async": ">= 0.3.0 < 2.x" }, diff --git a/common/config/rush/npm-shrinkwrap.json b/common/config/rush/npm-shrinkwrap.json index 707121151..534de3be0 100644 --- a/common/config/rush/npm-shrinkwrap.json +++ b/common/config/rush/npm-shrinkwrap.json @@ -111,9 +111,9 @@ } }, "node_modules/@babel/highlight": { - "version": "7.22.20", - "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.22.20.tgz", - "integrity": "sha512-dkdMCN3py0+ksCgYmGG8jKeGA/8Tk+gJwSYYlFGxG5lmhfKNoAy004YpLxpS1W2J8m/EK2Ew+yOs9pVRwO89mg==", + "version": "7.23.4", + "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.23.4.tgz", + "integrity": "sha512-acGdbYSfp2WheJoJm/EBBBLh/ID8KDc64ISZ9DYtBmC8/Q204PZJLHyzeB5qMzJ5trcOkybd78M4x2KWsUq++A==", "dependencies": { "@babel/helper-validator-identifier": "^7.22.20", "chalk": "^2.4.2", @@ -212,9 +212,9 @@ } }, "node_modules/@eslint/eslintrc": { - "version": "2.1.3", - "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-2.1.3.tgz", - "integrity": "sha512-yZzuIG+jnVu6hNSzFEN07e8BxF3uAzYtQb6uDkaYZLo6oYZDCq454c5kB8zxnzfCYyP4MIuyBn10L0DqwujTmA==", + "version": "2.1.4", + "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-2.1.4.tgz", + "integrity": "sha512-269Z39MS6wVJtsoUl10L60WdkhJVdPG24Q4eZTH3nnF6lpvSShEK3wQjDX9JRWAUPvPh7COouPpU9IrqaZFvtQ==", "peer": true, "dependencies": { "ajv": "^6.12.4", @@ -235,9 +235,9 @@ } }, "node_modules/@eslint/js": { - "version": "8.53.0", - "resolved": "https://registry.npmjs.org/@eslint/js/-/js-8.53.0.tgz", - "integrity": "sha512-Kn7K8dx/5U6+cT1yEhpX1w4PCSg0M+XyRILPgvwcEBjerFWCwQj5sbr3/VmxqV0JGHCBCzyd6LxypEuehypY1w==", + "version": "8.55.0", + "resolved": "https://registry.npmjs.org/@eslint/js/-/js-8.55.0.tgz", + "integrity": "sha512-qQfo2mxH5yVom1kacMtZZJFVdW+E70mqHMJvVg6WTLo+VBuQJ4TojZlfWBjK0ve5BdEeNAVxOsl/nvNMpJOaJA==", "peer": true, "engines": { "node": "^12.22.0 || ^14.17.0 || >=16.0.0" @@ -282,14 +282,14 @@ "integrity": "sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==" }, "node_modules/@microsoft/api-extractor": { - "version": "7.38.3", - "resolved": "https://registry.npmjs.org/@microsoft/api-extractor/-/api-extractor-7.38.3.tgz", - "integrity": "sha512-xt9iYyC5f39281j77JTA9C3ISJpW1XWkCcnw+2vM78CPnro6KhPfwQdPDfwS5JCPNuq0grm8cMdPUOPvrchDWw==", + "version": "7.38.5", + "resolved": "https://registry.npmjs.org/@microsoft/api-extractor/-/api-extractor-7.38.5.tgz", + "integrity": "sha512-c/w2zfqBcBJxaCzpJNvFoouWewcYrUOfeu5ZkWCCIXTF9a/gXM85RGevEzlMAIEGM/kssAAZSXRJIZ3Q5vLFow==", "dependencies": { - "@microsoft/api-extractor-model": "7.28.2", + "@microsoft/api-extractor-model": "7.28.3", "@microsoft/tsdoc": "0.14.2", "@microsoft/tsdoc-config": "~0.16.1", - "@rushstack/node-core-library": "3.61.0", + "@rushstack/node-core-library": "3.62.0", "@rushstack/rig-package": "0.5.1", "@rushstack/ts-command-line": "4.17.1", "colors": "~1.2.1", @@ -304,13 +304,13 @@ } }, "node_modules/@microsoft/api-extractor-model": { - "version": "7.28.2", - "resolved": "https://registry.npmjs.org/@microsoft/api-extractor-model/-/api-extractor-model-7.28.2.tgz", - "integrity": "sha512-vkojrM2fo3q4n4oPh4uUZdjJ2DxQ2+RnDQL/xhTWSRUNPF6P4QyrvY357HBxbnltKcYu+nNNolVqc6TIGQ73Ig==", + "version": "7.28.3", + "resolved": "https://registry.npmjs.org/@microsoft/api-extractor-model/-/api-extractor-model-7.28.3.tgz", + "integrity": "sha512-wT/kB2oDbdZXITyDh2SQLzaWwTOFbV326fP0pUwNW00WeliARs0qjmXBWmGWardEzp2U3/axkO3Lboqun6vrig==", "dependencies": { "@microsoft/tsdoc": "0.14.2", "@microsoft/tsdoc-config": "~0.16.1", - "@rushstack/node-core-library": "3.61.0" + "@rushstack/node-core-library": "3.62.0" } }, "node_modules/@microsoft/api-extractor/node_modules/typescript": { @@ -528,9 +528,9 @@ } }, "node_modules/@rollup/pluginutils": { - "version": "5.0.5", - "resolved": "https://registry.npmjs.org/@rollup/pluginutils/-/pluginutils-5.0.5.tgz", - "integrity": "sha512-6aEYR910NyP73oHiJglti74iRyOwgFU4x3meH/H8OJx6Ry0j6cOVZ5X/wTvub7G7Ao6qaHBEaNsV3GLJkSsF+Q==", + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/@rollup/pluginutils/-/pluginutils-5.1.0.tgz", + "integrity": "sha512-XTIWOPPcpvyKI6L1NHo0lFlCyznUEyPmPY1mc3KpPVDYulHSTvyeLNVW00QTLIAFNhR3kYnJTQHeGqU4M3n09g==", "dependencies": { "@types/estree": "^1.0.0", "estree-walker": "^2.0.2", @@ -551,7 +551,7 @@ "node_modules/@rush-temp/1ds-core-js": { "version": "0.0.0", "resolved": "file:projects/1ds-core-js.tgz", - "integrity": "sha512-p0OkADqIprv4Kza7UyVWvJN+iTeVElDOebKZzEEuqYTVqliBCkL0qJm4jwH18povcAF9FDct7ygPgpZ3hYAZBw==", + "integrity": "sha512-DGkfDxlWKboUc8GqPTtc97Zj0hfLIcvTz0zgb4FBATJ8uI0fVOmcBx2OI3GjEqH+4BglaYrc6QJ9cwOpO+kMCA==", "dependencies": { "@microsoft/api-extractor": "^7.18.19", "@microsoft/dynamicproto-js": "^2.0.2", @@ -579,7 +579,7 @@ "node_modules/@rush-temp/1ds-post-js": { "version": "0.0.0", "resolved": "file:projects/1ds-post-js.tgz", - "integrity": "sha512-KZuzguemyCnZuvh/UuFrDT+2YbBwQzG1JO0RT36ZG+jACkutuJOpWjnAty+ygt9QGNaeIuUivEnWJZ/pcPJNbA==", + "integrity": "sha512-BbD3dGsVNTXRqb6VfY/TQHC+5pFd6eh6qMSAMhD/btLbblPgp50IbLlS5dxCHn+JeoBes2OXHJeZYqW9jtoQrQ==", "dependencies": { "@microsoft/api-extractor": "^7.18.19", "@microsoft/dynamicproto-js": "^2.0.2", @@ -627,7 +627,7 @@ "node_modules/@rush-temp/applicationinsights-analytics-js": { "version": "0.0.0", "resolved": "file:projects/applicationinsights-analytics-js.tgz", - "integrity": "sha512-3HsaOFjuQAhfwgvadX4V+tS8v/V9u15cNdkmNMVjbamR9NVlHRur1TaAwqpPZ4N6VXM2BFzOtDc3M0DBMsU7IQ==", + "integrity": "sha512-Nb/zzcJ4poGsQpI0yLNeFk8fFsM7HasvWPaw+jWDMpu1UQhyE284lf0bUggEXO/aBbox/oISAuky21GkSD1+iw==", "dependencies": { "@microsoft/api-extractor": "^7.18.19", "@microsoft/dynamicproto-js": "^2.0.2", @@ -655,7 +655,7 @@ "node_modules/@rush-temp/applicationinsights-cfgsync-js": { "version": "0.0.0", "resolved": "file:projects/applicationinsights-cfgsync-js.tgz", - "integrity": "sha512-bkdZKaP8njXow6sHIpyoiyD1uyAkUK2tP8h9N7XMN5wbpWejoZVYSw4AGbTju0RtB4CKF6U0TQ6SX51ydeCibA==", + "integrity": "sha512-2QbX2SwX8D7Kx4BnGi1buSmz/wD0mADJzeg17LOBf2lJNmbfGrc8WXwbtEexeM7yOp36I3AohO1SJfuhmQbEWw==", "dependencies": { "@microsoft/api-extractor": "^7.18.19", "@microsoft/dynamicproto-js": "^2.0.2", @@ -684,7 +684,7 @@ "node_modules/@rush-temp/applicationinsights-channel-js": { "version": "0.0.0", "resolved": "file:projects/applicationinsights-channel-js.tgz", - "integrity": "sha512-EZcMoxdLF7HPBoad5HDlXNWqCp1vMJCTqStyGVyXPY8wweDN7B2oGnvgkc9nAfAV5RQo+soM2qTfV0kpORI0Ow==", + "integrity": "sha512-yLj7DsXnb0crQWLu+vdQSLNcdhWs8VoAGvrUqr4abnnipe3sa9wYtp8fP251KD3g5Kn/6UncEi4HmLWdflHjCw==", "dependencies": { "@microsoft/api-extractor": "^7.18.19", "@microsoft/dynamicproto-js": "^2.0.2", @@ -711,7 +711,7 @@ "node_modules/@rush-temp/applicationinsights-chrome-debug-extension": { "version": "0.0.0", "resolved": "file:projects/applicationinsights-chrome-debug-extension.tgz", - "integrity": "sha512-PG0CzJdP4kajz48UtvlVEfEPwvTs7n+P2ioAJbnI8T1u3CKoQ2mv3v8P2uQOzFO8CB1UPXzqbjMHFckxZIWHTA==", + "integrity": "sha512-B3mFKOP/Ijawz9mkZDicQcFAdD7sIOz3LPIp0+U5wavA+V6NuW41ktTcal5aMSEW8TUbFio1UlwPkUbcOcxvzQ==", "dependencies": { "@microsoft/dynamicproto-js": "^2.0.2", "@nevware21/grunt-eslint-ts": "^0.2.2", @@ -745,7 +745,7 @@ "node_modules/@rush-temp/applicationinsights-clickanalytics-js": { "version": "0.0.0", "resolved": "file:projects/applicationinsights-clickanalytics-js.tgz", - "integrity": "sha512-gM2zMJS/qDHf5BTrJ+3ZEQFFbnLKZMj1tonbf4w7j4hYaSf/j9ClYFSBXnsucyB5uOgu6KJ7XEXik3X59mmY9w==", + "integrity": "sha512-Jsm4X0mlbI3NZWv+SKBEFM4IbHN+qsYlhTbzahSqYVG/lEXfOko+hndTcWthNM+CEnlvjA6PMGpJc8AlfmgyKQ==", "dependencies": { "@microsoft/api-extractor": "^7.18.19", "@microsoft/dynamicproto-js": "^2.0.2", @@ -770,7 +770,7 @@ "node_modules/@rush-temp/applicationinsights-common": { "version": "0.0.0", "resolved": "file:projects/applicationinsights-common.tgz", - "integrity": "sha512-uAZakkbDJrJaUfH6SasqlBjHj0dfjFEsB5/l9sLYEbx2jFLhHs5Ck74VgVt3kmRImwnGrC7OulqttENASrkVKg==", + "integrity": "sha512-jt0/b2V/DiO9JGnSJjA5aGTmPKck7YoFNxxAc/8UBnvtrCggowRI3F8pbWsxSUu6ILcMQcNsof+z8zDEmkilBA==", "dependencies": { "@microsoft/api-extractor": "^7.18.19", "@microsoft/dynamicproto-js": "^2.0.2", @@ -825,7 +825,7 @@ "node_modules/@rush-temp/applicationinsights-debugplugin-js": { "version": "0.0.0", "resolved": "file:projects/applicationinsights-debugplugin-js.tgz", - "integrity": "sha512-BpIJZKYRw7YqOfOnIlm/RT4AsiVjXme63rhiiSvebSQ/VK4x/UZC5+LXUJy+xHWBWgi0tP+97NUpT36po9gHmg==", + "integrity": "sha512-4vGapLq7gKH3bjfND0dXFyHGY/rLXlv6tPXojOnhnlYqlzqd7/9Q3ox80hnG5jU4ORpOtmCaKCD9c5pKVDSTrw==", "dependencies": { "@microsoft/api-extractor": "^7.18.19", "@microsoft/dynamicproto-js": "^2.0.2", @@ -850,7 +850,7 @@ "node_modules/@rush-temp/applicationinsights-dependencies-js": { "version": "0.0.0", "resolved": "file:projects/applicationinsights-dependencies-js.tgz", - "integrity": "sha512-k7uz+cwSgG3lYOZTX5U2dnRq2f5Z+uW9b9360yeFFUYOlnGU9rfVMIjK6qFaSTRjizH+4Pc4PAiNgEr52QWu/g==", + "integrity": "sha512-nJAMt3G84EPX2zOvfQ0RvfTy4k8G1REd6RoxJhtBZmi1l9JEf9DG79bO/72malbihAQ+sPNuyNOXuaY94m7iyQ==", "dependencies": { "@microsoft/api-extractor": "^7.18.19", "@microsoft/dynamicproto-js": "^2.0.2", @@ -878,7 +878,7 @@ "node_modules/@rush-temp/applicationinsights-example-aisku": { "version": "0.0.0", "resolved": "file:projects/applicationinsights-example-aisku.tgz", - "integrity": "sha512-1qYLp8x1eFATwaaN0ShCWiR80CmLz/cKmHJv1i/d2y8wcf2586H2YDVRfwKap7JZKr/gixRN16DQCyolVjsdHQ==", + "integrity": "sha512-uNvIAi2nx/zA498rbXL3WDcUPolK8YYu61Gan9928kPh0dvNk6YbNr7bQr+3/GULvSXxzwKOxgnHIxmC8C2a2w==", "dependencies": { "@microsoft/dynamicproto-js": "^2.0.2", "@nevware21/ts-utils": ">= 0.10.1 < 2.x", @@ -896,7 +896,7 @@ "node_modules/@rush-temp/applicationinsights-example-cfgsync": { "version": "0.0.0", "resolved": "file:projects/applicationinsights-example-cfgsync.tgz", - "integrity": "sha512-plZ96/8Ux5BUgbh/8+lRIZg5bu3ZjA2eKh/VdUGEZBcAUKwIQJg0FwQFA+wV7wf9UzznW+F6bHE3P4LdO9pegA==", + "integrity": "sha512-gVEvqvbv3nMyirC2wt/Yg8pi2bJ00sviQKTMXRfGhgUxcaZzn9Iyq8Zf7vrpFp2LuGd2fj6/ypDI0bIpZANwmg==", "dependencies": { "@microsoft/dynamicproto-js": "^2.0.2", "@nevware21/grunt-eslint-ts": "^0.2.2", @@ -922,7 +922,7 @@ "node_modules/@rush-temp/applicationinsights-example-dependencies": { "version": "0.0.0", "resolved": "file:projects/applicationinsights-example-dependencies.tgz", - "integrity": "sha512-J3URV/5GbK7xM0fg0prYozdeal3AYO1rLGYCJ6IEIPEFHTxu1L+naHY/nEUl/tRjfqYZcN9UqirwvtfmCfAk/g==", + "integrity": "sha512-q3fLGUDJ8KJHNS4dm9e28t8EvghGii1fPj8vxJsq7hT7XYgSEsOkrdchRmU2BgSIlfRDYS8IF2v7erixX51u9A==", "dependencies": { "@microsoft/dynamicproto-js": "^2.0.2", "@nevware21/ts-utils": ">= 0.10.1 < 2.x", @@ -940,7 +940,7 @@ "node_modules/@rush-temp/applicationinsights-example-shared-worker": { "version": "0.0.0", "resolved": "file:projects/applicationinsights-example-shared-worker.tgz", - "integrity": "sha512-GpTasxJITHAFZGFHuq5SUd0ENFZ+AWr3eypR+nE5KLAqFSpEcEtmTVtmimOWNMviVB15vX3cDl+tyUUdZDktgA==", + "integrity": "sha512-mfk89gOkdhdhPVvNHKRPhjDpWC6wmqI8xOsB2Aqe3sKXGFDGpoB/EnJi1Tnf0hxyaxkwLXqORWf7dDbo9u+2UQ==", "dependencies": { "@microsoft/dynamicproto-js": "^2.0.2", "@nevware21/grunt-eslint-ts": "^0.2.2", @@ -975,7 +975,7 @@ "node_modules/@rush-temp/applicationinsights-perfmarkmeasure-js": { "version": "0.0.0", "resolved": "file:projects/applicationinsights-perfmarkmeasure-js.tgz", - "integrity": "sha512-hY9MioPwtj22lcnx84ltxhbi4Zs98xY4WCKUu4EUD/3Gwt99e2trqm2o1POxcbi0eNXomVF1/VrlZhJXUpzfog==", + "integrity": "sha512-wpKtGlBtXrTFtKbNc3KVv+/FgLihmFAqeG42bsw0x5mTK0KispWmCEENG0/cxT1P+3bndF3ZVnGs54M7aij2xw==", "dependencies": { "@microsoft/api-extractor": "^7.18.19", "@microsoft/dynamicproto-js": "^2.0.2", @@ -1000,7 +1000,7 @@ "node_modules/@rush-temp/applicationinsights-properties-js": { "version": "0.0.0", "resolved": "file:projects/applicationinsights-properties-js.tgz", - "integrity": "sha512-VUZ4tRQ1NigsYhEnteGXkT2ZZahRsQM6nI9PXe/maoerSMIEk2HorQsfUIXPrV2n9XPQWr2jS3T+9ZV+ko8zoA==", + "integrity": "sha512-K6Yg/9gLhUtzY9q26i3pPJ05oCLhCDQRc2x1EtBW6beyJjTwwV7FFNeEK0JO2zLjTZ5LqKGAnLpqz3jsw67hxg==", "dependencies": { "@microsoft/api-extractor": "^7.18.19", "@microsoft/dynamicproto-js": "^2.0.2", @@ -1095,7 +1095,7 @@ "node_modules/@rush-temp/applicationinsights-teechannel-js": { "version": "0.0.0", "resolved": "file:projects/applicationinsights-teechannel-js.tgz", - "integrity": "sha512-we4vZMJ9ANBUn86+CDLceR81G61/MJaQy1+wVKKlHc5+mzp7M6Q3ZkU/guGTYZqfs5lABiEmtHZu4i3dRAGcog==", + "integrity": "sha512-mAkFO+lEb2OAbW4gqbn5/UZOUDl+WrrdOuk7hGIcPboXLRv1ekyEg7lpSxx7yeQDzl5zhx4EhzYykxZps0fYtA==", "dependencies": { "@microsoft/api-extractor": "^7.18.19", "@microsoft/dynamicproto-js": "^2.0.2", @@ -1122,7 +1122,7 @@ "node_modules/@rush-temp/applicationinsights-test-module-type-check": { "version": "0.0.0", "resolved": "file:projects/applicationinsights-test-module-type-check.tgz", - "integrity": "sha512-qsrYYTLoAJpXq2mDU5V2+Ru1BwIb4Os5+PfVamjMXMo5WnXcj0fZlm8Tl6n/gE5rtG0F61Kr/f/HNZKGwmYA7A==", + "integrity": "sha512-YNRHYztkAd4kLTL7nkgkcjY9yhOXP2tCr37gnaaLWSFLZnzD3m2gRFXbrIfbm4s7IhnUPOWw6ot6eI8N35AI4Q==", "dependencies": { "tslib": "*", "typescript": "^4.9.3" @@ -1131,7 +1131,7 @@ "node_modules/@rush-temp/applicationinsights-web": { "version": "0.0.0", "resolved": "file:projects/applicationinsights-web.tgz", - "integrity": "sha512-J15MaIinwb65E5pH05BZcv28uS0TjbEhK5uhxvsUqZ9OVPu72lzryhYOBOJpWe/RbjXHxLwDer8ygT4l3d7wDw==", + "integrity": "sha512-1jrnOa4BeSX9SWFZqC65ROTqeRjnmkPyEQ2yoC+AuAozFFz+LOpiiXaHwmX825XT1b7HUULlbyRV+cw5tONwZw==", "dependencies": { "@microsoft/api-extractor": "^7.18.19", "@microsoft/dynamicproto-js": "^2.0.2", @@ -1163,7 +1163,7 @@ "node_modules/@rush-temp/applicationinsights-web-basic": { "version": "0.0.0", "resolved": "file:projects/applicationinsights-web-basic.tgz", - "integrity": "sha512-Y09x4lh0fWUOBfojZGc7eMydFlhMH/qc7YCF/82r7iRG1WwHEn+OcShp3DpJbm1MO6IGGotir6VRnrxy/EoVCA==", + "integrity": "sha512-od5qeNzwm6esStsdxtHSzOZHlILpuaVwKYz6vreLQKwcZLxecPvixTqK0zF8OfKwb5vcvcPNHqgnnNxXqDTewQ==", "dependencies": { "@microsoft/api-extractor": "^7.18.19", "@microsoft/dynamicproto-js": "^2.0.2", @@ -1195,7 +1195,7 @@ "node_modules/@rush-temp/applicationinsights-web-snippet": { "version": "0.0.0", "resolved": "file:projects/applicationinsights-web-snippet.tgz", - "integrity": "sha512-63RdS19FO+BaAbfKrFDN5J1JTSIA8wPV9T5b3Nr3gwKN37SqYAbLvhvPB1hSwvdbugsp1YhEZXmv9GKKtvm3Bg==", + "integrity": "sha512-KX1xl0tETM/CIBFSaAwfS+Oba3rjqQ9bMOg4S0c+hz3hY0dPv7QuNfaODnGPZMN2mc+OXc9o8C8Ah9gDKqai2Q==", "dependencies": { "@microsoft/dynamicproto-js": "^2.0.2", "@nevware21/grunt-eslint-ts": "^0.2.2", @@ -1216,9 +1216,9 @@ } }, "node_modules/@rushstack/node-core-library": { - "version": "3.61.0", - "resolved": "https://registry.npmjs.org/@rushstack/node-core-library/-/node-core-library-3.61.0.tgz", - "integrity": "sha512-tdOjdErme+/YOu4gPed3sFS72GhtWCgNV9oDsHDnoLY5oDfwjKUc9Z+JOZZ37uAxcm/OCahDHfuu2ugqrfWAVQ==", + "version": "3.62.0", + "resolved": "https://registry.npmjs.org/@rushstack/node-core-library/-/node-core-library-3.62.0.tgz", + "integrity": "sha512-88aJn2h8UpSvdwuDXBv1/v1heM6GnBf3RjEy6ZPP7UnzHNCqOHA2Ut+ScYUbXcqIdfew9JlTAe3g+cnX9xQ/Aw==", "dependencies": { "colors": "~1.2.1", "fs-extra": "~7.0.1", @@ -1401,9 +1401,9 @@ } }, "node_modules/@types/lodash": { - "version": "4.14.201", - "resolved": "https://registry.npmjs.org/@types/lodash/-/lodash-4.14.201.tgz", - "integrity": "sha512-y9euML0cim1JrykNxADLfaG0FgD1g/yTHwUs/Jg9ZIU7WKj2/4IW9Lbb1WZbvck78W/lfGXFfe+u2EGfIJXdLQ==" + "version": "4.14.202", + "resolved": "https://registry.npmjs.org/@types/lodash/-/lodash-4.14.202.tgz", + "integrity": "sha512-OvlIYQK9tNneDlS0VN54LLd5uiPCBOp7gS5Z0f1mjoJYBrtStzgmJBxONW3U6OZqdtNzZPmn9BS/7WI7BFFcFQ==" }, "node_modules/@types/minimatch": { "version": "5.1.2", @@ -1421,19 +1421,19 @@ "integrity": "sha512-dISoDXWWQwUquiKsyZ4Ng+HX2KsPL7LyHKHQwgGFEA3IaKac4Obd+h2a/a6waisAoepJlBcx9paWqjA8/HVjCw==" }, "node_modules/@types/prop-types": { - "version": "15.7.10", - "resolved": "https://registry.npmjs.org/@types/prop-types/-/prop-types-15.7.10.tgz", - "integrity": "sha512-mxSnDQxPqsZxmeShFH+uwQ4kO4gcJcGahjjMFeLbKE95IAZiiZyiEepGZjtXJ7hN/yfu0bu9xN2ajcU0JcxX6A==" + "version": "15.7.11", + "resolved": "https://registry.npmjs.org/@types/prop-types/-/prop-types-15.7.11.tgz", + "integrity": "sha512-ga8y9v9uyeiLdpKddhxYQkxNDrfvuPrlFb0N1qnZZByvcElJaXthF1UhvCh9TLWJBEHeNtdnbysW7Y6Uq8CVng==" }, "node_modules/@types/qunit": { - "version": "2.19.8", - "resolved": "https://registry.npmjs.org/@types/qunit/-/qunit-2.19.8.tgz", - "integrity": "sha512-L4JyeRG1CJGSzJKd1b78DX/ll91E8e50IXkkl8KzW6W0IWz6FTHWEYvTEi8QVNHkUqUu6hjTffwV7ffxcoka0g==" + "version": "2.19.9", + "resolved": "https://registry.npmjs.org/@types/qunit/-/qunit-2.19.9.tgz", + "integrity": "sha512-Ym6B8Ewt1R1b0EgSqISSrAKp2Pg5MNgKK3/d2Fbls3PN7kNnucVSGaRx9Prxeo78HfQofYJMWDWLPlfAuwx7IQ==" }, "node_modules/@types/react": { - "version": "16.14.51", - "resolved": "https://registry.npmjs.org/@types/react/-/react-16.14.51.tgz", - "integrity": "sha512-4T/wsDXStA5OUGTj6w2INze3ZCz22IwQiWcApgqqNRU2A6vNUIPXpNkjAMUFxx6diYPVkvz+d7gEtU7AZ+0Xqg==", + "version": "16.14.52", + "resolved": "https://registry.npmjs.org/@types/react/-/react-16.14.52.tgz", + "integrity": "sha512-4+ZN73hgRW3Gang3QMqWjrqPPkf+lWZYiyG4uXtUbpd+7eiBDw6Gemila6rXDd8DorADupTiIERL6Mb5BQTF2w==", "dependencies": { "@types/prop-types": "*", "@types/scheduler": "*", @@ -1441,9 +1441,9 @@ } }, "node_modules/@types/react-dom": { - "version": "16.9.22", - "resolved": "https://registry.npmjs.org/@types/react-dom/-/react-dom-16.9.22.tgz", - "integrity": "sha512-x7T/NHsYiKfbIwZDzBTThTF3a3UPNLanOY4wbEe4Hy44hf0tWIZTu8VZJTkB/FKcr4cbfDq0E7y3jSLJh4cpow==", + "version": "16.9.24", + "resolved": "https://registry.npmjs.org/@types/react-dom/-/react-dom-16.9.24.tgz", + "integrity": "sha512-Gcmq2JTDheyWn/1eteqyzzWKSqDjYU6KYsIvH7thb7CR5OYInAWOX+7WnKf6PaU/cbdOc4szJItcDEJO7UGmfA==", "dependencies": { "@types/react": "^16" } @@ -1462,14 +1462,14 @@ } }, "node_modules/@types/scheduler": { - "version": "0.16.6", - "resolved": "https://registry.npmjs.org/@types/scheduler/-/scheduler-0.16.6.tgz", - "integrity": "sha512-Vlktnchmkylvc9SnwwwozTv04L/e1NykF5vgoQ0XTmI8DD+wxfjQuHuvHS3p0r2jz2x2ghPs2h1FVeDirIteWA==" + "version": "0.16.8", + "resolved": "https://registry.npmjs.org/@types/scheduler/-/scheduler-0.16.8.tgz", + "integrity": "sha512-WZLiwShhwLRmeV6zH+GkbOFT6Z6VklCItrDioxUnv+u4Ll+8vKeFySoFyK/0ctcRpOmwAicELfmys1sDc/Rw+A==" }, "node_modules/@types/semver": { - "version": "7.5.5", - "resolved": "https://registry.npmjs.org/@types/semver/-/semver-7.5.5.tgz", - "integrity": "sha512-+d+WYC1BxJ6yVOgUgzK8gWvp5qF8ssV5r4nsDcZWKRWcDQLQ619tvWAxJQYGgBrO1MnLJC7a5GtiYsAoQ47dJg==", + "version": "7.5.6", + "resolved": "https://registry.npmjs.org/@types/semver/-/semver-7.5.6.tgz", + "integrity": "sha512-dn1l8LaMea/IjDoHNd9J52uBbInB796CDffS6VdIxvqYCPSG0V0DzHp76GpaWnlhg88uYyPbXCDIowa86ybd5A==", "peer": true }, "node_modules/@types/sinon": { @@ -1487,16 +1487,16 @@ } }, "node_modules/@typescript-eslint/eslint-plugin": { - "version": "6.11.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-6.11.0.tgz", - "integrity": "sha512-uXnpZDc4VRjY4iuypDBKzW1rz9T5YBBK0snMn8MaTSNd2kMlj50LnLBABELjJiOL5YHk7ZD8hbSpI9ubzqYI0w==", + "version": "6.13.2", + "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-6.13.2.tgz", + "integrity": "sha512-3+9OGAWHhk4O1LlcwLBONbdXsAhLjyCFogJY/cWy2lxdVJ2JrcTF2pTGMaLl2AE7U1l31n8Py4a8bx5DLf/0dQ==", "peer": true, "dependencies": { "@eslint-community/regexpp": "^4.5.1", - "@typescript-eslint/scope-manager": "6.11.0", - "@typescript-eslint/type-utils": "6.11.0", - "@typescript-eslint/utils": "6.11.0", - "@typescript-eslint/visitor-keys": "6.11.0", + "@typescript-eslint/scope-manager": "6.13.2", + "@typescript-eslint/type-utils": "6.13.2", + "@typescript-eslint/utils": "6.13.2", + "@typescript-eslint/visitor-keys": "6.13.2", "debug": "^4.3.4", "graphemer": "^1.4.0", "ignore": "^5.2.4", @@ -1522,15 +1522,15 @@ } }, "node_modules/@typescript-eslint/parser": { - "version": "6.11.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-6.11.0.tgz", - "integrity": "sha512-+whEdjk+d5do5nxfxx73oanLL9ghKO3EwM9kBCkUtWMRwWuPaFv9ScuqlYfQ6pAD6ZiJhky7TZ2ZYhrMsfMxVQ==", + "version": "6.13.2", + "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-6.13.2.tgz", + "integrity": "sha512-MUkcC+7Wt/QOGeVlM8aGGJZy1XV5YKjTpq9jK6r6/iLsGXhBVaGP5N0UYvFsu9BFlSpwY9kMretzdBH01rkRXg==", "peer": true, "dependencies": { - "@typescript-eslint/scope-manager": "6.11.0", - "@typescript-eslint/types": "6.11.0", - "@typescript-eslint/typescript-estree": "6.11.0", - "@typescript-eslint/visitor-keys": "6.11.0", + "@typescript-eslint/scope-manager": "6.13.2", + "@typescript-eslint/types": "6.13.2", + "@typescript-eslint/typescript-estree": "6.13.2", + "@typescript-eslint/visitor-keys": "6.13.2", "debug": "^4.3.4" }, "engines": { @@ -1550,13 +1550,13 @@ } }, "node_modules/@typescript-eslint/scope-manager": { - "version": "6.11.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-6.11.0.tgz", - "integrity": "sha512-0A8KoVvIURG4uhxAdjSaxy8RdRE//HztaZdG8KiHLP8WOXSk0vlF7Pvogv+vlJA5Rnjj/wDcFENvDaHb+gKd1A==", + "version": "6.13.2", + "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-6.13.2.tgz", + "integrity": "sha512-CXQA0xo7z6x13FeDYCgBkjWzNqzBn8RXaE3QVQVIUm74fWJLkJkaHmHdKStrxQllGh6Q4eUGyNpMe0b1hMkXFA==", "peer": true, "dependencies": { - "@typescript-eslint/types": "6.11.0", - "@typescript-eslint/visitor-keys": "6.11.0" + "@typescript-eslint/types": "6.13.2", + "@typescript-eslint/visitor-keys": "6.13.2" }, "engines": { "node": "^16.0.0 || >=18.0.0" @@ -1567,13 +1567,13 @@ } }, "node_modules/@typescript-eslint/type-utils": { - "version": "6.11.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-6.11.0.tgz", - "integrity": "sha512-nA4IOXwZtqBjIoYrJcYxLRO+F9ri+leVGoJcMW1uqr4r1Hq7vW5cyWrA43lFbpRvQ9XgNrnfLpIkO3i1emDBIA==", + "version": "6.13.2", + "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-6.13.2.tgz", + "integrity": "sha512-Qr6ssS1GFongzH2qfnWKkAQmMUyZSyOr0W54nZNU1MDfo+U4Mv3XveeLZzadc/yq8iYhQZHYT+eoXJqnACM1tw==", "peer": true, "dependencies": { - "@typescript-eslint/typescript-estree": "6.11.0", - "@typescript-eslint/utils": "6.11.0", + "@typescript-eslint/typescript-estree": "6.13.2", + "@typescript-eslint/utils": "6.13.2", "debug": "^4.3.4", "ts-api-utils": "^1.0.1" }, @@ -1594,9 +1594,9 @@ } }, "node_modules/@typescript-eslint/types": { - "version": "6.11.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-6.11.0.tgz", - "integrity": "sha512-ZbEzuD4DwEJxwPqhv3QULlRj8KYTAnNsXxmfuUXFCxZmO6CF2gM/y+ugBSAQhrqaJL3M+oe4owdWunaHM6beqA==", + "version": "6.13.2", + "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-6.13.2.tgz", + "integrity": "sha512-7sxbQ+EMRubQc3wTfTsycgYpSujyVbI1xw+3UMRUcrhSy+pN09y/lWzeKDbvhoqcRbHdc+APLs/PWYi/cisLPg==", "peer": true, "engines": { "node": "^16.0.0 || >=18.0.0" @@ -1607,13 +1607,13 @@ } }, "node_modules/@typescript-eslint/typescript-estree": { - "version": "6.11.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-6.11.0.tgz", - "integrity": "sha512-Aezzv1o2tWJwvZhedzvD5Yv7+Lpu1by/U1LZ5gLc4tCx8jUmuSCMioPFRjliN/6SJIvY6HpTtJIWubKuYYYesQ==", + "version": "6.13.2", + "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-6.13.2.tgz", + "integrity": "sha512-SuD8YLQv6WHnOEtKv8D6HZUzOub855cfPnPMKvdM/Bh1plv1f7Q/0iFUDLKKlxHcEstQnaUU4QZskgQq74t+3w==", "peer": true, "dependencies": { - "@typescript-eslint/types": "6.11.0", - "@typescript-eslint/visitor-keys": "6.11.0", + "@typescript-eslint/types": "6.13.2", + "@typescript-eslint/visitor-keys": "6.13.2", "debug": "^4.3.4", "globby": "^11.1.0", "is-glob": "^4.0.3", @@ -1634,17 +1634,17 @@ } }, "node_modules/@typescript-eslint/utils": { - "version": "6.11.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-6.11.0.tgz", - "integrity": "sha512-p23ibf68fxoZy605dc0dQAEoUsoiNoP3MD9WQGiHLDuTSOuqoTsa4oAy+h3KDkTcxbbfOtUjb9h3Ta0gT4ug2g==", + "version": "6.13.2", + "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-6.13.2.tgz", + "integrity": "sha512-b9Ptq4eAZUym4idijCRzl61oPCwwREcfDI8xGk751Vhzig5fFZR9CyzDz4Sp/nxSLBYxUPyh4QdIDqWykFhNmQ==", "peer": true, "dependencies": { "@eslint-community/eslint-utils": "^4.4.0", "@types/json-schema": "^7.0.12", "@types/semver": "^7.5.0", - "@typescript-eslint/scope-manager": "6.11.0", - "@typescript-eslint/types": "6.11.0", - "@typescript-eslint/typescript-estree": "6.11.0", + "@typescript-eslint/scope-manager": "6.13.2", + "@typescript-eslint/types": "6.13.2", + "@typescript-eslint/typescript-estree": "6.13.2", "semver": "^7.5.4" }, "engines": { @@ -1659,12 +1659,12 @@ } }, "node_modules/@typescript-eslint/visitor-keys": { - "version": "6.11.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-6.11.0.tgz", - "integrity": "sha512-+SUN/W7WjBr05uRxPggJPSzyB8zUpaYo2hByKasWbqr3PM8AXfZt8UHdNpBS1v9SA62qnSSMF3380SwDqqprgQ==", + "version": "6.13.2", + "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-6.13.2.tgz", + "integrity": "sha512-OGznFs0eAQXJsp+xSd6k/O1UbFi/K/L7WjqeRoFE7vadjAF9y0uppXhYNQNEqygjou782maGClOoZwPqF0Drlw==", "peer": true, "dependencies": { - "@typescript-eslint/types": "6.11.0", + "@typescript-eslint/types": "6.13.2", "eslint-visitor-keys": "^3.4.1" }, "engines": { @@ -1967,9 +1967,9 @@ } }, "node_modules/browserslist": { - "version": "4.22.1", - "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.22.1.tgz", - "integrity": "sha512-FEVc202+2iuClEhZhrWy6ZiAcRLvNMyYcxZ8raemul1DYVOVdFsbqckWLdsixQZCpJlwe77Z3UTalE7jsjnKfQ==", + "version": "4.22.2", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.22.2.tgz", + "integrity": "sha512-0UgcrvQmBDvZHFGdYUehrCNIazki7/lUP3kkoi/r3YB2amZbFM9J43ZRkJTXBUZK4gmx56+Sqk9+Vs9mwZx9+A==", "funding": [ { "type": "opencollective", @@ -1985,9 +1985,9 @@ } ], "dependencies": { - "caniuse-lite": "^1.0.30001541", - "electron-to-chromium": "^1.4.535", - "node-releases": "^2.0.13", + "caniuse-lite": "^1.0.30001565", + "electron-to-chromium": "^1.4.601", + "node-releases": "^2.0.14", "update-browserslist-db": "^1.0.13" }, "bin": { @@ -2086,9 +2086,9 @@ } }, "node_modules/caniuse-lite": { - "version": "1.0.30001562", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001562.tgz", - "integrity": "sha512-kfte3Hym//51EdX4239i+Rmp20EsLIYGdPkERegTgU19hQWCRhsRFGKHTliUlsry53tv17K7n077Kqa0WJU4ng==", + "version": "1.0.30001566", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001566.tgz", + "integrity": "sha512-ggIhCsTxmITBAMmK8yZjEhCO5/47jKXPu6Dha/wuCS4JePVL+3uiDEBuhu2aIoT+bqTOR8L76Ip1ARL9xYsEJA==", "funding": [ { "type": "opencollective", @@ -2329,9 +2329,9 @@ } }, "node_modules/csstype": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.1.2.tgz", - "integrity": "sha512-I7K1Uu0MBPzaFKg4nI5Q7Vs2t+3gWWW648spaF+Rg7pI9ds18Ugn+lvg4SHczUdKlHI5LWBXyqfS8+DufyBsgQ==" + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.1.3.tgz", + "integrity": "sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==" }, "node_modules/dateformat": { "version": "4.6.3", @@ -2471,9 +2471,9 @@ "integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==" }, "node_modules/electron-to-chromium": { - "version": "1.4.586", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.586.tgz", - "integrity": "sha512-qMa+E6yf1fNQbg3G66pHLXeJUP5CCCzNat1VPczOZOqgI2w4u+8y9sQnswMdGs5m4C1rOePq37EVBr/nsPQY7w==" + "version": "1.4.607", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.607.tgz", + "integrity": "sha512-YUlnPwE6eYxzwBnFmawA8LiLRfm70R2aJRIUv0n03uHt/cUzzYACOogmvk8M2+hVzt/kB80KJXx7d5f5JofPvQ==" }, "node_modules/encodeurl": { "version": "1.0.2", @@ -2525,15 +2525,15 @@ } }, "node_modules/eslint": { - "version": "8.53.0", - "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.53.0.tgz", - "integrity": "sha512-N4VuiPjXDUa4xVeV/GC/RV3hQW9Nw+Y463lkWaKKXKYMvmRiRDAtfpuPFLN+E1/6ZhyR8J2ig+eVREnYgUsiag==", + "version": "8.55.0", + "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.55.0.tgz", + "integrity": "sha512-iyUUAM0PCKj5QpwGfmCAG9XXbZCWsqP/eWAWrG/W0umvjuLRBECwSFdt+rCntju0xEH7teIABPwXpahftIaTdA==", "peer": true, "dependencies": { "@eslint-community/eslint-utils": "^4.2.0", "@eslint-community/regexpp": "^4.6.1", - "@eslint/eslintrc": "^2.1.3", - "@eslint/js": "8.53.0", + "@eslint/eslintrc": "^2.1.4", + "@eslint/js": "8.55.0", "@humanwhocodes/config-array": "^0.11.13", "@humanwhocodes/module-importer": "^1.0.1", "@nodelib/fs.walk": "^1.2.8", @@ -3373,7 +3373,7 @@ "version": "9.1.1", "resolved": "https://registry.npmjs.org/puppeteer/-/puppeteer-9.1.1.tgz", "integrity": "sha512-W+nOulP2tYd/ZG99WuZC/I5ljjQQ7EUw/jQGcIb9eu8mDlZxNY2SgcJXTLG9h5gRvqA3uJOe4hZXYsd3EqioMw==", - "deprecated": "< 19.4.0 is no longer supported", + "deprecated": "< 21.3.7 is no longer supported", "hasInstallScript": true, "dependencies": { "debug": "^4.1.0", @@ -4307,9 +4307,9 @@ } }, "node_modules/node-releases": { - "version": "2.0.13", - "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.13.tgz", - "integrity": "sha512-uYr7J37ae/ORWdZeQ1xxMJe3NtdmqMC/JZK+geofDrkLUApKRHPd18/TxtBOJ4A0/+uUIliorNrfYV6s1b02eQ==" + "version": "2.0.14", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.14.tgz", + "integrity": "sha512-y10wOWt8yZpqXmOgRo77WaHEmhYQYGNA6y421PKsKYWEK8aW+cqAphborZDhqfyKrbZEN92CN1X2KbafY2s7Yw==" }, "node_modules/node-watch": { "version": "0.7.3", @@ -4809,7 +4809,7 @@ "version": "19.2.0", "resolved": "https://registry.npmjs.org/puppeteer/-/puppeteer-19.2.0.tgz", "integrity": "sha512-rhr5ery8htpOTikmm/wrDU707wtmJ7ccX2WLkBf0A8eYYpscck5/iz04/fHOiIRWMFfnYOvaO9wNb4jcO3Mjyg==", - "deprecated": "< 19.4.0 is no longer supported", + "deprecated": "< 21.3.7 is no longer supported", "hasInstallScript": true, "dependencies": { "cosmiconfig": "7.0.1", @@ -6137,9 +6137,9 @@ "integrity": "sha512-Y4OZ+ytlatR8AI+8KZfKuL5urKp7qey08ha31L8b3BwewJAoJamTzyvxPR/5D+KkdJCGPq/+8TukHBlY10FX9A==" }, "@babel/highlight": { - "version": "7.22.20", - "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.22.20.tgz", - "integrity": "sha512-dkdMCN3py0+ksCgYmGG8jKeGA/8Tk+gJwSYYlFGxG5lmhfKNoAy004YpLxpS1W2J8m/EK2Ew+yOs9pVRwO89mg==", + "version": "7.23.4", + "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.23.4.tgz", + "integrity": "sha512-acGdbYSfp2WheJoJm/EBBBLh/ID8KDc64ISZ9DYtBmC8/Q204PZJLHyzeB5qMzJ5trcOkybd78M4x2KWsUq++A==", "requires": { "@babel/helper-validator-identifier": "^7.22.20", "chalk": "^2.4.2", @@ -6213,9 +6213,9 @@ "peer": true }, "@eslint/eslintrc": { - "version": "2.1.3", - "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-2.1.3.tgz", - "integrity": "sha512-yZzuIG+jnVu6hNSzFEN07e8BxF3uAzYtQb6uDkaYZLo6oYZDCq454c5kB8zxnzfCYyP4MIuyBn10L0DqwujTmA==", + "version": "2.1.4", + "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-2.1.4.tgz", + "integrity": "sha512-269Z39MS6wVJtsoUl10L60WdkhJVdPG24Q4eZTH3nnF6lpvSShEK3wQjDX9JRWAUPvPh7COouPpU9IrqaZFvtQ==", "peer": true, "requires": { "ajv": "^6.12.4", @@ -6230,9 +6230,9 @@ } }, "@eslint/js": { - "version": "8.53.0", - "resolved": "https://registry.npmjs.org/@eslint/js/-/js-8.53.0.tgz", - "integrity": "sha512-Kn7K8dx/5U6+cT1yEhpX1w4PCSg0M+XyRILPgvwcEBjerFWCwQj5sbr3/VmxqV0JGHCBCzyd6LxypEuehypY1w==", + "version": "8.55.0", + "resolved": "https://registry.npmjs.org/@eslint/js/-/js-8.55.0.tgz", + "integrity": "sha512-qQfo2mxH5yVom1kacMtZZJFVdW+E70mqHMJvVg6WTLo+VBuQJ4TojZlfWBjK0ve5BdEeNAVxOsl/nvNMpJOaJA==", "peer": true }, "@humanwhocodes/config-array": { @@ -6264,14 +6264,14 @@ "integrity": "sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==" }, "@microsoft/api-extractor": { - "version": "7.38.3", - "resolved": "https://registry.npmjs.org/@microsoft/api-extractor/-/api-extractor-7.38.3.tgz", - "integrity": "sha512-xt9iYyC5f39281j77JTA9C3ISJpW1XWkCcnw+2vM78CPnro6KhPfwQdPDfwS5JCPNuq0grm8cMdPUOPvrchDWw==", + "version": "7.38.5", + "resolved": "https://registry.npmjs.org/@microsoft/api-extractor/-/api-extractor-7.38.5.tgz", + "integrity": "sha512-c/w2zfqBcBJxaCzpJNvFoouWewcYrUOfeu5ZkWCCIXTF9a/gXM85RGevEzlMAIEGM/kssAAZSXRJIZ3Q5vLFow==", "requires": { - "@microsoft/api-extractor-model": "7.28.2", + "@microsoft/api-extractor-model": "7.28.3", "@microsoft/tsdoc": "0.14.2", "@microsoft/tsdoc-config": "~0.16.1", - "@rushstack/node-core-library": "3.61.0", + "@rushstack/node-core-library": "3.62.0", "@rushstack/rig-package": "0.5.1", "@rushstack/ts-command-line": "4.17.1", "colors": "~1.2.1", @@ -6290,13 +6290,13 @@ } }, "@microsoft/api-extractor-model": { - "version": "7.28.2", - "resolved": "https://registry.npmjs.org/@microsoft/api-extractor-model/-/api-extractor-model-7.28.2.tgz", - "integrity": "sha512-vkojrM2fo3q4n4oPh4uUZdjJ2DxQ2+RnDQL/xhTWSRUNPF6P4QyrvY357HBxbnltKcYu+nNNolVqc6TIGQ73Ig==", + "version": "7.28.3", + "resolved": "https://registry.npmjs.org/@microsoft/api-extractor-model/-/api-extractor-model-7.28.3.tgz", + "integrity": "sha512-wT/kB2oDbdZXITyDh2SQLzaWwTOFbV326fP0pUwNW00WeliARs0qjmXBWmGWardEzp2U3/axkO3Lboqun6vrig==", "requires": { "@microsoft/tsdoc": "0.14.2", "@microsoft/tsdoc-config": "~0.16.1", - "@rushstack/node-core-library": "3.61.0" + "@rushstack/node-core-library": "3.62.0" } }, "@microsoft/dynamicproto-js": { @@ -6440,9 +6440,9 @@ } }, "@rollup/pluginutils": { - "version": "5.0.5", - "resolved": "https://registry.npmjs.org/@rollup/pluginutils/-/pluginutils-5.0.5.tgz", - "integrity": "sha512-6aEYR910NyP73oHiJglti74iRyOwgFU4x3meH/H8OJx6Ry0j6cOVZ5X/wTvub7G7Ao6qaHBEaNsV3GLJkSsF+Q==", + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/@rollup/pluginutils/-/pluginutils-5.1.0.tgz", + "integrity": "sha512-XTIWOPPcpvyKI6L1NHo0lFlCyznUEyPmPY1mc3KpPVDYulHSTvyeLNVW00QTLIAFNhR3kYnJTQHeGqU4M3n09g==", "requires": { "@types/estree": "^1.0.0", "estree-walker": "^2.0.2", @@ -6451,7 +6451,7 @@ }, "@rush-temp/1ds-core-js": { "version": "file:projects\\1ds-core-js.tgz", - "integrity": "sha512-p0OkADqIprv4Kza7UyVWvJN+iTeVElDOebKZzEEuqYTVqliBCkL0qJm4jwH18povcAF9FDct7ygPgpZ3hYAZBw==", + "integrity": "sha512-DGkfDxlWKboUc8GqPTtc97Zj0hfLIcvTz0zgb4FBATJ8uI0fVOmcBx2OI3GjEqH+4BglaYrc6QJ9cwOpO+kMCA==", "requires": { "@microsoft/api-extractor": "^7.18.19", "@microsoft/dynamicproto-js": "^2.0.2", @@ -6478,7 +6478,7 @@ }, "@rush-temp/1ds-post-js": { "version": "file:projects\\1ds-post-js.tgz", - "integrity": "sha512-KZuzguemyCnZuvh/UuFrDT+2YbBwQzG1JO0RT36ZG+jACkutuJOpWjnAty+ygt9QGNaeIuUivEnWJZ/pcPJNbA==", + "integrity": "sha512-BbD3dGsVNTXRqb6VfY/TQHC+5pFd6eh6qMSAMhD/btLbblPgp50IbLlS5dxCHn+JeoBes2OXHJeZYqW9jtoQrQ==", "requires": { "@microsoft/api-extractor": "^7.18.19", "@microsoft/dynamicproto-js": "^2.0.2", @@ -6524,7 +6524,7 @@ }, "@rush-temp/applicationinsights-analytics-js": { "version": "file:projects\\applicationinsights-analytics-js.tgz", - "integrity": "sha512-3HsaOFjuQAhfwgvadX4V+tS8v/V9u15cNdkmNMVjbamR9NVlHRur1TaAwqpPZ4N6VXM2BFzOtDc3M0DBMsU7IQ==", + "integrity": "sha512-Nb/zzcJ4poGsQpI0yLNeFk8fFsM7HasvWPaw+jWDMpu1UQhyE284lf0bUggEXO/aBbox/oISAuky21GkSD1+iw==", "requires": { "@microsoft/api-extractor": "^7.18.19", "@microsoft/dynamicproto-js": "^2.0.2", @@ -6551,7 +6551,7 @@ }, "@rush-temp/applicationinsights-cfgsync-js": { "version": "file:projects\\applicationinsights-cfgsync-js.tgz", - "integrity": "sha512-bkdZKaP8njXow6sHIpyoiyD1uyAkUK2tP8h9N7XMN5wbpWejoZVYSw4AGbTju0RtB4CKF6U0TQ6SX51ydeCibA==", + "integrity": "sha512-2QbX2SwX8D7Kx4BnGi1buSmz/wD0mADJzeg17LOBf2lJNmbfGrc8WXwbtEexeM7yOp36I3AohO1SJfuhmQbEWw==", "requires": { "@microsoft/api-extractor": "^7.18.19", "@microsoft/dynamicproto-js": "^2.0.2", @@ -6579,7 +6579,7 @@ }, "@rush-temp/applicationinsights-channel-js": { "version": "file:projects\\applicationinsights-channel-js.tgz", - "integrity": "sha512-EZcMoxdLF7HPBoad5HDlXNWqCp1vMJCTqStyGVyXPY8wweDN7B2oGnvgkc9nAfAV5RQo+soM2qTfV0kpORI0Ow==", + "integrity": "sha512-yLj7DsXnb0crQWLu+vdQSLNcdhWs8VoAGvrUqr4abnnipe3sa9wYtp8fP251KD3g5Kn/6UncEi4HmLWdflHjCw==", "requires": { "@microsoft/api-extractor": "^7.18.19", "@microsoft/dynamicproto-js": "^2.0.2", @@ -6605,7 +6605,7 @@ }, "@rush-temp/applicationinsights-chrome-debug-extension": { "version": "file:projects\\applicationinsights-chrome-debug-extension.tgz", - "integrity": "sha512-PG0CzJdP4kajz48UtvlVEfEPwvTs7n+P2ioAJbnI8T1u3CKoQ2mv3v8P2uQOzFO8CB1UPXzqbjMHFckxZIWHTA==", + "integrity": "sha512-B3mFKOP/Ijawz9mkZDicQcFAdD7sIOz3LPIp0+U5wavA+V6NuW41ktTcal5aMSEW8TUbFio1UlwPkUbcOcxvzQ==", "requires": { "@microsoft/dynamicproto-js": "^2.0.2", "@nevware21/grunt-eslint-ts": "^0.2.2", @@ -6638,7 +6638,7 @@ }, "@rush-temp/applicationinsights-clickanalytics-js": { "version": "file:projects\\applicationinsights-clickanalytics-js.tgz", - "integrity": "sha512-gM2zMJS/qDHf5BTrJ+3ZEQFFbnLKZMj1tonbf4w7j4hYaSf/j9ClYFSBXnsucyB5uOgu6KJ7XEXik3X59mmY9w==", + "integrity": "sha512-Jsm4X0mlbI3NZWv+SKBEFM4IbHN+qsYlhTbzahSqYVG/lEXfOko+hndTcWthNM+CEnlvjA6PMGpJc8AlfmgyKQ==", "requires": { "@microsoft/api-extractor": "^7.18.19", "@microsoft/dynamicproto-js": "^2.0.2", @@ -6662,7 +6662,7 @@ }, "@rush-temp/applicationinsights-common": { "version": "file:projects\\applicationinsights-common.tgz", - "integrity": "sha512-uAZakkbDJrJaUfH6SasqlBjHj0dfjFEsB5/l9sLYEbx2jFLhHs5Ck74VgVt3kmRImwnGrC7OulqttENASrkVKg==", + "integrity": "sha512-jt0/b2V/DiO9JGnSJjA5aGTmPKck7YoFNxxAc/8UBnvtrCggowRI3F8pbWsxSUu6ILcMQcNsof+z8zDEmkilBA==", "requires": { "@microsoft/api-extractor": "^7.18.19", "@microsoft/dynamicproto-js": "^2.0.2", @@ -6715,7 +6715,7 @@ }, "@rush-temp/applicationinsights-debugplugin-js": { "version": "file:projects\\applicationinsights-debugplugin-js.tgz", - "integrity": "sha512-BpIJZKYRw7YqOfOnIlm/RT4AsiVjXme63rhiiSvebSQ/VK4x/UZC5+LXUJy+xHWBWgi0tP+97NUpT36po9gHmg==", + "integrity": "sha512-4vGapLq7gKH3bjfND0dXFyHGY/rLXlv6tPXojOnhnlYqlzqd7/9Q3ox80hnG5jU4ORpOtmCaKCD9c5pKVDSTrw==", "requires": { "@microsoft/api-extractor": "^7.18.19", "@microsoft/dynamicproto-js": "^2.0.2", @@ -6739,7 +6739,7 @@ }, "@rush-temp/applicationinsights-dependencies-js": { "version": "file:projects\\applicationinsights-dependencies-js.tgz", - "integrity": "sha512-k7uz+cwSgG3lYOZTX5U2dnRq2f5Z+uW9b9360yeFFUYOlnGU9rfVMIjK6qFaSTRjizH+4Pc4PAiNgEr52QWu/g==", + "integrity": "sha512-nJAMt3G84EPX2zOvfQ0RvfTy4k8G1REd6RoxJhtBZmi1l9JEf9DG79bO/72malbihAQ+sPNuyNOXuaY94m7iyQ==", "requires": { "@microsoft/api-extractor": "^7.18.19", "@microsoft/dynamicproto-js": "^2.0.2", @@ -6766,7 +6766,7 @@ }, "@rush-temp/applicationinsights-example-aisku": { "version": "file:projects\\applicationinsights-example-aisku.tgz", - "integrity": "sha512-1qYLp8x1eFATwaaN0ShCWiR80CmLz/cKmHJv1i/d2y8wcf2586H2YDVRfwKap7JZKr/gixRN16DQCyolVjsdHQ==", + "integrity": "sha512-uNvIAi2nx/zA498rbXL3WDcUPolK8YYu61Gan9928kPh0dvNk6YbNr7bQr+3/GULvSXxzwKOxgnHIxmC8C2a2w==", "requires": { "@microsoft/dynamicproto-js": "^2.0.2", "@nevware21/ts-utils": ">= 0.10.1 < 2.x", @@ -6783,7 +6783,7 @@ }, "@rush-temp/applicationinsights-example-cfgsync": { "version": "file:projects\\applicationinsights-example-cfgsync.tgz", - "integrity": "sha512-plZ96/8Ux5BUgbh/8+lRIZg5bu3ZjA2eKh/VdUGEZBcAUKwIQJg0FwQFA+wV7wf9UzznW+F6bHE3P4LdO9pegA==", + "integrity": "sha512-gVEvqvbv3nMyirC2wt/Yg8pi2bJ00sviQKTMXRfGhgUxcaZzn9Iyq8Zf7vrpFp2LuGd2fj6/ypDI0bIpZANwmg==", "requires": { "@microsoft/dynamicproto-js": "^2.0.2", "@nevware21/grunt-eslint-ts": "^0.2.2", @@ -6808,7 +6808,7 @@ }, "@rush-temp/applicationinsights-example-dependencies": { "version": "file:projects\\applicationinsights-example-dependencies.tgz", - "integrity": "sha512-J3URV/5GbK7xM0fg0prYozdeal3AYO1rLGYCJ6IEIPEFHTxu1L+naHY/nEUl/tRjfqYZcN9UqirwvtfmCfAk/g==", + "integrity": "sha512-q3fLGUDJ8KJHNS4dm9e28t8EvghGii1fPj8vxJsq7hT7XYgSEsOkrdchRmU2BgSIlfRDYS8IF2v7erixX51u9A==", "requires": { "@microsoft/dynamicproto-js": "^2.0.2", "@nevware21/ts-utils": ">= 0.10.1 < 2.x", @@ -6825,7 +6825,7 @@ }, "@rush-temp/applicationinsights-example-shared-worker": { "version": "file:projects\\applicationinsights-example-shared-worker.tgz", - "integrity": "sha512-GpTasxJITHAFZGFHuq5SUd0ENFZ+AWr3eypR+nE5KLAqFSpEcEtmTVtmimOWNMviVB15vX3cDl+tyUUdZDktgA==", + "integrity": "sha512-mfk89gOkdhdhPVvNHKRPhjDpWC6wmqI8xOsB2Aqe3sKXGFDGpoB/EnJi1Tnf0hxyaxkwLXqORWf7dDbo9u+2UQ==", "requires": { "@microsoft/dynamicproto-js": "^2.0.2", "@nevware21/grunt-eslint-ts": "^0.2.2", @@ -6858,7 +6858,7 @@ }, "@rush-temp/applicationinsights-perfmarkmeasure-js": { "version": "file:projects\\applicationinsights-perfmarkmeasure-js.tgz", - "integrity": "sha512-hY9MioPwtj22lcnx84ltxhbi4Zs98xY4WCKUu4EUD/3Gwt99e2trqm2o1POxcbi0eNXomVF1/VrlZhJXUpzfog==", + "integrity": "sha512-wpKtGlBtXrTFtKbNc3KVv+/FgLihmFAqeG42bsw0x5mTK0KispWmCEENG0/cxT1P+3bndF3ZVnGs54M7aij2xw==", "requires": { "@microsoft/api-extractor": "^7.18.19", "@microsoft/dynamicproto-js": "^2.0.2", @@ -6882,7 +6882,7 @@ }, "@rush-temp/applicationinsights-properties-js": { "version": "file:projects\\applicationinsights-properties-js.tgz", - "integrity": "sha512-VUZ4tRQ1NigsYhEnteGXkT2ZZahRsQM6nI9PXe/maoerSMIEk2HorQsfUIXPrV2n9XPQWr2jS3T+9ZV+ko8zoA==", + "integrity": "sha512-K6Yg/9gLhUtzY9q26i3pPJ05oCLhCDQRc2x1EtBW6beyJjTwwV7FFNeEK0JO2zLjTZ5LqKGAnLpqz3jsw67hxg==", "requires": { "@microsoft/api-extractor": "^7.18.19", "@microsoft/dynamicproto-js": "^2.0.2", @@ -6973,7 +6973,7 @@ }, "@rush-temp/applicationinsights-teechannel-js": { "version": "file:projects\\applicationinsights-teechannel-js.tgz", - "integrity": "sha512-we4vZMJ9ANBUn86+CDLceR81G61/MJaQy1+wVKKlHc5+mzp7M6Q3ZkU/guGTYZqfs5lABiEmtHZu4i3dRAGcog==", + "integrity": "sha512-mAkFO+lEb2OAbW4gqbn5/UZOUDl+WrrdOuk7hGIcPboXLRv1ekyEg7lpSxx7yeQDzl5zhx4EhzYykxZps0fYtA==", "requires": { "@microsoft/api-extractor": "^7.18.19", "@microsoft/dynamicproto-js": "^2.0.2", @@ -6999,7 +6999,7 @@ }, "@rush-temp/applicationinsights-test-module-type-check": { "version": "file:projects\\applicationinsights-test-module-type-check.tgz", - "integrity": "sha512-qsrYYTLoAJpXq2mDU5V2+Ru1BwIb4Os5+PfVamjMXMo5WnXcj0fZlm8Tl6n/gE5rtG0F61Kr/f/HNZKGwmYA7A==", + "integrity": "sha512-YNRHYztkAd4kLTL7nkgkcjY9yhOXP2tCr37gnaaLWSFLZnzD3m2gRFXbrIfbm4s7IhnUPOWw6ot6eI8N35AI4Q==", "requires": { "tslib": "*", "typescript": "^4.9.3" @@ -7007,7 +7007,7 @@ }, "@rush-temp/applicationinsights-web": { "version": "file:projects\\applicationinsights-web.tgz", - "integrity": "sha512-J15MaIinwb65E5pH05BZcv28uS0TjbEhK5uhxvsUqZ9OVPu72lzryhYOBOJpWe/RbjXHxLwDer8ygT4l3d7wDw==", + "integrity": "sha512-1jrnOa4BeSX9SWFZqC65ROTqeRjnmkPyEQ2yoC+AuAozFFz+LOpiiXaHwmX825XT1b7HUULlbyRV+cw5tONwZw==", "requires": { "@microsoft/api-extractor": "^7.18.19", "@microsoft/dynamicproto-js": "^2.0.2", @@ -7038,7 +7038,7 @@ }, "@rush-temp/applicationinsights-web-basic": { "version": "file:projects\\applicationinsights-web-basic.tgz", - "integrity": "sha512-Y09x4lh0fWUOBfojZGc7eMydFlhMH/qc7YCF/82r7iRG1WwHEn+OcShp3DpJbm1MO6IGGotir6VRnrxy/EoVCA==", + "integrity": "sha512-od5qeNzwm6esStsdxtHSzOZHlILpuaVwKYz6vreLQKwcZLxecPvixTqK0zF8OfKwb5vcvcPNHqgnnNxXqDTewQ==", "requires": { "@microsoft/api-extractor": "^7.18.19", "@microsoft/dynamicproto-js": "^2.0.2", @@ -7068,7 +7068,7 @@ }, "@rush-temp/applicationinsights-web-snippet": { "version": "file:projects\\applicationinsights-web-snippet.tgz", - "integrity": "sha512-63RdS19FO+BaAbfKrFDN5J1JTSIA8wPV9T5b3Nr3gwKN37SqYAbLvhvPB1hSwvdbugsp1YhEZXmv9GKKtvm3Bg==", + "integrity": "sha512-KX1xl0tETM/CIBFSaAwfS+Oba3rjqQ9bMOg4S0c+hz3hY0dPv7QuNfaODnGPZMN2mc+OXc9o8C8Ah9gDKqai2Q==", "requires": { "@microsoft/dynamicproto-js": "^2.0.2", "@nevware21/grunt-eslint-ts": "^0.2.2", @@ -7089,9 +7089,9 @@ } }, "@rushstack/node-core-library": { - "version": "3.61.0", - "resolved": "https://registry.npmjs.org/@rushstack/node-core-library/-/node-core-library-3.61.0.tgz", - "integrity": "sha512-tdOjdErme+/YOu4gPed3sFS72GhtWCgNV9oDsHDnoLY5oDfwjKUc9Z+JOZZ37uAxcm/OCahDHfuu2ugqrfWAVQ==", + "version": "3.62.0", + "resolved": "https://registry.npmjs.org/@rushstack/node-core-library/-/node-core-library-3.62.0.tgz", + "integrity": "sha512-88aJn2h8UpSvdwuDXBv1/v1heM6GnBf3RjEy6ZPP7UnzHNCqOHA2Ut+ScYUbXcqIdfew9JlTAe3g+cnX9xQ/Aw==", "requires": { "colors": "~1.2.1", "fs-extra": "~7.0.1", @@ -7257,9 +7257,9 @@ } }, "@types/lodash": { - "version": "4.14.201", - "resolved": "https://registry.npmjs.org/@types/lodash/-/lodash-4.14.201.tgz", - "integrity": "sha512-y9euML0cim1JrykNxADLfaG0FgD1g/yTHwUs/Jg9ZIU7WKj2/4IW9Lbb1WZbvck78W/lfGXFfe+u2EGfIJXdLQ==" + "version": "4.14.202", + "resolved": "https://registry.npmjs.org/@types/lodash/-/lodash-4.14.202.tgz", + "integrity": "sha512-OvlIYQK9tNneDlS0VN54LLd5uiPCBOp7gS5Z0f1mjoJYBrtStzgmJBxONW3U6OZqdtNzZPmn9BS/7WI7BFFcFQ==" }, "@types/minimatch": { "version": "5.1.2", @@ -7277,19 +7277,19 @@ "integrity": "sha512-dISoDXWWQwUquiKsyZ4Ng+HX2KsPL7LyHKHQwgGFEA3IaKac4Obd+h2a/a6waisAoepJlBcx9paWqjA8/HVjCw==" }, "@types/prop-types": { - "version": "15.7.10", - "resolved": "https://registry.npmjs.org/@types/prop-types/-/prop-types-15.7.10.tgz", - "integrity": "sha512-mxSnDQxPqsZxmeShFH+uwQ4kO4gcJcGahjjMFeLbKE95IAZiiZyiEepGZjtXJ7hN/yfu0bu9xN2ajcU0JcxX6A==" + "version": "15.7.11", + "resolved": "https://registry.npmjs.org/@types/prop-types/-/prop-types-15.7.11.tgz", + "integrity": "sha512-ga8y9v9uyeiLdpKddhxYQkxNDrfvuPrlFb0N1qnZZByvcElJaXthF1UhvCh9TLWJBEHeNtdnbysW7Y6Uq8CVng==" }, "@types/qunit": { - "version": "2.19.8", - "resolved": "https://registry.npmjs.org/@types/qunit/-/qunit-2.19.8.tgz", - "integrity": "sha512-L4JyeRG1CJGSzJKd1b78DX/ll91E8e50IXkkl8KzW6W0IWz6FTHWEYvTEi8QVNHkUqUu6hjTffwV7ffxcoka0g==" + "version": "2.19.9", + "resolved": "https://registry.npmjs.org/@types/qunit/-/qunit-2.19.9.tgz", + "integrity": "sha512-Ym6B8Ewt1R1b0EgSqISSrAKp2Pg5MNgKK3/d2Fbls3PN7kNnucVSGaRx9Prxeo78HfQofYJMWDWLPlfAuwx7IQ==" }, "@types/react": { - "version": "16.14.51", - "resolved": "https://registry.npmjs.org/@types/react/-/react-16.14.51.tgz", - "integrity": "sha512-4T/wsDXStA5OUGTj6w2INze3ZCz22IwQiWcApgqqNRU2A6vNUIPXpNkjAMUFxx6diYPVkvz+d7gEtU7AZ+0Xqg==", + "version": "16.14.52", + "resolved": "https://registry.npmjs.org/@types/react/-/react-16.14.52.tgz", + "integrity": "sha512-4+ZN73hgRW3Gang3QMqWjrqPPkf+lWZYiyG4uXtUbpd+7eiBDw6Gemila6rXDd8DorADupTiIERL6Mb5BQTF2w==", "requires": { "@types/prop-types": "*", "@types/scheduler": "*", @@ -7297,9 +7297,9 @@ } }, "@types/react-dom": { - "version": "16.9.22", - "resolved": "https://registry.npmjs.org/@types/react-dom/-/react-dom-16.9.22.tgz", - "integrity": "sha512-x7T/NHsYiKfbIwZDzBTThTF3a3UPNLanOY4wbEe4Hy44hf0tWIZTu8VZJTkB/FKcr4cbfDq0E7y3jSLJh4cpow==", + "version": "16.9.24", + "resolved": "https://registry.npmjs.org/@types/react-dom/-/react-dom-16.9.24.tgz", + "integrity": "sha512-Gcmq2JTDheyWn/1eteqyzzWKSqDjYU6KYsIvH7thb7CR5OYInAWOX+7WnKf6PaU/cbdOc4szJItcDEJO7UGmfA==", "requires": { "@types/react": "^16" } @@ -7318,14 +7318,14 @@ } }, "@types/scheduler": { - "version": "0.16.6", - "resolved": "https://registry.npmjs.org/@types/scheduler/-/scheduler-0.16.6.tgz", - "integrity": "sha512-Vlktnchmkylvc9SnwwwozTv04L/e1NykF5vgoQ0XTmI8DD+wxfjQuHuvHS3p0r2jz2x2ghPs2h1FVeDirIteWA==" + "version": "0.16.8", + "resolved": "https://registry.npmjs.org/@types/scheduler/-/scheduler-0.16.8.tgz", + "integrity": "sha512-WZLiwShhwLRmeV6zH+GkbOFT6Z6VklCItrDioxUnv+u4Ll+8vKeFySoFyK/0ctcRpOmwAicELfmys1sDc/Rw+A==" }, "@types/semver": { - "version": "7.5.5", - "resolved": "https://registry.npmjs.org/@types/semver/-/semver-7.5.5.tgz", - "integrity": "sha512-+d+WYC1BxJ6yVOgUgzK8gWvp5qF8ssV5r4nsDcZWKRWcDQLQ619tvWAxJQYGgBrO1MnLJC7a5GtiYsAoQ47dJg==", + "version": "7.5.6", + "resolved": "https://registry.npmjs.org/@types/semver/-/semver-7.5.6.tgz", + "integrity": "sha512-dn1l8LaMea/IjDoHNd9J52uBbInB796CDffS6VdIxvqYCPSG0V0DzHp76GpaWnlhg88uYyPbXCDIowa86ybd5A==", "peer": true }, "@types/sinon": { @@ -7343,16 +7343,16 @@ } }, "@typescript-eslint/eslint-plugin": { - "version": "6.11.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-6.11.0.tgz", - "integrity": "sha512-uXnpZDc4VRjY4iuypDBKzW1rz9T5YBBK0snMn8MaTSNd2kMlj50LnLBABELjJiOL5YHk7ZD8hbSpI9ubzqYI0w==", + "version": "6.13.2", + "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-6.13.2.tgz", + "integrity": "sha512-3+9OGAWHhk4O1LlcwLBONbdXsAhLjyCFogJY/cWy2lxdVJ2JrcTF2pTGMaLl2AE7U1l31n8Py4a8bx5DLf/0dQ==", "peer": true, "requires": { "@eslint-community/regexpp": "^4.5.1", - "@typescript-eslint/scope-manager": "6.11.0", - "@typescript-eslint/type-utils": "6.11.0", - "@typescript-eslint/utils": "6.11.0", - "@typescript-eslint/visitor-keys": "6.11.0", + "@typescript-eslint/scope-manager": "6.13.2", + "@typescript-eslint/type-utils": "6.13.2", + "@typescript-eslint/utils": "6.13.2", + "@typescript-eslint/visitor-keys": "6.13.2", "debug": "^4.3.4", "graphemer": "^1.4.0", "ignore": "^5.2.4", @@ -7362,54 +7362,54 @@ } }, "@typescript-eslint/parser": { - "version": "6.11.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-6.11.0.tgz", - "integrity": "sha512-+whEdjk+d5do5nxfxx73oanLL9ghKO3EwM9kBCkUtWMRwWuPaFv9ScuqlYfQ6pAD6ZiJhky7TZ2ZYhrMsfMxVQ==", + "version": "6.13.2", + "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-6.13.2.tgz", + "integrity": "sha512-MUkcC+7Wt/QOGeVlM8aGGJZy1XV5YKjTpq9jK6r6/iLsGXhBVaGP5N0UYvFsu9BFlSpwY9kMretzdBH01rkRXg==", "peer": true, "requires": { - "@typescript-eslint/scope-manager": "6.11.0", - "@typescript-eslint/types": "6.11.0", - "@typescript-eslint/typescript-estree": "6.11.0", - "@typescript-eslint/visitor-keys": "6.11.0", + "@typescript-eslint/scope-manager": "6.13.2", + "@typescript-eslint/types": "6.13.2", + "@typescript-eslint/typescript-estree": "6.13.2", + "@typescript-eslint/visitor-keys": "6.13.2", "debug": "^4.3.4" } }, "@typescript-eslint/scope-manager": { - "version": "6.11.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-6.11.0.tgz", - "integrity": "sha512-0A8KoVvIURG4uhxAdjSaxy8RdRE//HztaZdG8KiHLP8WOXSk0vlF7Pvogv+vlJA5Rnjj/wDcFENvDaHb+gKd1A==", + "version": "6.13.2", + "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-6.13.2.tgz", + "integrity": "sha512-CXQA0xo7z6x13FeDYCgBkjWzNqzBn8RXaE3QVQVIUm74fWJLkJkaHmHdKStrxQllGh6Q4eUGyNpMe0b1hMkXFA==", "peer": true, "requires": { - "@typescript-eslint/types": "6.11.0", - "@typescript-eslint/visitor-keys": "6.11.0" + "@typescript-eslint/types": "6.13.2", + "@typescript-eslint/visitor-keys": "6.13.2" } }, "@typescript-eslint/type-utils": { - "version": "6.11.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-6.11.0.tgz", - "integrity": "sha512-nA4IOXwZtqBjIoYrJcYxLRO+F9ri+leVGoJcMW1uqr4r1Hq7vW5cyWrA43lFbpRvQ9XgNrnfLpIkO3i1emDBIA==", + "version": "6.13.2", + "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-6.13.2.tgz", + "integrity": "sha512-Qr6ssS1GFongzH2qfnWKkAQmMUyZSyOr0W54nZNU1MDfo+U4Mv3XveeLZzadc/yq8iYhQZHYT+eoXJqnACM1tw==", "peer": true, "requires": { - "@typescript-eslint/typescript-estree": "6.11.0", - "@typescript-eslint/utils": "6.11.0", + "@typescript-eslint/typescript-estree": "6.13.2", + "@typescript-eslint/utils": "6.13.2", "debug": "^4.3.4", "ts-api-utils": "^1.0.1" } }, "@typescript-eslint/types": { - "version": "6.11.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-6.11.0.tgz", - "integrity": "sha512-ZbEzuD4DwEJxwPqhv3QULlRj8KYTAnNsXxmfuUXFCxZmO6CF2gM/y+ugBSAQhrqaJL3M+oe4owdWunaHM6beqA==", + "version": "6.13.2", + "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-6.13.2.tgz", + "integrity": "sha512-7sxbQ+EMRubQc3wTfTsycgYpSujyVbI1xw+3UMRUcrhSy+pN09y/lWzeKDbvhoqcRbHdc+APLs/PWYi/cisLPg==", "peer": true }, "@typescript-eslint/typescript-estree": { - "version": "6.11.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-6.11.0.tgz", - "integrity": "sha512-Aezzv1o2tWJwvZhedzvD5Yv7+Lpu1by/U1LZ5gLc4tCx8jUmuSCMioPFRjliN/6SJIvY6HpTtJIWubKuYYYesQ==", + "version": "6.13.2", + "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-6.13.2.tgz", + "integrity": "sha512-SuD8YLQv6WHnOEtKv8D6HZUzOub855cfPnPMKvdM/Bh1plv1f7Q/0iFUDLKKlxHcEstQnaUU4QZskgQq74t+3w==", "peer": true, "requires": { - "@typescript-eslint/types": "6.11.0", - "@typescript-eslint/visitor-keys": "6.11.0", + "@typescript-eslint/types": "6.13.2", + "@typescript-eslint/visitor-keys": "6.13.2", "debug": "^4.3.4", "globby": "^11.1.0", "is-glob": "^4.0.3", @@ -7418,27 +7418,27 @@ } }, "@typescript-eslint/utils": { - "version": "6.11.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-6.11.0.tgz", - "integrity": "sha512-p23ibf68fxoZy605dc0dQAEoUsoiNoP3MD9WQGiHLDuTSOuqoTsa4oAy+h3KDkTcxbbfOtUjb9h3Ta0gT4ug2g==", + "version": "6.13.2", + "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-6.13.2.tgz", + "integrity": "sha512-b9Ptq4eAZUym4idijCRzl61oPCwwREcfDI8xGk751Vhzig5fFZR9CyzDz4Sp/nxSLBYxUPyh4QdIDqWykFhNmQ==", "peer": true, "requires": { "@eslint-community/eslint-utils": "^4.4.0", "@types/json-schema": "^7.0.12", "@types/semver": "^7.5.0", - "@typescript-eslint/scope-manager": "6.11.0", - "@typescript-eslint/types": "6.11.0", - "@typescript-eslint/typescript-estree": "6.11.0", + "@typescript-eslint/scope-manager": "6.13.2", + "@typescript-eslint/types": "6.13.2", + "@typescript-eslint/typescript-estree": "6.13.2", "semver": "^7.5.4" } }, "@typescript-eslint/visitor-keys": { - "version": "6.11.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-6.11.0.tgz", - "integrity": "sha512-+SUN/W7WjBr05uRxPggJPSzyB8zUpaYo2hByKasWbqr3PM8AXfZt8UHdNpBS1v9SA62qnSSMF3380SwDqqprgQ==", + "version": "6.13.2", + "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-6.13.2.tgz", + "integrity": "sha512-OGznFs0eAQXJsp+xSd6k/O1UbFi/K/L7WjqeRoFE7vadjAF9y0uppXhYNQNEqygjou782maGClOoZwPqF0Drlw==", "peer": true, "requires": { - "@typescript-eslint/types": "6.11.0", + "@typescript-eslint/types": "6.13.2", "eslint-visitor-keys": "^3.4.1" } }, @@ -7665,13 +7665,13 @@ } }, "browserslist": { - "version": "4.22.1", - "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.22.1.tgz", - "integrity": "sha512-FEVc202+2iuClEhZhrWy6ZiAcRLvNMyYcxZ8raemul1DYVOVdFsbqckWLdsixQZCpJlwe77Z3UTalE7jsjnKfQ==", + "version": "4.22.2", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.22.2.tgz", + "integrity": "sha512-0UgcrvQmBDvZHFGdYUehrCNIazki7/lUP3kkoi/r3YB2amZbFM9J43ZRkJTXBUZK4gmx56+Sqk9+Vs9mwZx9+A==", "requires": { - "caniuse-lite": "^1.0.30001541", - "electron-to-chromium": "^1.4.535", - "node-releases": "^2.0.13", + "caniuse-lite": "^1.0.30001565", + "electron-to-chromium": "^1.4.601", + "node-releases": "^2.0.14", "update-browserslist-db": "^1.0.13" } }, @@ -7729,9 +7729,9 @@ "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==" }, "caniuse-lite": { - "version": "1.0.30001562", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001562.tgz", - "integrity": "sha512-kfte3Hym//51EdX4239i+Rmp20EsLIYGdPkERegTgU19hQWCRhsRFGKHTliUlsry53tv17K7n077Kqa0WJU4ng==" + "version": "1.0.30001566", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001566.tgz", + "integrity": "sha512-ggIhCsTxmITBAMmK8yZjEhCO5/47jKXPu6Dha/wuCS4JePVL+3uiDEBuhu2aIoT+bqTOR8L76Ip1ARL9xYsEJA==" }, "chalk": { "version": "4.1.2", @@ -7915,9 +7915,9 @@ } }, "csstype": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.1.2.tgz", - "integrity": "sha512-I7K1Uu0MBPzaFKg4nI5Q7Vs2t+3gWWW648spaF+Rg7pI9ds18Ugn+lvg4SHczUdKlHI5LWBXyqfS8+DufyBsgQ==" + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.1.3.tgz", + "integrity": "sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==" }, "dateformat": { "version": "4.6.3", @@ -8011,9 +8011,9 @@ "integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==" }, "electron-to-chromium": { - "version": "1.4.586", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.586.tgz", - "integrity": "sha512-qMa+E6yf1fNQbg3G66pHLXeJUP5CCCzNat1VPczOZOqgI2w4u+8y9sQnswMdGs5m4C1rOePq37EVBr/nsPQY7w==" + "version": "1.4.607", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.607.tgz", + "integrity": "sha512-YUlnPwE6eYxzwBnFmawA8LiLRfm70R2aJRIUv0n03uHt/cUzzYACOogmvk8M2+hVzt/kB80KJXx7d5f5JofPvQ==" }, "encodeurl": { "version": "1.0.2", @@ -8053,15 +8053,15 @@ "peer": true }, "eslint": { - "version": "8.53.0", - "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.53.0.tgz", - "integrity": "sha512-N4VuiPjXDUa4xVeV/GC/RV3hQW9Nw+Y463lkWaKKXKYMvmRiRDAtfpuPFLN+E1/6ZhyR8J2ig+eVREnYgUsiag==", + "version": "8.55.0", + "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.55.0.tgz", + "integrity": "sha512-iyUUAM0PCKj5QpwGfmCAG9XXbZCWsqP/eWAWrG/W0umvjuLRBECwSFdt+rCntju0xEH7teIABPwXpahftIaTdA==", "peer": true, "requires": { "@eslint-community/eslint-utils": "^4.2.0", "@eslint-community/regexpp": "^4.6.1", - "@eslint/eslintrc": "^2.1.3", - "@eslint/js": "8.53.0", + "@eslint/eslintrc": "^2.1.4", + "@eslint/js": "8.55.0", "@humanwhocodes/config-array": "^0.11.13", "@humanwhocodes/module-importer": "^1.0.1", "@nodelib/fs.walk": "^1.2.8", @@ -9428,9 +9428,9 @@ } }, "node-releases": { - "version": "2.0.13", - "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.13.tgz", - "integrity": "sha512-uYr7J37ae/ORWdZeQ1xxMJe3NtdmqMC/JZK+geofDrkLUApKRHPd18/TxtBOJ4A0/+uUIliorNrfYV6s1b02eQ==" + "version": "2.0.14", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.14.tgz", + "integrity": "sha512-y10wOWt8yZpqXmOgRo77WaHEmhYQYGNA6y421PKsKYWEK8aW+cqAphborZDhqfyKrbZEN92CN1X2KbafY2s7Yw==" }, "node-watch": { "version": "0.7.3", diff --git a/examples/AISKU/package.json b/examples/AISKU/package.json index 3d41a7767..361c070fa 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": "3.0.5", + "version": "3.0.6", "description": "Microsoft Application Insights AISKU Example", "homepage": "https://github.com/microsoft/ApplicationInsights-JS#readme", "keywords": [ @@ -51,8 +51,8 @@ "dependencies": { "@microsoft/applicationinsights-shims": "3.0.1", "@microsoft/dynamicproto-js": "^2.0.2", - "@microsoft/applicationinsights-web": "3.0.5", - "@microsoft/applicationinsights-core-js": "3.0.5", + "@microsoft/applicationinsights-web": "3.0.6", + "@microsoft/applicationinsights-core-js": "3.0.6", "@nevware21/ts-utils": ">= 0.10.1 < 2.x" } } diff --git a/examples/cfgSync/package.json b/examples/cfgSync/package.json index 0230a5429..30a7667a2 100644 --- a/examples/cfgSync/package.json +++ b/examples/cfgSync/package.json @@ -1,7 +1,7 @@ { "name": "@microsoft/applicationinsights-example-cfgsync", "author": "Microsoft Application Insights Team", - "version": "3.0.5", + "version": "3.0.6", "description": "Microsoft Application Insights CfgSync Plugin Example", "homepage": "https://github.com/microsoft/ApplicationInsights-JS#readme", "keywords": [ @@ -62,10 +62,10 @@ }, "dependencies": { "@microsoft/applicationinsights-shims": "3.0.1", - "@microsoft/applicationinsights-cfgsync-js": "3.0.5", + "@microsoft/applicationinsights-cfgsync-js": "3.0.6", "@microsoft/dynamicproto-js": "^2.0.2", - "@microsoft/applicationinsights-web": "3.0.5", - "@microsoft/applicationinsights-core-js": "3.0.5", + "@microsoft/applicationinsights-web": "3.0.6", + "@microsoft/applicationinsights-core-js": "3.0.6", "@nevware21/ts-utils": ">= 0.10.1 < 2.x" } } diff --git a/examples/dependency/package.json b/examples/dependency/package.json index 9bd013926..644390a5b 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": "3.0.5", + "version": "3.0.6", "description": "Microsoft Application Insights Dependencies Example", "homepage": "https://github.com/microsoft/ApplicationInsights-JS#readme", "keywords": [ @@ -51,9 +51,9 @@ "dependencies": { "@microsoft/applicationinsights-shims": "3.0.1", "@microsoft/dynamicproto-js": "^2.0.2", - "@microsoft/applicationinsights-web": "3.0.5", - "@microsoft/applicationinsights-dependencies-js": "3.0.5", - "@microsoft/applicationinsights-core-js": "3.0.5", + "@microsoft/applicationinsights-web": "3.0.6", + "@microsoft/applicationinsights-dependencies-js": "3.0.6", + "@microsoft/applicationinsights-core-js": "3.0.6", "@nevware21/ts-utils": ">= 0.10.1 < 2.x" } } diff --git a/examples/shared-worker/package.json b/examples/shared-worker/package.json index fe9b9154e..284d987f8 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": "3.0.5", + "version": "3.0.6", "description": "Microsoft Application Insights Shared Worker Example", "homepage": "https://github.com/microsoft/ApplicationInsights-JS#readme", "keywords": [ @@ -63,9 +63,9 @@ "dependencies": { "@microsoft/applicationinsights-shims": "3.0.1", "@microsoft/dynamicproto-js": "^2.0.2", - "@microsoft/applicationinsights-web": "3.0.5", - "@microsoft/applicationinsights-web-snippet": "1.1.3", - "@microsoft/applicationinsights-core-js": "3.0.5", + "@microsoft/applicationinsights-web": "3.0.6", + "@microsoft/applicationinsights-web-snippet": "1.1.4", + "@microsoft/applicationinsights-core-js": "3.0.6", "@nevware21/ts-utils": ">= 0.10.1 < 2.x" } } diff --git a/extensions/applicationinsights-analytics-js/package.json b/extensions/applicationinsights-analytics-js/package.json index 92a1cee9d..e318d3692 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": "3.0.5", + "version": "3.0.6", "description": "Microsoft Application Insights JavaScript SDK - Web Analytics", "homepage": "https://github.com/microsoft/ApplicationInsights-JS#readme", "author": "Microsoft Application Insights Team", @@ -32,8 +32,8 @@ "@microsoft/ai-test-framework": "0.0.1", "@microsoft/applicationinsights-rollup-plugin-uglify3-js": "1.0.0", "@microsoft/applicationinsights-rollup-es5": "1.0.2", - "@microsoft/applicationinsights-properties-js": "3.0.5", - "@microsoft/applicationinsights-channel-js": "3.0.5", + "@microsoft/applicationinsights-properties-js": "3.0.6", + "@microsoft/applicationinsights-channel-js": "3.0.6", "@microsoft/api-extractor": "^7.18.19", "typescript": "^4.9.3", "tslib": "^2.0.0", @@ -60,8 +60,8 @@ "dependencies": { "@microsoft/dynamicproto-js": "^2.0.2", "@microsoft/applicationinsights-shims": "3.0.1", - "@microsoft/applicationinsights-core-js": "3.0.5", - "@microsoft/applicationinsights-common": "3.0.5", + "@microsoft/applicationinsights-core-js": "3.0.6", + "@microsoft/applicationinsights-common": "3.0.6", "@nevware21/ts-utils": ">= 0.10.1 < 2.x" }, "license": "MIT" diff --git a/extensions/applicationinsights-cfgsync-js/package.json b/extensions/applicationinsights-cfgsync-js/package.json index 10cfc6ac4..9474ccda4 100644 --- a/extensions/applicationinsights-cfgsync-js/package.json +++ b/extensions/applicationinsights-cfgsync-js/package.json @@ -1,6 +1,6 @@ { "name": "@microsoft/applicationinsights-cfgsync-js", - "version": "3.0.5", + "version": "3.0.6", "description": "Microsoft Application Insights CfgSync Plugin", "homepage": "https://github.com/microsoft/ApplicationInsights-JS#readme", "author": "Microsoft Application Insights Team", @@ -57,8 +57,8 @@ "dependencies": { "@microsoft/dynamicproto-js": "^2.0.2", "@microsoft/applicationinsights-shims": "3.0.1", - "@microsoft/applicationinsights-core-js": "3.0.5", - "@microsoft/applicationinsights-common": "3.0.5", + "@microsoft/applicationinsights-core-js": "3.0.6", + "@microsoft/applicationinsights-common": "3.0.6", "@nevware21/ts-utils": ">= 0.10.1 < 2.x", "@nevware21/ts-async": ">= 0.3.0 < 2.x" }, diff --git a/extensions/applicationinsights-clickanalytics-js/package.json b/extensions/applicationinsights-clickanalytics-js/package.json index 70ab3e7f6..d8779d817 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": "3.0.5", + "version": "3.0.6", "description": "Microsoft Application Insights Click Analytics extension", "homepage": "https://github.com/microsoft/ApplicationInsights-JS#readme", "author": "Microsoft Application Insights Team", @@ -51,9 +51,9 @@ "dependencies": { "@microsoft/dynamicproto-js": "^2.0.2", "@microsoft/applicationinsights-shims": "3.0.1", - "@microsoft/applicationinsights-core-js": "3.0.5", - "@microsoft/applicationinsights-common": "3.0.5", - "@microsoft/applicationinsights-properties-js": "3.0.5", + "@microsoft/applicationinsights-core-js": "3.0.6", + "@microsoft/applicationinsights-common": "3.0.6", + "@microsoft/applicationinsights-properties-js": "3.0.6", "@nevware21/ts-utils": ">= 0.10.1 < 2.x" }, "repository": { diff --git a/extensions/applicationinsights-debugplugin-js/package.json b/extensions/applicationinsights-debugplugin-js/package.json index 02487e52e..51ddc1165 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": "3.0.5", + "version": "3.0.6", "description": "Microsoft Application Insights JavaScript SDK - Debug Plugin extension", "homepage": "https://github.com/microsoft/ApplicationInsights-JS#readme", "author": "Microsoft Application Insights Team", @@ -52,8 +52,8 @@ }, "dependencies": { "@microsoft/dynamicproto-js": "^2.0.2", - "@microsoft/applicationinsights-common": "3.0.5", - "@microsoft/applicationinsights-core-js": "3.0.5", + "@microsoft/applicationinsights-common": "3.0.6", + "@microsoft/applicationinsights-core-js": "3.0.6", "@microsoft/applicationinsights-shims": "3.0.1", "@nevware21/ts-utils": ">= 0.10.1 < 2.x" }, diff --git a/extensions/applicationinsights-dependencies-js/package.json b/extensions/applicationinsights-dependencies-js/package.json index 355e39954..f6efb6cee 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": "3.0.5", + "version": "3.0.6", "description": "Microsoft Application Insights XHR dependencies plugin", "homepage": "https://github.com/microsoft/ApplicationInsights-JS#readme", "author": "Microsoft Application Insights Team", @@ -57,8 +57,8 @@ "dependencies": { "@microsoft/dynamicproto-js": "^2.0.2", "@microsoft/applicationinsights-shims": "3.0.1", - "@microsoft/applicationinsights-core-js": "3.0.5", - "@microsoft/applicationinsights-common": "3.0.5", + "@microsoft/applicationinsights-core-js": "3.0.6", + "@microsoft/applicationinsights-common": "3.0.6", "@nevware21/ts-utils": ">= 0.10.1 < 2.x", "@nevware21/ts-async": ">= 0.3.0 < 2.x" }, diff --git a/extensions/applicationinsights-perfmarkmeasure-js/package.json b/extensions/applicationinsights-perfmarkmeasure-js/package.json index 057c4d0aa..162d92dac 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": "3.0.5", + "version": "3.0.6", "description": "Microsoft Application Insights Performance Mark and Measure Manager plugin", "homepage": "https://github.com/microsoft/ApplicationInsights-JS#readme", "author": "Microsoft Application Insights Team", @@ -55,7 +55,7 @@ "dependencies": { "@microsoft/dynamicproto-js": "^2.0.2", "@microsoft/applicationinsights-shims": "3.0.1", - "@microsoft/applicationinsights-core-js": "3.0.5", + "@microsoft/applicationinsights-core-js": "3.0.6", "@nevware21/ts-utils": ">= 0.10.1 < 2.x" }, "license": "MIT" diff --git a/extensions/applicationinsights-properties-js/Tests/Unit/src/propertiesSize.tests.ts b/extensions/applicationinsights-properties-js/Tests/Unit/src/propertiesSize.tests.ts index 3d5cc6c03..231b07480 100644 --- a/extensions/applicationinsights-properties-js/Tests/Unit/src/propertiesSize.tests.ts +++ b/extensions/applicationinsights-properties-js/Tests/Unit/src/propertiesSize.tests.ts @@ -5,7 +5,7 @@ export class PropertiesExtensionSizeCheck extends AITestClass { private readonly MAX_DEFLATE_SIZE = 18; private readonly rawFilePath = "../dist/es5/applicationinsights-properties-js.min.js"; // Automatically updated by version scripts - private readonly currentVer = "3.0.5"; + private readonly currentVer = "3.0.6"; private readonly proFilePath = `../browser/es5/ai.props.${this.currentVer[0]}.min.js`; public testInitialize() { diff --git a/extensions/applicationinsights-properties-js/package.json b/extensions/applicationinsights-properties-js/package.json index 1a81fc434..8ee85a1ff 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": "3.0.5", + "version": "3.0.6", "description": "Microsoft Application Insights properties (Part A) plugin", "homepage": "https://github.com/microsoft/ApplicationInsights-JS#readme", "author": "Microsoft Application Insights Team", @@ -58,8 +58,8 @@ "dependencies": { "@microsoft/dynamicproto-js": "^2.0.2", "@microsoft/applicationinsights-shims": "3.0.1", - "@microsoft/applicationinsights-core-js": "3.0.5", - "@microsoft/applicationinsights-common": "3.0.5", + "@microsoft/applicationinsights-core-js": "3.0.6", + "@microsoft/applicationinsights-common": "3.0.6", "@nevware21/ts-utils": ">= 0.10.1 < 2.x" }, "license": "MIT" diff --git a/gruntfile.js b/gruntfile.js index 9fa5a7577..c3ea5a8ca 100644 --- a/gruntfile.js +++ b/gruntfile.js @@ -239,7 +239,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=["3.0.5"]; + const perfTestVersions=["3.0.6"]; function buildConfig(modules) { var buildCmds = { diff --git a/package.json b/package.json index 0c35ac9c3..9b019aa49 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "@microsoft/applicationinsights-web", "description": "Microsoft Application Insights JavaScript SDK", - "version": "3.0.5", + "version": "3.0.6", "keywords": [ "browser performance monitoring", "script errors", diff --git a/shared/1ds-core-js/package.json b/shared/1ds-core-js/package.json index d62e65f18..b6e500b21 100644 --- a/shared/1ds-core-js/package.json +++ b/shared/1ds-core-js/package.json @@ -1,6 +1,6 @@ { "name": "@microsoft/1ds-core-js", - "version": "4.0.4", + "version": "4.0.5", "description": "Microsoft Application Insights JavaScript SDK - 1ds-core-js", "author": "Microsoft Application Insights Team", "homepage": "https://github.com/microsoft/ApplicationInsights-JS#readme", @@ -37,7 +37,7 @@ ], "dependencies": { "@microsoft/applicationinsights-shims": "3.0.1", - "@microsoft/applicationinsights-core-js": "3.0.5", + "@microsoft/applicationinsights-core-js": "3.0.6", "@microsoft/dynamicproto-js": "^2.0.2", "@nevware21/ts-utils": ">= 0.10.1 < 2.x", "@nevware21/ts-async": ">= 0.3.0 < 2.x" diff --git a/shared/AppInsightsCommon/package.json b/shared/AppInsightsCommon/package.json index 83b200b63..e68e69c63 100644 --- a/shared/AppInsightsCommon/package.json +++ b/shared/AppInsightsCommon/package.json @@ -1,6 +1,6 @@ { "name": "@microsoft/applicationinsights-common", - "version": "3.0.5", + "version": "3.0.6", "description": "Microsoft Application Insights Common JavaScript Library", "homepage": "https://github.com/microsoft/ApplicationInsights-JS#readme", "author": "Microsoft Application Insights Team", @@ -55,7 +55,7 @@ }, "dependencies": { "@microsoft/applicationinsights-shims": "3.0.1", - "@microsoft/applicationinsights-core-js": "3.0.5", + "@microsoft/applicationinsights-core-js": "3.0.6", "@microsoft/dynamicproto-js": "^2.0.2", "@nevware21/ts-utils": ">= 0.10.1 < 2.x" }, diff --git a/shared/AppInsightsCore/package.json b/shared/AppInsightsCore/package.json index ab7d0bfae..cfdac73f1 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": "3.0.5", + "version": "3.0.6", "description": "Microsoft Application Insights Core Javascript SDK", "homepage": "https://github.com/microsoft/ApplicationInsights-JS#readme", "keywords": [ diff --git a/tools/applicationinsights-web-snippet/package.json b/tools/applicationinsights-web-snippet/package.json index 7b307e9f2..8cfceb145 100644 --- a/tools/applicationinsights-web-snippet/package.json +++ b/tools/applicationinsights-web-snippet/package.json @@ -1,6 +1,6 @@ { "name": "@microsoft/applicationinsights-web-snippet", - "version": "1.1.3", + "version": "1.1.4", "description": "Microsoft Application Insights Web Snippet", "main": "dist/es5/node/applicationinsights-web-snippet.js", "module": "dist-es5/applicationinsights-web-snippet.js", @@ -30,7 +30,7 @@ "devDependencies": { "@types/qunit": "^2.19.3", "@microsoft/ai-test-framework": "0.0.1", - "@microsoft/applicationinsights-web": "3.0.5", + "@microsoft/applicationinsights-web": "3.0.6", "@microsoft/applicationinsights-rollup-plugin-uglify3-js": "1.0.0", "@microsoft/applicationinsights-rollup-es5": "1.0.2", "typescript": "^4.9.3", @@ -50,6 +50,6 @@ }, "dependencies": { "@microsoft/dynamicproto-js": "^2.0.2", - "@microsoft/applicationinsights-common": "3.0.5" + "@microsoft/applicationinsights-common": "3.0.6" } } diff --git a/tools/chrome-debug-extension/manifest.json b/tools/chrome-debug-extension/manifest.json index a32f08b13..f449e73cd 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.4.5", - "version_name": "0.4.5", + "version": "0.4.6", + "version_name": "0.4.6", "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 98ae6d99a..7c994a7c9 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.4.5", + "version": "0.4.6", "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/main/tools/chrome-debug-extension#readme", "keywords": [ @@ -43,8 +43,8 @@ "license": "MIT", "sideEffects": false, "dependencies": { - "@microsoft/applicationinsights-core-js": "3.0.5", - "@microsoft/applicationinsights-common": "3.0.5", + "@microsoft/applicationinsights-core-js": "3.0.6", + "@microsoft/applicationinsights-common": "3.0.6", "@microsoft/applicationinsights-shims": "3.0.1", "@microsoft/dynamicproto-js": "^2.0.2", "@nevware21/ts-utils": ">= 0.10.1 < 2.x", diff --git a/tools/config/package.json b/tools/config/package.json index 548ccfa7e..c293d3f04 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.9", + "version": "0.0.10", "copyright": "(c) Microsoft and contributors. All rights reserved.", "author": "Microsoft Application Insights Team", "repository": { diff --git a/version.json b/version.json index a69b47d04..a9f9a073b 100644 --- a/version.json +++ b/version.json @@ -1,100 +1,100 @@ { "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": "3.0.5", + "release": "3.0.6", "next": "patch", "pkgs": { "@microsoft/applicationinsights-web": { "package": "package.json", - "release": "3.0.5" + "release": "3.0.6" }, "@microsoft/applicationinsights-web-basic": { "package": "AISKULight/package.json", - "release": "3.0.5" + "release": "3.0.6" }, "@microsoft/applicationinsights-channel-js": { "package": "channels/applicationinsights-channel-js/package.json", - "release": "3.0.5" + "release": "3.0.6" }, "@microsoft/applicationinsights-analytics-js": { "package": "extensions/applicationinsights-analytics-js/package.json", - "release": "3.0.5" + "release": "3.0.6" }, "@microsoft/applicationinsights-clickanalytics-js": { "package": "extensions/applicationinsights-clickanalytics-js/package.json", - "release": "3.0.5" + "release": "3.0.6" }, "@microsoft/applicationinsights-debugplugin-js": { "package": "extensions/applicationinsights-debugplugin-js/package.json", - "release": "3.0.5" + "release": "3.0.6" }, "@microsoft/applicationinsights-dependencies-js": { "package": "extensions/applicationinsights-dependencies-js/package.json", - "release": "3.0.5" + "release": "3.0.6" }, "@microsoft/applicationinsights-perfmarkmeasure-js": { "package": "extensions/applicationinsights-perfmarkmeasure-js/package.json", - "release": "3.0.5" + "release": "3.0.6" }, "@microsoft/applicationinsights-properties-js": { "package": "extensions/applicationinsights-properties-js/package.json", - "release": "3.0.5" + "release": "3.0.6" }, "@microsoft/applicationinsights-common": { "package": "shared/AppInsightsCommon/package.json", - "release": "3.0.5" + "release": "3.0.6" }, "@microsoft/applicationinsights-core-js": { "package": "shared/AppInsightsCore/package.json", - "release": "3.0.5" + "release": "3.0.6" }, "@microsoft/applicationinsights-chrome-debug-extension": { "package": "tools/chrome-debug-extension/package.json", - "release": "0.4.5" + "release": "0.4.6" }, "applicationinsights-web-config": { "package": "tools/config/package.json", - "release": "0.0.9" + "release": "0.0.10" }, "@microsoft/applicationinsights-example-aisku": { "package": "examples/AISKU/package.json", - "release": "3.0.5" + "release": "3.0.6" }, "@microsoft/applicationinsights-example-dependencies": { "package": "examples/dependency/package.json", - "release": "3.0.5" + "release": "3.0.6" }, "@microsoft/applicationinsights-example-shared-worker": { "package": "examples/shared-worker/package.json", - "release": "3.0.5" + "release": "3.0.6" }, "@microsoft/applicationinsights-teechannel-js": { "package": "channels/tee-channel-js/package.json", - "release": "3.0.5" + "release": "3.0.6" }, "@microsoft/applicationinsights-test-module-type-check": { "package": "AISKU/Tests/es6-module-type-check/package.json", - "release": "3.0.5" + "release": "3.0.6" }, "@microsoft/applicationinsights-cfgsync-js": { "package": "extensions/applicationinsights-cfgsync-js/package.json", - "release": "3.0.5" + "release": "3.0.6" }, "@microsoft/applicationinsights-example-cfgsync": { "package": "examples/cfgSync/package.json", - "release": "3.0.5" + "release": "3.0.6" }, "@microsoft/1ds-post-js": { "package": "channels/1ds-post-js/package.json", - "release": "4.0.4" + "release": "4.0.5" }, "@microsoft/1ds-core-js": { "package": "shared/1ds-core-js/package.json", - "release": "4.0.4" + "release": "4.0.5" }, "@microsoft/applicationinsights-web-snippet": { "package": "tools/applicationinsights-web-snippet/package.json", - "release": "1.1.3" + "release": "1.1.4" } } }