From 7f88c46fc3f06275a1b4b2f8a683d0d1b34da57b Mon Sep 17 00:00:00 2001 From: Nev <54870357+MSNev@users.noreply.github.com> Date: Tue, 7 Dec 2021 10:50:26 -0800 Subject: [PATCH] [Release] Increase version to 2.7.2 (#1733) - React-js to 3.2.2 - ReactNative to 2.4.2 - ChromeExt to 0.2.2 --- AISKU/Tests/Perf/src/AISKUPerf.ts | 7 +-- AISKU/package.json | 14 ++--- AISKULight/package.json | 8 +-- RELEASES.md | 12 ++++- .../Tests/Unit/src/Sender.tests.ts | 2 +- .../package.json | 6 +-- .../src/EnvelopeCreator.ts | 2 +- common/config/rush/npm-shrinkwrap.json | 52 +++++++++---------- .../package.json | 10 ++-- .../src/JavaScriptSDK/ApplicationInsights.ts | 2 +- .../package.json | 8 +-- .../src/ClickAnalyticsPlugin.ts | 2 +- .../package.json | 6 +-- .../package.json | 6 +-- .../package.json | 4 +- .../package.json | 6 +-- .../src/Context/Internal.ts | 2 +- .../applicationinsights-react-js/package.json | 6 +-- .../package.json | 6 +-- package.json | 2 +- shared/AppInsightsCommon/package.json | 4 +- shared/AppInsightsCore/package.json | 2 +- tools/chrome-debug-extension/manifest.json | 4 +- tools/chrome-debug-extension/package.json | 8 +-- version.json | 32 +++++++----- 25 files changed, 111 insertions(+), 102 deletions(-) diff --git a/AISKU/Tests/Perf/src/AISKUPerf.ts b/AISKU/Tests/Perf/src/AISKUPerf.ts index b33b99eb5..ebf767f39 100644 --- a/AISKU/Tests/Perf/src/AISKUPerf.ts +++ b/AISKU/Tests/Perf/src/AISKUPerf.ts @@ -1,4 +1,3 @@ - export class AppInsightsInitPerfTestClass { public version: string; @@ -20,7 +19,7 @@ export class AppInsightsInitPerfTestClass { * should update version after new release * version with doperf(): after 2.5.6 * */ - var defaultVer = "2.7.1"; + var defaultVer = "2.7.2"; this.version = ver? ver:this._getQueryParameterVersion(defaultVer); this.perfEventsBuffer = []; this.perfEventWaitBuffer = []; @@ -38,6 +37,4 @@ export class AppInsightsInitPerfTestClass { if (queryVer && queryVer.length > 0) { version = queryVer;} return version; } -} - - +} \ No newline at end of file diff --git a/AISKU/package.json b/AISKU/package.json index c07a13112..848d6a08a 100644 --- a/AISKU/package.json +++ b/AISKU/package.json @@ -1,6 +1,6 @@ { "name": "@microsoft/applicationinsights-web", - "version": "2.7.1", + "version": "2.7.2", "description": "Microsoft Application Insights JavaScript SDK - Web", "homepage": "https://github.com/microsoft/ApplicationInsights-JS#readme", "author": "Microsoft Application Insights Team", @@ -66,12 +66,12 @@ "dependencies": { "@microsoft/dynamicproto-js": "^1.1.4", "@microsoft/applicationinsights-shims": "2.0.0", - "@microsoft/applicationinsights-analytics-js": "2.7.1", - "@microsoft/applicationinsights-channel-js": "2.7.1", - "@microsoft/applicationinsights-common": "2.7.1", - "@microsoft/applicationinsights-core-js": "2.7.1", - "@microsoft/applicationinsights-dependencies-js": "2.7.1", - "@microsoft/applicationinsights-properties-js": "2.7.1" + "@microsoft/applicationinsights-analytics-js": "2.7.2", + "@microsoft/applicationinsights-channel-js": "2.7.2", + "@microsoft/applicationinsights-common": "2.7.2", + "@microsoft/applicationinsights-core-js": "2.7.2", + "@microsoft/applicationinsights-dependencies-js": "2.7.2", + "@microsoft/applicationinsights-properties-js": "2.7.2" }, "license": "MIT" } diff --git a/AISKULight/package.json b/AISKULight/package.json index 2b1541b84..0b25aad4f 100644 --- a/AISKULight/package.json +++ b/AISKULight/package.json @@ -1,6 +1,6 @@ { "name": "@microsoft/applicationinsights-web-basic", - "version": "2.7.1", + "version": "2.7.2", "description": "Microsoft Application Insights Javascript SDK core and channel", "homepage": "https://github.com/microsoft/ApplicationInsights-JS#readme", "author": "Microsoft Application Insights Team", @@ -49,9 +49,9 @@ "dependencies": { "@microsoft/dynamicproto-js": "^1.1.4", "@microsoft/applicationinsights-shims": "2.0.0", - "@microsoft/applicationinsights-common": "2.7.1", - "@microsoft/applicationinsights-channel-js": "2.7.1", - "@microsoft/applicationinsights-core-js": "2.7.1" + "@microsoft/applicationinsights-common": "2.7.2", + "@microsoft/applicationinsights-channel-js": "2.7.2", + "@microsoft/applicationinsights-core-js": "2.7.2" }, "license": "MIT" } diff --git a/RELEASES.md b/RELEASES.md index 287a9140a..e17bd7b84 100644 --- a/RELEASES.md +++ b/RELEASES.md @@ -1,8 +1,16 @@ # Releases +## 2.7.2 (Dec 7th, 2021) + +### Changelog + +- #1729 [BUG] Addition of stdDev metric support has broken custom metric reporting from #1680 +- #1727 [BUG] Cannot track exception from service worker +- #1731 Component Governance - Upgrade to npm v8.1.4 + ## 2.7.1 (Nov 4th, 2021) -## Changelog +### Changelog - #1667 Allow properly disposing AI - expose internal log poller #1674 @@ -28,7 +36,7 @@ ___Major change___: Upgrades build environment to TypeScript __4.x__ - No known breaking, configuration or definition changes -## Changelog +### Changelog - #1640 [BUG] enableAjaxErrorStatusText: false (which is the default setting) does not turn off logging error response body - #1642 trackEvent() doesn't allow replacing the iKey diff --git a/channels/applicationinsights-channel-js/Tests/Unit/src/Sender.tests.ts b/channels/applicationinsights-channel-js/Tests/Unit/src/Sender.tests.ts index 504c00b37..7b6bea0a9 100644 --- a/channels/applicationinsights-channel-js/Tests/Unit/src/Sender.tests.ts +++ b/channels/applicationinsights-channel-js/Tests/Unit/src/Sender.tests.ts @@ -665,7 +665,7 @@ export class SenderTests extends AITestClass { QUnit.assert.ok(baseData.ver); QUnit.assert.equal(2, baseData.ver); - QUnit.assert.equal("javascript:2.7.1", appInsightsEnvelope.tags["ai.internal.sdkVersion"]); + QUnit.assert.equal("javascript:2.7.2", appInsightsEnvelope.tags["ai.internal.sdkVersion"]); } }) diff --git a/channels/applicationinsights-channel-js/package.json b/channels/applicationinsights-channel-js/package.json index 21a035535..4cbce32cb 100644 --- a/channels/applicationinsights-channel-js/package.json +++ b/channels/applicationinsights-channel-js/package.json @@ -1,6 +1,6 @@ { "name": "@microsoft/applicationinsights-channel-js", - "version": "2.7.1", + "version": "2.7.2", "description": "Microsoft Application Insights JavaScript SDK Channel", "homepage": "https://github.com/microsoft/ApplicationInsights-JS#readme", "author": "Microsoft Application Insights Team", @@ -47,8 +47,8 @@ "dependencies": { "@microsoft/dynamicproto-js": "^1.1.4", "@microsoft/applicationinsights-shims": "2.0.0", - "@microsoft/applicationinsights-core-js": "2.7.1", - "@microsoft/applicationinsights-common": "2.7.1" + "@microsoft/applicationinsights-core-js": "2.7.2", + "@microsoft/applicationinsights-common": "2.7.2" }, "license": "MIT" } diff --git a/channels/applicationinsights-channel-js/src/EnvelopeCreator.ts b/channels/applicationinsights-channel-js/src/EnvelopeCreator.ts index 6ecc26140..6a5f1d51c 100644 --- a/channels/applicationinsights-channel-js/src/EnvelopeCreator.ts +++ b/channels/applicationinsights-channel-js/src/EnvelopeCreator.ts @@ -175,7 +175,7 @@ function EnvelopeCreatorInit(logger: IDiagnosticLogger, telemetryItem: ITelemetr } export const EnvelopeCreator = { - Version: "2.7.1" + Version: "2.7.2" }; export function DependencyEnvelopeCreator(logger: IDiagnosticLogger, telemetryItem: ITelemetryItem, customUndefinedValue?: any): IEnvelope { diff --git a/common/config/rush/npm-shrinkwrap.json b/common/config/rush/npm-shrinkwrap.json index 405f0b632..7ffb443f5 100644 --- a/common/config/rush/npm-shrinkwrap.json +++ b/common/config/rush/npm-shrinkwrap.json @@ -3255,7 +3255,7 @@ "node_modules/@rush-temp/applicationinsights-analytics-js": { "version": "0.0.0", "resolved": "file:projects/applicationinsights-analytics-js.tgz", - "integrity": "sha512-EyqhBeYsHm9NvjAwZMSrKcQG7oKIXYrmE5JiARs68COn8gW/9RWz9Tl3otoamZ/u6a0n4P5MCVZW9MvFeW87LQ==", + "integrity": "sha512-cOsHfCmUumLZ92RwnYfdoBNuA3nojWTZph0ztdcIRXBziE7cGFSsT7fNXgHw0ZwFpWnyimEB9jraeLg0mae+iQ==", "dependencies": { "@microsoft/api-extractor": "^7.18.1", "@microsoft/dynamicproto-js": "^1.1.4", @@ -3281,7 +3281,7 @@ "node_modules/@rush-temp/applicationinsights-channel-js": { "version": "0.0.0", "resolved": "file:projects/applicationinsights-channel-js.tgz", - "integrity": "sha512-GdE9T8CI/e8F3tweKaxUQtkLM7FeCzvffU3kLHjXYXoXEvxoeJbf1H60kSFhlj/jJWBPqzHeXwUYOraL4f2x3w==", + "integrity": "sha512-+bT/a9+xpbDfUr8TF/6yAXGBSgu6OZ1IMF3fMmDe2P5q0gbwgHQARs7EPQOZQYxDAq2NJfHEJFgmtpQ0EgDCPQ==", "dependencies": { "@microsoft/api-extractor": "^7.18.1", "@microsoft/dynamicproto-js": "^1.1.4", @@ -3305,7 +3305,7 @@ "node_modules/@rush-temp/applicationinsights-chrome-debug-extension": { "version": "0.0.0", "resolved": "file:projects/applicationinsights-chrome-debug-extension.tgz", - "integrity": "sha512-PI944t3Byuc5UGkOjPCaGL3tGTTY0Pi7R/U8g0AudjgmkfUx4AsSD57oKoBxO85k4qt5c+CMtFa4/Rqxrx50dA==", + "integrity": "sha512-ZZelbWbo7+53ZBARppwv/eOYwm3Jx90KpIRnJwJF+VEpzlNRXWrj/VSGOI5VKk4i6tjlALpq6UlZK1vKYMN1Fw==", "dependencies": { "@microsoft/dynamicproto-js": "^1.1.4", "@nevware21/grunt-eslint-ts": "^0.2.2", @@ -3337,7 +3337,7 @@ "node_modules/@rush-temp/applicationinsights-clickanalytics-js": { "version": "0.0.0", "resolved": "file:projects/applicationinsights-clickanalytics-js.tgz", - "integrity": "sha512-R4SeocE0g6vx1cn55QRikrfhMb/ip/I/8VrvjxwrT1IKhDNayo87yRGMwlvswAO/FLDGAOmkFneSty+mxw2yxg==", + "integrity": "sha512-YyrH3sMNKQJ6ryznydK2UWQC0FO6K+ec5CcQazULfK1e8x7MzwiChVjOukaA1rlTkm1RNsrAFHT1JTwMYr4iWg==", "dependencies": { "@microsoft/api-extractor": "^7.18.1", "@microsoft/dynamicproto-js": "^1.1.4", @@ -3360,7 +3360,7 @@ "node_modules/@rush-temp/applicationinsights-common": { "version": "0.0.0", "resolved": "file:projects/applicationinsights-common.tgz", - "integrity": "sha512-v/5ef/u/bMbCwZErkst8btu0+0ezoH/y/7l0LiVxcVm639wI6Hax/pLlOOQwIBBrX2WrN+7GAMh3YJHt0I/FQA==", + "integrity": "sha512-ek2+ULu4DoppZgYKG0eL55btRnaG9izIXMZOS+bMWuupZ1UlTTxaRYGFtf3g9f552g8q05b0ffSZmz86XWeVLQ==", "dependencies": { "@microsoft/api-extractor": "^7.18.1", "@microsoft/dynamicproto-js": "^1.1.4", @@ -3409,7 +3409,7 @@ "node_modules/@rush-temp/applicationinsights-debugplugin-js": { "version": "0.0.0", "resolved": "file:projects/applicationinsights-debugplugin-js.tgz", - "integrity": "sha512-7c93xxqWAGUmumuVDnfjuApFeKr2Pkoi0yJkMyZwGGOlnAmQFbnL2Pfk6wdr9vlK2P+oxoesAfmYpvPvJb5igg==", + "integrity": "sha512-k/9dSbvP776wPKl7TFYP884kzR3tSqAQ74iDNqD3VTKNHg9Jc2LWLwQHsUpT4jDJjmoAd9e23516XSdVtCC8NQ==", "dependencies": { "@microsoft/api-extractor": "^7.18.1", "@microsoft/dynamicproto-js": "^1.1.4", @@ -3432,7 +3432,7 @@ "node_modules/@rush-temp/applicationinsights-dependencies-js": { "version": "0.0.0", "resolved": "file:projects/applicationinsights-dependencies-js.tgz", - "integrity": "sha512-sWe/KlTjRiIjnIye8P+rOSiMcZqbsJoeZdbzzk4wJSvIrejObaqL31VC5LyrOjaH8x2d4MWdgOAme9LDZcJuDA==", + "integrity": "sha512-2HfSVz5osANE4JNtMZKWfZKrug6eFbiwBaRzi2p+3W1bsxEcb1zO1EbKEF0dz6vsEirdpWNVlSCPnkkOP94s2A==", "dependencies": { "@microsoft/api-extractor": "^7.18.1", "@microsoft/dynamicproto-js": "^1.1.4", @@ -3466,7 +3466,7 @@ "node_modules/@rush-temp/applicationinsights-perfmarkmeasure-js": { "version": "0.0.0", "resolved": "file:projects/applicationinsights-perfmarkmeasure-js.tgz", - "integrity": "sha512-oVmaIVNr6HGCiIWGM0y6tnleO96k1HAjPQ9JRh6/1wdp0wj/P2WcpEheXdDCs7NQ0VMZjjFmWzsl2NZWdFpZgw==", + "integrity": "sha512-jbdcBbHBdBKl9Cl0Ety+9khe1Ty+VUuDNmdMMx5FJTyfB640UpHcyNrzKg4wlvTC2pF3V3Xz1dDdcsjAugOmzw==", "dependencies": { "@microsoft/api-extractor": "^7.18.1", "@microsoft/dynamicproto-js": "^1.1.4", @@ -3489,7 +3489,7 @@ "node_modules/@rush-temp/applicationinsights-properties-js": { "version": "0.0.0", "resolved": "file:projects/applicationinsights-properties-js.tgz", - "integrity": "sha512-6us+CQE91vJyqD1eOl4KsZUN8n8V6y/4wqNOPqjK9uReRYP2duqXDvj51tdqULXymd73iB+1zNNmHfVAGQzIRQ==", + "integrity": "sha512-7hl1OcHXjOPdkeL/ZotgYgSQ30WYa8IRYGCHpQyXkABgsyjPzF6he0cuHsW0xB1DKgtMtY9HxsGskC2OcBV8vQ==", "dependencies": { "@microsoft/api-extractor": "^7.18.1", "@microsoft/dynamicproto-js": "^1.1.4", @@ -3515,7 +3515,7 @@ "node_modules/@rush-temp/applicationinsights-react-js": { "version": "0.0.0", "resolved": "file:projects/applicationinsights-react-js.tgz", - "integrity": "sha512-26jG8C9/uG/tZJzf15PBESqxePnsI/2+P4nD/2bkq+UTXc3hAQ0eZQTjbkMaCGa3NhqXmrPrZlzbualVl/D5WA==", + "integrity": "sha512-6wAv8voXDthEgCWn5hCHHEaaKYHjX7OWE8o770TrlKusxWUdMLjAXvbI39EiA4Ehbrn++ced8haBezXB2/YI0w==", "dependencies": { "@microsoft/api-extractor": "^7.18.1", "@microsoft/dynamicproto-js": "^1.1.4", @@ -3554,7 +3554,7 @@ "node_modules/@rush-temp/applicationinsights-react-native": { "version": "0.0.0", "resolved": "file:projects/applicationinsights-react-native.tgz", - "integrity": "sha512-RLlsG97lr5e/3wE27JZSC4ME8q3ZR++dSfH1f4Gsm4e35edI2ynGZlAstFQn1pLNPop5OW3+3X4I2ehzx4g9dA==", + "integrity": "sha512-ovvAYdpO4+E4/kSIrQbVWpkdqfMEqp212lkb/DKCwKtXw8wMh8l5ng69/I6V4mR/FpJIsOZclVBw0pdvTVSHkA==", "dependencies": { "@microsoft/api-extractor": "^7.18.1", "@microsoft/dynamicproto-js": "^1.1.4", @@ -3650,7 +3650,7 @@ "node_modules/@rush-temp/applicationinsights-web": { "version": "0.0.0", "resolved": "file:projects/applicationinsights-web.tgz", - "integrity": "sha512-LTmdxNS2nQhPExfb2bvRAN9CucXnWV3LF7qKLyQsUayNsFi6LdzNTJpxJfElkD9RXHhLgedtnoGQI2RTYD6wug==", + "integrity": "sha512-BOFZabduAGBahCvAdaZpG63zT2dnAo7przDSYKweH7Lo+phH9nRLzWAFdFsG/PsFaYvfN10tgcP2DGmnnvR1aQ==", "dependencies": { "@microsoft/api-extractor": "^7.18.1", "@microsoft/dynamicproto-js": "^1.1.4", @@ -3679,7 +3679,7 @@ "node_modules/@rush-temp/applicationinsights-web-basic": { "version": "0.0.0", "resolved": "file:projects/applicationinsights-web-basic.tgz", - "integrity": "sha512-Nocx9wCRkI/+hmzwrDfX7R1T2FvFNNC+l71VnhFco+W4nan3NQwt2Lq+M1dMo6xAFXcCVZAcyjRXO9KwApr74Q==", + "integrity": "sha512-WNGP+euHkWxs/Z1xbWDItVyUhvEVKJolL1Xr4Ey/VioBltfuQQ1prkpWiSJfP7d9hTlO3FIfaexQO6qO7/Treg==", "dependencies": { "@microsoft/api-extractor": "^7.18.1", "@microsoft/dynamicproto-js": "^1.1.4", @@ -18914,7 +18914,7 @@ }, "@rush-temp/applicationinsights-analytics-js": { "version": "file:projects\\applicationinsights-analytics-js.tgz", - "integrity": "sha512-EyqhBeYsHm9NvjAwZMSrKcQG7oKIXYrmE5JiARs68COn8gW/9RWz9Tl3otoamZ/u6a0n4P5MCVZW9MvFeW87LQ==", + "integrity": "sha512-cOsHfCmUumLZ92RwnYfdoBNuA3nojWTZph0ztdcIRXBziE7cGFSsT7fNXgHw0ZwFpWnyimEB9jraeLg0mae+iQ==", "requires": { "@microsoft/api-extractor": "^7.18.1", "@microsoft/dynamicproto-js": "^1.1.4", @@ -18939,7 +18939,7 @@ }, "@rush-temp/applicationinsights-channel-js": { "version": "file:projects\\applicationinsights-channel-js.tgz", - "integrity": "sha512-GdE9T8CI/e8F3tweKaxUQtkLM7FeCzvffU3kLHjXYXoXEvxoeJbf1H60kSFhlj/jJWBPqzHeXwUYOraL4f2x3w==", + "integrity": "sha512-+bT/a9+xpbDfUr8TF/6yAXGBSgu6OZ1IMF3fMmDe2P5q0gbwgHQARs7EPQOZQYxDAq2NJfHEJFgmtpQ0EgDCPQ==", "requires": { "@microsoft/api-extractor": "^7.18.1", "@microsoft/dynamicproto-js": "^1.1.4", @@ -18962,7 +18962,7 @@ }, "@rush-temp/applicationinsights-chrome-debug-extension": { "version": "file:projects\\applicationinsights-chrome-debug-extension.tgz", - "integrity": "sha512-PI944t3Byuc5UGkOjPCaGL3tGTTY0Pi7R/U8g0AudjgmkfUx4AsSD57oKoBxO85k4qt5c+CMtFa4/Rqxrx50dA==", + "integrity": "sha512-ZZelbWbo7+53ZBARppwv/eOYwm3Jx90KpIRnJwJF+VEpzlNRXWrj/VSGOI5VKk4i6tjlALpq6UlZK1vKYMN1Fw==", "requires": { "@microsoft/dynamicproto-js": "^1.1.4", "@nevware21/grunt-eslint-ts": "^0.2.2", @@ -18993,7 +18993,7 @@ }, "@rush-temp/applicationinsights-clickanalytics-js": { "version": "file:projects\\applicationinsights-clickanalytics-js.tgz", - "integrity": "sha512-R4SeocE0g6vx1cn55QRikrfhMb/ip/I/8VrvjxwrT1IKhDNayo87yRGMwlvswAO/FLDGAOmkFneSty+mxw2yxg==", + "integrity": "sha512-YyrH3sMNKQJ6ryznydK2UWQC0FO6K+ec5CcQazULfK1e8x7MzwiChVjOukaA1rlTkm1RNsrAFHT1JTwMYr4iWg==", "requires": { "@microsoft/api-extractor": "^7.18.1", "@microsoft/dynamicproto-js": "^1.1.4", @@ -19015,7 +19015,7 @@ }, "@rush-temp/applicationinsights-common": { "version": "file:projects\\applicationinsights-common.tgz", - "integrity": "sha512-v/5ef/u/bMbCwZErkst8btu0+0ezoH/y/7l0LiVxcVm639wI6Hax/pLlOOQwIBBrX2WrN+7GAMh3YJHt0I/FQA==", + "integrity": "sha512-ek2+ULu4DoppZgYKG0eL55btRnaG9izIXMZOS+bMWuupZ1UlTTxaRYGFtf3g9f552g8q05b0ffSZmz86XWeVLQ==", "requires": { "@microsoft/api-extractor": "^7.18.1", "@microsoft/dynamicproto-js": "^1.1.4", @@ -19062,7 +19062,7 @@ }, "@rush-temp/applicationinsights-debugplugin-js": { "version": "file:projects\\applicationinsights-debugplugin-js.tgz", - "integrity": "sha512-7c93xxqWAGUmumuVDnfjuApFeKr2Pkoi0yJkMyZwGGOlnAmQFbnL2Pfk6wdr9vlK2P+oxoesAfmYpvPvJb5igg==", + "integrity": "sha512-k/9dSbvP776wPKl7TFYP884kzR3tSqAQ74iDNqD3VTKNHg9Jc2LWLwQHsUpT4jDJjmoAd9e23516XSdVtCC8NQ==", "requires": { "@microsoft/api-extractor": "^7.18.1", "@microsoft/dynamicproto-js": "^1.1.4", @@ -19084,7 +19084,7 @@ }, "@rush-temp/applicationinsights-dependencies-js": { "version": "file:projects\\applicationinsights-dependencies-js.tgz", - "integrity": "sha512-sWe/KlTjRiIjnIye8P+rOSiMcZqbsJoeZdbzzk4wJSvIrejObaqL31VC5LyrOjaH8x2d4MWdgOAme9LDZcJuDA==", + "integrity": "sha512-2HfSVz5osANE4JNtMZKWfZKrug6eFbiwBaRzi2p+3W1bsxEcb1zO1EbKEF0dz6vsEirdpWNVlSCPnkkOP94s2A==", "requires": { "@microsoft/api-extractor": "^7.18.1", "@microsoft/dynamicproto-js": "^1.1.4", @@ -19116,7 +19116,7 @@ }, "@rush-temp/applicationinsights-perfmarkmeasure-js": { "version": "file:projects\\applicationinsights-perfmarkmeasure-js.tgz", - "integrity": "sha512-oVmaIVNr6HGCiIWGM0y6tnleO96k1HAjPQ9JRh6/1wdp0wj/P2WcpEheXdDCs7NQ0VMZjjFmWzsl2NZWdFpZgw==", + "integrity": "sha512-jbdcBbHBdBKl9Cl0Ety+9khe1Ty+VUuDNmdMMx5FJTyfB640UpHcyNrzKg4wlvTC2pF3V3Xz1dDdcsjAugOmzw==", "requires": { "@microsoft/api-extractor": "^7.18.1", "@microsoft/dynamicproto-js": "^1.1.4", @@ -19138,7 +19138,7 @@ }, "@rush-temp/applicationinsights-properties-js": { "version": "file:projects\\applicationinsights-properties-js.tgz", - "integrity": "sha512-6us+CQE91vJyqD1eOl4KsZUN8n8V6y/4wqNOPqjK9uReRYP2duqXDvj51tdqULXymd73iB+1zNNmHfVAGQzIRQ==", + "integrity": "sha512-7hl1OcHXjOPdkeL/ZotgYgSQ30WYa8IRYGCHpQyXkABgsyjPzF6he0cuHsW0xB1DKgtMtY9HxsGskC2OcBV8vQ==", "requires": { "@microsoft/api-extractor": "^7.18.1", "@microsoft/dynamicproto-js": "^1.1.4", @@ -19163,7 +19163,7 @@ }, "@rush-temp/applicationinsights-react-js": { "version": "file:projects\\applicationinsights-react-js.tgz", - "integrity": "sha512-26jG8C9/uG/tZJzf15PBESqxePnsI/2+P4nD/2bkq+UTXc3hAQ0eZQTjbkMaCGa3NhqXmrPrZlzbualVl/D5WA==", + "integrity": "sha512-6wAv8voXDthEgCWn5hCHHEaaKYHjX7OWE8o770TrlKusxWUdMLjAXvbI39EiA4Ehbrn++ced8haBezXB2/YI0w==", "requires": { "@microsoft/api-extractor": "^7.18.1", "@microsoft/dynamicproto-js": "^1.1.4", @@ -19201,7 +19201,7 @@ }, "@rush-temp/applicationinsights-react-native": { "version": "file:projects\\applicationinsights-react-native.tgz", - "integrity": "sha512-RLlsG97lr5e/3wE27JZSC4ME8q3ZR++dSfH1f4Gsm4e35edI2ynGZlAstFQn1pLNPop5OW3+3X4I2ehzx4g9dA==", + "integrity": "sha512-ovvAYdpO4+E4/kSIrQbVWpkdqfMEqp212lkb/DKCwKtXw8wMh8l5ng69/I6V4mR/FpJIsOZclVBw0pdvTVSHkA==", "requires": { "@microsoft/api-extractor": "^7.18.1", "@microsoft/dynamicproto-js": "^1.1.4", @@ -19293,7 +19293,7 @@ }, "@rush-temp/applicationinsights-web": { "version": "file:projects\\applicationinsights-web.tgz", - "integrity": "sha512-LTmdxNS2nQhPExfb2bvRAN9CucXnWV3LF7qKLyQsUayNsFi6LdzNTJpxJfElkD9RXHhLgedtnoGQI2RTYD6wug==", + "integrity": "sha512-BOFZabduAGBahCvAdaZpG63zT2dnAo7przDSYKweH7Lo+phH9nRLzWAFdFsG/PsFaYvfN10tgcP2DGmnnvR1aQ==", "requires": { "@microsoft/api-extractor": "^7.18.1", "@microsoft/dynamicproto-js": "^1.1.4", @@ -19321,7 +19321,7 @@ }, "@rush-temp/applicationinsights-web-basic": { "version": "file:projects\\applicationinsights-web-basic.tgz", - "integrity": "sha512-Nocx9wCRkI/+hmzwrDfX7R1T2FvFNNC+l71VnhFco+W4nan3NQwt2Lq+M1dMo6xAFXcCVZAcyjRXO9KwApr74Q==", + "integrity": "sha512-WNGP+euHkWxs/Z1xbWDItVyUhvEVKJolL1Xr4Ey/VioBltfuQQ1prkpWiSJfP7d9hTlO3FIfaexQO6qO7/Treg==", "requires": { "@microsoft/api-extractor": "^7.18.1", "@microsoft/dynamicproto-js": "^1.1.4", diff --git a/extensions/applicationinsights-analytics-js/package.json b/extensions/applicationinsights-analytics-js/package.json index e0015885c..ee86842c1 100644 --- a/extensions/applicationinsights-analytics-js/package.json +++ b/extensions/applicationinsights-analytics-js/package.json @@ -1,6 +1,6 @@ { "name": "@microsoft/applicationinsights-analytics-js", - "version": "2.7.1", + "version": "2.7.2", "description": "Microsoft Application Insights JavaScript SDK - Web Analytics", "homepage": "https://github.com/microsoft/ApplicationInsights-JS#readme", "author": "Microsoft Application Insights Team", @@ -26,8 +26,8 @@ "@microsoft/ai-test-framework": "0.0.1", "@microsoft/applicationinsights-rollup-plugin-uglify3-js": "1.0.0", "@microsoft/applicationinsights-rollup-es3": "1.1.3", - "@microsoft/applicationinsights-properties-js": "2.7.1", - "@microsoft/applicationinsights-channel-js": "2.7.1", + "@microsoft/applicationinsights-properties-js": "2.7.2", + "@microsoft/applicationinsights-channel-js": "2.7.2", "@microsoft/api-extractor": "^7.18.1", "typescript": "^4.3.4", "tslib": "^2.0.0", @@ -53,8 +53,8 @@ "dependencies": { "@microsoft/dynamicproto-js": "^1.1.4", "@microsoft/applicationinsights-shims": "2.0.0", - "@microsoft/applicationinsights-core-js": "2.7.1", - "@microsoft/applicationinsights-common": "2.7.1" + "@microsoft/applicationinsights-core-js": "2.7.2", + "@microsoft/applicationinsights-common": "2.7.2" }, "license": "MIT" } diff --git a/extensions/applicationinsights-analytics-js/src/JavaScriptSDK/ApplicationInsights.ts b/extensions/applicationinsights-analytics-js/src/JavaScriptSDK/ApplicationInsights.ts index ccfaa914b..967a2aaa5 100644 --- a/extensions/applicationinsights-analytics-js/src/JavaScriptSDK/ApplicationInsights.ts +++ b/extensions/applicationinsights-analytics-js/src/JavaScriptSDK/ApplicationInsights.ts @@ -54,7 +54,7 @@ function _getReason(error: any) { } export class ApplicationInsights extends BaseTelemetryPlugin implements IAppInsights, IAppInsightsInternal { - public static Version = "2.7.1"; // Not currently used anywhere + public static Version = "2.7.2"; // Not currently used anywhere public static getDefaultConfig(config?: IConfig): IConfig { if (!config) { diff --git a/extensions/applicationinsights-clickanalytics-js/package.json b/extensions/applicationinsights-clickanalytics-js/package.json index c2f32ad11..fc73e949c 100644 --- a/extensions/applicationinsights-clickanalytics-js/package.json +++ b/extensions/applicationinsights-clickanalytics-js/package.json @@ -1,6 +1,6 @@ { "name": "@microsoft/applicationinsights-clickanalytics-js", - "version": "2.7.1", + "version": "2.7.2", "description": "Microsoft Application Insights Click Analytics extension", "homepage": "https://github.com/microsoft/ApplicationInsights-JS#readme", "author": "Microsoft Application Insights Team", @@ -44,9 +44,9 @@ "dependencies": { "@microsoft/dynamicproto-js": "^1.1.4", "@microsoft/applicationinsights-shims": "2.0.0", - "@microsoft/applicationinsights-core-js": "2.7.1", - "@microsoft/applicationinsights-common": "2.7.1", - "@microsoft/applicationinsights-properties-js": "2.7.1" + "@microsoft/applicationinsights-core-js": "2.7.2", + "@microsoft/applicationinsights-common": "2.7.2", + "@microsoft/applicationinsights-properties-js": "2.7.2" }, "repository": { "type": "git", diff --git a/extensions/applicationinsights-clickanalytics-js/src/ClickAnalyticsPlugin.ts b/extensions/applicationinsights-clickanalytics-js/src/ClickAnalyticsPlugin.ts index ae761dd80..6cb13c347 100644 --- a/extensions/applicationinsights-clickanalytics-js/src/ClickAnalyticsPlugin.ts +++ b/extensions/applicationinsights-clickanalytics-js/src/ClickAnalyticsPlugin.ts @@ -27,7 +27,7 @@ export { BehaviorMapValidator, BehaviorValueValidator, BehaviorEnumValidator } export class ClickAnalyticsPlugin extends BaseTelemetryPlugin { public identifier: string = "ClickAnalyticsPlugin"; public priority: number = 181; - public static Version = "2.7.1"; + public static Version = "2.7.2"; private _config: IClickAnalyticsConfiguration; private pageAction: PageAction; private _autoCaptureHandler: IAutoCaptureHandler; diff --git a/extensions/applicationinsights-debugplugin-js/package.json b/extensions/applicationinsights-debugplugin-js/package.json index 500bd30ba..f35f606aa 100644 --- a/extensions/applicationinsights-debugplugin-js/package.json +++ b/extensions/applicationinsights-debugplugin-js/package.json @@ -1,6 +1,6 @@ { "name": "@microsoft/applicationinsights-debugplugin-js", - "version": "2.7.1", + "version": "2.7.2", "description": "Microsoft Application Insights JavaScript SDK - Debug Plugin extension", "homepage": "https://github.com/microsoft/ApplicationInsights-JS#readme", "author": "Microsoft Application Insights Team", @@ -46,8 +46,8 @@ }, "dependencies": { "@microsoft/dynamicproto-js": "^1.1.4", - "@microsoft/applicationinsights-common": "2.7.1", - "@microsoft/applicationinsights-core-js": "2.7.1", + "@microsoft/applicationinsights-common": "2.7.2", + "@microsoft/applicationinsights-core-js": "2.7.2", "@microsoft/applicationinsights-shims": "2.0.0" }, "license": "MIT" diff --git a/extensions/applicationinsights-dependencies-js/package.json b/extensions/applicationinsights-dependencies-js/package.json index ff199f7d0..a76ae2a57 100644 --- a/extensions/applicationinsights-dependencies-js/package.json +++ b/extensions/applicationinsights-dependencies-js/package.json @@ -1,6 +1,6 @@ { "name": "@microsoft/applicationinsights-dependencies-js", - "version": "2.7.1", + "version": "2.7.2", "description": "Microsoft Application Insights XHR dependencies plugin", "homepage": "https://github.com/microsoft/ApplicationInsights-JS#readme", "author": "Microsoft Application Insights Team", @@ -50,8 +50,8 @@ "dependencies": { "@microsoft/dynamicproto-js": "^1.1.4", "@microsoft/applicationinsights-shims": "2.0.0", - "@microsoft/applicationinsights-core-js": "2.7.1", - "@microsoft/applicationinsights-common": "2.7.1" + "@microsoft/applicationinsights-core-js": "2.7.2", + "@microsoft/applicationinsights-common": "2.7.2" }, "license": "MIT" } diff --git a/extensions/applicationinsights-perfmarkmeasure-js/package.json b/extensions/applicationinsights-perfmarkmeasure-js/package.json index 3135abc07..ea5f7e83c 100644 --- a/extensions/applicationinsights-perfmarkmeasure-js/package.json +++ b/extensions/applicationinsights-perfmarkmeasure-js/package.json @@ -1,6 +1,6 @@ { "name": "@microsoft/applicationinsights-perfmarkmeasure-js", - "version": "2.7.1", + "version": "2.7.2", "description": "Microsoft Application Insights Performance Mark and Measure Manager plugin", "homepage": "https://github.com/microsoft/ApplicationInsights-JS#readme", "author": "Microsoft Application Insights Team", @@ -48,7 +48,7 @@ "dependencies": { "@microsoft/dynamicproto-js": "^1.1.4", "@microsoft/applicationinsights-shims": "2.0.0", - "@microsoft/applicationinsights-core-js": "2.7.1" + "@microsoft/applicationinsights-core-js": "2.7.2" }, "license": "MIT" } diff --git a/extensions/applicationinsights-properties-js/package.json b/extensions/applicationinsights-properties-js/package.json index 5074f36ec..3b61ded04 100644 --- a/extensions/applicationinsights-properties-js/package.json +++ b/extensions/applicationinsights-properties-js/package.json @@ -1,6 +1,6 @@ { "name": "@microsoft/applicationinsights-properties-js", - "version": "2.7.1", + "version": "2.7.2", "description": "Microsoft Application Insights properties (Part A) plugin", "homepage": "https://github.com/microsoft/ApplicationInsights-JS#readme", "author": "Microsoft Application Insights Team", @@ -51,8 +51,8 @@ "dependencies": { "@microsoft/dynamicproto-js": "^1.1.4", "@microsoft/applicationinsights-shims": "2.0.0", - "@microsoft/applicationinsights-core-js": "2.7.1", - "@microsoft/applicationinsights-common": "2.7.1" + "@microsoft/applicationinsights-core-js": "2.7.2", + "@microsoft/applicationinsights-common": "2.7.2" }, "license": "MIT" } diff --git a/extensions/applicationinsights-properties-js/src/Context/Internal.ts b/extensions/applicationinsights-properties-js/src/Context/Internal.ts index 19c2051d6..2e9474d09 100644 --- a/extensions/applicationinsights-properties-js/src/Context/Internal.ts +++ b/extensions/applicationinsights-properties-js/src/Context/Internal.ts @@ -4,7 +4,7 @@ import { IInternal } from "@microsoft/applicationinsights-common"; import { ITelemetryConfig } from "../Interfaces/ITelemetryConfig"; -const Version = "2.7.1"; +const Version = "2.7.2"; export class Internal implements IInternal { diff --git a/extensions/applicationinsights-react-js/package.json b/extensions/applicationinsights-react-js/package.json index 96907be54..d5dd9c1e9 100644 --- a/extensions/applicationinsights-react-js/package.json +++ b/extensions/applicationinsights-react-js/package.json @@ -1,6 +1,6 @@ { "name": "@microsoft/applicationinsights-react-js", - "version": "3.2.1", + "version": "3.2.2", "description": "Microsoft Application Insights React plugin", "main": "dist/applicationinsights-react-js.js", "module": "dist-esm/applicationinsights-react-js.js", @@ -58,8 +58,8 @@ }, "dependencies": { "@microsoft/applicationinsights-shims": "2.0.0", - "@microsoft/applicationinsights-core-js": "2.7.1", - "@microsoft/applicationinsights-common": "2.7.1", + "@microsoft/applicationinsights-core-js": "2.7.2", + "@microsoft/applicationinsights-common": "2.7.2", "@microsoft/dynamicproto-js": "^1.1.4" }, "peerDependencies": { diff --git a/extensions/applicationinsights-react-native/package.json b/extensions/applicationinsights-react-native/package.json index 5f30c779d..9d9b79aa3 100644 --- a/extensions/applicationinsights-react-native/package.json +++ b/extensions/applicationinsights-react-native/package.json @@ -1,6 +1,6 @@ { "name": "@microsoft/applicationinsights-react-native", - "version": "2.4.1", + "version": "2.4.2", "description": "Microsoft Application Insights React Native Plugin", "main": "dist-esm/index.js", "types": "types/index.d.ts", @@ -53,8 +53,8 @@ "uglify-js": "^3.11.0" }, "dependencies": { - "@microsoft/applicationinsights-common": "2.7.1", - "@microsoft/applicationinsights-core-js": "2.7.1", + "@microsoft/applicationinsights-common": "2.7.2", + "@microsoft/applicationinsights-core-js": "2.7.2", "@microsoft/applicationinsights-shims": "2.0.0", "@microsoft/dynamicproto-js": "^1.1.4" }, diff --git a/package.json b/package.json index 905fba8d2..efa6b24fd 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "@microsoft/applicationinsights-web", "description": "Microsoft Application Insights JavaScript SDK", - "version": "2.7.1", + "version": "2.7.2", "keywords": [ "browser performance monitoring", "script errors", diff --git a/shared/AppInsightsCommon/package.json b/shared/AppInsightsCommon/package.json index b02159756..fc3e7fcd5 100644 --- a/shared/AppInsightsCommon/package.json +++ b/shared/AppInsightsCommon/package.json @@ -1,6 +1,6 @@ { "name": "@microsoft/applicationinsights-common", - "version": "2.7.1", + "version": "2.7.2", "description": "Microsoft Application Insights Common JavaScript Library", "homepage": "https://github.com/microsoft/ApplicationInsights-JS#readme", "author": "Microsoft Application Insights Team", @@ -47,7 +47,7 @@ }, "dependencies": { "@microsoft/applicationinsights-shims": "2.0.0", - "@microsoft/applicationinsights-core-js": "2.7.1", + "@microsoft/applicationinsights-core-js": "2.7.2", "@microsoft/dynamicproto-js": "^1.1.4" }, "license": "MIT" diff --git a/shared/AppInsightsCore/package.json b/shared/AppInsightsCore/package.json index 2a13eabaf..33d91eb5a 100644 --- a/shared/AppInsightsCore/package.json +++ b/shared/AppInsightsCore/package.json @@ -1,7 +1,7 @@ { "name": "@microsoft/applicationinsights-core-js", "author": "Microsoft Application Insights Team", - "version": "2.7.1", + "version": "2.7.2", "description": "Microsoft Application Insights Core Javascript SDK", "homepage": "https://github.com/microsoft/ApplicationInsights-JS#readme", "keywords": [ diff --git a/tools/chrome-debug-extension/manifest.json b/tools/chrome-debug-extension/manifest.json index 90966555c..9c5083433 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.2.0", - "version_name": "0.2.0", + "version": "0.2.2", + "version_name": "0.2.2", "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 2bb1939ed..d3c9a4b4a 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.2.0", + "version": "0.2.2", "description": "A chrome based browser extension that provides a real time view of what's happening in Application Insights including what telemetry is being logged by the web application", "homepage": "https://github.com/microsoft/ApplicationInsights-JS/tree/master/tools/chrome-debug-extension#readme", "keywords": [ @@ -40,8 +40,8 @@ "license": "MIT", "sideEffects": false, "dependencies": { - "@microsoft/applicationinsights-core-js": "2.7.1", - "@microsoft/applicationinsights-common": "2.7.1", + "@microsoft/applicationinsights-core-js": "2.7.2", + "@microsoft/applicationinsights-common": "2.7.2", "@microsoft/applicationinsights-shims": "2.0.0", "@microsoft/dynamicproto-js": "^1.1.4", "file-saver": "^2.0.0", @@ -71,4 +71,4 @@ "typescript": "^4.3.4", "archiver": "^5.3.0" } -} \ No newline at end of file +} diff --git a/version.json b/version.json index a109fc33d..19bccd9b2 100644 --- a/version.json +++ b/version.json @@ -1,59 +1,63 @@ { "description": "The release value identifies the base version that will be applied via the tools/release-tools/setVersion.js", "usage": "When creating a new release you should update this value directly or via the eg. 'npm run setVersion -- 3.2.0' or 'npm run setVersion -- -patch' or 'npm run setVersion -- -minor'", - "release": "2.7.1", + "release": "2.7.2", "pkgs": { "@microsoft/applicationinsights-web": { "package": "package.json", - "release": "2.7.1" + "release": "2.7.2" }, "@microsoft/applicationinsights-web-basic": { "package": "AISKULight/package.json", - "release": "2.7.1" + "release": "2.7.2" }, "@microsoft/applicationinsights-channel-js": { "package": "channels/applicationinsights-channel-js/package.json", - "release": "2.7.1" + "release": "2.7.2" }, "@microsoft/applicationinsights-analytics-js": { "package": "extensions/applicationinsights-analytics-js/package.json", - "release": "2.7.1" + "release": "2.7.2" }, "@microsoft/applicationinsights-clickanalytics-js": { "package": "extensions/applicationinsights-clickanalytics-js/package.json", - "release": "2.7.1" + "release": "2.7.2" }, "@microsoft/applicationinsights-debugplugin-js": { "package": "extensions/applicationinsights-debugplugin-js/package.json", - "release": "2.7.1" + "release": "2.7.2" }, "@microsoft/applicationinsights-dependencies-js": { "package": "extensions/applicationinsights-dependencies-js/package.json", - "release": "2.7.1" + "release": "2.7.2" }, "@microsoft/applicationinsights-perfmarkmeasure-js": { "package": "extensions/applicationinsights-perfmarkmeasure-js/package.json", - "release": "2.7.1" + "release": "2.7.2" }, "@microsoft/applicationinsights-properties-js": { "package": "extensions/applicationinsights-properties-js/package.json", - "release": "2.7.1" + "release": "2.7.2" }, "@microsoft/applicationinsights-common": { "package": "shared/AppInsightsCommon/package.json", - "release": "2.7.1" + "release": "2.7.2" }, "@microsoft/applicationinsights-core-js": { "package": "shared/AppInsightsCore/package.json", - "release": "2.7.1" + "release": "2.7.2" }, "@microsoft/applicationinsights-react-js": { "package": "extensions/applicationinsights-react-js/package.json", - "release": "3.2.1" + "release": "3.2.2" }, "@microsoft/applicationinsights-react-native": { "package": "extensions/applicationinsights-react-native/package.json", - "release": "2.4.1" + "release": "2.4.2" + }, + "@microsoft/applicationinsights-chrome-debug-extension": { + "package": "tools/chrome-debug-extension/package.json", + "release": "0.2.1" } } }