From db27ec3344e0ac8e5067d1800fa74e2c4f179d35 Mon Sep 17 00:00:00 2001 From: Karlie-777 <79606506+Karlie-777@users.noreply.github.com> Date: Mon, 1 Jul 2024 15:26:23 -0700 Subject: [PATCH] [Main] [Release] Increase version to 3.3.0 (#2372) * release 3.3.0 * update --- AISKU/README.md | 1 + AISKU/Tests/Perf/src/AISKUPerf.ts | 2 +- AISKU/Tests/Unit/src/AISKUSize.Tests.ts | 2 +- AISKU/Tests/Unit/src/CdnPackaging.tests.ts | 2 +- .../Tests/es6-module-type-check/package.json | 6 +- AISKU/package.json | 18 +- .../Tests/Unit/src/AISKULightSize.Tests.ts | 2 +- AISKULight/package.json | 8 +- RELEASES.md | 15 + channels/1ds-post-js/package.json | 4 +- .../package.json | 6 +- channels/offline-channel-js/package.json | 6 +- channels/tee-channel-js/package.json | 6 +- common/config/rush/npm-shrinkwrap.json | 312 +++++++++--------- examples/AISKU/package.json | 6 +- examples/cfgSync/package.json | 8 +- examples/dependency/package.json | 8 +- examples/shared-worker/package.json | 8 +- .../package.json | 10 +- .../package.json | 6 +- .../package.json | 8 +- .../package.json | 6 +- .../package.json | 6 +- .../package.json | 6 +- .../package.json | 4 +- .../Tests/Unit/src/propertiesSize.tests.ts | 2 +- .../package.json | 6 +- gruntfile.js | 2 +- package.json | 2 +- shared/1ds-core-js/package.json | 4 +- shared/AppInsightsCommon/package.json | 4 +- shared/AppInsightsCore/package.json | 2 +- .../package.json | 6 +- tools/chrome-debug-extension/manifest.json | 4 +- tools/chrome-debug-extension/package.json | 6 +- version.json | 52 +-- 36 files changed, 286 insertions(+), 270 deletions(-) diff --git a/AISKU/README.md b/AISKU/README.md index 955843711..492368a36 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://js.monitor.azure.com/nightly/ai.3-nightly3.js.svg)](https://js.monitor.azure.com/nightly/ai.3-nightly3.js.svg)| ![minified size size](https://js.monitor.azure.com/nightly/ai.3-nightly3.min.js.svg) | ![gzip size](https://js.monitor.azure.com/nightly/ai.3-nightly3.min.js.gzip.svg) +| 3.3.0: | [![full size size](https://js.monitor.azure.com/scripts/b/ai.3.3.0.js.svg)](https://js.monitor.azure.com/scripts/b/ai.3.3.0.js.svg)| ![minified size size](https://js.monitor.azure.com/scripts/b/ai.3.3.0.min.js.svg) | ![gzip size](https://js.monitor.azure.com/scripts/b/ai.3.3.0.min.js.gzip.svg) | 3.2.2: | [![full size size](https://js.monitor.azure.com/scripts/b/ai.3.2.2.js.svg)](https://js.monitor.azure.com/scripts/b/ai.3.2.2.js.svg)| ![minified size size](https://js.monitor.azure.com/scripts/b/ai.3.2.2.min.js.svg) | ![gzip size](https://js.monitor.azure.com/scripts/b/ai.3.2.2.min.js.gzip.svg) | 3.2.1: | [![full size size](https://js.monitor.azure.com/scripts/b/ai.3.2.1.js.svg)](https://js.monitor.azure.com/scripts/b/ai.3.2.1.js.svg)| ![minified size size](https://js.monitor.azure.com/scripts/b/ai.3.2.1.min.js.svg) | ![gzip size](https://js.monitor.azure.com/scripts/b/ai.3.2.1.min.js.gzip.svg) | 3.2.0: | [![full size size](https://js.monitor.azure.com/scripts/b/ai.3.2.0.js.svg)](https://js.monitor.azure.com/scripts/b/ai.3.2.0.js.svg)| ![minified size size](https://js.monitor.azure.com/scripts/b/ai.3.2.0.min.js.svg) | ![gzip size](https://js.monitor.azure.com/scripts/b/ai.3.2.0.min.js.gzip.svg) diff --git a/AISKU/Tests/Perf/src/AISKUPerf.ts b/AISKU/Tests/Perf/src/AISKUPerf.ts index bf4e124d7..b7fbda856 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.2.2"; + var defaultVer = "3.3.0"; 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 1748db697..ed6ec54e0 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 = 58; private readonly rawFilePath = "../dist/es5/applicationinsights-web.min.js"; // Automatically updated by version scripts - private readonly currentVer = "3.2.2"; + private readonly currentVer = "3.3.0"; 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 a8def702d..48b699bf5 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.2.2"; + private readonly currentVer = "3.3.0"; public testInitialize() { } diff --git a/AISKU/Tests/es6-module-type-check/package.json b/AISKU/Tests/es6-module-type-check/package.json index 3258b268a..5d0a9d3fe 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.2.2", + "version": "3.3.0", "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.2.2", - "@microsoft/applicationinsights-web": "3.2.2" + "@microsoft/applicationinsights-common": "3.3.0", + "@microsoft/applicationinsights-web": "3.3.0" } } diff --git a/AISKU/package.json b/AISKU/package.json index fd2665f08..04e8c1c8a 100644 --- a/AISKU/package.json +++ b/AISKU/package.json @@ -1,6 +1,6 @@ { "name": "@microsoft/applicationinsights-web", - "version": "3.2.2", + "version": "3.3.0", "description": "Microsoft Application Insights JavaScript SDK - Web", "homepage": "https://github.com/microsoft/ApplicationInsights-JS#readme", "author": "Microsoft Application Insights Team", @@ -32,7 +32,7 @@ }, "devDependencies": { "@microsoft/ai-test-framework": "0.0.1", - "@microsoft/applicationinsights-offlinechannel-js": "0.2.2", + "@microsoft/applicationinsights-offlinechannel-js": "0.3.0", "@microsoft/applicationinsights-rollup-plugin-uglify3-js": "1.0.0", "@microsoft/applicationinsights-rollup-es5": "1.0.2", "sinon": "^7.3.1", @@ -64,13 +64,13 @@ "dependencies": { "@microsoft/dynamicproto-js": "^2.0.3", "@microsoft/applicationinsights-shims": "3.0.1", - "@microsoft/applicationinsights-analytics-js": "3.2.2", - "@microsoft/applicationinsights-channel-js": "3.2.2", - "@microsoft/applicationinsights-cfgsync-js": "3.2.2", - "@microsoft/applicationinsights-common": "3.2.2", - "@microsoft/applicationinsights-core-js": "3.2.2", - "@microsoft/applicationinsights-dependencies-js": "3.2.2", - "@microsoft/applicationinsights-properties-js": "3.2.2", + "@microsoft/applicationinsights-analytics-js": "3.3.0", + "@microsoft/applicationinsights-channel-js": "3.3.0", + "@microsoft/applicationinsights-cfgsync-js": "3.3.0", + "@microsoft/applicationinsights-common": "3.3.0", + "@microsoft/applicationinsights-core-js": "3.3.0", + "@microsoft/applicationinsights-dependencies-js": "3.3.0", + "@microsoft/applicationinsights-properties-js": "3.3.0", "@nevware21/ts-utils": ">= 0.11.3 < 2.x", "@nevware21/ts-async": ">= 0.5.2 < 2.x" }, diff --git a/AISKULight/Tests/Unit/src/AISKULightSize.Tests.ts b/AISKULight/Tests/Unit/src/AISKULightSize.Tests.ts index 58cf32060..ee2bb26cb 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 = 37; private readonly MAX_BUNDLE_DEFLATE_SIZE = 37; private readonly rawFilePath = "../dist/es5/applicationinsights-web-basic.min.js"; - private readonly currentVer = "3.2.2"; + private readonly currentVer = "3.3.0"; private readonly prodFilePath = `../browser/es5/aib.${this.currentVer[0]}.min.js`; public testInitialize() { diff --git a/AISKULight/package.json b/AISKULight/package.json index 22cf74d77..ba8d28564 100644 --- a/AISKULight/package.json +++ b/AISKULight/package.json @@ -1,6 +1,6 @@ { "name": "@microsoft/applicationinsights-web-basic", - "version": "3.2.2", + "version": "3.3.0", "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.3", "@microsoft/applicationinsights-shims": "3.0.1", - "@microsoft/applicationinsights-common": "3.2.2", - "@microsoft/applicationinsights-channel-js": "3.2.2", - "@microsoft/applicationinsights-core-js": "3.2.2", + "@microsoft/applicationinsights-common": "3.3.0", + "@microsoft/applicationinsights-channel-js": "3.3.0", + "@microsoft/applicationinsights-core-js": "3.3.0", "@nevware21/ts-utils": ">= 0.11.3 < 2.x", "@nevware21/ts-async": ">= 0.5.2 < 2.x" }, diff --git a/RELEASES.md b/RELEASES.md index 250b8bde7..ea3a1a12e 100644 --- a/RELEASES.md +++ b/RELEASES.md @@ -17,6 +17,21 @@ Users can also enable Integrity Check and minimize snippet loading time by setti - #2360 [main] set script attribut to avoid race condition when multiple sdks are inited #2355 - #2339 [main] create snippet mini loader +## 3.3.0 (July 1st, 2024) + +### Potential breaking change + +This release contains a potential break change due to enhancing the definition of the [IConfiguration](https://github.com/microsoft/ApplicationInsights-JS/blob/main/shared/AppInsightsCore/src/JavaScriptSDK.Interfaces/IConfiguration.ts) to support Promise types for the connectionString, instrumentationKey and endpointURL; any extension that relies on these base interfaces will VERY likely cause TypeScript to fail with potential warnings about the types being different. + +### Changelog + +- #2371 Bump @microsoft/rush from 5.97.1 to 5.129.6 +- #2340 [Main][Task]27939476: Initialization with iKey and endpoint to be promises + +!! potential breaking changes. IConfiguration support Promise types for the connectionString, instrumentationKey and endpointURL +- #2366 [Sdk Loader] Increase version to 1.2.0 +- #2367 [main] update the way to generate ajax perforamance mark prefix + ## 3.2.2 (June 11th, 2024) ### Changelog diff --git a/channels/1ds-post-js/package.json b/channels/1ds-post-js/package.json index 90d2da844..5fdb5930f 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.2.2", + "version": "4.3.0", "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.3", - "@microsoft/1ds-core-js": "4.2.2", + "@microsoft/1ds-core-js": "4.3.0", "@nevware21/ts-utils": ">= 0.11.3 < 2.x", "@nevware21/ts-async": ">= 0.5.2 < 2.x" }, diff --git a/channels/applicationinsights-channel-js/package.json b/channels/applicationinsights-channel-js/package.json index 0a73dc2f7..d480b99ff 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.2.2", + "version": "3.3.0", "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.3", "@microsoft/applicationinsights-shims": "3.0.1", - "@microsoft/applicationinsights-core-js": "3.2.2", - "@microsoft/applicationinsights-common": "3.2.2", + "@microsoft/applicationinsights-core-js": "3.3.0", + "@microsoft/applicationinsights-common": "3.3.0", "@nevware21/ts-utils": ">= 0.11.3 < 2.x", "@nevware21/ts-async": ">= 0.5.2 < 2.x" }, diff --git a/channels/offline-channel-js/package.json b/channels/offline-channel-js/package.json index b2d1ef84e..b5c4c8da9 100644 --- a/channels/offline-channel-js/package.json +++ b/channels/offline-channel-js/package.json @@ -1,6 +1,6 @@ { "name": "@microsoft/applicationinsights-offlinechannel-js", - "version": "0.2.2", + "version": "0.3.0", "description": "Microsoft Application Insights JavaScript SDK Offline Channel", "homepage": "https://github.com/microsoft/ApplicationInsights-JS#readme", "author": "Microsoft Application Insights Team", @@ -28,8 +28,8 @@ "dependencies": { "@microsoft/dynamicproto-js": "^2.0.3", "@microsoft/applicationinsights-shims": "3.0.1", - "@microsoft/applicationinsights-core-js": "3.2.2", - "@microsoft/applicationinsights-common": "3.2.2", + "@microsoft/applicationinsights-core-js": "3.3.0", + "@microsoft/applicationinsights-common": "3.3.0", "@nevware21/ts-utils": ">= 0.11.3 < 2.x", "@nevware21/ts-async": ">= 0.5.2 < 2.x" }, diff --git a/channels/tee-channel-js/package.json b/channels/tee-channel-js/package.json index 556f24ba2..19f938936 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.2.2", + "version": "3.3.0", "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.3", "@microsoft/applicationinsights-shims": "3.0.1", - "@microsoft/applicationinsights-core-js": "3.2.2", - "@microsoft/applicationinsights-common": "3.2.2", + "@microsoft/applicationinsights-core-js": "3.3.0", + "@microsoft/applicationinsights-common": "3.3.0", "@nevware21/ts-utils": ">= 0.11.3 < 2.x", "@nevware21/ts-async": ">= 0.5.2 < 2.x" }, diff --git a/common/config/rush/npm-shrinkwrap.json b/common/config/rush/npm-shrinkwrap.json index 242a0c444..c6abd02a2 100644 --- a/common/config/rush/npm-shrinkwrap.json +++ b/common/config/rush/npm-shrinkwrap.json @@ -567,7 +567,7 @@ "node_modules/@rush-temp/1ds-core-js": { "version": "0.0.0", "resolved": "file:projects/1ds-core-js.tgz", - "integrity": "sha512-poahvKskx3HEVTUQ9VVxlxNjEXD5xfybJPA1HRfVfnX/d0Imjmvu5LUKz1+oK01wCmt0HghnWsmKlLujxk7POw==", + "integrity": "sha512-zw4sVD6bVH+ZaRNiBol90NeBjVQx+aePyQVaNzBo8NlQEmAGQiZjuZ8mjcSZtFW1UVxGjFFDWurS3oBXt5aVeg==", "dependencies": { "@microsoft/api-extractor": "^7.40.0", "@microsoft/dynamicproto-js": "^2.0.3", @@ -595,7 +595,7 @@ "node_modules/@rush-temp/1ds-post-js": { "version": "0.0.0", "resolved": "file:projects/1ds-post-js.tgz", - "integrity": "sha512-OESpkRaaJQjKbn5yRyARLXRVBJE0GKtuAQfnzbyWtsQvkulSYzBasBqG7l1Yscp4KZV1X6GB0r3VdGc5Q4W1Iw==", + "integrity": "sha512-CARSOwsqJwz+HMcjNybFNPgfEmxW6Hg2zTALEB8qsLU5GCmdLFtZ71HG53b3ROZXqEg/2tNELFhlyYfx0RHOsg==", "dependencies": { "@microsoft/api-extractor": "^7.40.0", "@microsoft/dynamicproto-js": "^2.0.3", @@ -617,7 +617,7 @@ "node_modules/@rush-temp/ai-test-framework": { "version": "0.0.0", "resolved": "file:projects/ai-test-framework.tgz", - "integrity": "sha512-+m5LukVkSVoPNFxrfIayPiDb0uJOKE3qg5qiyl8lkIpa8toCvG3Xmx9IYHSV+zM9G1FrO9pjWt0aYX2fLlenAw==", + "integrity": "sha512-L1Ls3ZmnO5U5XUzxd7BMqjrC0blWmatDRBFa+90kmD4M12yOaPGZVPFpgvjUw865c5SQeElAWk9YMvg64YVpeA==", "dependencies": { "@microsoft/dynamicproto-js": "^2.0.3", "@nevware21/grunt-ts-plugin": "^0.4.3", @@ -643,7 +643,7 @@ "node_modules/@rush-temp/applicationinsights-analytics-js": { "version": "0.0.0", "resolved": "file:projects/applicationinsights-analytics-js.tgz", - "integrity": "sha512-mbYN8C0rWvnE5yPChF28Cxl3xL9rr2K9Rj7OsuD8Eqx/7jGV94Q8LU6fMa6EMUXFycmXl73QBIFh81rhsf8r7w==", + "integrity": "sha512-jXKEwUj2wrRisunmB1gjezNFPqnpChNJCSUOdcrxNmPdZ6PjL6osf2LGpSJ3GxQhrZm+smX2CUW1n+hmuqD1iw==", "dependencies": { "@microsoft/api-extractor": "^7.40.0", "@microsoft/dynamicproto-js": "^2.0.3", @@ -671,7 +671,7 @@ "node_modules/@rush-temp/applicationinsights-cfgsync-js": { "version": "0.0.0", "resolved": "file:projects/applicationinsights-cfgsync-js.tgz", - "integrity": "sha512-gOHNxx4aYd9dCh9HRbclYLtXjiNcDfd5Pv03okfAQQ+DB7mmp/rQ9pVYUd8reNJsHz0h1KJyeOI2ktVVC4fDkw==", + "integrity": "sha512-NxxR8qzGJST9PNUEY3i7J8boTygQQJaARXO4Tbw0mdkq2GPvH+/1obC7A/W4g6cqtFresiAUYlrpa1cxrksgAA==", "dependencies": { "@microsoft/api-extractor": "^7.40.0", "@microsoft/dynamicproto-js": "^2.0.3", @@ -700,7 +700,7 @@ "node_modules/@rush-temp/applicationinsights-channel-js": { "version": "0.0.0", "resolved": "file:projects/applicationinsights-channel-js.tgz", - "integrity": "sha512-11cafmaFpoTufaYKMS0p3Nm19L3rtrc4QHe7JWi3KSP9ADAza/ec377sfppTW+hhp6fJ1SiBHNgBgBe8kP3tgg==", + "integrity": "sha512-CQlqMFQ7vvhY9z4rVN91cSTha9bniEiL98R8MCY01S5UxMsahxvKohEPl8IkZfmdHNxvCvVBo+7DnjKVBgIGIQ==", "dependencies": { "@microsoft/api-extractor": "^7.40.0", "@microsoft/dynamicproto-js": "^2.0.3", @@ -727,7 +727,7 @@ "node_modules/@rush-temp/applicationinsights-chrome-debug-extension": { "version": "0.0.0", "resolved": "file:projects/applicationinsights-chrome-debug-extension.tgz", - "integrity": "sha512-ORHNnZV4HSTiuIiRe8uxFLmPsDC8E1CBR982vPPTEKPSg/PGIlc13WVjLjHEIRuN3Q/+oxikOlCToV1oBVqaMA==", + "integrity": "sha512-v22XlInN4q5TuYZaDZgcFA3zsKmg+t4tutyC5WEFnJNSRyBYqQbpKnWIGG4N8Ed1Ja8UyJyyNV5vDUg17Au0Zg==", "dependencies": { "@microsoft/dynamicproto-js": "^2.0.3", "@nevware21/grunt-eslint-ts": "^0.2.2", @@ -761,7 +761,7 @@ "node_modules/@rush-temp/applicationinsights-clickanalytics-js": { "version": "0.0.0", "resolved": "file:projects/applicationinsights-clickanalytics-js.tgz", - "integrity": "sha512-lR/VvwCRDp5vOA0Ax3ECp+yuo8c2ztkxV5ArgQmJngPaetX1B/sak7XtuvFsYrskGzeabTNhbmaY9dBSRyxDnA==", + "integrity": "sha512-sdoa89pRGbOrJ9L3ubNw8TQYA3uHlaC9rtYlWJJxJgZDc1XKDnilKQ3cBhe0hoBM4/f+BEgIvQyb6wMhtUValg==", "dependencies": { "@microsoft/api-extractor": "^7.40.0", "@microsoft/dynamicproto-js": "^2.0.3", @@ -786,7 +786,7 @@ "node_modules/@rush-temp/applicationinsights-common": { "version": "0.0.0", "resolved": "file:projects/applicationinsights-common.tgz", - "integrity": "sha512-RM4yUbUJgbHLVjw8lmfKBDi5uE9iEy5muYjFEitiWigvi2JC6pLn+/zvcLJVCoEv92i5gbt4WEyy2PzqIYEl3A==", + "integrity": "sha512-pqs9n6H210TCX5/ijnZAarN6WOgtanbOwwjJf6VChPG1I6zEzoDTCCGz/DIrrFKoUqFPZRYqW1andK2ozGgZWw==", "dependencies": { "@microsoft/api-extractor": "^7.40.0", "@microsoft/dynamicproto-js": "^2.0.3", @@ -812,7 +812,7 @@ "node_modules/@rush-temp/applicationinsights-core-js": { "version": "0.0.0", "resolved": "file:projects/applicationinsights-core-js.tgz", - "integrity": "sha512-EkGzXMcSFEaLfKavKQWrGaiUw4s7I0H8b+aC6GBWmg6k3f+WK3Ox7+jbUkbW0zh17yi6yAReHn+s8fBJnKWCTQ==", + "integrity": "sha512-NNbdm2ei94ax50JyeNdvwYBQ0T+LBR4kdU7KdzmtzvNpQTlw3j8YnRppJ/86BYBsnj/boYEzvccI2oaQ4pq0Aw==", "dependencies": { "@microsoft/api-extractor": "^7.40.0", "@microsoft/dynamicproto-js": "^2.0.3", @@ -841,7 +841,7 @@ "node_modules/@rush-temp/applicationinsights-debugplugin-js": { "version": "0.0.0", "resolved": "file:projects/applicationinsights-debugplugin-js.tgz", - "integrity": "sha512-XBM3ASDIf4rc75eec7NGrY+BA7C08HU/Em6D30wz9gLTrgmaRuiHQ1bjekL4V3+/iDw+XA/Z6I1mUZuiMlMhxg==", + "integrity": "sha512-uBk6rCwwI/BUyVj+gq72eaKZKurcjGndY4T9CRJWNYw7DZ0VJrwY54u3zHiVBh+h31WDL/P3SK9TRTxQb7Cuyg==", "dependencies": { "@microsoft/api-extractor": "^7.40.0", "@microsoft/dynamicproto-js": "^2.0.3", @@ -866,7 +866,7 @@ "node_modules/@rush-temp/applicationinsights-dependencies-js": { "version": "0.0.0", "resolved": "file:projects/applicationinsights-dependencies-js.tgz", - "integrity": "sha512-pGl/M9G7QBdHA3z5h9/eybqEP79+8NjktL1QrrwhGf+BRZdQmdB49z2Qht3XXvAOkC8UXUkVqnoRGSH7zMVirg==", + "integrity": "sha512-L+Sz5JL9NqbOhiboG/fA9sFNKMpiZd+o/Ohy4jSe34O9A8uuTC/ciIFX5uSVYKzcjhMvdG7FxwfkiaJWSauJCg==", "dependencies": { "@microsoft/api-extractor": "^7.40.0", "@microsoft/dynamicproto-js": "^2.0.3", @@ -894,7 +894,7 @@ "node_modules/@rush-temp/applicationinsights-example-aisku": { "version": "0.0.0", "resolved": "file:projects/applicationinsights-example-aisku.tgz", - "integrity": "sha512-jsEkbrkq7TW57xh2+8vafCZ1SNlCARXF33NqT4nYBTtzmNJr2wkx43Yfei9exhpAE0gNnjIVMY+cr7sFBM4HUw==", + "integrity": "sha512-ysBQDY5+IG+aAyVMKizF7t8FcytUXs/+3KW1hyO2KyP6cv5dpaiNI/0keUd07X8kyWM0XWEeyrd5f0+T04j5Gw==", "dependencies": { "@microsoft/dynamicproto-js": "^2.0.3", "@nevware21/ts-utils": ">= 0.11.3 < 2.x", @@ -912,7 +912,7 @@ "node_modules/@rush-temp/applicationinsights-example-cfgsync": { "version": "0.0.0", "resolved": "file:projects/applicationinsights-example-cfgsync.tgz", - "integrity": "sha512-yft9U7CzQDwJ2YntJ8oBrhPJtOLGFAfyx+3Qb8xfhzphhGJ/JYbaivvR5sG/sOQLZ/grDyRfL74d5BxKaVaYKA==", + "integrity": "sha512-1LWyqE9Avq0+CUt2xhzgJzmRCWmp7teuoz36dbmo6KfG0ELNCaYA7QWJhYPVhlxp69MOhyIQqZTkgDTEQ0HidA==", "dependencies": { "@microsoft/dynamicproto-js": "^2.0.3", "@nevware21/grunt-eslint-ts": "^0.2.2", @@ -938,7 +938,7 @@ "node_modules/@rush-temp/applicationinsights-example-dependencies": { "version": "0.0.0", "resolved": "file:projects/applicationinsights-example-dependencies.tgz", - "integrity": "sha512-hN0GAE8hIcbAl7YmQvhu6cYksToKJsW8Q7UH1DFBF9+0DJipfbT3MeRywYNeILIJeW0wEo3lPcPeXZJa7x5l3g==", + "integrity": "sha512-lv+lH4kd/wj+D+SfAXVQLnlV1oArD5rUOljQ3Dtm6cJRhg8muu6meZkZVTixM8+onJU2txEUoWgVjQe8cZdvog==", "dependencies": { "@microsoft/dynamicproto-js": "^2.0.3", "@nevware21/ts-utils": ">= 0.11.3 < 2.x", @@ -956,7 +956,7 @@ "node_modules/@rush-temp/applicationinsights-example-shared-worker": { "version": "0.0.0", "resolved": "file:projects/applicationinsights-example-shared-worker.tgz", - "integrity": "sha512-WakEtLNMxKA5izNDLr+kjLQn+F/UDmf5FhDrIx9YKxsL1wGK23X4YbDO41Imbx7+6NvJH+V++Eg+ILIvERy8SQ==", + "integrity": "sha512-exBAD1oUpl7LthmChGS17n+p+qEekDviE8xpsZv+2lZv6Qn9cm5QYbD2ccEhGRtNX8yfxTH/lAHG7uBpEggX1A==", "dependencies": { "@microsoft/dynamicproto-js": "^2.0.3", "@nevware21/grunt-eslint-ts": "^0.2.2", @@ -982,7 +982,7 @@ "node_modules/@rush-temp/applicationinsights-js-release-tools": { "version": "0.0.0", "resolved": "file:projects/applicationinsights-js-release-tools.tgz", - "integrity": "sha512-e9jw61D/jeRuLlSL+dQ2bFp8iqw6Q9ZMeboqX0CX0iYwjAPRiN/59ZK66D0UOgggNkqYgSEqgDi+ycw9XRtGnA==", + "integrity": "sha512-6sVB5NMzKj/P9v9UvZlA/IjQSkGeupaDliSt2IZqy+SlR59Hv335Ekz/5f54xMHu+QiARXJATbjX7lDfCMG8qw==", "dependencies": { "globby": "^11.0.0", "grunt": "^1.5.3" @@ -991,7 +991,7 @@ "node_modules/@rush-temp/applicationinsights-offlinechannel-js": { "version": "0.0.0", "resolved": "file:projects/applicationinsights-offlinechannel-js.tgz", - "integrity": "sha512-dRHfYiVZEMl44DnDbMV2jkRw9UVLtpwwQC6vvF7v/NcSgWxZlDIJZywr/liXRBvnbQjhjEN9+ccVC0YI0PxS/g==", + "integrity": "sha512-Y9BkCBiZ+1755sMb/fn8yKJEDwwls2CW6OekSDFa4dnQAdtSYfSIOfICjWErliGtEZDv8Vyos//idHrEwc2FPw==", "dependencies": { "@microsoft/api-extractor": "^7.40.0", "@microsoft/dynamicproto-js": "^2.0.3", @@ -1018,7 +1018,7 @@ "node_modules/@rush-temp/applicationinsights-osplugin-js": { "version": "0.0.0", "resolved": "file:projects/applicationinsights-osplugin-js.tgz", - "integrity": "sha512-oTG8nQR003YXJzkKwkkmlLLxIuEaQeH32szjVtqm2sXl2U7wSTSEzM4xSKAScfYi27jg4jXT4EDGumdL711qMw==", + "integrity": "sha512-V37W8x88qXlgVlRQjEvTriDebUTBzvzTcpcVMaKdnNCDwNlwsN+2VzomgMzSYK9+yJPlIei4iffwW+O8iKAD2g==", "dependencies": { "@microsoft/api-extractor": "^7.40.0", "@microsoft/dynamicproto-js": "^2.0.3", @@ -1039,7 +1039,7 @@ "node_modules/@rush-temp/applicationinsights-perfmarkmeasure-js": { "version": "0.0.0", "resolved": "file:projects/applicationinsights-perfmarkmeasure-js.tgz", - "integrity": "sha512-Aihbu2yC4NXfdPm/AEMb19TSqs+gH8x25pS36zA5MosMMrD5dBQEXbDEJxs0D6PinnjubjuOgkpfks74jm/UhQ==", + "integrity": "sha512-+8TBdQNSywpKIVMpAHcvF60N6rbPqoAf8JNPJ/myim1gD9m0zpp2OzYOQj3T8DpO2muzoVlKo1nfnfw3uoNXuQ==", "dependencies": { "@microsoft/api-extractor": "^7.40.0", "@microsoft/dynamicproto-js": "^2.0.3", @@ -1064,7 +1064,7 @@ "node_modules/@rush-temp/applicationinsights-properties-js": { "version": "0.0.0", "resolved": "file:projects/applicationinsights-properties-js.tgz", - "integrity": "sha512-tVH4ZoBcXIpuzgjoKck+1QY4vDul1wzGqkhsuWm2AryrVwRaXZsH5nzYTXO/8YJtdXitye9zw3u3RLYo+gUWrg==", + "integrity": "sha512-Zo7y1gq0EC7DyHtQ8FuWjAkUAI3I4KnrClkP4lRyEIxZdIAjoeYGBmalyFiV35oDjHQ2cFRljOs8NR5K+1VLvQ==", "dependencies": { "@microsoft/api-extractor": "^7.40.0", "@microsoft/dynamicproto-js": "^2.0.3", @@ -1092,7 +1092,7 @@ "node_modules/@rush-temp/applicationinsights-rollup-es5": { "version": "0.0.0", "resolved": "file:projects/applicationinsights-rollup-es5.tgz", - "integrity": "sha512-1Yw2QKlul+WlTRAHhchUxteaSDaeZjskW1H4R3BT7xv7yGZPi0dp4KtKdKAJZQ+/Z+Zxg4XXOWpuDmv/FYmFtQ==", + "integrity": "sha512-pZV3ytRYW9T6XrXLTRqAt5c23vrywlwfWQ1rrGVh78hlig+Ns/ZJw+jM4JwgSyvce8hcZiR+z1rm0xpKju+oJA==", "dependencies": { "@microsoft/dynamicproto-js": "^2.0.3", "@nevware21/grunt-eslint-ts": "^0.2.2", @@ -1116,7 +1116,7 @@ "node_modules/@rush-temp/applicationinsights-rollup-plugin-uglify3-js": { "version": "0.0.0", "resolved": "file:projects/applicationinsights-rollup-plugin-uglify3-js.tgz", - "integrity": "sha512-gp8gJ52kIbJpkT406+PBS7rtyCSUnc72otGxnwywqWCuBJvO1O+qaOCIJBYL/wYk1lDpMKejDqG94vPSSQtnFg==", + "integrity": "sha512-WtYrHtc+6IgVGmHIahhl2aYUGuloDq9xCX6VuwObLmccrAqmYq0LYbCanjHi8ugorx/zwwQB37yY3y2WfaDGmw==", "dependencies": { "@nevware21/grunt-eslint-ts": "^0.2.2", "@nevware21/grunt-ts-plugin": "^0.4.3", @@ -1137,7 +1137,7 @@ "node_modules/@rush-temp/applicationinsights-shims": { "version": "0.0.0", "resolved": "file:projects/applicationinsights-shims.tgz", - "integrity": "sha512-nn1Ba7iM4optvMfCTznHuBTyCG9O5SOucyrAL0+4pxgIW3VKNx+OqBGqhBIUT/D4csiMSK89wImGXayymhTDfQ==", + "integrity": "sha512-EA90BSGIX2gImZZy0eRTYK//78OuAhZsSpjyUqUVwIyVIdgaS3Y1YCMpWPLK3NquzjAP6bfOcY/EoOn+IrZqxQ==", "dependencies": { "@microsoft/dynamicproto-js": "^2.0.3", "@nevware21/grunt-eslint-ts": "^0.2.2", @@ -1159,7 +1159,7 @@ "node_modules/@rush-temp/applicationinsights-teechannel-js": { "version": "0.0.0", "resolved": "file:projects/applicationinsights-teechannel-js.tgz", - "integrity": "sha512-2v3FiUEwPz3XUc4vsZX7oMadcIn7m3Jy/bv6oCw9IJDYJErErawKDqG6sORGbVNuBHPc+vzTHnprAlNR9TI67w==", + "integrity": "sha512-zQY7EGbwrKQ+7ONyOSa4eB7gwptKRQEOc2C6ld9W2JPyk8vsAsKEYkEyYSiFrWDBWC8SZT0/oX/In3KLqsPWfw==", "dependencies": { "@microsoft/api-extractor": "^7.40.0", "@microsoft/dynamicproto-js": "^2.0.3", @@ -1186,7 +1186,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-gVuNKPt8RumqjeY2KWZ0Hi70MHwAlWweP3Ur6w0V+MZznlssUDSTdZS2NEBn4V8yOdFf8QdyBad1z3oVR1ITrA==", + "integrity": "sha512-v8gcwVgd6wUz/+G2b5fJYIWVvSFswRjAo87dDm9QGFuawXFlEZkAWbkiFWdxJ86iVcEX9XWrrHtkUxbv0YdZsQ==", "dependencies": { "tslib": "*", "typescript": "^4.9.3" @@ -1195,7 +1195,7 @@ "node_modules/@rush-temp/applicationinsights-web": { "version": "0.0.0", "resolved": "file:projects/applicationinsights-web.tgz", - "integrity": "sha512-JmcGFtN+exXLzKgMf4UddIJDIb4DhUW2qWB1JAEqsoplC7Aua9UKznDb9Fu6crjBJ2YEYYEEAPqAX3752+SxqA==", + "integrity": "sha512-Cts56ofZ5HAGpI4PxEHvAHd5oscYdjjq6KYmXrAhDe4Q4RLqYIVHRY6T52//ONl1traW28e2PUF5JX3lWHKqJQ==", "dependencies": { "@microsoft/api-extractor": "^7.40.0", "@microsoft/dynamicproto-js": "^2.0.3", @@ -1227,7 +1227,7 @@ "node_modules/@rush-temp/applicationinsights-web-basic": { "version": "0.0.0", "resolved": "file:projects/applicationinsights-web-basic.tgz", - "integrity": "sha512-cuIh6jzMlZLpifnE6DDsj5xu8T0VSK0uiYGVndNR3Nh9+eNR20kTqixdyUVL/qaeL85Aq0K/w1wF+eYRWG6imQ==", + "integrity": "sha512-a2VLNtLF5bMHsq1AD3U9U4pS3FN+zIoyQS+rLHjjGE92QMHNH0wuNaYgpTpJp9fLCEaRFZ8f72TDVmbACHmTFw==", "dependencies": { "@microsoft/api-extractor": "^7.40.0", "@microsoft/dynamicproto-js": "^2.0.3", @@ -1254,12 +1254,12 @@ "node_modules/@rush-temp/applicationinsights-web-config": { "version": "0.0.0", "resolved": "file:projects/applicationinsights-web-config.tgz", - "integrity": "sha512-FwPOZ+esirRqdKg9s7VTxtWqGJ9CQ/gIJ0PfUvTolAF9JZCVw5wQeHD4Tv/KiziZhB50CNaGshnPmLpWGVzo9g==" + "integrity": "sha512-WwlTM/noixyLMqKFBLKa9o88N/2Z3dA9m0R6Qc9UvBNseZqPIpvl1vRMDnmwjMMV6lV3FsmeSmjD7LCJphXF2Q==" }, "node_modules/@rush-temp/applicationinsights-web-snippet": { "version": "0.0.0", "resolved": "file:projects/applicationinsights-web-snippet.tgz", - "integrity": "sha512-Do0iLiOVQ7a6JW/d/cm85lH1FoYVnzbPWFljiK8+eiDi+rfHMkTfW1pAkHqGNnoOpeES3PA6rkKKjNk4w3ZlCw==", + "integrity": "sha512-ywcGiOSu6W/XIlJ7HOaoJv+3FuhUITA2mkfv0pXW1sB0nXw4ZMXeL21LgTwMYYoMikBI8tY7qGKgQAODbhIuZw==", "dependencies": { "@microsoft/api-extractor": "^7.40.0", "@microsoft/dynamicproto-js": "^2.0.3", @@ -1573,16 +1573,16 @@ } }, "node_modules/@typescript-eslint/eslint-plugin": { - "version": "7.14.1", - "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-7.14.1.tgz", - "integrity": "sha512-aAJd6bIf2vvQRjUG3ZkNXkmBpN+J7Wd0mfQiiVCJMu9Z5GcZZdcc0j8XwN/BM97Fl7e3SkTXODSk4VehUv7CGw==", + "version": "7.15.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-7.15.0.tgz", + "integrity": "sha512-uiNHpyjZtFrLwLDpHnzaDlP3Tt6sGMqTCiqmxaN4n4RP0EfYZDODJyddiFDF44Hjwxr5xAcaYxVKm9QKQFJFLA==", "peer": true, "dependencies": { "@eslint-community/regexpp": "^4.10.0", - "@typescript-eslint/scope-manager": "7.14.1", - "@typescript-eslint/type-utils": "7.14.1", - "@typescript-eslint/utils": "7.14.1", - "@typescript-eslint/visitor-keys": "7.14.1", + "@typescript-eslint/scope-manager": "7.15.0", + "@typescript-eslint/type-utils": "7.15.0", + "@typescript-eslint/utils": "7.15.0", + "@typescript-eslint/visitor-keys": "7.15.0", "graphemer": "^1.4.0", "ignore": "^5.3.1", "natural-compare": "^1.4.0", @@ -1606,15 +1606,15 @@ } }, "node_modules/@typescript-eslint/parser": { - "version": "7.14.1", - "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-7.14.1.tgz", - "integrity": "sha512-8lKUOebNLcR0D7RvlcloOacTOWzOqemWEWkKSVpMZVF/XVcwjPR+3MD08QzbW9TCGJ+DwIc6zUSGZ9vd8cO1IA==", + "version": "7.15.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-7.15.0.tgz", + "integrity": "sha512-k9fYuQNnypLFcqORNClRykkGOMOj+pV6V91R4GO/l1FDGwpqmSwoOQrOHo3cGaH63e+D3ZiCAOsuS/D2c99j/A==", "peer": true, "dependencies": { - "@typescript-eslint/scope-manager": "7.14.1", - "@typescript-eslint/types": "7.14.1", - "@typescript-eslint/typescript-estree": "7.14.1", - "@typescript-eslint/visitor-keys": "7.14.1", + "@typescript-eslint/scope-manager": "7.15.0", + "@typescript-eslint/types": "7.15.0", + "@typescript-eslint/typescript-estree": "7.15.0", + "@typescript-eslint/visitor-keys": "7.15.0", "debug": "^4.3.4" }, "engines": { @@ -1634,13 +1634,13 @@ } }, "node_modules/@typescript-eslint/scope-manager": { - "version": "7.14.1", - "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-7.14.1.tgz", - "integrity": "sha512-gPrFSsoYcsffYXTOZ+hT7fyJr95rdVe4kGVX1ps/dJ+DfmlnjFN/GcMxXcVkeHDKqsq6uAcVaQaIi3cFffmAbA==", + "version": "7.15.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-7.15.0.tgz", + "integrity": "sha512-Q/1yrF/XbxOTvttNVPihxh1b9fxamjEoz2Os/Pe38OHwxC24CyCqXxGTOdpb4lt6HYtqw9HetA/Rf6gDGaMPlw==", "peer": true, "dependencies": { - "@typescript-eslint/types": "7.14.1", - "@typescript-eslint/visitor-keys": "7.14.1" + "@typescript-eslint/types": "7.15.0", + "@typescript-eslint/visitor-keys": "7.15.0" }, "engines": { "node": "^18.18.0 || >=20.0.0" @@ -1651,13 +1651,13 @@ } }, "node_modules/@typescript-eslint/type-utils": { - "version": "7.14.1", - "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-7.14.1.tgz", - "integrity": "sha512-/MzmgNd3nnbDbOi3LfasXWWe292+iuo+umJ0bCCMCPc1jLO/z2BQmWUUUXvXLbrQey/JgzdF/OV+I5bzEGwJkQ==", + "version": "7.15.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-7.15.0.tgz", + "integrity": "sha512-SkgriaeV6PDvpA6253PDVep0qCqgbO1IOBiycjnXsszNTVQe5flN5wR5jiczoEoDEnAqYFSFFc9al9BSGVltkg==", "peer": true, "dependencies": { - "@typescript-eslint/typescript-estree": "7.14.1", - "@typescript-eslint/utils": "7.14.1", + "@typescript-eslint/typescript-estree": "7.15.0", + "@typescript-eslint/utils": "7.15.0", "debug": "^4.3.4", "ts-api-utils": "^1.3.0" }, @@ -1678,9 +1678,9 @@ } }, "node_modules/@typescript-eslint/types": { - "version": "7.14.1", - "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-7.14.1.tgz", - "integrity": "sha512-mL7zNEOQybo5R3AavY+Am7KLv8BorIv7HCYS5rKoNZKQD9tsfGUpO4KdAn3sSUvTiS4PQkr2+K0KJbxj8H9NDg==", + "version": "7.15.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-7.15.0.tgz", + "integrity": "sha512-aV1+B1+ySXbQH0pLK0rx66I3IkiZNidYobyfn0WFsdGhSXw+P3YOqeTq5GED458SfB24tg+ux3S+9g118hjlTw==", "peer": true, "engines": { "node": "^18.18.0 || >=20.0.0" @@ -1691,13 +1691,13 @@ } }, "node_modules/@typescript-eslint/typescript-estree": { - "version": "7.14.1", - "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-7.14.1.tgz", - "integrity": "sha512-k5d0VuxViE2ulIO6FbxxSZaxqDVUyMbXcidC8rHvii0I56XZPv8cq+EhMns+d/EVIL41sMXqRbK3D10Oza1bbA==", + "version": "7.15.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-7.15.0.tgz", + "integrity": "sha512-gjyB/rHAopL/XxfmYThQbXbzRMGhZzGw6KpcMbfe8Q3nNQKStpxnUKeXb0KiN/fFDR42Z43szs6rY7eHk0zdGQ==", "peer": true, "dependencies": { - "@typescript-eslint/types": "7.14.1", - "@typescript-eslint/visitor-keys": "7.14.1", + "@typescript-eslint/types": "7.15.0", + "@typescript-eslint/visitor-keys": "7.15.0", "debug": "^4.3.4", "globby": "^11.1.0", "is-glob": "^4.0.3", @@ -1755,15 +1755,15 @@ } }, "node_modules/@typescript-eslint/utils": { - "version": "7.14.1", - "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-7.14.1.tgz", - "integrity": "sha512-CMmVVELns3nak3cpJhZosDkm63n+DwBlDX8g0k4QUa9BMnF+lH2lr3d130M1Zt1xxmB3LLk3NV7KQCq86ZBBhQ==", + "version": "7.15.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-7.15.0.tgz", + "integrity": "sha512-hfDMDqaqOqsUVGiEPSMLR/AjTSCsmJwjpKkYQRo1FNbmW4tBwBspYDwO9eh7sKSTwMQgBw9/T4DHudPaqshRWA==", "peer": true, "dependencies": { "@eslint-community/eslint-utils": "^4.4.0", - "@typescript-eslint/scope-manager": "7.14.1", - "@typescript-eslint/types": "7.14.1", - "@typescript-eslint/typescript-estree": "7.14.1" + "@typescript-eslint/scope-manager": "7.15.0", + "@typescript-eslint/types": "7.15.0", + "@typescript-eslint/typescript-estree": "7.15.0" }, "engines": { "node": "^18.18.0 || >=20.0.0" @@ -1777,12 +1777,12 @@ } }, "node_modules/@typescript-eslint/visitor-keys": { - "version": "7.14.1", - "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-7.14.1.tgz", - "integrity": "sha512-Crb+F75U1JAEtBeQGxSKwI60hZmmzaqA3z9sYsVm8X7W5cwLEm5bRe0/uXS6+MR/y8CVpKSR/ontIAIEPFcEkA==", + "version": "7.15.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-7.15.0.tgz", + "integrity": "sha512-Hqgy/ETgpt2L5xueA/zHHIl4fJI2O4XUE9l4+OIfbJIRSnTJb/QscncdqqZzofQegIJugRIF57OJea1khw2SDw==", "peer": true, "dependencies": { - "@typescript-eslint/types": "7.14.1", + "@typescript-eslint/types": "7.15.0", "eslint-visitor-keys": "^3.4.3" }, "engines": { @@ -2245,9 +2245,9 @@ } }, "node_modules/caniuse-lite": { - "version": "1.0.30001638", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001638.tgz", - "integrity": "sha512-5SuJUJ7cZnhPpeLHaH0c/HPAnAHZvS6ElWyHK9GSIbVOQABLzowiI2pjmpvZ1WEbkyz46iFd4UXlOHR5SqgfMQ==", + "version": "1.0.30001639", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001639.tgz", + "integrity": "sha512-eFHflNTBIlFwP2AIKaYuBQN/apnUoKNhBdza8ZnW/h2di4LCZ4xFqYlxUxo+LQ76KFI1PGcC1QDxMbxTZpSCAg==", "funding": [ { "type": "opencollective", @@ -2641,9 +2641,9 @@ "integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==" }, "node_modules/electron-to-chromium": { - "version": "1.4.814", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.814.tgz", - "integrity": "sha512-GVulpHjFu1Y9ZvikvbArHmAhZXtm3wHlpjTMcXNGKl4IQ4jMQjlnz8yMQYYqdLHKi/jEL2+CBC2akWVCoIGUdw==" + "version": "1.4.816", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.816.tgz", + "integrity": "sha512-EKH5X5oqC6hLmiS7/vYtZHZFTNdhsYG5NVPRN6Yn0kQHNBlT59+xSM8HBy66P5fxWpKgZbPqb+diC64ng295Jw==" }, "node_modules/encodeurl": { "version": "1.0.2", @@ -6731,7 +6731,7 @@ }, "@rush-temp/1ds-core-js": { "version": "file:projects\\1ds-core-js.tgz", - "integrity": "sha512-poahvKskx3HEVTUQ9VVxlxNjEXD5xfybJPA1HRfVfnX/d0Imjmvu5LUKz1+oK01wCmt0HghnWsmKlLujxk7POw==", + "integrity": "sha512-zw4sVD6bVH+ZaRNiBol90NeBjVQx+aePyQVaNzBo8NlQEmAGQiZjuZ8mjcSZtFW1UVxGjFFDWurS3oBXt5aVeg==", "requires": { "@microsoft/api-extractor": "^7.40.0", "@microsoft/dynamicproto-js": "^2.0.3", @@ -6758,7 +6758,7 @@ }, "@rush-temp/1ds-post-js": { "version": "file:projects\\1ds-post-js.tgz", - "integrity": "sha512-OESpkRaaJQjKbn5yRyARLXRVBJE0GKtuAQfnzbyWtsQvkulSYzBasBqG7l1Yscp4KZV1X6GB0r3VdGc5Q4W1Iw==", + "integrity": "sha512-CARSOwsqJwz+HMcjNybFNPgfEmxW6Hg2zTALEB8qsLU5GCmdLFtZ71HG53b3ROZXqEg/2tNELFhlyYfx0RHOsg==", "requires": { "@microsoft/api-extractor": "^7.40.0", "@microsoft/dynamicproto-js": "^2.0.3", @@ -6779,7 +6779,7 @@ }, "@rush-temp/ai-test-framework": { "version": "file:projects\\ai-test-framework.tgz", - "integrity": "sha512-+m5LukVkSVoPNFxrfIayPiDb0uJOKE3qg5qiyl8lkIpa8toCvG3Xmx9IYHSV+zM9G1FrO9pjWt0aYX2fLlenAw==", + "integrity": "sha512-L1Ls3ZmnO5U5XUzxd7BMqjrC0blWmatDRBFa+90kmD4M12yOaPGZVPFpgvjUw865c5SQeElAWk9YMvg64YVpeA==", "requires": { "@microsoft/dynamicproto-js": "^2.0.3", "@nevware21/grunt-ts-plugin": "^0.4.3", @@ -6804,7 +6804,7 @@ }, "@rush-temp/applicationinsights-analytics-js": { "version": "file:projects\\applicationinsights-analytics-js.tgz", - "integrity": "sha512-mbYN8C0rWvnE5yPChF28Cxl3xL9rr2K9Rj7OsuD8Eqx/7jGV94Q8LU6fMa6EMUXFycmXl73QBIFh81rhsf8r7w==", + "integrity": "sha512-jXKEwUj2wrRisunmB1gjezNFPqnpChNJCSUOdcrxNmPdZ6PjL6osf2LGpSJ3GxQhrZm+smX2CUW1n+hmuqD1iw==", "requires": { "@microsoft/api-extractor": "^7.40.0", "@microsoft/dynamicproto-js": "^2.0.3", @@ -6831,7 +6831,7 @@ }, "@rush-temp/applicationinsights-cfgsync-js": { "version": "file:projects\\applicationinsights-cfgsync-js.tgz", - "integrity": "sha512-gOHNxx4aYd9dCh9HRbclYLtXjiNcDfd5Pv03okfAQQ+DB7mmp/rQ9pVYUd8reNJsHz0h1KJyeOI2ktVVC4fDkw==", + "integrity": "sha512-NxxR8qzGJST9PNUEY3i7J8boTygQQJaARXO4Tbw0mdkq2GPvH+/1obC7A/W4g6cqtFresiAUYlrpa1cxrksgAA==", "requires": { "@microsoft/api-extractor": "^7.40.0", "@microsoft/dynamicproto-js": "^2.0.3", @@ -6859,7 +6859,7 @@ }, "@rush-temp/applicationinsights-channel-js": { "version": "file:projects\\applicationinsights-channel-js.tgz", - "integrity": "sha512-11cafmaFpoTufaYKMS0p3Nm19L3rtrc4QHe7JWi3KSP9ADAza/ec377sfppTW+hhp6fJ1SiBHNgBgBe8kP3tgg==", + "integrity": "sha512-CQlqMFQ7vvhY9z4rVN91cSTha9bniEiL98R8MCY01S5UxMsahxvKohEPl8IkZfmdHNxvCvVBo+7DnjKVBgIGIQ==", "requires": { "@microsoft/api-extractor": "^7.40.0", "@microsoft/dynamicproto-js": "^2.0.3", @@ -6885,7 +6885,7 @@ }, "@rush-temp/applicationinsights-chrome-debug-extension": { "version": "file:projects\\applicationinsights-chrome-debug-extension.tgz", - "integrity": "sha512-ORHNnZV4HSTiuIiRe8uxFLmPsDC8E1CBR982vPPTEKPSg/PGIlc13WVjLjHEIRuN3Q/+oxikOlCToV1oBVqaMA==", + "integrity": "sha512-v22XlInN4q5TuYZaDZgcFA3zsKmg+t4tutyC5WEFnJNSRyBYqQbpKnWIGG4N8Ed1Ja8UyJyyNV5vDUg17Au0Zg==", "requires": { "@microsoft/dynamicproto-js": "^2.0.3", "@nevware21/grunt-eslint-ts": "^0.2.2", @@ -6918,7 +6918,7 @@ }, "@rush-temp/applicationinsights-clickanalytics-js": { "version": "file:projects\\applicationinsights-clickanalytics-js.tgz", - "integrity": "sha512-lR/VvwCRDp5vOA0Ax3ECp+yuo8c2ztkxV5ArgQmJngPaetX1B/sak7XtuvFsYrskGzeabTNhbmaY9dBSRyxDnA==", + "integrity": "sha512-sdoa89pRGbOrJ9L3ubNw8TQYA3uHlaC9rtYlWJJxJgZDc1XKDnilKQ3cBhe0hoBM4/f+BEgIvQyb6wMhtUValg==", "requires": { "@microsoft/api-extractor": "^7.40.0", "@microsoft/dynamicproto-js": "^2.0.3", @@ -6942,7 +6942,7 @@ }, "@rush-temp/applicationinsights-common": { "version": "file:projects\\applicationinsights-common.tgz", - "integrity": "sha512-RM4yUbUJgbHLVjw8lmfKBDi5uE9iEy5muYjFEitiWigvi2JC6pLn+/zvcLJVCoEv92i5gbt4WEyy2PzqIYEl3A==", + "integrity": "sha512-pqs9n6H210TCX5/ijnZAarN6WOgtanbOwwjJf6VChPG1I6zEzoDTCCGz/DIrrFKoUqFPZRYqW1andK2ozGgZWw==", "requires": { "@microsoft/api-extractor": "^7.40.0", "@microsoft/dynamicproto-js": "^2.0.3", @@ -6967,7 +6967,7 @@ }, "@rush-temp/applicationinsights-core-js": { "version": "file:projects\\applicationinsights-core-js.tgz", - "integrity": "sha512-EkGzXMcSFEaLfKavKQWrGaiUw4s7I0H8b+aC6GBWmg6k3f+WK3Ox7+jbUkbW0zh17yi6yAReHn+s8fBJnKWCTQ==", + "integrity": "sha512-NNbdm2ei94ax50JyeNdvwYBQ0T+LBR4kdU7KdzmtzvNpQTlw3j8YnRppJ/86BYBsnj/boYEzvccI2oaQ4pq0Aw==", "requires": { "@microsoft/api-extractor": "^7.40.0", "@microsoft/dynamicproto-js": "^2.0.3", @@ -6995,7 +6995,7 @@ }, "@rush-temp/applicationinsights-debugplugin-js": { "version": "file:projects\\applicationinsights-debugplugin-js.tgz", - "integrity": "sha512-XBM3ASDIf4rc75eec7NGrY+BA7C08HU/Em6D30wz9gLTrgmaRuiHQ1bjekL4V3+/iDw+XA/Z6I1mUZuiMlMhxg==", + "integrity": "sha512-uBk6rCwwI/BUyVj+gq72eaKZKurcjGndY4T9CRJWNYw7DZ0VJrwY54u3zHiVBh+h31WDL/P3SK9TRTxQb7Cuyg==", "requires": { "@microsoft/api-extractor": "^7.40.0", "@microsoft/dynamicproto-js": "^2.0.3", @@ -7019,7 +7019,7 @@ }, "@rush-temp/applicationinsights-dependencies-js": { "version": "file:projects\\applicationinsights-dependencies-js.tgz", - "integrity": "sha512-pGl/M9G7QBdHA3z5h9/eybqEP79+8NjktL1QrrwhGf+BRZdQmdB49z2Qht3XXvAOkC8UXUkVqnoRGSH7zMVirg==", + "integrity": "sha512-L+Sz5JL9NqbOhiboG/fA9sFNKMpiZd+o/Ohy4jSe34O9A8uuTC/ciIFX5uSVYKzcjhMvdG7FxwfkiaJWSauJCg==", "requires": { "@microsoft/api-extractor": "^7.40.0", "@microsoft/dynamicproto-js": "^2.0.3", @@ -7046,7 +7046,7 @@ }, "@rush-temp/applicationinsights-example-aisku": { "version": "file:projects\\applicationinsights-example-aisku.tgz", - "integrity": "sha512-jsEkbrkq7TW57xh2+8vafCZ1SNlCARXF33NqT4nYBTtzmNJr2wkx43Yfei9exhpAE0gNnjIVMY+cr7sFBM4HUw==", + "integrity": "sha512-ysBQDY5+IG+aAyVMKizF7t8FcytUXs/+3KW1hyO2KyP6cv5dpaiNI/0keUd07X8kyWM0XWEeyrd5f0+T04j5Gw==", "requires": { "@microsoft/dynamicproto-js": "^2.0.3", "@nevware21/ts-utils": ">= 0.11.3 < 2.x", @@ -7063,7 +7063,7 @@ }, "@rush-temp/applicationinsights-example-cfgsync": { "version": "file:projects\\applicationinsights-example-cfgsync.tgz", - "integrity": "sha512-yft9U7CzQDwJ2YntJ8oBrhPJtOLGFAfyx+3Qb8xfhzphhGJ/JYbaivvR5sG/sOQLZ/grDyRfL74d5BxKaVaYKA==", + "integrity": "sha512-1LWyqE9Avq0+CUt2xhzgJzmRCWmp7teuoz36dbmo6KfG0ELNCaYA7QWJhYPVhlxp69MOhyIQqZTkgDTEQ0HidA==", "requires": { "@microsoft/dynamicproto-js": "^2.0.3", "@nevware21/grunt-eslint-ts": "^0.2.2", @@ -7088,7 +7088,7 @@ }, "@rush-temp/applicationinsights-example-dependencies": { "version": "file:projects\\applicationinsights-example-dependencies.tgz", - "integrity": "sha512-hN0GAE8hIcbAl7YmQvhu6cYksToKJsW8Q7UH1DFBF9+0DJipfbT3MeRywYNeILIJeW0wEo3lPcPeXZJa7x5l3g==", + "integrity": "sha512-lv+lH4kd/wj+D+SfAXVQLnlV1oArD5rUOljQ3Dtm6cJRhg8muu6meZkZVTixM8+onJU2txEUoWgVjQe8cZdvog==", "requires": { "@microsoft/dynamicproto-js": "^2.0.3", "@nevware21/ts-utils": ">= 0.11.3 < 2.x", @@ -7105,7 +7105,7 @@ }, "@rush-temp/applicationinsights-example-shared-worker": { "version": "file:projects\\applicationinsights-example-shared-worker.tgz", - "integrity": "sha512-WakEtLNMxKA5izNDLr+kjLQn+F/UDmf5FhDrIx9YKxsL1wGK23X4YbDO41Imbx7+6NvJH+V++Eg+ILIvERy8SQ==", + "integrity": "sha512-exBAD1oUpl7LthmChGS17n+p+qEekDviE8xpsZv+2lZv6Qn9cm5QYbD2ccEhGRtNX8yfxTH/lAHG7uBpEggX1A==", "requires": { "@microsoft/dynamicproto-js": "^2.0.3", "@nevware21/grunt-eslint-ts": "^0.2.2", @@ -7130,7 +7130,7 @@ }, "@rush-temp/applicationinsights-js-release-tools": { "version": "file:projects\\applicationinsights-js-release-tools.tgz", - "integrity": "sha512-e9jw61D/jeRuLlSL+dQ2bFp8iqw6Q9ZMeboqX0CX0iYwjAPRiN/59ZK66D0UOgggNkqYgSEqgDi+ycw9XRtGnA==", + "integrity": "sha512-6sVB5NMzKj/P9v9UvZlA/IjQSkGeupaDliSt2IZqy+SlR59Hv335Ekz/5f54xMHu+QiARXJATbjX7lDfCMG8qw==", "requires": { "globby": "^11.0.0", "grunt": "^1.5.3" @@ -7138,7 +7138,7 @@ }, "@rush-temp/applicationinsights-offlinechannel-js": { "version": "file:projects\\applicationinsights-offlinechannel-js.tgz", - "integrity": "sha512-dRHfYiVZEMl44DnDbMV2jkRw9UVLtpwwQC6vvF7v/NcSgWxZlDIJZywr/liXRBvnbQjhjEN9+ccVC0YI0PxS/g==", + "integrity": "sha512-Y9BkCBiZ+1755sMb/fn8yKJEDwwls2CW6OekSDFa4dnQAdtSYfSIOfICjWErliGtEZDv8Vyos//idHrEwc2FPw==", "requires": { "@microsoft/api-extractor": "^7.40.0", "@microsoft/dynamicproto-js": "^2.0.3", @@ -7164,7 +7164,7 @@ }, "@rush-temp/applicationinsights-osplugin-js": { "version": "file:projects\\applicationinsights-osplugin-js.tgz", - "integrity": "sha512-oTG8nQR003YXJzkKwkkmlLLxIuEaQeH32szjVtqm2sXl2U7wSTSEzM4xSKAScfYi27jg4jXT4EDGumdL711qMw==", + "integrity": "sha512-V37W8x88qXlgVlRQjEvTriDebUTBzvzTcpcVMaKdnNCDwNlwsN+2VzomgMzSYK9+yJPlIei4iffwW+O8iKAD2g==", "requires": { "@microsoft/api-extractor": "^7.40.0", "@microsoft/dynamicproto-js": "^2.0.3", @@ -7184,7 +7184,7 @@ }, "@rush-temp/applicationinsights-perfmarkmeasure-js": { "version": "file:projects\\applicationinsights-perfmarkmeasure-js.tgz", - "integrity": "sha512-Aihbu2yC4NXfdPm/AEMb19TSqs+gH8x25pS36zA5MosMMrD5dBQEXbDEJxs0D6PinnjubjuOgkpfks74jm/UhQ==", + "integrity": "sha512-+8TBdQNSywpKIVMpAHcvF60N6rbPqoAf8JNPJ/myim1gD9m0zpp2OzYOQj3T8DpO2muzoVlKo1nfnfw3uoNXuQ==", "requires": { "@microsoft/api-extractor": "^7.40.0", "@microsoft/dynamicproto-js": "^2.0.3", @@ -7208,7 +7208,7 @@ }, "@rush-temp/applicationinsights-properties-js": { "version": "file:projects\\applicationinsights-properties-js.tgz", - "integrity": "sha512-tVH4ZoBcXIpuzgjoKck+1QY4vDul1wzGqkhsuWm2AryrVwRaXZsH5nzYTXO/8YJtdXitye9zw3u3RLYo+gUWrg==", + "integrity": "sha512-Zo7y1gq0EC7DyHtQ8FuWjAkUAI3I4KnrClkP4lRyEIxZdIAjoeYGBmalyFiV35oDjHQ2cFRljOs8NR5K+1VLvQ==", "requires": { "@microsoft/api-extractor": "^7.40.0", "@microsoft/dynamicproto-js": "^2.0.3", @@ -7235,7 +7235,7 @@ }, "@rush-temp/applicationinsights-rollup-es5": { "version": "file:projects\\applicationinsights-rollup-es5.tgz", - "integrity": "sha512-1Yw2QKlul+WlTRAHhchUxteaSDaeZjskW1H4R3BT7xv7yGZPi0dp4KtKdKAJZQ+/Z+Zxg4XXOWpuDmv/FYmFtQ==", + "integrity": "sha512-pZV3ytRYW9T6XrXLTRqAt5c23vrywlwfWQ1rrGVh78hlig+Ns/ZJw+jM4JwgSyvce8hcZiR+z1rm0xpKju+oJA==", "requires": { "@microsoft/dynamicproto-js": "^2.0.3", "@nevware21/grunt-eslint-ts": "^0.2.2", @@ -7258,7 +7258,7 @@ }, "@rush-temp/applicationinsights-rollup-plugin-uglify3-js": { "version": "file:projects\\applicationinsights-rollup-plugin-uglify3-js.tgz", - "integrity": "sha512-gp8gJ52kIbJpkT406+PBS7rtyCSUnc72otGxnwywqWCuBJvO1O+qaOCIJBYL/wYk1lDpMKejDqG94vPSSQtnFg==", + "integrity": "sha512-WtYrHtc+6IgVGmHIahhl2aYUGuloDq9xCX6VuwObLmccrAqmYq0LYbCanjHi8ugorx/zwwQB37yY3y2WfaDGmw==", "requires": { "@nevware21/grunt-eslint-ts": "^0.2.2", "@nevware21/grunt-ts-plugin": "^0.4.3", @@ -7278,7 +7278,7 @@ }, "@rush-temp/applicationinsights-shims": { "version": "file:projects\\applicationinsights-shims.tgz", - "integrity": "sha512-nn1Ba7iM4optvMfCTznHuBTyCG9O5SOucyrAL0+4pxgIW3VKNx+OqBGqhBIUT/D4csiMSK89wImGXayymhTDfQ==", + "integrity": "sha512-EA90BSGIX2gImZZy0eRTYK//78OuAhZsSpjyUqUVwIyVIdgaS3Y1YCMpWPLK3NquzjAP6bfOcY/EoOn+IrZqxQ==", "requires": { "@microsoft/dynamicproto-js": "^2.0.3", "@nevware21/grunt-eslint-ts": "^0.2.2", @@ -7299,7 +7299,7 @@ }, "@rush-temp/applicationinsights-teechannel-js": { "version": "file:projects\\applicationinsights-teechannel-js.tgz", - "integrity": "sha512-2v3FiUEwPz3XUc4vsZX7oMadcIn7m3Jy/bv6oCw9IJDYJErErawKDqG6sORGbVNuBHPc+vzTHnprAlNR9TI67w==", + "integrity": "sha512-zQY7EGbwrKQ+7ONyOSa4eB7gwptKRQEOc2C6ld9W2JPyk8vsAsKEYkEyYSiFrWDBWC8SZT0/oX/In3KLqsPWfw==", "requires": { "@microsoft/api-extractor": "^7.40.0", "@microsoft/dynamicproto-js": "^2.0.3", @@ -7325,7 +7325,7 @@ }, "@rush-temp/applicationinsights-test-module-type-check": { "version": "file:projects\\applicationinsights-test-module-type-check.tgz", - "integrity": "sha512-gVuNKPt8RumqjeY2KWZ0Hi70MHwAlWweP3Ur6w0V+MZznlssUDSTdZS2NEBn4V8yOdFf8QdyBad1z3oVR1ITrA==", + "integrity": "sha512-v8gcwVgd6wUz/+G2b5fJYIWVvSFswRjAo87dDm9QGFuawXFlEZkAWbkiFWdxJ86iVcEX9XWrrHtkUxbv0YdZsQ==", "requires": { "tslib": "*", "typescript": "^4.9.3" @@ -7333,7 +7333,7 @@ }, "@rush-temp/applicationinsights-web": { "version": "file:projects\\applicationinsights-web.tgz", - "integrity": "sha512-JmcGFtN+exXLzKgMf4UddIJDIb4DhUW2qWB1JAEqsoplC7Aua9UKznDb9Fu6crjBJ2YEYYEEAPqAX3752+SxqA==", + "integrity": "sha512-Cts56ofZ5HAGpI4PxEHvAHd5oscYdjjq6KYmXrAhDe4Q4RLqYIVHRY6T52//ONl1traW28e2PUF5JX3lWHKqJQ==", "requires": { "@microsoft/api-extractor": "^7.40.0", "@microsoft/dynamicproto-js": "^2.0.3", @@ -7364,7 +7364,7 @@ }, "@rush-temp/applicationinsights-web-basic": { "version": "file:projects\\applicationinsights-web-basic.tgz", - "integrity": "sha512-cuIh6jzMlZLpifnE6DDsj5xu8T0VSK0uiYGVndNR3Nh9+eNR20kTqixdyUVL/qaeL85Aq0K/w1wF+eYRWG6imQ==", + "integrity": "sha512-a2VLNtLF5bMHsq1AD3U9U4pS3FN+zIoyQS+rLHjjGE92QMHNH0wuNaYgpTpJp9fLCEaRFZ8f72TDVmbACHmTFw==", "requires": { "@microsoft/api-extractor": "^7.40.0", "@microsoft/dynamicproto-js": "^2.0.3", @@ -7390,11 +7390,11 @@ }, "@rush-temp/applicationinsights-web-config": { "version": "file:projects\\applicationinsights-web-config.tgz", - "integrity": "sha512-FwPOZ+esirRqdKg9s7VTxtWqGJ9CQ/gIJ0PfUvTolAF9JZCVw5wQeHD4Tv/KiziZhB50CNaGshnPmLpWGVzo9g==" + "integrity": "sha512-WwlTM/noixyLMqKFBLKa9o88N/2Z3dA9m0R6Qc9UvBNseZqPIpvl1vRMDnmwjMMV6lV3FsmeSmjD7LCJphXF2Q==" }, "@rush-temp/applicationinsights-web-snippet": { "version": "file:projects\\applicationinsights-web-snippet.tgz", - "integrity": "sha512-Do0iLiOVQ7a6JW/d/cm85lH1FoYVnzbPWFljiK8+eiDi+rfHMkTfW1pAkHqGNnoOpeES3PA6rkKKjNk4w3ZlCw==", + "integrity": "sha512-ywcGiOSu6W/XIlJ7HOaoJv+3FuhUITA2mkfv0pXW1sB0nXw4ZMXeL21LgTwMYYoMikBI8tY7qGKgQAODbhIuZw==", "requires": { "@microsoft/api-extractor": "^7.40.0", "@microsoft/dynamicproto-js": "^2.0.3", @@ -7681,16 +7681,16 @@ } }, "@typescript-eslint/eslint-plugin": { - "version": "7.14.1", - "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-7.14.1.tgz", - "integrity": "sha512-aAJd6bIf2vvQRjUG3ZkNXkmBpN+J7Wd0mfQiiVCJMu9Z5GcZZdcc0j8XwN/BM97Fl7e3SkTXODSk4VehUv7CGw==", + "version": "7.15.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-7.15.0.tgz", + "integrity": "sha512-uiNHpyjZtFrLwLDpHnzaDlP3Tt6sGMqTCiqmxaN4n4RP0EfYZDODJyddiFDF44Hjwxr5xAcaYxVKm9QKQFJFLA==", "peer": true, "requires": { "@eslint-community/regexpp": "^4.10.0", - "@typescript-eslint/scope-manager": "7.14.1", - "@typescript-eslint/type-utils": "7.14.1", - "@typescript-eslint/utils": "7.14.1", - "@typescript-eslint/visitor-keys": "7.14.1", + "@typescript-eslint/scope-manager": "7.15.0", + "@typescript-eslint/type-utils": "7.15.0", + "@typescript-eslint/utils": "7.15.0", + "@typescript-eslint/visitor-keys": "7.15.0", "graphemer": "^1.4.0", "ignore": "^5.3.1", "natural-compare": "^1.4.0", @@ -7698,54 +7698,54 @@ } }, "@typescript-eslint/parser": { - "version": "7.14.1", - "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-7.14.1.tgz", - "integrity": "sha512-8lKUOebNLcR0D7RvlcloOacTOWzOqemWEWkKSVpMZVF/XVcwjPR+3MD08QzbW9TCGJ+DwIc6zUSGZ9vd8cO1IA==", + "version": "7.15.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-7.15.0.tgz", + "integrity": "sha512-k9fYuQNnypLFcqORNClRykkGOMOj+pV6V91R4GO/l1FDGwpqmSwoOQrOHo3cGaH63e+D3ZiCAOsuS/D2c99j/A==", "peer": true, "requires": { - "@typescript-eslint/scope-manager": "7.14.1", - "@typescript-eslint/types": "7.14.1", - "@typescript-eslint/typescript-estree": "7.14.1", - "@typescript-eslint/visitor-keys": "7.14.1", + "@typescript-eslint/scope-manager": "7.15.0", + "@typescript-eslint/types": "7.15.0", + "@typescript-eslint/typescript-estree": "7.15.0", + "@typescript-eslint/visitor-keys": "7.15.0", "debug": "^4.3.4" } }, "@typescript-eslint/scope-manager": { - "version": "7.14.1", - "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-7.14.1.tgz", - "integrity": "sha512-gPrFSsoYcsffYXTOZ+hT7fyJr95rdVe4kGVX1ps/dJ+DfmlnjFN/GcMxXcVkeHDKqsq6uAcVaQaIi3cFffmAbA==", + "version": "7.15.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-7.15.0.tgz", + "integrity": "sha512-Q/1yrF/XbxOTvttNVPihxh1b9fxamjEoz2Os/Pe38OHwxC24CyCqXxGTOdpb4lt6HYtqw9HetA/Rf6gDGaMPlw==", "peer": true, "requires": { - "@typescript-eslint/types": "7.14.1", - "@typescript-eslint/visitor-keys": "7.14.1" + "@typescript-eslint/types": "7.15.0", + "@typescript-eslint/visitor-keys": "7.15.0" } }, "@typescript-eslint/type-utils": { - "version": "7.14.1", - "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-7.14.1.tgz", - "integrity": "sha512-/MzmgNd3nnbDbOi3LfasXWWe292+iuo+umJ0bCCMCPc1jLO/z2BQmWUUUXvXLbrQey/JgzdF/OV+I5bzEGwJkQ==", + "version": "7.15.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-7.15.0.tgz", + "integrity": "sha512-SkgriaeV6PDvpA6253PDVep0qCqgbO1IOBiycjnXsszNTVQe5flN5wR5jiczoEoDEnAqYFSFFc9al9BSGVltkg==", "peer": true, "requires": { - "@typescript-eslint/typescript-estree": "7.14.1", - "@typescript-eslint/utils": "7.14.1", + "@typescript-eslint/typescript-estree": "7.15.0", + "@typescript-eslint/utils": "7.15.0", "debug": "^4.3.4", "ts-api-utils": "^1.3.0" } }, "@typescript-eslint/types": { - "version": "7.14.1", - "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-7.14.1.tgz", - "integrity": "sha512-mL7zNEOQybo5R3AavY+Am7KLv8BorIv7HCYS5rKoNZKQD9tsfGUpO4KdAn3sSUvTiS4PQkr2+K0KJbxj8H9NDg==", + "version": "7.15.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-7.15.0.tgz", + "integrity": "sha512-aV1+B1+ySXbQH0pLK0rx66I3IkiZNidYobyfn0WFsdGhSXw+P3YOqeTq5GED458SfB24tg+ux3S+9g118hjlTw==", "peer": true }, "@typescript-eslint/typescript-estree": { - "version": "7.14.1", - "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-7.14.1.tgz", - "integrity": "sha512-k5d0VuxViE2ulIO6FbxxSZaxqDVUyMbXcidC8rHvii0I56XZPv8cq+EhMns+d/EVIL41sMXqRbK3D10Oza1bbA==", + "version": "7.15.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-7.15.0.tgz", + "integrity": "sha512-gjyB/rHAopL/XxfmYThQbXbzRMGhZzGw6KpcMbfe8Q3nNQKStpxnUKeXb0KiN/fFDR42Z43szs6rY7eHk0zdGQ==", "peer": true, "requires": { - "@typescript-eslint/types": "7.14.1", - "@typescript-eslint/visitor-keys": "7.14.1", + "@typescript-eslint/types": "7.15.0", + "@typescript-eslint/visitor-keys": "7.15.0", "debug": "^4.3.4", "globby": "^11.1.0", "is-glob": "^4.0.3", @@ -7781,24 +7781,24 @@ } }, "@typescript-eslint/utils": { - "version": "7.14.1", - "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-7.14.1.tgz", - "integrity": "sha512-CMmVVELns3nak3cpJhZosDkm63n+DwBlDX8g0k4QUa9BMnF+lH2lr3d130M1Zt1xxmB3LLk3NV7KQCq86ZBBhQ==", + "version": "7.15.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-7.15.0.tgz", + "integrity": "sha512-hfDMDqaqOqsUVGiEPSMLR/AjTSCsmJwjpKkYQRo1FNbmW4tBwBspYDwO9eh7sKSTwMQgBw9/T4DHudPaqshRWA==", "peer": true, "requires": { "@eslint-community/eslint-utils": "^4.4.0", - "@typescript-eslint/scope-manager": "7.14.1", - "@typescript-eslint/types": "7.14.1", - "@typescript-eslint/typescript-estree": "7.14.1" + "@typescript-eslint/scope-manager": "7.15.0", + "@typescript-eslint/types": "7.15.0", + "@typescript-eslint/typescript-estree": "7.15.0" } }, "@typescript-eslint/visitor-keys": { - "version": "7.14.1", - "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-7.14.1.tgz", - "integrity": "sha512-Crb+F75U1JAEtBeQGxSKwI60hZmmzaqA3z9sYsVm8X7W5cwLEm5bRe0/uXS6+MR/y8CVpKSR/ontIAIEPFcEkA==", + "version": "7.15.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-7.15.0.tgz", + "integrity": "sha512-Hqgy/ETgpt2L5xueA/zHHIl4fJI2O4XUE9l4+OIfbJIRSnTJb/QscncdqqZzofQegIJugRIF57OJea1khw2SDw==", "peer": true, "requires": { - "@typescript-eslint/types": "7.14.1", + "@typescript-eslint/types": "7.15.0", "eslint-visitor-keys": "^3.4.3" } }, @@ -8111,9 +8111,9 @@ "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==" }, "caniuse-lite": { - "version": "1.0.30001638", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001638.tgz", - "integrity": "sha512-5SuJUJ7cZnhPpeLHaH0c/HPAnAHZvS6ElWyHK9GSIbVOQABLzowiI2pjmpvZ1WEbkyz46iFd4UXlOHR5SqgfMQ==" + "version": "1.0.30001639", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001639.tgz", + "integrity": "sha512-eFHflNTBIlFwP2AIKaYuBQN/apnUoKNhBdza8ZnW/h2di4LCZ4xFqYlxUxo+LQ76KFI1PGcC1QDxMbxTZpSCAg==" }, "chalk": { "version": "4.1.2", @@ -8403,9 +8403,9 @@ "integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==" }, "electron-to-chromium": { - "version": "1.4.814", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.814.tgz", - "integrity": "sha512-GVulpHjFu1Y9ZvikvbArHmAhZXtm3wHlpjTMcXNGKl4IQ4jMQjlnz8yMQYYqdLHKi/jEL2+CBC2akWVCoIGUdw==" + "version": "1.4.816", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.816.tgz", + "integrity": "sha512-EKH5X5oqC6hLmiS7/vYtZHZFTNdhsYG5NVPRN6Yn0kQHNBlT59+xSM8HBy66P5fxWpKgZbPqb+diC64ng295Jw==" }, "encodeurl": { "version": "1.0.2", diff --git a/examples/AISKU/package.json b/examples/AISKU/package.json index 2c384b39a..38f15ecb6 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.2.2", + "version": "3.3.0", "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.3", - "@microsoft/applicationinsights-web": "3.2.2", - "@microsoft/applicationinsights-core-js": "3.2.2", + "@microsoft/applicationinsights-web": "3.3.0", + "@microsoft/applicationinsights-core-js": "3.3.0", "@nevware21/ts-utils": ">= 0.11.3 < 2.x" } } diff --git a/examples/cfgSync/package.json b/examples/cfgSync/package.json index e9451a292..0e4a7c33f 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.2.2", + "version": "3.3.0", "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.2.2", + "@microsoft/applicationinsights-cfgsync-js": "3.3.0", "@microsoft/dynamicproto-js": "^2.0.3", - "@microsoft/applicationinsights-web": "3.2.2", - "@microsoft/applicationinsights-core-js": "3.2.2", + "@microsoft/applicationinsights-web": "3.3.0", + "@microsoft/applicationinsights-core-js": "3.3.0", "@nevware21/ts-utils": ">= 0.11.3 < 2.x" } } diff --git a/examples/dependency/package.json b/examples/dependency/package.json index c21b3d07a..cf7733885 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.2.2", + "version": "3.3.0", "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.3", - "@microsoft/applicationinsights-web": "3.2.2", - "@microsoft/applicationinsights-dependencies-js": "3.2.2", - "@microsoft/applicationinsights-core-js": "3.2.2", + "@microsoft/applicationinsights-web": "3.3.0", + "@microsoft/applicationinsights-dependencies-js": "3.3.0", + "@microsoft/applicationinsights-core-js": "3.3.0", "@nevware21/ts-utils": ">= 0.11.3 < 2.x" } } diff --git a/examples/shared-worker/package.json b/examples/shared-worker/package.json index e3fb9c3d0..18c6911c4 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.2.2", + "version": "3.3.0", "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.3", - "@microsoft/applicationinsights-web": "3.2.2", - "@microsoft/applicationinsights-web-snippet": "1.2.0", - "@microsoft/applicationinsights-core-js": "3.2.2", + "@microsoft/applicationinsights-web": "3.3.0", + "@microsoft/applicationinsights-web-snippet": "1.3.0", + "@microsoft/applicationinsights-core-js": "3.3.0", "@nevware21/ts-utils": ">= 0.11.3 < 2.x" } } diff --git a/extensions/applicationinsights-analytics-js/package.json b/extensions/applicationinsights-analytics-js/package.json index 0afc38a52..9162e335f 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.2.2", + "version": "3.3.0", "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.2.2", - "@microsoft/applicationinsights-channel-js": "3.2.2", + "@microsoft/applicationinsights-properties-js": "3.3.0", + "@microsoft/applicationinsights-channel-js": "3.3.0", "@microsoft/api-extractor": "^7.40.0", "typescript": "^4.9.3", "tslib": "^2.0.0", @@ -60,8 +60,8 @@ "dependencies": { "@microsoft/dynamicproto-js": "^2.0.3", "@microsoft/applicationinsights-shims": "3.0.1", - "@microsoft/applicationinsights-core-js": "3.2.2", - "@microsoft/applicationinsights-common": "3.2.2", + "@microsoft/applicationinsights-core-js": "3.3.0", + "@microsoft/applicationinsights-common": "3.3.0", "@nevware21/ts-utils": ">= 0.11.3 < 2.x" }, "license": "MIT" diff --git a/extensions/applicationinsights-cfgsync-js/package.json b/extensions/applicationinsights-cfgsync-js/package.json index 08d774193..028e1d75c 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.2.2", + "version": "3.3.0", "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.3", "@microsoft/applicationinsights-shims": "3.0.1", - "@microsoft/applicationinsights-core-js": "3.2.2", - "@microsoft/applicationinsights-common": "3.2.2", + "@microsoft/applicationinsights-core-js": "3.3.0", + "@microsoft/applicationinsights-common": "3.3.0", "@nevware21/ts-utils": ">= 0.11.3 < 2.x", "@nevware21/ts-async": ">= 0.5.2 < 2.x" }, diff --git a/extensions/applicationinsights-clickanalytics-js/package.json b/extensions/applicationinsights-clickanalytics-js/package.json index 98ea72ffe..b14474e8d 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.2.2", + "version": "3.3.0", "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.3", "@microsoft/applicationinsights-shims": "3.0.1", - "@microsoft/applicationinsights-core-js": "3.2.2", - "@microsoft/applicationinsights-common": "3.2.2", - "@microsoft/applicationinsights-properties-js": "3.2.2", + "@microsoft/applicationinsights-core-js": "3.3.0", + "@microsoft/applicationinsights-common": "3.3.0", + "@microsoft/applicationinsights-properties-js": "3.3.0", "@nevware21/ts-utils": ">= 0.11.3 < 2.x" }, "repository": { diff --git a/extensions/applicationinsights-debugplugin-js/package.json b/extensions/applicationinsights-debugplugin-js/package.json index 71e3565c1..0e9d1fe94 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.2.2", + "version": "3.3.0", "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.3", - "@microsoft/applicationinsights-common": "3.2.2", - "@microsoft/applicationinsights-core-js": "3.2.2", + "@microsoft/applicationinsights-common": "3.3.0", + "@microsoft/applicationinsights-core-js": "3.3.0", "@microsoft/applicationinsights-shims": "3.0.1", "@nevware21/ts-utils": ">= 0.11.3 < 2.x" }, diff --git a/extensions/applicationinsights-dependencies-js/package.json b/extensions/applicationinsights-dependencies-js/package.json index 2d63599ad..414c300ad 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.2.2", + "version": "3.3.0", "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.3", "@microsoft/applicationinsights-shims": "3.0.1", - "@microsoft/applicationinsights-core-js": "3.2.2", - "@microsoft/applicationinsights-common": "3.2.2", + "@microsoft/applicationinsights-core-js": "3.3.0", + "@microsoft/applicationinsights-common": "3.3.0", "@nevware21/ts-utils": ">= 0.11.3 < 2.x", "@nevware21/ts-async": ">= 0.5.2 < 2.x" }, diff --git a/extensions/applicationinsights-osplugin-js/package.json b/extensions/applicationinsights-osplugin-js/package.json index c7d9b35cb..cabc03e39 100644 --- a/extensions/applicationinsights-osplugin-js/package.json +++ b/extensions/applicationinsights-osplugin-js/package.json @@ -1,6 +1,6 @@ { "name": "@microsoft/applicationinsights-osplugin-js", - "version": "3.2.2", + "version": "3.3.0", "description": "Microsoft Application Insights OS Plugin", "homepage": "https://github.com/microsoft/ApplicationInsights-JS#readme", "author": "Microsoft Application Insights Team", @@ -30,9 +30,9 @@ }, "dependencies": { "@microsoft/applicationinsights-shims": "3.0.1", - "@microsoft/applicationinsights-common": "3.2.2", + "@microsoft/applicationinsights-common": "3.3.0", "@microsoft/dynamicproto-js": "^2.0.3", - "@microsoft/applicationinsights-core-js": "3.2.2", + "@microsoft/applicationinsights-core-js": "3.3.0", "@nevware21/ts-utils": ">= 0.11.3 < 2.x", "@nevware21/ts-async": ">= 0.5.2 < 2.x" }, diff --git a/extensions/applicationinsights-perfmarkmeasure-js/package.json b/extensions/applicationinsights-perfmarkmeasure-js/package.json index 59f9bbb43..67feeb4c1 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.2.2", + "version": "3.3.0", "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.3", "@microsoft/applicationinsights-shims": "3.0.1", - "@microsoft/applicationinsights-core-js": "3.2.2", + "@microsoft/applicationinsights-core-js": "3.3.0", "@nevware21/ts-utils": ">= 0.11.3 < 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 3f0379ad5..8634b9068 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.2.2"; + private readonly currentVer = "3.3.0"; 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 ec583c8fe..da1e84032 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.2.2", + "version": "3.3.0", "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.3", "@microsoft/applicationinsights-shims": "3.0.1", - "@microsoft/applicationinsights-core-js": "3.2.2", - "@microsoft/applicationinsights-common": "3.2.2", + "@microsoft/applicationinsights-core-js": "3.3.0", + "@microsoft/applicationinsights-common": "3.3.0", "@nevware21/ts-utils": ">= 0.11.3 < 2.x" }, "license": "MIT" diff --git a/gruntfile.js b/gruntfile.js index 4a2a171ad..f915266e6 100644 --- a/gruntfile.js +++ b/gruntfile.js @@ -234,7 +234,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.2.2"]; + const perfTestVersions=["3.3.0"]; function buildConfig(modules) { var buildCmds = { diff --git a/package.json b/package.json index 6a978df84..1d498251d 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "@microsoft/applicationinsights-web", "description": "Microsoft Application Insights JavaScript SDK", - "version": "3.2.2", + "version": "3.3.0", "keywords": [ "browser performance monitoring", "script errors", diff --git a/shared/1ds-core-js/package.json b/shared/1ds-core-js/package.json index 314138d7b..b68019365 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.2.2", + "version": "4.3.0", "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.2.2", + "@microsoft/applicationinsights-core-js": "3.3.0", "@microsoft/dynamicproto-js": "^2.0.3", "@nevware21/ts-utils": ">= 0.11.3 < 2.x", "@nevware21/ts-async": ">= 0.5.2 < 2.x" diff --git a/shared/AppInsightsCommon/package.json b/shared/AppInsightsCommon/package.json index 9d075147b..d0dfe3736 100644 --- a/shared/AppInsightsCommon/package.json +++ b/shared/AppInsightsCommon/package.json @@ -1,6 +1,6 @@ { "name": "@microsoft/applicationinsights-common", - "version": "3.2.2", + "version": "3.3.0", "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.2.2", + "@microsoft/applicationinsights-core-js": "3.3.0", "@microsoft/dynamicproto-js": "^2.0.3", "@nevware21/ts-utils": ">= 0.11.3 < 2.x" }, diff --git a/shared/AppInsightsCore/package.json b/shared/AppInsightsCore/package.json index 0f2900fe8..802b43fa1 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.2.2", + "version": "3.3.0", "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 f674ce5af..676b6690c 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.2.0", + "version": "1.3.0", "description": "Microsoft Application Insights Web Snippet", "main": "dist/es5/node/applicationinsights-web-snippet.js", "module": "dist-es5/applicationinsights-web-snippet.js", @@ -32,8 +32,8 @@ "devDependencies": { "@types/qunit": "^2.19.3", "@microsoft/ai-test-framework": "0.0.1", - "@microsoft/applicationinsights-web": "3.2.2", - "@microsoft/applicationinsights-common": "3.2.2", + "@microsoft/applicationinsights-web": "3.3.0", + "@microsoft/applicationinsights-common": "3.3.0", "@microsoft/applicationinsights-rollup-plugin-uglify3-js": "1.0.0", "@microsoft/applicationinsights-rollup-es5": "1.0.2", "@microsoft/dynamicproto-js": "^2.0.3", diff --git a/tools/chrome-debug-extension/manifest.json b/tools/chrome-debug-extension/manifest.json index 048189555..4749ae19f 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.6.2", - "version_name": "0.6.2", + "version": "0.7.0", + "version_name": "0.7.0", "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 51a569e1b..17173ee5d 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.6.2", + "version": "0.7.0", "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.2.2", - "@microsoft/applicationinsights-common": "3.2.2", + "@microsoft/applicationinsights-core-js": "3.3.0", + "@microsoft/applicationinsights-common": "3.3.0", "@microsoft/applicationinsights-shims": "3.0.1", "@microsoft/dynamicproto-js": "^2.0.3", "@nevware21/ts-utils": ">= 0.11.3 < 2.x", diff --git a/version.json b/version.json index f5d4bcc90..6d1a82d55 100644 --- a/version.json +++ b/version.json @@ -1,64 +1,64 @@ { "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.2.2", - "next": "minor", + "release": "3.3.0", + "next": "patch", "pkgs": { "@microsoft/applicationinsights-web": { "package": "package.json", - "release": "3.2.2" + "release": "3.3.0" }, "@microsoft/applicationinsights-web-basic": { "package": "AISKULight/package.json", - "release": "3.2.2" + "release": "3.3.0" }, "@microsoft/applicationinsights-channel-js": { "package": "channels/applicationinsights-channel-js/package.json", - "release": "3.2.2" + "release": "3.3.0" }, "@microsoft/applicationinsights-analytics-js": { "package": "extensions/applicationinsights-analytics-js/package.json", - "release": "3.2.2" + "release": "3.3.0" }, "@microsoft/applicationinsights-clickanalytics-js": { "package": "extensions/applicationinsights-clickanalytics-js/package.json", - "release": "3.2.2" + "release": "3.3.0" }, "@microsoft/applicationinsights-osplugin-js": { "package": "extensions/applicationinsights-osplugin-js/package.json", - "release": "3.2.2" + "release": "3.3.0" }, "@microsoft/applicationinsights-debugplugin-js": { "package": "extensions/applicationinsights-debugplugin-js/package.json", - "release": "3.2.2" + "release": "3.3.0" }, "@microsoft/applicationinsights-dependencies-js": { "package": "extensions/applicationinsights-dependencies-js/package.json", - "release": "3.2.2" + "release": "3.3.0" }, "@microsoft/applicationinsights-perfmarkmeasure-js": { "package": "extensions/applicationinsights-perfmarkmeasure-js/package.json", - "release": "3.2.2" + "release": "3.3.0" }, "@microsoft/applicationinsights-properties-js": { "package": "extensions/applicationinsights-properties-js/package.json", - "release": "3.2.2" + "release": "3.3.0" }, "@microsoft/applicationinsights-common": { "package": "shared/AppInsightsCommon/package.json", - "release": "3.2.2" + "release": "3.3.0" }, "@microsoft/applicationinsights-core-js": { "package": "shared/AppInsightsCore/package.json", - "release": "3.2.2" + "release": "3.3.0" }, "@microsoft/applicationinsights-offlinechannel-js": { "package": "channels/offline-channel-js/package.json", - "release": "0.2.2" + "release": "0.3.0" }, "@microsoft/applicationinsights-chrome-debug-extension": { "package": "tools/chrome-debug-extension/package.json", - "release": "0.6.2" + "release": "0.7.0" }, "applicationinsights-web-config": { "package": "tools/config/package.json", @@ -66,43 +66,43 @@ }, "@microsoft/applicationinsights-example-aisku": { "package": "examples/AISKU/package.json", - "release": "3.2.2" + "release": "3.3.0" }, "@microsoft/applicationinsights-example-dependencies": { "package": "examples/dependency/package.json", - "release": "3.2.2" + "release": "3.3.0" }, "@microsoft/applicationinsights-example-shared-worker": { "package": "examples/shared-worker/package.json", - "release": "3.2.2" + "release": "3.3.0" }, "@microsoft/applicationinsights-teechannel-js": { "package": "channels/tee-channel-js/package.json", - "release": "3.2.2" + "release": "3.3.0" }, "@microsoft/applicationinsights-test-module-type-check": { "package": "AISKU/Tests/es6-module-type-check/package.json", - "release": "3.2.2" + "release": "3.3.0" }, "@microsoft/applicationinsights-cfgsync-js": { "package": "extensions/applicationinsights-cfgsync-js/package.json", - "release": "3.2.2" + "release": "3.3.0" }, "@microsoft/applicationinsights-example-cfgsync": { "package": "examples/cfgSync/package.json", - "release": "3.2.2" + "release": "3.3.0" }, "@microsoft/1ds-post-js": { "package": "channels/1ds-post-js/package.json", - "release": "4.2.2" + "release": "4.3.0" }, "@microsoft/1ds-core-js": { "package": "shared/1ds-core-js/package.json", - "release": "4.2.2" + "release": "4.3.0" }, "@microsoft/applicationinsights-web-snippet": { "package": "tools/applicationinsights-web-snippet/package.json", - "release": "1.2.0" + "release": "1.3.0" } } }