diff --git a/AISKU/README.md b/AISKU/README.md index 6bf31ab8b..591d4628c 100644 --- a/AISKU/README.md +++ b/AISKU/README.md @@ -28,6 +28,7 @@ Refer to [our GitHub page](https://github.com/microsoft/applicationinsights-js) |---------|-----------|--------------|------------- | [<v3 beta>](https://github.com/microsoft/ApplicationInsights-JS/tree/beta/AISKU) | [![full size size](https://img.badgesize.io/https://js.monitor.azure.com/beta/ai.3-beta.js.svg?label=full%20size&color=blue)](https://img.badgesize.io/https://js.monitor.azure.com/beta/ai.3-beta.js.svg?label=full%20size&color=blue)| ![minified size size](https://img.badgesize.io/https://js.monitor.azure.com/beta/ai.3-beta.min.js.svg?label=minified%20size&color=darkorchid) | ![gzip size](https://img.badgesize.io/https://js.monitor.azure.com/beta/ai.3-beta.min.js.svg?compression=gzip&softmax=30000&max=35000) | <nightly> | [![full size size](https://img.badgesize.io/https://js.monitor.azure.com/nightly/ai.2-nightly.js.svg?label=full%20size&color=blue)](https://img.badgesize.io/https://js.monitor.azure.com/nightly/ai.2-nightly.js.svg?label=full%20size&color=blue)| ![minified size size](https://img.badgesize.io/https://js.monitor.azure.com/nightly/ai.2-nightly.min.js.svg?label=minified%20size&color=darkorchid) | ![gzip size](https://img.badgesize.io/https://js.monitor.azure.com/nightly/ai.2-nightly.min.js.svg?compression=gzip&softmax=30000&max=35000) +| 2.8.11: | [![full size size](https://img.badgesize.io/https://js.monitor.azure.com/scripts/b/ai.2.8.11.js.svg?label=full%20size&color=blue)](https://img.badgesize.io/https://js.monitor.azure.com/scripts/b/ai.2.8.11.js.svg?label=full%20size&color=blue)| ![minified size size](https://img.badgesize.io/https://js.monitor.azure.com/scripts/b/ai.2.8.11.min.js.svg?label=minified%20size&color=darkorchid) | ![gzip size](https://img.badgesize.io/https://js.monitor.azure.com/scripts/b/ai.2.8.11.min.js.svg?compression=gzip&softmax=30000&max=35000) | 2.8.10: | [![full size size](https://img.badgesize.io/https://js.monitor.azure.com/scripts/b/ai.2.8.10.js.svg?label=full%20size&color=blue)](https://img.badgesize.io/https://js.monitor.azure.com/scripts/b/ai.2.8.10.js.svg?label=full%20size&color=blue)| ![minified size size](https://img.badgesize.io/https://js.monitor.azure.com/scripts/b/ai.2.8.10.min.js.svg?label=minified%20size&color=darkorchid) | ![gzip size](https://img.badgesize.io/https://js.monitor.azure.com/scripts/b/ai.2.8.10.min.js.svg?compression=gzip&softmax=30000&max=35000) | 2.8.9: | [![full size size](https://img.badgesize.io/https://js.monitor.azure.com/scripts/b/ai.2.8.9.js.svg?label=full%20size&color=blue)](https://img.badgesize.io/https://js.monitor.azure.com/scripts/b/ai.2.8.9.js.svg?label=full%20size&color=blue)| ![minified size size](https://img.badgesize.io/https://js.monitor.azure.com/scripts/b/ai.2.8.9.min.js.svg?label=minified%20size&color=darkorchid) | ![gzip size](https://img.badgesize.io/https://js.monitor.azure.com/scripts/b/ai.2.8.9.min.js.svg?compression=gzip&softmax=30000&max=35000) | 2.8.8: | [![full size size](https://img.badgesize.io/https://js.monitor.azure.com/scripts/b/ai.2.8.8.js.svg?label=full%20size&color=blue)](https://img.badgesize.io/https://js.monitor.azure.com/scripts/b/ai.2.8.8.js.svg?label=full%20size&color=blue)| ![minified size size](https://img.badgesize.io/https://js.monitor.azure.com/scripts/b/ai.2.8.8.min.js.svg?label=minified%20size&color=darkorchid) | ![gzip size](https://img.badgesize.io/https://js.monitor.azure.com/scripts/b/ai.2.8.8.min.js.svg?compression=gzip&softmax=30000&max=35000) diff --git a/AISKU/Tests/Perf/src/AISKUPerf.ts b/AISKU/Tests/Perf/src/AISKUPerf.ts index d86fe3121..4b0a6b90f 100644 --- a/AISKU/Tests/Perf/src/AISKUPerf.ts +++ b/AISKU/Tests/Perf/src/AISKUPerf.ts @@ -19,7 +19,7 @@ export class AppInsightsInitPerfTestClass { * should update version after new release * version with doperf(): after 2.5.6 * */ - var defaultVer = "2.8.10"; + var defaultVer = "2.8.11"; 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 7ef8b3632..784ea9ee8 100644 --- a/AISKU/Tests/Unit/src/AISKUSize.Tests.ts +++ b/AISKU/Tests/Unit/src/AISKUSize.Tests.ts @@ -10,7 +10,7 @@ export class AISKUSizeCheck extends AITestClass { private readonly MAX_BUNDLE_DEFLATE_SIZE = 47; private readonly rawFilePath = "../dist/applicationinsights-web.min.js"; // Automatically updated by version scripts - private readonly currentVer = "2.8.10"; + private readonly currentVer = "2.8.11"; private readonly prodFilePath = `../browser/ai.${this.currentVer[0]}.min.js`; public testInitialize() { diff --git a/AISKU/Tests/Unit/src/CdnPackaging.tests.ts b/AISKU/Tests/Unit/src/CdnPackaging.tests.ts index 6f2702781..63d2ee17f 100644 --- a/AISKU/Tests/Unit/src/CdnPackaging.tests.ts +++ b/AISKU/Tests/Unit/src/CdnPackaging.tests.ts @@ -16,7 +16,7 @@ const enum CdnFormat { export class CdnPackagingChecks extends AITestClass { // Automatically updated by version scripts - private readonly currentVer = "2.8.10"; + private readonly currentVer = "2.8.11"; public testInitialize() { } diff --git a/AISKU/package.json b/AISKU/package.json index e0130d7ec..649275579 100644 --- a/AISKU/package.json +++ b/AISKU/package.json @@ -1,6 +1,6 @@ { "name": "@microsoft/applicationinsights-web", - "version": "2.8.10", + "version": "2.8.11", "description": "Microsoft Application Insights JavaScript SDK - Web", "homepage": "https://github.com/microsoft/ApplicationInsights-JS#readme", "author": "Microsoft Application Insights Team", @@ -68,12 +68,12 @@ "dependencies": { "@microsoft/dynamicproto-js": "^1.1.7", "@microsoft/applicationinsights-shims": "2.0.2", - "@microsoft/applicationinsights-analytics-js": "2.8.10", - "@microsoft/applicationinsights-channel-js": "2.8.10", - "@microsoft/applicationinsights-common": "2.8.10", - "@microsoft/applicationinsights-core-js": "2.8.10", - "@microsoft/applicationinsights-dependencies-js": "2.8.10", - "@microsoft/applicationinsights-properties-js": "2.8.10" + "@microsoft/applicationinsights-analytics-js": "2.8.11", + "@microsoft/applicationinsights-channel-js": "2.8.11", + "@microsoft/applicationinsights-common": "2.8.11", + "@microsoft/applicationinsights-core-js": "2.8.11", + "@microsoft/applicationinsights-dependencies-js": "2.8.11", + "@microsoft/applicationinsights-properties-js": "2.8.11" }, "license": "MIT" } diff --git a/AISKULight/package.json b/AISKULight/package.json index 8d26fc375..f5161a998 100644 --- a/AISKULight/package.json +++ b/AISKULight/package.json @@ -1,6 +1,6 @@ { "name": "@microsoft/applicationinsights-web-basic", - "version": "2.8.10", + "version": "2.8.11", "description": "Microsoft Application Insights Javascript SDK core and channel", "homepage": "https://github.com/microsoft/ApplicationInsights-JS#readme", "author": "Microsoft Application Insights Team", @@ -53,9 +53,9 @@ "dependencies": { "@microsoft/dynamicproto-js": "^1.1.7", "@microsoft/applicationinsights-shims": "2.0.2", - "@microsoft/applicationinsights-common": "2.8.10", - "@microsoft/applicationinsights-channel-js": "2.8.10", - "@microsoft/applicationinsights-core-js": "2.8.10" + "@microsoft/applicationinsights-common": "2.8.11", + "@microsoft/applicationinsights-channel-js": "2.8.11", + "@microsoft/applicationinsights-core-js": "2.8.11" }, "license": "MIT" } diff --git a/RELEASES.md b/RELEASES.md index 2e00efcd4..a59c7b098 100644 --- a/RELEASES.md +++ b/RELEASES.md @@ -2,6 +2,22 @@ > Note: ES3/IE8 compatibility will be removed in the future v3.x.x releases (scheduled for mid-late 2022), so if you need to retain ES3 compatibility you will need to remain on the 2.x.x versions of the SDK or your runtime will need install polyfill's to your ES3 environment before loading / initializing the SDK. +## 2.8.11 (Mar 8th, 2023) + +## Changelog + +- #1996 [BUG] SharedWorker does not Instrument fetch correctly +- #1995 [BUG] App Insights not auto-capturing from a Web Worker + - Stops logging that workers can emit the PageView Performance event +- #1792 [BUG] Documentation should clarify that node apps should use applicationinsights, not this package +- #1794 [BUG] link on AISKULight goes to not found page +- #1990 Field 'assembly' on type 'StackFrame' is too long. Expected: 1024 characters [BUG] +- Update documentation and tests to replace `instrumentationKey` usage with `connectionString` + - #1997 Change Readme + - #1999 Add snippet connection string tests +- #1991 Internal Task 17133116: Add Policheck exclusion file +- #1989 [AI][Task]17099792: Add sample and doc to dependency plugin + ## 2.8.10 (Feb 6th, 2023) ### Changelog diff --git a/channels/applicationinsights-channel-js/Tests/Unit/src/Sender.tests.ts b/channels/applicationinsights-channel-js/Tests/Unit/src/Sender.tests.ts index f20db9e23..b0dddbf99 100644 --- a/channels/applicationinsights-channel-js/Tests/Unit/src/Sender.tests.ts +++ b/channels/applicationinsights-channel-js/Tests/Unit/src/Sender.tests.ts @@ -724,7 +724,7 @@ export class SenderTests extends AITestClass { QUnit.assert.ok(baseData.ver); QUnit.assert.equal(2, baseData.ver); - QUnit.assert.equal("javascript:2.8.10", appInsightsEnvelope.tags["ai.internal.sdkVersion"]); + QUnit.assert.equal("javascript:2.8.11", appInsightsEnvelope.tags["ai.internal.sdkVersion"]); } }) diff --git a/channels/applicationinsights-channel-js/package.json b/channels/applicationinsights-channel-js/package.json index 8488d12d5..60140f599 100644 --- a/channels/applicationinsights-channel-js/package.json +++ b/channels/applicationinsights-channel-js/package.json @@ -1,6 +1,6 @@ { "name": "@microsoft/applicationinsights-channel-js", - "version": "2.8.10", + "version": "2.8.11", "description": "Microsoft Application Insights JavaScript SDK Channel", "homepage": "https://github.com/microsoft/ApplicationInsights-JS#readme", "author": "Microsoft Application Insights Team", @@ -50,8 +50,8 @@ "dependencies": { "@microsoft/dynamicproto-js": "^1.1.7", "@microsoft/applicationinsights-shims": "2.0.2", - "@microsoft/applicationinsights-core-js": "2.8.10", - "@microsoft/applicationinsights-common": "2.8.10" + "@microsoft/applicationinsights-core-js": "2.8.11", + "@microsoft/applicationinsights-common": "2.8.11" }, "license": "MIT" } diff --git a/common/config/rush/npm-shrinkwrap.json b/common/config/rush/npm-shrinkwrap.json index c45874a82..07931167f 100644 --- a/common/config/rush/npm-shrinkwrap.json +++ b/common/config/rush/npm-shrinkwrap.json @@ -355,9 +355,9 @@ } }, "node_modules/@nevware21/ts-utils": { - "version": "0.8.0", - "resolved": "https://registry.npmjs.org/@nevware21/ts-utils/-/ts-utils-0.8.0.tgz", - "integrity": "sha512-MKDEZakdmPT0flCbgYSkXzVrmwqOGTBCmK7AkxvxuOedsekHKPyqUYX2WTKu9SjfnlsNX1DqjTNWcLy8h8g0Xg==", + "version": "0.8.1", + "resolved": "https://registry.npmjs.org/@nevware21/ts-utils/-/ts-utils-0.8.1.tgz", + "integrity": "sha512-PqXolj9HaTP33hS1gKhLhBZXiyrTl1jmWL39iiKQMoKEeItnEmWQnTpJRQa1pSCu91MzLxeS+sJotkiPiaKPKw==", "peerDependencies": { "typescript": ">=1" } @@ -493,7 +493,7 @@ "node_modules/@rush-temp/applicationinsights-analytics-js": { "version": "0.0.0", "resolved": "file:projects/applicationinsights-analytics-js.tgz", - "integrity": "sha512-Mo3m/gkiGzANRsMhP7+KWpoQ4bZHQlypNQ8IwdPk2eUiKhSSW35kD/wxozgMiqk9uTUAmjGbpKw4CoJMWNNf2w==", + "integrity": "sha512-c0KBIuoWxnYWCvBOddGiXDaIvT5fgRd0k7VXrVfMmL5YvyxhaxruPkrHrMqug4YkN73FqKnyJMw37jUqUUNo4Q==", "dependencies": { "@microsoft/api-extractor": "^7.18.1", "@microsoft/dynamicproto-js": "^1.1.7", @@ -519,7 +519,7 @@ "node_modules/@rush-temp/applicationinsights-channel-js": { "version": "0.0.0", "resolved": "file:projects/applicationinsights-channel-js.tgz", - "integrity": "sha512-gZscVracnqDAkZ+6+4KiLzyHoZd4+AZns9CJf5M9kqTs5lpRHmteoEgaSyaIw6PlTADtLu7cNvOUInd0qh1FUw==", + "integrity": "sha512-iFuXK1S10XwfOyvewEIruZtvVhRkESkV32h40i08ybq6xlZ7agKMVwrRyclF2zHtF1y1jiQkg7f1dMSjDPFwGQ==", "dependencies": { "@microsoft/api-extractor": "^7.18.1", "@microsoft/dynamicproto-js": "^1.1.7", @@ -543,7 +543,7 @@ "node_modules/@rush-temp/applicationinsights-chrome-debug-extension": { "version": "0.0.0", "resolved": "file:projects/applicationinsights-chrome-debug-extension.tgz", - "integrity": "sha512-5IXW+eWhyn+vSfK9oPB+J/i4PpgJ6aaQn8hTiC4YmJB/GWvFZlOAZyG4cY0nV3f6ciYWYCsPhJzNCWqomG3AnA==", + "integrity": "sha512-crMHBPZSpKaDr/RimQls8H6RAgmxvECZf6VsEkh8Q4PNOL1VBuIw1xMxXYRdj8haw91Q9dY/tj4g8XOnltwePg==", "dependencies": { "@microsoft/dynamicproto-js": "^1.1.7", "@nevware21/grunt-eslint-ts": "^0.2.2", @@ -576,7 +576,7 @@ "node_modules/@rush-temp/applicationinsights-clickanalytics-js": { "version": "0.0.0", "resolved": "file:projects/applicationinsights-clickanalytics-js.tgz", - "integrity": "sha512-L86U+aBF1IR/HGRgHfwjSuRT/sazY9Eyle3dXYuZjtSiSLAbfGmtiZNtgo4dXPxK4suPndV3GuK+brq6fzkuwA==", + "integrity": "sha512-AQ7q0QfLUDo2hfut8e/saTmOOsPWwLaaDkdn/JUyhGIjHs9t3Y2K/SLrVcXYC03vABuB7majJUrtuDqA5updpQ==", "dependencies": { "@microsoft/api-extractor": "^7.18.1", "@microsoft/dynamicproto-js": "^1.1.7", @@ -599,7 +599,7 @@ "node_modules/@rush-temp/applicationinsights-common": { "version": "0.0.0", "resolved": "file:projects/applicationinsights-common.tgz", - "integrity": "sha512-mv5AUbbMbnPsDOknF7pJN/K8wmnbEfvEO9Ae1LwkIHW/dXyQH86JWV5ksN4fZzFOHD7nB6PRfRxsJMZuCpEs1Q==", + "integrity": "sha512-SYgn67E+BXkYmedD8opai86YxoRbF68dWW0zdfJ16vv1Bpc0Hm044dT/prwIXPoudFXb6u3/RViZRj4vPl7qxQ==", "dependencies": { "@microsoft/api-extractor": "^7.18.1", "@microsoft/dynamicproto-js": "^1.1.7", @@ -649,7 +649,7 @@ "node_modules/@rush-temp/applicationinsights-debugplugin-js": { "version": "0.0.0", "resolved": "file:projects/applicationinsights-debugplugin-js.tgz", - "integrity": "sha512-b8HTJxXNf2KMYTYTtyUNFHgiAQCFo+aIpIDv6t0tM6rPkAa1c6UFXpy8yLNkVcoEOqknM7+0WDYGkADhr901zw==", + "integrity": "sha512-UBNJGq6QILiaO9db/qqJhLqrql/Tkds3UTDKc+uB/AbnjJocqpp18eWuOI4D63kbhi0GWX3QdbckIVgrmwGZDw==", "dependencies": { "@microsoft/api-extractor": "^7.18.1", "@microsoft/dynamicproto-js": "^1.1.7", @@ -672,7 +672,7 @@ "node_modules/@rush-temp/applicationinsights-dependencies-js": { "version": "0.0.0", "resolved": "file:projects/applicationinsights-dependencies-js.tgz", - "integrity": "sha512-kOthYVn830b5vfwF4/7xARvTJk0Ypf7wMO8XYbWZO4g1IhjKoiEr3EqvRSqc0idcui6PxouhahTcWK/r47EXeA==", + "integrity": "sha512-EEzWoF79oEmfEihFXJgP6W0CwlijpZfOUXGnB9ljxVlHnLEXrqQYrN8Dpc8xKVajJJMD+wX50P8IdFmJrIRsng==", "dependencies": { "@microsoft/api-extractor": "^7.18.1", "@microsoft/dynamicproto-js": "^1.1.7", @@ -698,7 +698,7 @@ "node_modules/@rush-temp/applicationinsights-example-aisku": { "version": "0.0.0", "resolved": "file:projects/applicationinsights-example-aisku.tgz", - "integrity": "sha512-NKyLLswyBdbbBDSg6EVg9SmAkqelnNxUpZB8QQD2Lzw/SAmbEkAxscC18qJj6M9oug5MToNWwt5u8+NZBcCcPw==", + "integrity": "sha512-xTdGof1kGlG0uowMcEX7PN2Gqpk4Htl+lbdNs4D1MTDUCoNy8imITSNzkoiWEW6RT69W2gD7jQf/yV45LsmJBA==", "dependencies": { "@microsoft/dynamicproto-js": "^1.1.7", "@rollup/plugin-commonjs": "^18.0.0", @@ -715,7 +715,7 @@ "node_modules/@rush-temp/applicationinsights-example-dependencies": { "version": "0.0.0", "resolved": "file:projects/applicationinsights-example-dependencies.tgz", - "integrity": "sha512-CgGUBftKLCSJ4wgb5zFZVIPjIzjSOSc1QuXGn7VxZV7o/tRtQ6Jz7RYwviR/IRgI/cMjUmrOwVrBg7IxA1sFeQ==", + "integrity": "sha512-GpzkZmiyRUl+mUISh9fT53vIsYzRHRSDMMbjsoDdh4BIztjE5mi/pNmBjSli3f3wbeLRLiK0wvurWb2pugJI/A==", "dependencies": { "@microsoft/dynamicproto-js": "^1.1.7", "@rollup/plugin-commonjs": "^18.0.0", @@ -732,7 +732,7 @@ "node_modules/@rush-temp/applicationinsights-example-shared-worker": { "version": "0.0.0", "resolved": "file:projects/applicationinsights-example-shared-worker.tgz", - "integrity": "sha512-o1I1cJXIk3Fpt5WZ172SZfSZu1glVFqtR9Iz5I+KqCSwpil+KfJk+/rPGg6tNIfi2glHlqHigsS350k4bPGJ2Q==", + "integrity": "sha512-dxUXmN04mhYish2ppAIk9rrYq5FOwnpKwGU9NxRAjEHn+h+GZ9VF5r+hNXWrQg/AuFXzzjXEmnQmvFQsNCDvpQ==", "dependencies": { "@microsoft/dynamicproto-js": "^1.1.7", "@nevware21/grunt-eslint-ts": "^0.2.2", @@ -767,7 +767,7 @@ "node_modules/@rush-temp/applicationinsights-perfmarkmeasure-js": { "version": "0.0.0", "resolved": "file:projects/applicationinsights-perfmarkmeasure-js.tgz", - "integrity": "sha512-cIMaCtGax0d+2m5YHrkZt5NZcDRQGCpexAgHoOvYoMvpJ4ph5zlVT1TPKz9WqRAdWybtDO8Ya3we9IJv7YbCFA==", + "integrity": "sha512-cjZtBApLXGvYl9gc7XZCx1i1w0kFNC3x44sKakOvWWqcDwEx2Ve+hnTGvjNjIwWe3R7wb/PzbOM8UDg2Rbl+Ig==", "dependencies": { "@microsoft/api-extractor": "^7.18.1", "@microsoft/dynamicproto-js": "^1.1.7", @@ -790,7 +790,7 @@ "node_modules/@rush-temp/applicationinsights-properties-js": { "version": "0.0.0", "resolved": "file:projects/applicationinsights-properties-js.tgz", - "integrity": "sha512-JafaMLTNhM5B8jjwOSyYPBO6sZjUXhh2UZbt4h/237fIHW0ce63fP0wAsn8dbptcr1q+Yi/qXrTaAy09bImDuA==", + "integrity": "sha512-rfx6bazr+SfjxxpHDXafjU7tEI+808bXkjCKUGU+w0ckjma3DHit77apVo0JhqkIM8oGrtEhNNSZwA8zLRFwZA==", "dependencies": { "@microsoft/api-extractor": "^7.18.1", "@microsoft/dynamicproto-js": "^1.1.7", @@ -877,7 +877,7 @@ "node_modules/@rush-temp/applicationinsights-web": { "version": "0.0.0", "resolved": "file:projects/applicationinsights-web.tgz", - "integrity": "sha512-cD5xi4tfwURknqH3XFUQvuXAgkq06NtRbt0zFw2GdC3rxBRgsbvPz8okbRxhE+nCC/HTcinLATw+2S87821hlw==", + "integrity": "sha512-I+ia2Fx8sjO8g3d3w9GiLJD+76wwFNJ/Wgn8f7d50VuqnRZLD6+DaL5cTbUziFvO3s4Yd/NwDHJmYJ5d5+DmrA==", "dependencies": { "@microsoft/api-extractor": "^7.18.1", "@microsoft/dynamicproto-js": "^1.1.7", @@ -905,7 +905,7 @@ "node_modules/@rush-temp/applicationinsights-web-basic": { "version": "0.0.0", "resolved": "file:projects/applicationinsights-web-basic.tgz", - "integrity": "sha512-Zg/tAsFfYL0Q9QfIsfNMz82uTdAsupSKhoHkd3in6iR1FihTTrRfcG/EF3LY0kCnsSi/P3pxUtoYtOrVwQoGvA==", + "integrity": "sha512-ty/E6WYr4gO3bZIrZTwJSfD8kKiijZmtqoumk2x4wA6EplH3Y46iMn71ta5fHG+7mYLyXjcMX3rAHmDAgpaQnw==", "dependencies": { "@microsoft/api-extractor": "^7.18.1", "@microsoft/dynamicproto-js": "^1.1.7", @@ -1221,14 +1221,14 @@ } }, "node_modules/@typescript-eslint/eslint-plugin": { - "version": "5.54.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.54.0.tgz", - "integrity": "sha512-+hSN9BdSr629RF02d7mMtXhAJvDTyCbprNYJKrXETlul/Aml6YZwd90XioVbjejQeHbb3R8Dg0CkRgoJDxo8aw==", + "version": "5.54.1", + "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.54.1.tgz", + "integrity": "sha512-a2RQAkosH3d3ZIV08s3DcL/mcGc2M/UC528VkPULFxR9VnVPT8pBu0IyBAJJmVsCmhVfwQX1v6q+QGnmSe1bew==", "peer": true, "dependencies": { - "@typescript-eslint/scope-manager": "5.54.0", - "@typescript-eslint/type-utils": "5.54.0", - "@typescript-eslint/utils": "5.54.0", + "@typescript-eslint/scope-manager": "5.54.1", + "@typescript-eslint/type-utils": "5.54.1", + "@typescript-eslint/utils": "5.54.1", "debug": "^4.3.4", "grapheme-splitter": "^1.0.4", "ignore": "^5.2.0", @@ -1255,14 +1255,14 @@ } }, "node_modules/@typescript-eslint/parser": { - "version": "5.54.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-5.54.0.tgz", - "integrity": "sha512-aAVL3Mu2qTi+h/r04WI/5PfNWvO6pdhpeMRWk9R7rEV4mwJNzoWf5CCU5vDKBsPIFQFjEq1xg7XBI2rjiMXQbQ==", + "version": "5.54.1", + "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-5.54.1.tgz", + "integrity": "sha512-8zaIXJp/nG9Ff9vQNh7TI+C3nA6q6iIsGJ4B4L6MhZ7mHnTMR4YP5vp2xydmFXIy8rpyIVbNAG44871LMt6ujg==", "peer": true, "dependencies": { - "@typescript-eslint/scope-manager": "5.54.0", - "@typescript-eslint/types": "5.54.0", - "@typescript-eslint/typescript-estree": "5.54.0", + "@typescript-eslint/scope-manager": "5.54.1", + "@typescript-eslint/types": "5.54.1", + "@typescript-eslint/typescript-estree": "5.54.1", "debug": "^4.3.4" }, "engines": { @@ -1282,13 +1282,13 @@ } }, "node_modules/@typescript-eslint/scope-manager": { - "version": "5.54.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-5.54.0.tgz", - "integrity": "sha512-VTPYNZ7vaWtYna9M4oD42zENOBrb+ZYyCNdFs949GcN8Miwn37b8b7eMj+EZaq7VK9fx0Jd+JhmkhjFhvnovhg==", + "version": "5.54.1", + "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-5.54.1.tgz", + "integrity": "sha512-zWKuGliXxvuxyM71UA/EcPxaviw39dB2504LqAmFDjmkpO8qNLHcmzlh6pbHs1h/7YQ9bnsO8CCcYCSA8sykUg==", "peer": true, "dependencies": { - "@typescript-eslint/types": "5.54.0", - "@typescript-eslint/visitor-keys": "5.54.0" + "@typescript-eslint/types": "5.54.1", + "@typescript-eslint/visitor-keys": "5.54.1" }, "engines": { "node": "^12.22.0 || ^14.17.0 || >=16.0.0" @@ -1299,13 +1299,13 @@ } }, "node_modules/@typescript-eslint/type-utils": { - "version": "5.54.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-5.54.0.tgz", - "integrity": "sha512-WI+WMJ8+oS+LyflqsD4nlXMsVdzTMYTxl16myXPaCXnSgc7LWwMsjxQFZCK/rVmTZ3FN71Ct78ehO9bRC7erYQ==", + "version": "5.54.1", + "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-5.54.1.tgz", + "integrity": "sha512-WREHsTz0GqVYLIbzIZYbmUUr95DKEKIXZNH57W3s+4bVnuF1TKe2jH8ZNH8rO1CeMY3U4j4UQeqPNkHMiGem3g==", "peer": true, "dependencies": { - "@typescript-eslint/typescript-estree": "5.54.0", - "@typescript-eslint/utils": "5.54.0", + "@typescript-eslint/typescript-estree": "5.54.1", + "@typescript-eslint/utils": "5.54.1", "debug": "^4.3.4", "tsutils": "^3.21.0" }, @@ -1326,9 +1326,9 @@ } }, "node_modules/@typescript-eslint/types": { - "version": "5.54.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.54.0.tgz", - "integrity": "sha512-nExy+fDCBEgqblasfeE3aQ3NuafBUxZxgxXcYfzYRZFHdVvk5q60KhCSkG0noHgHRo/xQ/BOzURLZAafFpTkmQ==", + "version": "5.54.1", + "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.54.1.tgz", + "integrity": "sha512-G9+1vVazrfAfbtmCapJX8jRo2E4MDXxgm/IMOF4oGh3kq7XuK3JRkOg6y2Qu1VsTRmWETyTkWt1wxy7X7/yLkw==", "peer": true, "engines": { "node": "^12.22.0 || ^14.17.0 || >=16.0.0" @@ -1339,13 +1339,13 @@ } }, "node_modules/@typescript-eslint/typescript-estree": { - "version": "5.54.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.54.0.tgz", - "integrity": "sha512-X2rJG97Wj/VRo5YxJ8Qx26Zqf0RRKsVHd4sav8NElhbZzhpBI8jU54i6hfo9eheumj4oO4dcRN1B/zIVEqR/MQ==", + "version": "5.54.1", + "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.54.1.tgz", + "integrity": "sha512-bjK5t+S6ffHnVwA0qRPTZrxKSaFYocwFIkZx5k7pvWfsB1I57pO/0M0Skatzzw1sCkjJ83AfGTL0oFIFiDX3bg==", "peer": true, "dependencies": { - "@typescript-eslint/types": "5.54.0", - "@typescript-eslint/visitor-keys": "5.54.0", + "@typescript-eslint/types": "5.54.1", + "@typescript-eslint/visitor-keys": "5.54.1", "debug": "^4.3.4", "globby": "^11.1.0", "is-glob": "^4.0.3", @@ -1366,16 +1366,16 @@ } }, "node_modules/@typescript-eslint/utils": { - "version": "5.54.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-5.54.0.tgz", - "integrity": "sha512-cuwm8D/Z/7AuyAeJ+T0r4WZmlnlxQ8wt7C7fLpFlKMR+dY6QO79Cq1WpJhvZbMA4ZeZGHiRWnht7ZJ8qkdAunw==", + "version": "5.54.1", + "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-5.54.1.tgz", + "integrity": "sha512-IY5dyQM8XD1zfDe5X8jegX6r2EVU5o/WJnLu/znLPWCBF7KNGC+adacXnt5jEYS9JixDcoccI6CvE4RCjHMzCQ==", "peer": true, "dependencies": { "@types/json-schema": "^7.0.9", "@types/semver": "^7.3.12", - "@typescript-eslint/scope-manager": "5.54.0", - "@typescript-eslint/types": "5.54.0", - "@typescript-eslint/typescript-estree": "5.54.0", + "@typescript-eslint/scope-manager": "5.54.1", + "@typescript-eslint/types": "5.54.1", + "@typescript-eslint/typescript-estree": "5.54.1", "eslint-scope": "^5.1.1", "eslint-utils": "^3.0.0", "semver": "^7.3.7" @@ -1392,12 +1392,12 @@ } }, "node_modules/@typescript-eslint/visitor-keys": { - "version": "5.54.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.54.0.tgz", - "integrity": "sha512-xu4wT7aRCakGINTLGeyGqDn+78BwFlggwBjnHa1ar/KaGagnmwLYmlrXIrgAaQ3AE1Vd6nLfKASm7LrFHNbKGA==", + "version": "5.54.1", + "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.54.1.tgz", + "integrity": "sha512-q8iSoHTgwCfgcRJ2l2x+xCbu8nBlRAlsQ33k24Adj8eoVBE0f8dUeI+bAa8F84Mv05UGbAx57g2zrRsYIooqQg==", "peer": true, "dependencies": { - "@typescript-eslint/types": "5.54.0", + "@typescript-eslint/types": "5.54.1", "eslint-visitor-keys": "^3.3.0" }, "engines": { @@ -1786,9 +1786,9 @@ } }, "node_modules/caniuse-lite": { - "version": "1.0.30001458", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001458.tgz", - "integrity": "sha512-lQ1VlUUq5q9ro9X+5gOEyH7i3vm+AYVT1WDCVB69XOZ17KZRhnZ9J0Sqz7wTHQaLBJccNCHq8/Ww5LlOIZbB0w==", + "version": "1.0.30001462", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001462.tgz", + "integrity": "sha512-PDd20WuOBPiasZ7KbFnmQRyuLE7cFXW2PVd7dmALzbkUXEP46upAuCDm9eY9vho8fgNMGmbAX92QBZHzcnWIqw==", "funding": [ { "type": "opencollective", @@ -2144,9 +2144,9 @@ "integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==" }, "node_modules/electron-to-chromium": { - "version": "1.4.315", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.315.tgz", - "integrity": "sha512-ndBQYz3Eyy3rASjjQ9poMJGoAlsZ/aZnq6GBsGL4w/4sWIAwiUHVSsMuADbxa8WJw7pZ0oxLpGbtoDt4vRTdCg==" + "version": "1.4.323", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.323.tgz", + "integrity": "sha512-+a0hMEQxE8u1F1vOHcE0M18kQ2+4AwOXdRrU4avZ1LeR/sa9WAallYE3uES/PNcEGt/wCFcOgWcArSLx5C+WNQ==" }, "node_modules/encodeurl": { "version": "1.0.2", @@ -2368,9 +2368,9 @@ } }, "node_modules/esquery": { - "version": "1.4.2", - "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.4.2.tgz", - "integrity": "sha512-JVSoLdTlTDkmjFmab7H/9SL9qGSyjElT3myyKp7krqjVFQCDLmj1QFaCLRFBszBKI0XVZaiiXvuPIX3ZwHe1Ng==", + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.5.0.tgz", + "integrity": "sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==", "peer": true, "dependencies": { "estraverse": "^5.1.0" @@ -5708,9 +5708,9 @@ } }, "@nevware21/ts-utils": { - "version": "0.8.0", - "resolved": "https://registry.npmjs.org/@nevware21/ts-utils/-/ts-utils-0.8.0.tgz", - "integrity": "sha512-MKDEZakdmPT0flCbgYSkXzVrmwqOGTBCmK7AkxvxuOedsekHKPyqUYX2WTKu9SjfnlsNX1DqjTNWcLy8h8g0Xg==", + "version": "0.8.1", + "resolved": "https://registry.npmjs.org/@nevware21/ts-utils/-/ts-utils-0.8.1.tgz", + "integrity": "sha512-PqXolj9HaTP33hS1gKhLhBZXiyrTl1jmWL39iiKQMoKEeItnEmWQnTpJRQa1pSCu91MzLxeS+sJotkiPiaKPKw==", "requires": {} }, "@nodelib/fs.scandir": { @@ -5814,7 +5814,7 @@ }, "@rush-temp/applicationinsights-analytics-js": { "version": "file:projects\\applicationinsights-analytics-js.tgz", - "integrity": "sha512-Mo3m/gkiGzANRsMhP7+KWpoQ4bZHQlypNQ8IwdPk2eUiKhSSW35kD/wxozgMiqk9uTUAmjGbpKw4CoJMWNNf2w==", + "integrity": "sha512-c0KBIuoWxnYWCvBOddGiXDaIvT5fgRd0k7VXrVfMmL5YvyxhaxruPkrHrMqug4YkN73FqKnyJMw37jUqUUNo4Q==", "requires": { "@microsoft/api-extractor": "^7.18.1", "@microsoft/dynamicproto-js": "^1.1.7", @@ -5839,7 +5839,7 @@ }, "@rush-temp/applicationinsights-channel-js": { "version": "file:projects\\applicationinsights-channel-js.tgz", - "integrity": "sha512-gZscVracnqDAkZ+6+4KiLzyHoZd4+AZns9CJf5M9kqTs5lpRHmteoEgaSyaIw6PlTADtLu7cNvOUInd0qh1FUw==", + "integrity": "sha512-iFuXK1S10XwfOyvewEIruZtvVhRkESkV32h40i08ybq6xlZ7agKMVwrRyclF2zHtF1y1jiQkg7f1dMSjDPFwGQ==", "requires": { "@microsoft/api-extractor": "^7.18.1", "@microsoft/dynamicproto-js": "^1.1.7", @@ -5862,7 +5862,7 @@ }, "@rush-temp/applicationinsights-chrome-debug-extension": { "version": "file:projects\\applicationinsights-chrome-debug-extension.tgz", - "integrity": "sha512-5IXW+eWhyn+vSfK9oPB+J/i4PpgJ6aaQn8hTiC4YmJB/GWvFZlOAZyG4cY0nV3f6ciYWYCsPhJzNCWqomG3AnA==", + "integrity": "sha512-crMHBPZSpKaDr/RimQls8H6RAgmxvECZf6VsEkh8Q4PNOL1VBuIw1xMxXYRdj8haw91Q9dY/tj4g8XOnltwePg==", "requires": { "@microsoft/dynamicproto-js": "^1.1.7", "@nevware21/grunt-eslint-ts": "^0.2.2", @@ -5894,7 +5894,7 @@ }, "@rush-temp/applicationinsights-clickanalytics-js": { "version": "file:projects\\applicationinsights-clickanalytics-js.tgz", - "integrity": "sha512-L86U+aBF1IR/HGRgHfwjSuRT/sazY9Eyle3dXYuZjtSiSLAbfGmtiZNtgo4dXPxK4suPndV3GuK+brq6fzkuwA==", + "integrity": "sha512-AQ7q0QfLUDo2hfut8e/saTmOOsPWwLaaDkdn/JUyhGIjHs9t3Y2K/SLrVcXYC03vABuB7majJUrtuDqA5updpQ==", "requires": { "@microsoft/api-extractor": "^7.18.1", "@microsoft/dynamicproto-js": "^1.1.7", @@ -5916,7 +5916,7 @@ }, "@rush-temp/applicationinsights-common": { "version": "file:projects\\applicationinsights-common.tgz", - "integrity": "sha512-mv5AUbbMbnPsDOknF7pJN/K8wmnbEfvEO9Ae1LwkIHW/dXyQH86JWV5ksN4fZzFOHD7nB6PRfRxsJMZuCpEs1Q==", + "integrity": "sha512-SYgn67E+BXkYmedD8opai86YxoRbF68dWW0zdfJ16vv1Bpc0Hm044dT/prwIXPoudFXb6u3/RViZRj4vPl7qxQ==", "requires": { "@microsoft/api-extractor": "^7.18.1", "@microsoft/dynamicproto-js": "^1.1.7", @@ -5964,7 +5964,7 @@ }, "@rush-temp/applicationinsights-debugplugin-js": { "version": "file:projects\\applicationinsights-debugplugin-js.tgz", - "integrity": "sha512-b8HTJxXNf2KMYTYTtyUNFHgiAQCFo+aIpIDv6t0tM6rPkAa1c6UFXpy8yLNkVcoEOqknM7+0WDYGkADhr901zw==", + "integrity": "sha512-UBNJGq6QILiaO9db/qqJhLqrql/Tkds3UTDKc+uB/AbnjJocqpp18eWuOI4D63kbhi0GWX3QdbckIVgrmwGZDw==", "requires": { "@microsoft/api-extractor": "^7.18.1", "@microsoft/dynamicproto-js": "^1.1.7", @@ -5986,7 +5986,7 @@ }, "@rush-temp/applicationinsights-dependencies-js": { "version": "file:projects\\applicationinsights-dependencies-js.tgz", - "integrity": "sha512-kOthYVn830b5vfwF4/7xARvTJk0Ypf7wMO8XYbWZO4g1IhjKoiEr3EqvRSqc0idcui6PxouhahTcWK/r47EXeA==", + "integrity": "sha512-EEzWoF79oEmfEihFXJgP6W0CwlijpZfOUXGnB9ljxVlHnLEXrqQYrN8Dpc8xKVajJJMD+wX50P8IdFmJrIRsng==", "requires": { "@microsoft/api-extractor": "^7.18.1", "@microsoft/dynamicproto-js": "^1.1.7", @@ -6011,7 +6011,7 @@ }, "@rush-temp/applicationinsights-example-aisku": { "version": "file:projects\\applicationinsights-example-aisku.tgz", - "integrity": "sha512-NKyLLswyBdbbBDSg6EVg9SmAkqelnNxUpZB8QQD2Lzw/SAmbEkAxscC18qJj6M9oug5MToNWwt5u8+NZBcCcPw==", + "integrity": "sha512-xTdGof1kGlG0uowMcEX7PN2Gqpk4Htl+lbdNs4D1MTDUCoNy8imITSNzkoiWEW6RT69W2gD7jQf/yV45LsmJBA==", "requires": { "@microsoft/dynamicproto-js": "^1.1.7", "@rollup/plugin-commonjs": "^18.0.0", @@ -6027,7 +6027,7 @@ }, "@rush-temp/applicationinsights-example-dependencies": { "version": "file:projects\\applicationinsights-example-dependencies.tgz", - "integrity": "sha512-CgGUBftKLCSJ4wgb5zFZVIPjIzjSOSc1QuXGn7VxZV7o/tRtQ6Jz7RYwviR/IRgI/cMjUmrOwVrBg7IxA1sFeQ==", + "integrity": "sha512-GpzkZmiyRUl+mUISh9fT53vIsYzRHRSDMMbjsoDdh4BIztjE5mi/pNmBjSli3f3wbeLRLiK0wvurWb2pugJI/A==", "requires": { "@microsoft/dynamicproto-js": "^1.1.7", "@rollup/plugin-commonjs": "^18.0.0", @@ -6043,7 +6043,7 @@ }, "@rush-temp/applicationinsights-example-shared-worker": { "version": "file:projects\\applicationinsights-example-shared-worker.tgz", - "integrity": "sha512-o1I1cJXIk3Fpt5WZ172SZfSZu1glVFqtR9Iz5I+KqCSwpil+KfJk+/rPGg6tNIfi2glHlqHigsS350k4bPGJ2Q==", + "integrity": "sha512-dxUXmN04mhYish2ppAIk9rrYq5FOwnpKwGU9NxRAjEHn+h+GZ9VF5r+hNXWrQg/AuFXzzjXEmnQmvFQsNCDvpQ==", "requires": { "@microsoft/dynamicproto-js": "^1.1.7", "@nevware21/grunt-eslint-ts": "^0.2.2", @@ -6076,7 +6076,7 @@ }, "@rush-temp/applicationinsights-perfmarkmeasure-js": { "version": "file:projects\\applicationinsights-perfmarkmeasure-js.tgz", - "integrity": "sha512-cIMaCtGax0d+2m5YHrkZt5NZcDRQGCpexAgHoOvYoMvpJ4ph5zlVT1TPKz9WqRAdWybtDO8Ya3we9IJv7YbCFA==", + "integrity": "sha512-cjZtBApLXGvYl9gc7XZCx1i1w0kFNC3x44sKakOvWWqcDwEx2Ve+hnTGvjNjIwWe3R7wb/PzbOM8UDg2Rbl+Ig==", "requires": { "@microsoft/api-extractor": "^7.18.1", "@microsoft/dynamicproto-js": "^1.1.7", @@ -6098,7 +6098,7 @@ }, "@rush-temp/applicationinsights-properties-js": { "version": "file:projects\\applicationinsights-properties-js.tgz", - "integrity": "sha512-JafaMLTNhM5B8jjwOSyYPBO6sZjUXhh2UZbt4h/237fIHW0ce63fP0wAsn8dbptcr1q+Yi/qXrTaAy09bImDuA==", + "integrity": "sha512-rfx6bazr+SfjxxpHDXafjU7tEI+808bXkjCKUGU+w0ckjma3DHit77apVo0JhqkIM8oGrtEhNNSZwA8zLRFwZA==", "requires": { "@microsoft/api-extractor": "^7.18.1", "@microsoft/dynamicproto-js": "^1.1.7", @@ -6181,7 +6181,7 @@ }, "@rush-temp/applicationinsights-web": { "version": "file:projects\\applicationinsights-web.tgz", - "integrity": "sha512-cD5xi4tfwURknqH3XFUQvuXAgkq06NtRbt0zFw2GdC3rxBRgsbvPz8okbRxhE+nCC/HTcinLATw+2S87821hlw==", + "integrity": "sha512-I+ia2Fx8sjO8g3d3w9GiLJD+76wwFNJ/Wgn8f7d50VuqnRZLD6+DaL5cTbUziFvO3s4Yd/NwDHJmYJ5d5+DmrA==", "requires": { "@microsoft/api-extractor": "^7.18.1", "@microsoft/dynamicproto-js": "^1.1.7", @@ -6208,7 +6208,7 @@ }, "@rush-temp/applicationinsights-web-basic": { "version": "file:projects\\applicationinsights-web-basic.tgz", - "integrity": "sha512-Zg/tAsFfYL0Q9QfIsfNMz82uTdAsupSKhoHkd3in6iR1FihTTrRfcG/EF3LY0kCnsSi/P3pxUtoYtOrVwQoGvA==", + "integrity": "sha512-ty/E6WYr4gO3bZIrZTwJSfD8kKiijZmtqoumk2x4wA6EplH3Y46iMn71ta5fHG+7mYLyXjcMX3rAHmDAgpaQnw==", "requires": { "@microsoft/api-extractor": "^7.18.1", "@microsoft/dynamicproto-js": "^1.1.7", @@ -6505,14 +6505,14 @@ } }, "@typescript-eslint/eslint-plugin": { - "version": "5.54.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.54.0.tgz", - "integrity": "sha512-+hSN9BdSr629RF02d7mMtXhAJvDTyCbprNYJKrXETlul/Aml6YZwd90XioVbjejQeHbb3R8Dg0CkRgoJDxo8aw==", + "version": "5.54.1", + "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.54.1.tgz", + "integrity": "sha512-a2RQAkosH3d3ZIV08s3DcL/mcGc2M/UC528VkPULFxR9VnVPT8pBu0IyBAJJmVsCmhVfwQX1v6q+QGnmSe1bew==", "peer": true, "requires": { - "@typescript-eslint/scope-manager": "5.54.0", - "@typescript-eslint/type-utils": "5.54.0", - "@typescript-eslint/utils": "5.54.0", + "@typescript-eslint/scope-manager": "5.54.1", + "@typescript-eslint/type-utils": "5.54.1", + "@typescript-eslint/utils": "5.54.1", "debug": "^4.3.4", "grapheme-splitter": "^1.0.4", "ignore": "^5.2.0", @@ -6523,53 +6523,53 @@ } }, "@typescript-eslint/parser": { - "version": "5.54.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-5.54.0.tgz", - "integrity": "sha512-aAVL3Mu2qTi+h/r04WI/5PfNWvO6pdhpeMRWk9R7rEV4mwJNzoWf5CCU5vDKBsPIFQFjEq1xg7XBI2rjiMXQbQ==", + "version": "5.54.1", + "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-5.54.1.tgz", + "integrity": "sha512-8zaIXJp/nG9Ff9vQNh7TI+C3nA6q6iIsGJ4B4L6MhZ7mHnTMR4YP5vp2xydmFXIy8rpyIVbNAG44871LMt6ujg==", "peer": true, "requires": { - "@typescript-eslint/scope-manager": "5.54.0", - "@typescript-eslint/types": "5.54.0", - "@typescript-eslint/typescript-estree": "5.54.0", + "@typescript-eslint/scope-manager": "5.54.1", + "@typescript-eslint/types": "5.54.1", + "@typescript-eslint/typescript-estree": "5.54.1", "debug": "^4.3.4" } }, "@typescript-eslint/scope-manager": { - "version": "5.54.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-5.54.0.tgz", - "integrity": "sha512-VTPYNZ7vaWtYna9M4oD42zENOBrb+ZYyCNdFs949GcN8Miwn37b8b7eMj+EZaq7VK9fx0Jd+JhmkhjFhvnovhg==", + "version": "5.54.1", + "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-5.54.1.tgz", + "integrity": "sha512-zWKuGliXxvuxyM71UA/EcPxaviw39dB2504LqAmFDjmkpO8qNLHcmzlh6pbHs1h/7YQ9bnsO8CCcYCSA8sykUg==", "peer": true, "requires": { - "@typescript-eslint/types": "5.54.0", - "@typescript-eslint/visitor-keys": "5.54.0" + "@typescript-eslint/types": "5.54.1", + "@typescript-eslint/visitor-keys": "5.54.1" } }, "@typescript-eslint/type-utils": { - "version": "5.54.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-5.54.0.tgz", - "integrity": "sha512-WI+WMJ8+oS+LyflqsD4nlXMsVdzTMYTxl16myXPaCXnSgc7LWwMsjxQFZCK/rVmTZ3FN71Ct78ehO9bRC7erYQ==", + "version": "5.54.1", + "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-5.54.1.tgz", + "integrity": "sha512-WREHsTz0GqVYLIbzIZYbmUUr95DKEKIXZNH57W3s+4bVnuF1TKe2jH8ZNH8rO1CeMY3U4j4UQeqPNkHMiGem3g==", "peer": true, "requires": { - "@typescript-eslint/typescript-estree": "5.54.0", - "@typescript-eslint/utils": "5.54.0", + "@typescript-eslint/typescript-estree": "5.54.1", + "@typescript-eslint/utils": "5.54.1", "debug": "^4.3.4", "tsutils": "^3.21.0" } }, "@typescript-eslint/types": { - "version": "5.54.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.54.0.tgz", - "integrity": "sha512-nExy+fDCBEgqblasfeE3aQ3NuafBUxZxgxXcYfzYRZFHdVvk5q60KhCSkG0noHgHRo/xQ/BOzURLZAafFpTkmQ==", + "version": "5.54.1", + "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.54.1.tgz", + "integrity": "sha512-G9+1vVazrfAfbtmCapJX8jRo2E4MDXxgm/IMOF4oGh3kq7XuK3JRkOg6y2Qu1VsTRmWETyTkWt1wxy7X7/yLkw==", "peer": true }, "@typescript-eslint/typescript-estree": { - "version": "5.54.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.54.0.tgz", - "integrity": "sha512-X2rJG97Wj/VRo5YxJ8Qx26Zqf0RRKsVHd4sav8NElhbZzhpBI8jU54i6hfo9eheumj4oO4dcRN1B/zIVEqR/MQ==", + "version": "5.54.1", + "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.54.1.tgz", + "integrity": "sha512-bjK5t+S6ffHnVwA0qRPTZrxKSaFYocwFIkZx5k7pvWfsB1I57pO/0M0Skatzzw1sCkjJ83AfGTL0oFIFiDX3bg==", "peer": true, "requires": { - "@typescript-eslint/types": "5.54.0", - "@typescript-eslint/visitor-keys": "5.54.0", + "@typescript-eslint/types": "5.54.1", + "@typescript-eslint/visitor-keys": "5.54.1", "debug": "^4.3.4", "globby": "^11.1.0", "is-glob": "^4.0.3", @@ -6578,28 +6578,28 @@ } }, "@typescript-eslint/utils": { - "version": "5.54.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-5.54.0.tgz", - "integrity": "sha512-cuwm8D/Z/7AuyAeJ+T0r4WZmlnlxQ8wt7C7fLpFlKMR+dY6QO79Cq1WpJhvZbMA4ZeZGHiRWnht7ZJ8qkdAunw==", + "version": "5.54.1", + "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-5.54.1.tgz", + "integrity": "sha512-IY5dyQM8XD1zfDe5X8jegX6r2EVU5o/WJnLu/znLPWCBF7KNGC+adacXnt5jEYS9JixDcoccI6CvE4RCjHMzCQ==", "peer": true, "requires": { "@types/json-schema": "^7.0.9", "@types/semver": "^7.3.12", - "@typescript-eslint/scope-manager": "5.54.0", - "@typescript-eslint/types": "5.54.0", - "@typescript-eslint/typescript-estree": "5.54.0", + "@typescript-eslint/scope-manager": "5.54.1", + "@typescript-eslint/types": "5.54.1", + "@typescript-eslint/typescript-estree": "5.54.1", "eslint-scope": "^5.1.1", "eslint-utils": "^3.0.0", "semver": "^7.3.7" } }, "@typescript-eslint/visitor-keys": { - "version": "5.54.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.54.0.tgz", - "integrity": "sha512-xu4wT7aRCakGINTLGeyGqDn+78BwFlggwBjnHa1ar/KaGagnmwLYmlrXIrgAaQ3AE1Vd6nLfKASm7LrFHNbKGA==", + "version": "5.54.1", + "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.54.1.tgz", + "integrity": "sha512-q8iSoHTgwCfgcRJ2l2x+xCbu8nBlRAlsQ33k24Adj8eoVBE0f8dUeI+bAa8F84Mv05UGbAx57g2zrRsYIooqQg==", "peer": true, "requires": { - "@typescript-eslint/types": "5.54.0", + "@typescript-eslint/types": "5.54.1", "eslint-visitor-keys": "^3.3.0" } }, @@ -6867,9 +6867,9 @@ "peer": true }, "caniuse-lite": { - "version": "1.0.30001458", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001458.tgz", - "integrity": "sha512-lQ1VlUUq5q9ro9X+5gOEyH7i3vm+AYVT1WDCVB69XOZ17KZRhnZ9J0Sqz7wTHQaLBJccNCHq8/Ww5LlOIZbB0w==" + "version": "1.0.30001462", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001462.tgz", + "integrity": "sha512-PDd20WuOBPiasZ7KbFnmQRyuLE7cFXW2PVd7dmALzbkUXEP46upAuCDm9eY9vho8fgNMGmbAX92QBZHzcnWIqw==" }, "chalk": { "version": "4.1.2", @@ -7129,9 +7129,9 @@ "integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==" }, "electron-to-chromium": { - "version": "1.4.315", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.315.tgz", - "integrity": "sha512-ndBQYz3Eyy3rASjjQ9poMJGoAlsZ/aZnq6GBsGL4w/4sWIAwiUHVSsMuADbxa8WJw7pZ0oxLpGbtoDt4vRTdCg==" + "version": "1.4.323", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.323.tgz", + "integrity": "sha512-+a0hMEQxE8u1F1vOHcE0M18kQ2+4AwOXdRrU4avZ1LeR/sa9WAallYE3uES/PNcEGt/wCFcOgWcArSLx5C+WNQ==" }, "encodeurl": { "version": "1.0.2", @@ -7296,9 +7296,9 @@ "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==" }, "esquery": { - "version": "1.4.2", - "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.4.2.tgz", - "integrity": "sha512-JVSoLdTlTDkmjFmab7H/9SL9qGSyjElT3myyKp7krqjVFQCDLmj1QFaCLRFBszBKI0XVZaiiXvuPIX3ZwHe1Ng==", + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.5.0.tgz", + "integrity": "sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==", "peer": true, "requires": { "estraverse": "^5.1.0" diff --git a/examples/AISKU/package.json b/examples/AISKU/package.json index d8e23af33..a1d47afdf 100644 --- a/examples/AISKU/package.json +++ b/examples/AISKU/package.json @@ -1,7 +1,7 @@ { "name": "@microsoft/applicationinsights-example-aisku", "author": "Microsoft Application Insights Team", - "version": "2.8.10", + "version": "2.8.11", "description": "Microsoft Application Insights AISKU Example", "homepage": "https://github.com/microsoft/ApplicationInsights-JS#readme", "keywords": [ @@ -51,7 +51,7 @@ "dependencies": { "@microsoft/applicationinsights-shims": "2.0.2", "@microsoft/dynamicproto-js": "^1.1.7", - "@microsoft/applicationinsights-web": "2.8.10", - "@microsoft/applicationinsights-core-js": "2.8.10" + "@microsoft/applicationinsights-web": "2.8.11", + "@microsoft/applicationinsights-core-js": "2.8.11" } -} \ No newline at end of file +} diff --git a/examples/dependency/package.json b/examples/dependency/package.json index ad1a144fc..c79976a4f 100644 --- a/examples/dependency/package.json +++ b/examples/dependency/package.json @@ -1,7 +1,7 @@ { "name": "@microsoft/applicationinsights-example-dependencies", "author": "Microsoft Application Insights Team", - "version": "2.8.10", + "version": "2.8.11", "description": "Microsoft Application Insights Dependencies Example", "homepage": "https://github.com/microsoft/ApplicationInsights-JS#readme", "keywords": [ @@ -51,8 +51,8 @@ "dependencies": { "@microsoft/applicationinsights-shims": "2.0.2", "@microsoft/dynamicproto-js": "^1.1.7", - "@microsoft/applicationinsights-web": "2.8.10", - "@microsoft/applicationinsights-dependencies-js": "2.8.10", - "@microsoft/applicationinsights-core-js": "2.8.10" + "@microsoft/applicationinsights-web": "2.8.11", + "@microsoft/applicationinsights-dependencies-js": "2.8.11", + "@microsoft/applicationinsights-core-js": "2.8.11" } -} \ No newline at end of file +} diff --git a/examples/shared-worker/package.json b/examples/shared-worker/package.json index bf727bb52..9d3723101 100644 --- a/examples/shared-worker/package.json +++ b/examples/shared-worker/package.json @@ -1,7 +1,7 @@ { "name": "@microsoft/applicationinsights-example-shared-worker", "author": "Microsoft Application Insights Team", - "version": "2.8.10", + "version": "2.8.11", "description": "Microsoft Application Insights Shared Worker Example", "homepage": "https://github.com/microsoft/ApplicationInsights-JS#readme", "keywords": [ @@ -64,7 +64,7 @@ "dependencies": { "@microsoft/applicationinsights-shims": "2.0.2", "@microsoft/dynamicproto-js": "^1.1.7", - "@microsoft/applicationinsights-web": "2.8.10", + "@microsoft/applicationinsights-web": "2.8.11", "@microsoft/applicationinsights-web-snippet": "1.0.1", "@nevware21/ts-utils": ">= 0.7 < 2.x" } diff --git a/extensions/applicationinsights-analytics-js/package.json b/extensions/applicationinsights-analytics-js/package.json index 3dc403657..f08c95961 100644 --- a/extensions/applicationinsights-analytics-js/package.json +++ b/extensions/applicationinsights-analytics-js/package.json @@ -1,6 +1,6 @@ { "name": "@microsoft/applicationinsights-analytics-js", - "version": "2.8.10", + "version": "2.8.11", "description": "Microsoft Application Insights JavaScript SDK - Web Analytics", "homepage": "https://github.com/microsoft/ApplicationInsights-JS#readme", "author": "Microsoft Application Insights Team", @@ -29,8 +29,8 @@ "@microsoft/ai-test-framework": "0.0.1", "@microsoft/applicationinsights-rollup-plugin-uglify3-js": "1.0.0", "@microsoft/applicationinsights-rollup-es3": "1.1.3", - "@microsoft/applicationinsights-properties-js": "2.8.10", - "@microsoft/applicationinsights-channel-js": "2.8.10", + "@microsoft/applicationinsights-properties-js": "2.8.11", + "@microsoft/applicationinsights-channel-js": "2.8.11", "@microsoft/api-extractor": "^7.18.1", "typescript": "^4.9.3", "tslib": "^2.0.0", @@ -56,8 +56,8 @@ "dependencies": { "@microsoft/dynamicproto-js": "^1.1.7", "@microsoft/applicationinsights-shims": "2.0.2", - "@microsoft/applicationinsights-core-js": "2.8.10", - "@microsoft/applicationinsights-common": "2.8.10" + "@microsoft/applicationinsights-core-js": "2.8.11", + "@microsoft/applicationinsights-common": "2.8.11" }, "license": "MIT" } diff --git a/extensions/applicationinsights-clickanalytics-js/package.json b/extensions/applicationinsights-clickanalytics-js/package.json index c867be3e8..4bdfc744e 100644 --- a/extensions/applicationinsights-clickanalytics-js/package.json +++ b/extensions/applicationinsights-clickanalytics-js/package.json @@ -1,6 +1,6 @@ { "name": "@microsoft/applicationinsights-clickanalytics-js", - "version": "2.8.10", + "version": "2.8.11", "description": "Microsoft Application Insights Click Analytics extension", "homepage": "https://github.com/microsoft/ApplicationInsights-JS#readme", "author": "Microsoft Application Insights Team", @@ -47,9 +47,9 @@ "dependencies": { "@microsoft/dynamicproto-js": "^1.1.7", "@microsoft/applicationinsights-shims": "2.0.2", - "@microsoft/applicationinsights-core-js": "2.8.10", - "@microsoft/applicationinsights-common": "2.8.10", - "@microsoft/applicationinsights-properties-js": "2.8.10" + "@microsoft/applicationinsights-core-js": "2.8.11", + "@microsoft/applicationinsights-common": "2.8.11", + "@microsoft/applicationinsights-properties-js": "2.8.11" }, "repository": { "type": "git", diff --git a/extensions/applicationinsights-debugplugin-js/package.json b/extensions/applicationinsights-debugplugin-js/package.json index d5c764ba6..07c74e6a9 100644 --- a/extensions/applicationinsights-debugplugin-js/package.json +++ b/extensions/applicationinsights-debugplugin-js/package.json @@ -1,6 +1,6 @@ { "name": "@microsoft/applicationinsights-debugplugin-js", - "version": "2.8.10", + "version": "2.8.11", "description": "Microsoft Application Insights JavaScript SDK - Debug Plugin extension", "homepage": "https://github.com/microsoft/ApplicationInsights-JS#readme", "author": "Microsoft Application Insights Team", @@ -48,8 +48,8 @@ }, "dependencies": { "@microsoft/dynamicproto-js": "^1.1.7", - "@microsoft/applicationinsights-common": "2.8.10", - "@microsoft/applicationinsights-core-js": "2.8.10", + "@microsoft/applicationinsights-common": "2.8.11", + "@microsoft/applicationinsights-core-js": "2.8.11", "@microsoft/applicationinsights-shims": "2.0.2" }, "license": "MIT" diff --git a/extensions/applicationinsights-dependencies-js/package.json b/extensions/applicationinsights-dependencies-js/package.json index 01057e797..1ed672f0d 100644 --- a/extensions/applicationinsights-dependencies-js/package.json +++ b/extensions/applicationinsights-dependencies-js/package.json @@ -1,6 +1,6 @@ { "name": "@microsoft/applicationinsights-dependencies-js", - "version": "2.8.10", + "version": "2.8.11", "description": "Microsoft Application Insights XHR dependencies plugin", "homepage": "https://github.com/microsoft/ApplicationInsights-JS#readme", "author": "Microsoft Application Insights Team", @@ -54,8 +54,8 @@ "dependencies": { "@microsoft/dynamicproto-js": "^1.1.7", "@microsoft/applicationinsights-shims": "2.0.2", - "@microsoft/applicationinsights-core-js": "2.8.10", - "@microsoft/applicationinsights-common": "2.8.10" + "@microsoft/applicationinsights-core-js": "2.8.11", + "@microsoft/applicationinsights-common": "2.8.11" }, "license": "MIT" } diff --git a/extensions/applicationinsights-perfmarkmeasure-js/package.json b/extensions/applicationinsights-perfmarkmeasure-js/package.json index 1eecc73eb..f3445168d 100644 --- a/extensions/applicationinsights-perfmarkmeasure-js/package.json +++ b/extensions/applicationinsights-perfmarkmeasure-js/package.json @@ -1,6 +1,6 @@ { "name": "@microsoft/applicationinsights-perfmarkmeasure-js", - "version": "2.8.10", + "version": "2.8.11", "description": "Microsoft Application Insights Performance Mark and Measure Manager plugin", "homepage": "https://github.com/microsoft/ApplicationInsights-JS#readme", "author": "Microsoft Application Insights Team", @@ -51,7 +51,7 @@ "dependencies": { "@microsoft/dynamicproto-js": "^1.1.7", "@microsoft/applicationinsights-shims": "2.0.2", - "@microsoft/applicationinsights-core-js": "2.8.10" + "@microsoft/applicationinsights-core-js": "2.8.11" }, "license": "MIT" } diff --git a/extensions/applicationinsights-properties-js/package.json b/extensions/applicationinsights-properties-js/package.json index cb843394f..3879613d7 100644 --- a/extensions/applicationinsights-properties-js/package.json +++ b/extensions/applicationinsights-properties-js/package.json @@ -1,6 +1,6 @@ { "name": "@microsoft/applicationinsights-properties-js", - "version": "2.8.10", + "version": "2.8.11", "description": "Microsoft Application Insights properties (Part A) plugin", "homepage": "https://github.com/microsoft/ApplicationInsights-JS#readme", "author": "Microsoft Application Insights Team", @@ -54,8 +54,8 @@ "dependencies": { "@microsoft/dynamicproto-js": "^1.1.7", "@microsoft/applicationinsights-shims": "2.0.2", - "@microsoft/applicationinsights-core-js": "2.8.10", - "@microsoft/applicationinsights-common": "2.8.10" + "@microsoft/applicationinsights-core-js": "2.8.11", + "@microsoft/applicationinsights-common": "2.8.11" }, "license": "MIT" } diff --git a/gruntfile.js b/gruntfile.js index 294dfc071..8f2fb718f 100644 --- a/gruntfile.js +++ b/gruntfile.js @@ -146,7 +146,7 @@ module.exports = function (grunt) { // const perfTestVersions = ["2.0.0","2.0.1","2.1.0","2.2.0","2.2.1","2.2.2","2.3.0","2.3.1", // "2.4.1","2.4.3","2.4.4","2.5.2","2.5.3","2.5.4","2.5.5","2.5.6","2.5.7","2.5.8","2.5.9","2.5.10","2.5.11", // "2.6.0","2.6.1","2.6.2","2.6.3","2.6.4","2.6.5","2.7.0"]; - const perfTestVersions=["2.8.10"]; + const perfTestVersions=["2.8.11"]; function buildConfig(modules) { var buildCmds = { diff --git a/package.json b/package.json index d6122c4a6..e457d1dae 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "@microsoft/applicationinsights-web", "description": "Microsoft Application Insights JavaScript SDK", - "version": "2.8.10", + "version": "2.8.11", "keywords": [ "browser performance monitoring", "script errors", diff --git a/shared/AppInsightsCommon/package.json b/shared/AppInsightsCommon/package.json index 259a17778..3ab6c359e 100644 --- a/shared/AppInsightsCommon/package.json +++ b/shared/AppInsightsCommon/package.json @@ -1,6 +1,6 @@ { "name": "@microsoft/applicationinsights-common", - "version": "2.8.10", + "version": "2.8.11", "description": "Microsoft Application Insights Common JavaScript Library", "homepage": "https://github.com/microsoft/ApplicationInsights-JS#readme", "author": "Microsoft Application Insights Team", @@ -51,7 +51,7 @@ }, "dependencies": { "@microsoft/applicationinsights-shims": "2.0.2", - "@microsoft/applicationinsights-core-js": "2.8.10", + "@microsoft/applicationinsights-core-js": "2.8.11", "@microsoft/dynamicproto-js": "^1.1.7" }, "license": "MIT" diff --git a/shared/AppInsightsCore/package.json b/shared/AppInsightsCore/package.json index ef85fa656..6f66189a8 100644 --- a/shared/AppInsightsCore/package.json +++ b/shared/AppInsightsCore/package.json @@ -1,7 +1,7 @@ { "name": "@microsoft/applicationinsights-core-js", "author": "Microsoft Application Insights Team", - "version": "2.8.10", + "version": "2.8.11", "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 7c92a6ee9..c56a9d5bf 100644 --- a/tools/chrome-debug-extension/manifest.json +++ b/tools/chrome-debug-extension/manifest.json @@ -2,8 +2,8 @@ "name": "Telemetry Viewer", "short_name": "Telemetry Viewer", "description": "A browser extension that provides a real time view of what's happening in Application Insights including what telemetry is being logged by the web application", - "version": "0.3.10", - "version_name": "0.3.10", + "version": "0.3.11", + "version_name": "0.3.11", "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 eba455401..a04d02938 100644 --- a/tools/chrome-debug-extension/package.json +++ b/tools/chrome-debug-extension/package.json @@ -1,6 +1,6 @@ { "name": "@microsoft/applicationinsights-chrome-debug-extension", - "version": "0.3.10", + "version": "0.3.11", "description": "A chrome based browser extension that provides a real time view of what's happening in Application Insights including what telemetry is being logged by the web application", "homepage": "https://github.com/microsoft/ApplicationInsights-JS/tree/master/tools/chrome-debug-extension#readme", "keywords": [ @@ -42,8 +42,8 @@ "license": "MIT", "sideEffects": false, "dependencies": { - "@microsoft/applicationinsights-core-js": "2.8.10", - "@microsoft/applicationinsights-common": "2.8.10", + "@microsoft/applicationinsights-core-js": "2.8.11", + "@microsoft/applicationinsights-common": "2.8.11", "@microsoft/applicationinsights-shims": "2.0.2", "@microsoft/dynamicproto-js": "^1.1.7", "file-saver": "^2.0.0", diff --git a/tools/config/package.json b/tools/config/package.json index 7157c3729..ded84f977 100644 --- a/tools/config/package.json +++ b/tools/config/package.json @@ -1,7 +1,7 @@ { "name": "applicationinsights-web-config", "description": " Application Insights JavaScript SDK - Web Config", - "version": "0.0.2", + "version": "0.0.3", "copyright": "(c) Microsoft and contributors. All rights reserved.", "author": "Microsoft Application Insights Team", "repository": { diff --git a/version.json b/version.json index f3e3fa201..c3076899e 100644 --- a/version.json +++ b/version.json @@ -1,60 +1,72 @@ { "description": "The release value identifies the base version that will be applied via the tools/release-tools/setVersion.js", "usage": "When creating a new release you should update this value directly or via the eg. 'npm run setVersion -- 3.2.0' or 'npm run setVersion -- -patch' or 'npm run setVersion -- -minor'", - "release": "2.8.10", + "release": "2.8.11", "next": "patch", "pkgs": { "@microsoft/applicationinsights-web": { "package": "package.json", - "release": "2.8.10" + "release": "2.8.11" }, "@microsoft/applicationinsights-web-basic": { "package": "AISKULight/package.json", - "release": "2.8.10" + "release": "2.8.11" }, "@microsoft/applicationinsights-channel-js": { "package": "channels/applicationinsights-channel-js/package.json", - "release": "2.8.10" + "release": "2.8.11" }, "@microsoft/applicationinsights-analytics-js": { "package": "extensions/applicationinsights-analytics-js/package.json", - "release": "2.8.10" + "release": "2.8.11" }, "@microsoft/applicationinsights-clickanalytics-js": { "package": "extensions/applicationinsights-clickanalytics-js/package.json", - "release": "2.8.10" + "release": "2.8.11" }, "@microsoft/applicationinsights-debugplugin-js": { "package": "extensions/applicationinsights-debugplugin-js/package.json", - "release": "2.8.10" + "release": "2.8.11" }, "@microsoft/applicationinsights-dependencies-js": { "package": "extensions/applicationinsights-dependencies-js/package.json", - "release": "2.8.10" + "release": "2.8.11" }, "@microsoft/applicationinsights-perfmarkmeasure-js": { "package": "extensions/applicationinsights-perfmarkmeasure-js/package.json", - "release": "2.8.10" + "release": "2.8.11" }, "@microsoft/applicationinsights-properties-js": { "package": "extensions/applicationinsights-properties-js/package.json", - "release": "2.8.10" + "release": "2.8.11" }, "@microsoft/applicationinsights-common": { "package": "shared/AppInsightsCommon/package.json", - "release": "2.8.10" + "release": "2.8.11" }, "@microsoft/applicationinsights-core-js": { "package": "shared/AppInsightsCore/package.json", - "release": "2.8.10" + "release": "2.8.11" }, "@microsoft/applicationinsights-chrome-debug-extension": { "package": "tools/chrome-debug-extension/package.json", - "release": "0.3.10" + "release": "0.3.11" }, "applicationinsights-web-config": { "package": "tools/config/package.json", - "release": "0.0.2" + "release": "0.0.3" + }, + "@microsoft/applicationinsights-example-aisku": { + "package": "examples/AISKU/package.json", + "release": "2.8.11" + }, + "@microsoft/applicationinsights-example-dependencies": { + "package": "examples/dependency/package.json", + "release": "2.8.11" + }, + "@microsoft/applicationinsights-example-shared-worker": { + "package": "examples/shared-worker/package.json", + "release": "2.8.11" } } }