From 71b9eca5f646cd026075ab03c941cf76822b4fdb Mon Sep 17 00:00:00 2001 From: Hector Hernandez <39923391+hectorhdzg@users.noreply.github.com> Date: Thu, 13 Aug 2026 14:35:30 -0700 Subject: [PATCH] [Release] Increase version to 3.4.4 --- 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 | 16 +++--- .../Tests/Unit/src/AISKULightSize.Tests.ts | 2 +- AISKULight/package.json | 6 +-- RELEASES.md | 16 ++++++ channels/1ds-post-js/package.json | 4 +- .../package.json | 4 +- channels/offline-channel-js/package.json | 4 +- channels/tee-channel-js/package.json | 4 +- examples/AISKU/package.json | 6 +-- examples/cfgSync/package.json | 8 +-- examples/dependency/package.json | 8 +-- examples/shared-worker/package.json | 6 +-- examples/startSpan/package.json | 6 +-- .../package.json | 10 ++-- .../package.json | 4 +- .../package.json | 6 +-- .../package.json | 4 +- .../package.json | 4 +- .../package.json | 4 +- .../package.json | 4 +- .../Tests/Unit/src/propertiesSize.tests.ts | 2 +- .../package.json | 4 +- gruntfile.js | 2 +- package.json | 2 +- shared/1ds-core-js/package.json | 4 +- shared/AppInsightsCommon/package.json | 4 +- shared/AppInsightsCore/package.json | 2 +- .../src/utils/DataCacheHelper.ts | 2 +- .../package.json | 6 +-- tools/chrome-debug-extension/package.json | 4 +- tools/config/package.json | 2 +- version.json | 54 +++++++++---------- 37 files changed, 122 insertions(+), 105 deletions(-) diff --git a/AISKU/README.md b/AISKU/README.md index 322a57028..27a431357 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.4.4: | [![full size size](https://js.monitor.azure.com/scripts/b/ai.3.4.4.js.svg)](https://js.monitor.azure.com/scripts/b/ai.3.4.4.js.svg)| ![minified size size](https://js.monitor.azure.com/scripts/b/ai.3.4.4.min.js.svg) | ![gzip size](https://js.monitor.azure.com/scripts/b/ai.3.4.4.min.js.gzip.svg) | 3.4.3: | [![full size size](https://js.monitor.azure.com/scripts/b/ai.3.4.3.js.svg)](https://js.monitor.azure.com/scripts/b/ai.3.4.3.js.svg)| ![minified size size](https://js.monitor.azure.com/scripts/b/ai.3.4.3.min.js.svg) | ![gzip size](https://js.monitor.azure.com/scripts/b/ai.3.4.3.min.js.gzip.svg) | 3.4.2: | [![full size size](https://js.monitor.azure.com/scripts/b/ai.3.4.2.js.svg)](https://js.monitor.azure.com/scripts/b/ai.3.4.2.js.svg)| ![minified size size](https://js.monitor.azure.com/scripts/b/ai.3.4.2.min.js.svg) | ![gzip size](https://js.monitor.azure.com/scripts/b/ai.3.4.2.min.js.gzip.svg) | 3.4.1: | [![full size size](https://js.monitor.azure.com/scripts/b/ai.3.4.1.js.svg)](https://js.monitor.azure.com/scripts/b/ai.3.4.1.js.svg)| ![minified size size](https://js.monitor.azure.com/scripts/b/ai.3.4.1.min.js.svg) | ![gzip size](https://js.monitor.azure.com/scripts/b/ai.3.4.1.min.js.gzip.svg) diff --git a/AISKU/Tests/Perf/src/AISKUPerf.ts b/AISKU/Tests/Perf/src/AISKUPerf.ts index 6a12a8603..7e5a88b41 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.4.3"; + var defaultVer = "3.4.4"; 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 88a79eca8..0a94616e3 100644 --- a/AISKU/Tests/Unit/src/AISKUSize.Tests.ts +++ b/AISKU/Tests/Unit/src/AISKUSize.Tests.ts @@ -60,7 +60,7 @@ export class AISKUSizeCheck extends AITestClass { private readonly MAX_BUNDLE_DEFLATE_SIZE = 71; private readonly rawFilePath = "../dist/es5/applicationinsights-web.min.js"; // Automatically updated by version scripts - private readonly currentVer = "3.4.3"; + private readonly currentVer = "3.4.4"; 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 7573d3ede..7c9b47c4f 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.4.3"; + private readonly currentVer = "3.4.4"; public testInitialize() { } diff --git a/AISKU/Tests/es6-module-type-check/package.json b/AISKU/Tests/es6-module-type-check/package.json index e79c5dab3..3cb4cec45 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.4.3", + "version": "3.4.4", "description": "Microsoft Application Insights ES6 Module and Type check Example", "homepage": "https://github.com/microsoft/ApplicationInsights-JS#readme", "keywords": [ @@ -32,7 +32,7 @@ "tslib": ">= 1.0.0" }, "dependencies": { - "@microsoft/applicationinsights-core-js": "3.4.3", - "@microsoft/applicationinsights-web": "3.4.3" + "@microsoft/applicationinsights-core-js": "3.4.4", + "@microsoft/applicationinsights-web": "3.4.4" } } diff --git a/AISKU/package.json b/AISKU/package.json index b2c21271c..c5fa7f213 100644 --- a/AISKU/package.json +++ b/AISKU/package.json @@ -1,6 +1,6 @@ { "name": "@microsoft/applicationinsights-web", - "version": "3.4.3", + "version": "3.4.4", "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.4.3", + "@microsoft/applicationinsights-offlinechannel-js": "0.4.4", "@microsoft/applicationinsights-rollup-plugin-uglify3-js": "1.0.0", "@microsoft/applicationinsights-rollup-es5": "1.0.2", "sinon": "^7.3.1", @@ -71,12 +71,12 @@ "dependencies": { "@microsoft/dynamicproto-js": "^2.0.3", "@microsoft/applicationinsights-shims": "3.0.1", - "@microsoft/applicationinsights-analytics-js": "3.4.3", - "@microsoft/applicationinsights-channel-js": "3.4.3", - "@microsoft/applicationinsights-cfgsync-js": "3.4.3", - "@microsoft/applicationinsights-core-js": "3.4.3", - "@microsoft/applicationinsights-dependencies-js": "3.4.3", - "@microsoft/applicationinsights-properties-js": "3.4.3", + "@microsoft/applicationinsights-analytics-js": "3.4.4", + "@microsoft/applicationinsights-channel-js": "3.4.4", + "@microsoft/applicationinsights-cfgsync-js": "3.4.4", + "@microsoft/applicationinsights-core-js": "3.4.4", + "@microsoft/applicationinsights-dependencies-js": "3.4.4", + "@microsoft/applicationinsights-properties-js": "3.4.4", "@nevware21/ts-utils": ">= 0.14.0 < 2.x", "@nevware21/ts-async": ">= 0.5.5 < 0.6.0" }, diff --git a/AISKULight/Tests/Unit/src/AISKULightSize.Tests.ts b/AISKULight/Tests/Unit/src/AISKULightSize.Tests.ts index 27d2fe112..cada0dc47 100644 --- a/AISKULight/Tests/Unit/src/AISKULightSize.Tests.ts +++ b/AISKULight/Tests/Unit/src/AISKULightSize.Tests.ts @@ -56,7 +56,7 @@ export class AISKULightSizeCheck extends AITestClass { private readonly MAX_RAW_DEFLATE_SIZE = 44; private readonly MAX_BUNDLE_DEFLATE_SIZE = 44; private readonly rawFilePath = "../dist/es5/applicationinsights-web-basic.min.js"; - private readonly currentVer = "3.4.3"; + private readonly currentVer = "3.4.4"; private readonly prodFilePath = `../browser/es5/aib.${this.currentVer[0]}.min.js`; public testInitialize() { diff --git a/AISKULight/package.json b/AISKULight/package.json index d889c6d17..e8dd82c9c 100644 --- a/AISKULight/package.json +++ b/AISKULight/package.json @@ -1,6 +1,6 @@ { "name": "@microsoft/applicationinsights-web-basic", - "version": "3.4.3", + "version": "3.4.4", "description": "Microsoft Application Insights JavaScript SDK - Web Basic", "homepage": "https://github.com/microsoft/ApplicationInsights-JS#readme", "author": "Microsoft Application Insights Team", @@ -65,8 +65,8 @@ "dependencies": { "@microsoft/dynamicproto-js": "^2.0.3", "@microsoft/applicationinsights-shims": "3.0.1", - "@microsoft/applicationinsights-channel-js": "3.4.3", - "@microsoft/applicationinsights-core-js": "3.4.3", + "@microsoft/applicationinsights-channel-js": "3.4.4", + "@microsoft/applicationinsights-core-js": "3.4.4", "@nevware21/ts-utils": ">= 0.14.0 < 2.x", "@nevware21/ts-async": ">= 0.5.5 < 0.6.0" }, diff --git a/RELEASES.md b/RELEASES.md index 69e2ed372..792211067 100644 --- a/RELEASES.md +++ b/RELEASES.md @@ -4,6 +4,22 @@ +## 3.4.4 (August 13th, 2026) + +This is a maintenance release for the 3.4.x version line containing build tooling and dependency security hardening plus a test reliability fix. There are no runtime changes to the published packages. The `@microsoft/1ds-post-js` channel is numbered 4.4.4 and requires v3.4.4. + +### Significant Changes (since 3.4.3) + +- **Dependency Security Hardening**: Upgraded the Rush engine to 5.178.1 and pnpm to 10.34.5 to pull in patched transitive build dependencies (`tar`, `brace-expansion`, `ip-address`), and resolved the remaining `npm audit` findings. These are build/tooling changes and do not affect the published runtime packages. + +### Changelog + +- #2755 Bump Rush 5.178.1 and pnpm 10.34.5 +- #2754 fix(test): stabilize flaky SpanLifeCycle custom endTime test +- #2753 fix(deps): remediate npm audit vulnerabilities and add local Puppeteer Edge fallback + +**Full Changelog**: https://github.com/microsoft/ApplicationInsights-JS/compare/3.4.3...3.4.4 + ## 3.4.3 (July 2nd, 2026) This is a maintenance release for the 3.4.x version line adding a new SDK statistics feature, a PostChannel reliability fix, and dependency security hardening. The `@microsoft/1ds-post-js` channel is numbered 4.4.3 and requires v3.4.3. diff --git a/channels/1ds-post-js/package.json b/channels/1ds-post-js/package.json index 5bf927690..67b90ddd1 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.4.3", + "version": "4.4.4", "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/applicationinsights-core-js": "3.4.3", + "@microsoft/applicationinsights-core-js": "3.4.4", "@nevware21/ts-utils": ">= 0.14.0 < 2.x", "@nevware21/ts-async": ">= 0.5.5 < 0.6.0" }, diff --git a/channels/applicationinsights-channel-js/package.json b/channels/applicationinsights-channel-js/package.json index fed34606a..5c0536d27 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.4.3", + "version": "3.4.4", "description": "Microsoft Application Insights JavaScript SDK Channel", "homepage": "https://github.com/microsoft/ApplicationInsights-JS#readme", "author": "Microsoft Application Insights Team", @@ -64,7 +64,7 @@ "dependencies": { "@microsoft/dynamicproto-js": "^2.0.3", "@microsoft/applicationinsights-shims": "3.0.1", - "@microsoft/applicationinsights-core-js": "3.4.3", + "@microsoft/applicationinsights-core-js": "3.4.4", "@nevware21/ts-utils": ">= 0.14.0 < 2.x", "@nevware21/ts-async": ">= 0.5.5 < 0.6.0" }, diff --git a/channels/offline-channel-js/package.json b/channels/offline-channel-js/package.json index 51139d67e..e5b16f0c1 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.4.3", + "version": "0.4.4", "description": "Microsoft Application Insights JavaScript SDK Offline Channel", "homepage": "https://github.com/microsoft/ApplicationInsights-JS#readme", "author": "Microsoft Application Insights Team", @@ -31,7 +31,7 @@ "dependencies": { "@microsoft/dynamicproto-js": "^2.0.3", "@microsoft/applicationinsights-shims": "3.0.1", - "@microsoft/applicationinsights-core-js": "3.4.3", + "@microsoft/applicationinsights-core-js": "3.4.4", "@nevware21/ts-utils": ">= 0.14.0 < 2.x", "@nevware21/ts-async": ">= 0.5.5 < 0.6.0" }, diff --git a/channels/tee-channel-js/package.json b/channels/tee-channel-js/package.json index def7e434b..5b2c0e3b6 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.4.3", + "version": "3.4.4", "description": "Microsoft Application Insights JavaScript SDK Tee Channel", "homepage": "https://github.com/microsoft/ApplicationInsights-JS#readme", "author": "Microsoft Application Insights Team", @@ -65,7 +65,7 @@ "dependencies": { "@microsoft/dynamicproto-js": "^2.0.3", "@microsoft/applicationinsights-shims": "3.0.1", - "@microsoft/applicationinsights-core-js": "3.4.3", + "@microsoft/applicationinsights-core-js": "3.4.4", "@nevware21/ts-utils": ">= 0.14.0 < 2.x", "@nevware21/ts-async": ">= 0.5.5 < 0.6.0" }, diff --git a/examples/AISKU/package.json b/examples/AISKU/package.json index d74eea47f..c4fe9c4b1 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.4.3", + "version": "3.4.4", "description": "Microsoft Application Insights AISKU Example", "homepage": "https://github.com/microsoft/ApplicationInsights-JS#readme", "keywords": [ @@ -59,8 +59,8 @@ "dependencies": { "@microsoft/applicationinsights-shims": "3.0.1", "@microsoft/dynamicproto-js": "^2.0.3", - "@microsoft/applicationinsights-web": "3.4.3", - "@microsoft/applicationinsights-core-js": "3.4.3", + "@microsoft/applicationinsights-web": "3.4.4", + "@microsoft/applicationinsights-core-js": "3.4.4", "@nevware21/ts-utils": ">= 0.14.0 < 2.x" } } diff --git a/examples/cfgSync/package.json b/examples/cfgSync/package.json index 6aa43c0e4..4ec2f51be 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.4.3", + "version": "3.4.4", "description": "Microsoft Application Insights CfgSync Plugin Example", "homepage": "https://github.com/microsoft/ApplicationInsights-JS#readme", "keywords": [ @@ -66,10 +66,10 @@ }, "dependencies": { "@microsoft/applicationinsights-shims": "3.0.1", - "@microsoft/applicationinsights-cfgsync-js": "3.4.3", + "@microsoft/applicationinsights-cfgsync-js": "3.4.4", "@microsoft/dynamicproto-js": "^2.0.3", - "@microsoft/applicationinsights-web": "3.4.3", - "@microsoft/applicationinsights-core-js": "3.4.3", + "@microsoft/applicationinsights-web": "3.4.4", + "@microsoft/applicationinsights-core-js": "3.4.4", "@nevware21/ts-utils": ">= 0.14.0 < 2.x" } } diff --git a/examples/dependency/package.json b/examples/dependency/package.json index 0df863539..fe04702c1 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.4.3", + "version": "3.4.4", "description": "Microsoft Application Insights Dependencies Example", "homepage": "https://github.com/microsoft/ApplicationInsights-JS#readme", "keywords": [ @@ -59,9 +59,9 @@ "dependencies": { "@microsoft/applicationinsights-shims": "3.0.1", "@microsoft/dynamicproto-js": "^2.0.3", - "@microsoft/applicationinsights-web": "3.4.3", - "@microsoft/applicationinsights-dependencies-js": "3.4.3", - "@microsoft/applicationinsights-core-js": "3.4.3", + "@microsoft/applicationinsights-web": "3.4.4", + "@microsoft/applicationinsights-dependencies-js": "3.4.4", + "@microsoft/applicationinsights-core-js": "3.4.4", "@nevware21/ts-utils": ">= 0.14.0 < 2.x" } } diff --git a/examples/shared-worker/package.json b/examples/shared-worker/package.json index 2af98890b..e6fd39c8e 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.4.3", + "version": "3.4.4", "description": "Microsoft Application Insights Shared Worker Example", "homepage": "https://github.com/microsoft/ApplicationInsights-JS#readme", "keywords": [ @@ -67,8 +67,8 @@ "dependencies": { "@microsoft/applicationinsights-shims": "3.0.1", "@microsoft/dynamicproto-js": "^2.0.3", - "@microsoft/applicationinsights-web": "3.4.3", - "@microsoft/applicationinsights-core-js": "3.4.3", + "@microsoft/applicationinsights-web": "3.4.4", + "@microsoft/applicationinsights-core-js": "3.4.4", "@nevware21/ts-utils": ">= 0.14.0 < 2.x" } } diff --git a/examples/startSpan/package.json b/examples/startSpan/package.json index caef15752..68e82f0c2 100644 --- a/examples/startSpan/package.json +++ b/examples/startSpan/package.json @@ -1,7 +1,7 @@ { "name": "@microsoft/applicationinsights-example-startspan", "author": "Microsoft Application Insights Team", - "version": "3.4.3", + "version": "3.4.4", "description": "Microsoft Application Insights startSpan Example", "homepage": "https://github.com/microsoft/ApplicationInsights-JS#readme", "keywords": [ @@ -62,8 +62,8 @@ "dependencies": { "@microsoft/applicationinsights-shims": "3.0.1", "@microsoft/dynamicproto-js": "^2.0.3", - "@microsoft/applicationinsights-web": "3.4.3", - "@microsoft/applicationinsights-core-js": "3.4.3", + "@microsoft/applicationinsights-web": "3.4.4", + "@microsoft/applicationinsights-core-js": "3.4.4", "@nevware21/ts-utils": ">= 0.14.0 < 2.x" } } diff --git a/extensions/applicationinsights-analytics-js/package.json b/extensions/applicationinsights-analytics-js/package.json index fccc65730..b33fb3e39 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.4.3", + "version": "3.4.4", "description": "Microsoft Application Insights JavaScript SDK - Web Analytics", "homepage": "https://github.com/microsoft/ApplicationInsights-JS#readme", "author": "Microsoft Application Insights Team", @@ -32,9 +32,9 @@ "@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.4.3", - "@microsoft/applicationinsights-channel-js": "3.4.3", - "@microsoft/applicationinsights-dependencies-js": "3.4.3", + "@microsoft/applicationinsights-properties-js": "3.4.4", + "@microsoft/applicationinsights-channel-js": "3.4.4", + "@microsoft/applicationinsights-dependencies-js": "3.4.4", "@microsoft/api-extractor": "^7.40.0", "typescript": "^4.9.3", "tslib": "^2.0.0", @@ -68,7 +68,7 @@ "dependencies": { "@microsoft/dynamicproto-js": "^2.0.3", "@microsoft/applicationinsights-shims": "3.0.1", - "@microsoft/applicationinsights-core-js": "3.4.3", + "@microsoft/applicationinsights-core-js": "3.4.4", "@nevware21/ts-utils": ">= 0.14.0 < 2.x" }, "license": "MIT" diff --git a/extensions/applicationinsights-cfgsync-js/package.json b/extensions/applicationinsights-cfgsync-js/package.json index 3180f9c4e..ed74b3591 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.4.3", + "version": "3.4.4", "description": "Microsoft Application Insights CfgSync Plugin", "homepage": "https://github.com/microsoft/ApplicationInsights-JS#readme", "author": "Microsoft Application Insights Team", @@ -64,7 +64,7 @@ "dependencies": { "@microsoft/dynamicproto-js": "^2.0.3", "@microsoft/applicationinsights-shims": "3.0.1", - "@microsoft/applicationinsights-core-js": "3.4.3", + "@microsoft/applicationinsights-core-js": "3.4.4", "@nevware21/ts-utils": ">= 0.14.0 < 2.x", "@nevware21/ts-async": ">= 0.5.5 < 0.6.0" }, diff --git a/extensions/applicationinsights-clickanalytics-js/package.json b/extensions/applicationinsights-clickanalytics-js/package.json index 2e0a9c357..75aaf0255 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.4.3", + "version": "3.4.4", "description": "Microsoft Application Insights Click Analytics extension", "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.4.3", - "@microsoft/applicationinsights-properties-js": "3.4.3", + "@microsoft/applicationinsights-core-js": "3.4.4", + "@microsoft/applicationinsights-properties-js": "3.4.4", "@nevware21/ts-utils": ">= 0.14.0 < 2.x" }, "repository": { diff --git a/extensions/applicationinsights-debugplugin-js/package.json b/extensions/applicationinsights-debugplugin-js/package.json index dd39b2cf2..667e69517 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.4.3", + "version": "3.4.4", "description": "Microsoft Application Insights JavaScript SDK - Debug Plugin extension", "homepage": "https://github.com/microsoft/ApplicationInsights-JS#readme", "author": "Microsoft Application Insights Team", @@ -56,7 +56,7 @@ }, "dependencies": { "@microsoft/dynamicproto-js": "^2.0.3", - "@microsoft/applicationinsights-core-js": "3.4.3", + "@microsoft/applicationinsights-core-js": "3.4.4", "@microsoft/applicationinsights-shims": "3.0.1", "@nevware21/ts-utils": ">= 0.14.0 < 2.x" }, diff --git a/extensions/applicationinsights-dependencies-js/package.json b/extensions/applicationinsights-dependencies-js/package.json index 548fd3b69..cf77e9237 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.4.3", + "version": "3.4.4", "description": "Microsoft Application Insights XHR dependencies plugin", "homepage": "https://github.com/microsoft/ApplicationInsights-JS#readme", "author": "Microsoft Application Insights Team", @@ -64,7 +64,7 @@ "dependencies": { "@microsoft/dynamicproto-js": "^2.0.3", "@microsoft/applicationinsights-shims": "3.0.1", - "@microsoft/applicationinsights-core-js": "3.4.3", + "@microsoft/applicationinsights-core-js": "3.4.4", "@nevware21/ts-utils": ">= 0.14.0 < 2.x", "@nevware21/ts-async": ">= 0.5.5 < 0.6.0" }, diff --git a/extensions/applicationinsights-osplugin-js/package.json b/extensions/applicationinsights-osplugin-js/package.json index 378eb1eea..04b7833d0 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.4.3", + "version": "3.4.4", "description": "Microsoft Application Insights OS Plugin", "homepage": "https://github.com/microsoft/ApplicationInsights-JS#readme", "author": "Microsoft Application Insights Team", @@ -31,7 +31,7 @@ "dependencies": { "@microsoft/applicationinsights-shims": "3.0.1", "@microsoft/dynamicproto-js": "^2.0.3", - "@microsoft/applicationinsights-core-js": "3.4.3", + "@microsoft/applicationinsights-core-js": "3.4.4", "@nevware21/ts-utils": ">= 0.14.0 < 2.x", "@nevware21/ts-async": ">= 0.5.5 < 0.6.0" }, diff --git a/extensions/applicationinsights-perfmarkmeasure-js/package.json b/extensions/applicationinsights-perfmarkmeasure-js/package.json index ca852e8da..885af8315 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.4.3", + "version": "3.4.4", "description": "Microsoft Application Insights Performance Mark and Measure Manager plugin", "homepage": "https://github.com/microsoft/ApplicationInsights-JS#readme", "author": "Microsoft Application Insights Team", @@ -63,7 +63,7 @@ "dependencies": { "@microsoft/dynamicproto-js": "^2.0.3", "@microsoft/applicationinsights-shims": "3.0.1", - "@microsoft/applicationinsights-core-js": "3.4.3", + "@microsoft/applicationinsights-core-js": "3.4.4", "@nevware21/ts-utils": ">= 0.14.0 < 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 bfb9ddda4..fa0770fb0 100644 --- a/extensions/applicationinsights-properties-js/Tests/Unit/src/propertiesSize.tests.ts +++ b/extensions/applicationinsights-properties-js/Tests/Unit/src/propertiesSize.tests.ts @@ -54,7 +54,7 @@ export class PropertiesExtensionSizeCheck extends AITestClass { private readonly MAX_DEFLATE_SIZE = 19; private readonly rawFilePath = "../dist/es5/applicationinsights-properties-js.min.js"; // Automatically updated by version scripts - private readonly currentVer = "3.4.3"; + private readonly currentVer = "3.4.4"; 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 27423ba62..a9eba8e56 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.4.3", + "version": "3.4.4", "description": "Microsoft Application Insights properties (Part A) plugin", "homepage": "https://github.com/microsoft/ApplicationInsights-JS#readme", "author": "Microsoft Application Insights Team", @@ -66,7 +66,7 @@ "dependencies": { "@microsoft/dynamicproto-js": "^2.0.3", "@microsoft/applicationinsights-shims": "3.0.1", - "@microsoft/applicationinsights-core-js": "3.4.3", + "@microsoft/applicationinsights-core-js": "3.4.4", "@nevware21/ts-utils": ">= 0.14.0 < 2.x" }, "license": "MIT" diff --git a/gruntfile.js b/gruntfile.js index f9fb5b732..e2ace91ac 100644 --- a/gruntfile.js +++ b/gruntfile.js @@ -287,7 +287,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.4.3"]; + const perfTestVersions=["3.4.4"]; function buildConfig(modules) { var buildCmds = { diff --git a/package.json b/package.json index 6d28c2332..2be8f1222 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "@microsoft/applicationinsights-web", "description": "Microsoft Application Insights JavaScript SDK", - "version": "3.4.3", + "version": "3.4.4", "keywords": [ "browser performance monitoring", "script errors", diff --git a/shared/1ds-core-js/package.json b/shared/1ds-core-js/package.json index e8e64f1d6..dc5a840d7 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.4.3", + "version": "4.4.4", "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.4.3", + "@microsoft/applicationinsights-core-js": "3.4.4", "@microsoft/dynamicproto-js": "^2.0.3", "@nevware21/ts-utils": ">= 0.14.0 < 2.x", "@nevware21/ts-async": ">= 0.5.5 < 0.6.0" diff --git a/shared/AppInsightsCommon/package.json b/shared/AppInsightsCommon/package.json index 484016541..5ff0565fb 100644 --- a/shared/AppInsightsCommon/package.json +++ b/shared/AppInsightsCommon/package.json @@ -1,6 +1,6 @@ { "name": "@microsoft/applicationinsights-common", - "version": "3.4.3", + "version": "3.4.4", "description": "Microsoft Application Insights Common JavaScript Library", "homepage": "https://github.com/microsoft/ApplicationInsights-JS#readme", "author": "Microsoft Application Insights Team", @@ -58,7 +58,7 @@ }, "dependencies": { "@microsoft/applicationinsights-shims": "3.0.1", - "@microsoft/applicationinsights-core-js": "3.4.3", + "@microsoft/applicationinsights-core-js": "3.4.4", "@microsoft/dynamicproto-js": "^2.0.3", "@nevware21/ts-utils": ">= 0.14.0 < 2.x" }, diff --git a/shared/AppInsightsCore/package.json b/shared/AppInsightsCore/package.json index f18eb762a..782a5f2d5 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.4.3", + "version": "3.4.4", "description": "Microsoft Application Insights Core Javascript SDK", "homepage": "https://github.com/microsoft/ApplicationInsights-JS#readme", "keywords": [ diff --git a/shared/AppInsightsCore/src/utils/DataCacheHelper.ts b/shared/AppInsightsCore/src/utils/DataCacheHelper.ts index 043f47a2a..d02887175 100644 --- a/shared/AppInsightsCore/src/utils/DataCacheHelper.ts +++ b/shared/AppInsightsCore/src/utils/DataCacheHelper.ts @@ -6,7 +6,7 @@ import { STR_EMPTY } from "../constants/InternalConstants"; import { normalizeJsName } from "./HelperFuncs"; import { newId } from "./RandomHelper"; -const version = "3.4.3"; +const version = "3.4.4"; let instanceName = "." + newId(6); let _dataUid = 0; diff --git a/tools/applicationinsights-web-snippet/package.json b/tools/applicationinsights-web-snippet/package.json index 63f4acaae..5da4b802f 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.3.3", + "version": "1.3.4", "description": "Microsoft Application Insights Web Snippet", "main": "dist/es5/node/applicationinsights-web-snippet.js", "module": "dist-es5/applicationinsights-web-snippet.js", @@ -34,8 +34,8 @@ "devDependencies": { "@types/qunit": "^2.19.3", "@microsoft/ai-test-framework": "0.0.1", - "@microsoft/applicationinsights-web": "3.4.3", - "@microsoft/applicationinsights-core-js": "3.4.3", + "@microsoft/applicationinsights-web": "3.4.4", + "@microsoft/applicationinsights-core-js": "3.4.4", "@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/package.json b/tools/chrome-debug-extension/package.json index 35bb786cd..d1117d89c 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.9.3", + "version": "0.9.4", "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,7 +43,7 @@ "license": "MIT", "sideEffects": false, "dependencies": { - "@microsoft/applicationinsights-core-js": "3.4.3", + "@microsoft/applicationinsights-core-js": "3.4.4", "@microsoft/applicationinsights-shims": "3.0.1", "@microsoft/dynamicproto-js": "^2.0.3", "@nevware21/ts-async": ">= 0.5.5 < 0.6.0", diff --git a/tools/config/package.json b/tools/config/package.json index a47958cf4..61e637f1a 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 for CfgSync Plugin", - "version": "1.1.3", + "version": "1.1.4", "copyright": "(c) Microsoft and contributors. All rights reserved.", "author": "Microsoft Application Insights Team", "repository": { diff --git a/version.json b/version.json index 38485c8bb..4838de0d7 100644 --- a/version.json +++ b/version.json @@ -1,112 +1,112 @@ { "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.4.3", + "release": "3.4.4", "next": "patch", "pkgs": { "@microsoft/applicationinsights-web": { "package": "package.json", - "release": "3.4.3" + "release": "3.4.4" }, "@microsoft/applicationinsights-web-basic": { "package": "AISKULight/package.json", - "release": "3.4.3" + "release": "3.4.4" }, "@microsoft/applicationinsights-channel-js": { "package": "channels/applicationinsights-channel-js/package.json", - "release": "3.4.3" + "release": "3.4.4" }, "@microsoft/applicationinsights-analytics-js": { "package": "extensions/applicationinsights-analytics-js/package.json", - "release": "3.4.3" + "release": "3.4.4" }, "@microsoft/applicationinsights-clickanalytics-js": { "package": "extensions/applicationinsights-clickanalytics-js/package.json", - "release": "3.4.3" + "release": "3.4.4" }, "@microsoft/applicationinsights-osplugin-js": { "package": "extensions/applicationinsights-osplugin-js/package.json", - "release": "3.4.3" + "release": "3.4.4" }, "@microsoft/applicationinsights-debugplugin-js": { "package": "extensions/applicationinsights-debugplugin-js/package.json", - "release": "3.4.3" + "release": "3.4.4" }, "@microsoft/applicationinsights-dependencies-js": { "package": "extensions/applicationinsights-dependencies-js/package.json", - "release": "3.4.3" + "release": "3.4.4" }, "@microsoft/applicationinsights-perfmarkmeasure-js": { "package": "extensions/applicationinsights-perfmarkmeasure-js/package.json", - "release": "3.4.3" + "release": "3.4.4" }, "@microsoft/applicationinsights-properties-js": { "package": "extensions/applicationinsights-properties-js/package.json", - "release": "3.4.3" + "release": "3.4.4" }, "@microsoft/applicationinsights-common": { "package": "shared/AppInsightsCommon/package.json", - "release": "3.4.3" + "release": "3.4.4" }, "@microsoft/applicationinsights-core-js": { "package": "shared/AppInsightsCore/package.json", - "release": "3.4.3" + "release": "3.4.4" }, "@microsoft/applicationinsights-offlinechannel-js": { "package": "channels/offline-channel-js/package.json", - "release": "0.4.3" + "release": "0.4.4" }, "@microsoft/applicationinsights-chrome-debug-extension": { "package": "tools/chrome-debug-extension/package.json", - "release": "0.9.3" + "release": "0.9.4" }, "applicationinsights-web-config": { "package": "tools/config/package.json", - "release": "1.1.3" + "release": "1.1.4" }, "@microsoft/applicationinsights-example-aisku": { "package": "examples/AISKU/package.json", - "release": "3.4.3" + "release": "3.4.4" }, "@microsoft/applicationinsights-example-dependencies": { "package": "examples/dependency/package.json", - "release": "3.4.3" + "release": "3.4.4" }, "@microsoft/applicationinsights-example-shared-worker": { "package": "examples/shared-worker/package.json", - "release": "3.4.3" + "release": "3.4.4" }, "@microsoft/applicationinsights-teechannel-js": { "package": "channels/tee-channel-js/package.json", - "release": "3.4.3" + "release": "3.4.4" }, "@microsoft/applicationinsights-test-module-type-check": { "package": "AISKU/Tests/es6-module-type-check/package.json", - "release": "3.4.3" + "release": "3.4.4" }, "@microsoft/applicationinsights-cfgsync-js": { "package": "extensions/applicationinsights-cfgsync-js/package.json", - "release": "3.4.3" + "release": "3.4.4" }, "@microsoft/applicationinsights-example-cfgsync": { "package": "examples/cfgSync/package.json", - "release": "3.4.3" + "release": "3.4.4" }, "@microsoft/1ds-post-js": { "package": "channels/1ds-post-js/package.json", - "release": "4.4.3" + "release": "4.4.4" }, "@microsoft/1ds-core-js": { "package": "shared/1ds-core-js/package.json", - "release": "4.4.3" + "release": "4.4.4" }, "@microsoft/applicationinsights-web-snippet": { "package": "tools/applicationinsights-web-snippet/package.json", - "release": "1.3.3" + "release": "1.3.4" }, "@microsoft/applicationinsights-example-startspan": { "package": "examples/startSpan/package.json", - "release": "3.4.3" + "release": "3.4.4" } } }