Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions AISKU/Tests/Unit/src/AISKUSize.Tests.ts
Original file line number Diff line number Diff line change
Expand Up @@ -54,10 +54,10 @@ function _checkSize(checkType: string, maxSize: number, size: number, isNightly:
}

export class AISKUSizeCheck extends AITestClass {
private readonly MAX_RAW_SIZE = 174;
private readonly MAX_BUNDLE_SIZE = 174;
private readonly MAX_RAW_DEFLATE_SIZE = 70;
private readonly MAX_BUNDLE_DEFLATE_SIZE = 70;
private readonly MAX_RAW_SIZE = 175;
private readonly MAX_BUNDLE_SIZE = 175;
private readonly MAX_RAW_DEFLATE_SIZE = 71;
private readonly MAX_BUNDLE_DEFLATE_SIZE = 71;
Comment on lines +57 to +60
private readonly rawFilePath = "../dist/es5/applicationinsights-web.min.js";
// Automatically updated by version scripts
private readonly currentVer = "3.4.1";
Expand Down
2 changes: 1 addition & 1 deletion AISKU/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@
"@microsoft/applicationinsights-core-js": "3.4.1",
"@microsoft/applicationinsights-dependencies-js": "3.4.1",
"@microsoft/applicationinsights-properties-js": "3.4.1",
"@nevware21/ts-utils": ">= 0.14.0 < 2.x",
"@nevware21/ts-utils": ">= 0.15.0 < 2.x",
"@nevware21/ts-async": ">= 0.5.5 < 2.x"
},
"license": "MIT"
Expand Down
4 changes: 2 additions & 2 deletions AISKU/src/internal/trace/spanUtils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -48,9 +48,9 @@ const MessageBusDestination = "message_bus.destination";
const TIME_SINCE_ENQUEUED = "timeSinceEnqueued";

const PORT_REGEX: ILazyValue<RegExp> = (/*#__PURE__*/ getLazy(() => new RegExp(/(https?)(:\/\/.*)(:\d+)(\S*)/)));
const HTTP_DOT = (/*#__PURE__*/ "http.");
const HTTP_DOT = "http.";

const _MS_PROCESSED_BY_METRICS_EXTRACTORS = (/* #__PURE__*/"_MS.ProcessedByMetricExtractors");
const _MS_PROCESSED_BY_METRICS_EXTRACTORS = "_MS.ProcessedByMetricExtractors";

/**
* Legacy HTTP semantic convention values
Expand Down
2 changes: 1 addition & 1 deletion AISKULight/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@
"@microsoft/applicationinsights-shims": "3.0.1",
"@microsoft/applicationinsights-channel-js": "3.4.1",
"@microsoft/applicationinsights-core-js": "3.4.1",
"@nevware21/ts-utils": ">= 0.14.0 < 2.x",
"@nevware21/ts-utils": ">= 0.15.0 < 2.x",
"@nevware21/ts-async": ">= 0.5.5 < 2.x"
},
"license": "MIT"
Expand Down
2 changes: 1 addition & 1 deletion channels/1ds-post-js/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
"@microsoft/applicationinsights-shims": "3.0.1",
"@microsoft/dynamicproto-js": "^2.0.3",
"@microsoft/applicationinsights-core-js": "3.4.1",
"@nevware21/ts-utils": ">= 0.14.0 < 2.x",
"@nevware21/ts-utils": ">= 0.15.0 < 2.x",
"@nevware21/ts-async": ">= 0.5.5 < 2.x"
},
"devDependencies": {
Expand Down
2 changes: 1 addition & 1 deletion channels/applicationinsights-channel-js/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@
"@microsoft/dynamicproto-js": "^2.0.3",
"@microsoft/applicationinsights-shims": "3.0.1",
"@microsoft/applicationinsights-core-js": "3.4.1",
"@nevware21/ts-utils": ">= 0.14.0 < 2.x",
"@nevware21/ts-utils": ">= 0.15.0 < 2.x",
"@nevware21/ts-async": ">= 0.5.5 < 2.x"
},
"license": "MIT"
Expand Down
2 changes: 1 addition & 1 deletion channels/offline-channel-js/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
"@microsoft/dynamicproto-js": "^2.0.3",
"@microsoft/applicationinsights-shims": "3.0.1",
"@microsoft/applicationinsights-core-js": "3.4.1",
"@nevware21/ts-utils": ">= 0.14.0 < 2.x",
"@nevware21/ts-utils": ">= 0.15.0 < 2.x",
"@nevware21/ts-async": ">= 0.5.5 < 2.x"
},
"peerDependencies": {
Expand Down
2 changes: 1 addition & 1 deletion channels/tee-channel-js/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@
"@microsoft/dynamicproto-js": "^2.0.3",
"@microsoft/applicationinsights-shims": "3.0.1",
"@microsoft/applicationinsights-core-js": "3.4.1",
"@nevware21/ts-utils": ">= 0.14.0 < 2.x",
"@nevware21/ts-utils": ">= 0.15.0 < 2.x",
"@nevware21/ts-async": ">= 0.5.5 < 2.x"
},
"license": "MIT"
Expand Down
2 changes: 1 addition & 1 deletion common/Tests/Framework/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@
},
"dependencies": {
"@microsoft/dynamicproto-js": "^2.0.3",
"@nevware21/ts-utils": ">= 0.14.0 < 2.x",
"@nevware21/ts-utils": ">= 0.15.0 < 2.x",
"@nevware21/ts-async": ">= 0.5.5 < 2.x"
}
}
456 changes: 250 additions & 206 deletions common/config/rush/npm-shrinkwrap.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion examples/AISKU/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,6 @@
"@microsoft/dynamicproto-js": "^2.0.3",
"@microsoft/applicationinsights-web": "3.4.1",
"@microsoft/applicationinsights-core-js": "3.4.1",
"@nevware21/ts-utils": ">= 0.14.0 < 2.x"
"@nevware21/ts-utils": ">= 0.15.0 < 2.x"
}
}
2 changes: 1 addition & 1 deletion examples/cfgSync/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,6 @@
"@microsoft/dynamicproto-js": "^2.0.3",
"@microsoft/applicationinsights-web": "3.4.1",
"@microsoft/applicationinsights-core-js": "3.4.1",
"@nevware21/ts-utils": ">= 0.14.0 < 2.x"
"@nevware21/ts-utils": ">= 0.15.0 < 2.x"
}
}
2 changes: 1 addition & 1 deletion examples/dependency/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,6 @@
"@microsoft/applicationinsights-web": "3.4.1",
"@microsoft/applicationinsights-dependencies-js": "3.4.1",
"@microsoft/applicationinsights-core-js": "3.4.1",
"@nevware21/ts-utils": ">= 0.14.0 < 2.x"
"@nevware21/ts-utils": ">= 0.15.0 < 2.x"
}
}
2 changes: 1 addition & 1 deletion examples/shared-worker/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,6 @@
"@microsoft/dynamicproto-js": "^2.0.3",
"@microsoft/applicationinsights-web": "3.4.1",
"@microsoft/applicationinsights-core-js": "3.4.1",
"@nevware21/ts-utils": ">= 0.14.0 < 2.x"
"@nevware21/ts-utils": ">= 0.15.0 < 2.x"
}
}
2 changes: 1 addition & 1 deletion examples/startSpan/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,6 @@
"@microsoft/dynamicproto-js": "^2.0.3",
"@microsoft/applicationinsights-web": "3.4.1",
"@microsoft/applicationinsights-core-js": "3.4.1",
"@nevware21/ts-utils": ">= 0.14.0 < 2.x"
"@nevware21/ts-utils": ">= 0.15.0 < 2.x"
}
}
2 changes: 1 addition & 1 deletion extensions/applicationinsights-analytics-js/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@
"@microsoft/dynamicproto-js": "^2.0.3",
"@microsoft/applicationinsights-shims": "3.0.1",
"@microsoft/applicationinsights-core-js": "3.4.1",
"@nevware21/ts-utils": ">= 0.14.0 < 2.x"
"@nevware21/ts-utils": ">= 0.15.0 < 2.x"
},
"license": "MIT"
}
2 changes: 1 addition & 1 deletion extensions/applicationinsights-cfgsync-js/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@
"@microsoft/dynamicproto-js": "^2.0.3",
"@microsoft/applicationinsights-shims": "3.0.1",
"@microsoft/applicationinsights-core-js": "3.4.1",
"@nevware21/ts-utils": ">= 0.14.0 < 2.x",
"@nevware21/ts-utils": ">= 0.15.0 < 2.x",
"@nevware21/ts-async": ">= 0.5.5 < 2.x"
},
"license": "MIT"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@
"@microsoft/applicationinsights-shims": "3.0.1",
"@microsoft/applicationinsights-core-js": "3.4.1",
"@microsoft/applicationinsights-properties-js": "3.4.1",
"@nevware21/ts-utils": ">= 0.14.0 < 2.x"
"@nevware21/ts-utils": ">= 0.15.0 < 2.x"
},
"repository": {
"type": "git",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@
"@microsoft/dynamicproto-js": "^2.0.3",
"@microsoft/applicationinsights-core-js": "3.4.1",
"@microsoft/applicationinsights-shims": "3.0.1",
"@nevware21/ts-utils": ">= 0.14.0 < 2.x"
"@nevware21/ts-utils": ">= 0.15.0 < 2.x"
},
"license": "MIT"
}
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@
"@microsoft/dynamicproto-js": "^2.0.3",
"@microsoft/applicationinsights-shims": "3.0.1",
"@microsoft/applicationinsights-core-js": "3.4.1",
"@nevware21/ts-utils": ">= 0.14.0 < 2.x",
"@nevware21/ts-utils": ">= 0.15.0 < 2.x",
"@nevware21/ts-async": ">= 0.5.5 < 2.x"
},
"license": "MIT"
Expand Down
2 changes: 1 addition & 1 deletion extensions/applicationinsights-osplugin-js/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
"@microsoft/applicationinsights-shims": "3.0.1",
"@microsoft/dynamicproto-js": "^2.0.3",
"@microsoft/applicationinsights-core-js": "3.4.1",
"@nevware21/ts-utils": ">= 0.14.0 < 2.x",
"@nevware21/ts-utils": ">= 0.15.0 < 2.x",
"@nevware21/ts-async": ">= 0.5.5 < 2.x"
},
"devDependencies": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@
"@microsoft/dynamicproto-js": "^2.0.3",
"@microsoft/applicationinsights-shims": "3.0.1",
"@microsoft/applicationinsights-core-js": "3.4.1",
"@nevware21/ts-utils": ">= 0.14.0 < 2.x"
"@nevware21/ts-utils": ">= 0.15.0 < 2.x"
},
"license": "MIT"
}
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@
"@microsoft/dynamicproto-js": "^2.0.3",
"@microsoft/applicationinsights-shims": "3.0.1",
"@microsoft/applicationinsights-core-js": "3.4.1",
"@nevware21/ts-utils": ">= 0.14.0 < 2.x"
"@nevware21/ts-utils": ">= 0.15.0 < 2.x"
},
"license": "MIT"
}
2 changes: 1 addition & 1 deletion shared/1ds-core-js/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
"@microsoft/applicationinsights-shims": "3.0.1",
"@microsoft/applicationinsights-core-js": "3.4.1",
"@microsoft/dynamicproto-js": "^2.0.3",
"@nevware21/ts-utils": ">= 0.14.0 < 2.x",
"@nevware21/ts-utils": ">= 0.15.0 < 2.x",
"@nevware21/ts-async": ">= 0.5.5 < 2.x"
},
"devDependencies": {
Expand Down
2 changes: 1 addition & 1 deletion shared/AppInsightsCommon/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@
"@microsoft/applicationinsights-shims": "3.0.1",
"@microsoft/applicationinsights-core-js": "3.4.1",
"@microsoft/dynamicproto-js": "^2.0.3",
"@nevware21/ts-utils": ">= 0.14.0 < 2.x"
"@nevware21/ts-utils": ">= 0.15.0 < 2.x"
},
"license": "MIT"
}
Original file line number Diff line number Diff line change
Expand Up @@ -51,10 +51,10 @@ function _checkSize(checkType: string, maxSize: number, size: number, isNightly:
}

export class AppInsightsCoreSizeCheck extends AITestClass {
private readonly MAX_RAW_SIZE = 132;
private readonly MAX_BUNDLE_SIZE = 132;
private readonly MAX_RAW_DEFLATE_SIZE = 53;
private readonly MAX_BUNDLE_DEFLATE_SIZE = 53;
private readonly MAX_RAW_SIZE = 133;
private readonly MAX_BUNDLE_SIZE = 133;
private readonly MAX_RAW_DEFLATE_SIZE = 54;
private readonly MAX_BUNDLE_DEFLATE_SIZE = 54;
Comment on lines +54 to +57
private readonly rawFilePath = "../dist/es5/index.min.js";
private readonly prodFilePath = "../browser/es5/applicationinsights-core-js.min.js";

Expand Down
2 changes: 1 addition & 1 deletion shared/AppInsightsCore/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@
"dependencies": {
"@microsoft/applicationinsights-shims": "3.0.1",
"@microsoft/dynamicproto-js": "^2.0.3",
"@nevware21/ts-utils": ">= 0.14.0 < 2.x",
"@nevware21/ts-utils": ">= 0.15.0 < 2.x",
"@nevware21/ts-async": ">= 0.5.5 < 2.x"
}
}
2 changes: 1 addition & 1 deletion shared/AppInsightsCore/src/ext/extUtils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ const _fieldTypeEventPropMap = {
*/
// let _uaDisallowsSameSiteNone = null;

var uInt8ArraySupported: boolean | null = (/* #__PURE__*/ null);
var uInt8ArraySupported: boolean | null = null;
// var _areCookiesAvailable: boolean | undefined;

/**
Expand Down
2 changes: 1 addition & 1 deletion tools/chrome-debug-extension/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
"@microsoft/applicationinsights-shims": "3.0.1",
"@microsoft/dynamicproto-js": "^2.0.3",
"@nevware21/ts-async": ">= 0.5.5 < 2.x",
"@nevware21/ts-utils": ">= 0.14.0 < 2.x",
"@nevware21/ts-utils": ">= 0.15.0 < 2.x",
"file-saver": "^2.0.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
Expand Down
2 changes: 1 addition & 1 deletion tools/shims/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,6 @@
"typescript": "^4.9.3"
},
"dependencies": {
"@nevware21/ts-utils": ">= 0.14.0 < 2.x"
"@nevware21/ts-utils": ">= 0.15.0 < 2.x"
}
}