[Release][Core] - Increase to version 2.5.11
This commit is contained in:
Родитель
a24bb72eaa
Коммит
493468d6e5
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@microsoft/applicationinsights-web",
|
||||
"version": "2.5.10",
|
||||
"version": "2.5.11",
|
||||
"description": "Microsoft Application Insights Javascript SDK API 1.0 beta",
|
||||
"main": "dist/applicationinsights-web.js",
|
||||
"module": "dist-esm/applicationinsights-web.js",
|
||||
|
@ -56,12 +56,12 @@
|
|||
"dependencies": {
|
||||
"@microsoft/dynamicproto-js": "^1.1.0",
|
||||
"@microsoft/applicationinsights-shims" : "1.0.3",
|
||||
"@microsoft/applicationinsights-analytics-js": "2.5.10",
|
||||
"@microsoft/applicationinsights-channel-js": "2.5.10",
|
||||
"@microsoft/applicationinsights-common": "2.5.10",
|
||||
"@microsoft/applicationinsights-core-js": "2.5.10",
|
||||
"@microsoft/applicationinsights-dependencies-js": "2.5.10",
|
||||
"@microsoft/applicationinsights-properties-js": "2.5.10"
|
||||
"@microsoft/applicationinsights-analytics-js": "2.5.11",
|
||||
"@microsoft/applicationinsights-channel-js": "2.5.11",
|
||||
"@microsoft/applicationinsights-common": "2.5.11",
|
||||
"@microsoft/applicationinsights-core-js": "2.5.11",
|
||||
"@microsoft/applicationinsights-dependencies-js": "2.5.11",
|
||||
"@microsoft/applicationinsights-properties-js": "2.5.11"
|
||||
},
|
||||
"license": "MIT"
|
||||
}
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@microsoft/applicationinsights-web-basic",
|
||||
"version": "2.5.10",
|
||||
"version": "2.5.11",
|
||||
"description": "Microsoft Application Insights Javascript SDK core and channel",
|
||||
"main": "dist/applicationinsights-web-basic.js",
|
||||
"module": "dist-esm/index.js",
|
||||
|
@ -29,9 +29,9 @@
|
|||
"dependencies": {
|
||||
"@microsoft/dynamicproto-js": "^1.1.0",
|
||||
"@microsoft/applicationinsights-shims" : "1.0.3",
|
||||
"@microsoft/applicationinsights-common": "2.5.10",
|
||||
"@microsoft/applicationinsights-channel-js": "2.5.10",
|
||||
"@microsoft/applicationinsights-core-js": "2.5.10"
|
||||
"@microsoft/applicationinsights-common": "2.5.11",
|
||||
"@microsoft/applicationinsights-channel-js": "2.5.11",
|
||||
"@microsoft/applicationinsights-core-js": "2.5.11"
|
||||
},
|
||||
"peerDependencies": {
|
||||
},
|
||||
|
|
22
RELEASES.md
22
RELEASES.md
|
@ -1,5 +1,27 @@
|
|||
# Releases
|
||||
|
||||
## 2.5.11 (January 15th, 2021)
|
||||
|
||||
### Changelog
|
||||
|
||||
- #1452 [BUG] v2.5.10 Snippet Initialization fails to redirect proxied functions -- causing terminal exception
|
||||
- #1434 Adding cookie path to make AI client SDK work behind Azure Application Gateway
|
||||
|
||||
### Update React plugin to v3.0.6
|
||||
|
||||
- Update Core dependency to ^2.5.11 Core changes
|
||||
|
||||
### Update React Native plugin to v2.2.10
|
||||
|
||||
- Update Core dependency to ^2.5.11 Core changes
|
||||
|
||||
### Update Click Analytics plugin to v2.5.11
|
||||
|
||||
- Update Core dependency to ^2.5.11 Core changes
|
||||
- #1441 [BUG] Fix issues based on pageName,clickevent name and improved the way we collect useful telemetry data
|
||||
- Updated Docs
|
||||
|
||||
|
||||
## 2.5.10 (November 16th, 2020)
|
||||
|
||||
### New extension @microsoft/applicationinsights-clickanalytics-js
|
||||
|
|
|
@ -379,7 +379,7 @@ export class SenderTests extends TestClass {
|
|||
QUnit.assert.ok(baseData.ver);
|
||||
QUnit.assert.equal(2, baseData.ver);
|
||||
|
||||
QUnit.assert.equal("javascript:2.5.10", appInsightsEnvelope.tags["ai.internal.sdkVersion"]);
|
||||
QUnit.assert.equal("javascript:2.5.11", appInsightsEnvelope.tags["ai.internal.sdkVersion"]);
|
||||
}
|
||||
})
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@microsoft/applicationinsights-channel-js",
|
||||
"version": "2.5.10",
|
||||
"version": "2.5.11",
|
||||
"description": "Microsoft Application Insights JavaScript SDK Channel",
|
||||
"main": "dist/applicationinsights-channel-js.js",
|
||||
"module": "dist-esm/applicationinsights-channel-js.js",
|
||||
|
@ -38,8 +38,8 @@
|
|||
"dependencies": {
|
||||
"@microsoft/dynamicproto-js": "^1.1.0",
|
||||
"@microsoft/applicationinsights-shims" : "1.0.3",
|
||||
"@microsoft/applicationinsights-core-js": "2.5.10",
|
||||
"@microsoft/applicationinsights-common": "2.5.10"
|
||||
"@microsoft/applicationinsights-core-js": "2.5.11",
|
||||
"@microsoft/applicationinsights-common": "2.5.11"
|
||||
},
|
||||
"license": "MIT"
|
||||
}
|
||||
|
|
|
@ -31,7 +31,7 @@ function _setValueIf<T>(target:T, field:keyof T, value:any) {
|
|||
}
|
||||
|
||||
export abstract class EnvelopeCreator {
|
||||
public static Version = "2.5.10";
|
||||
public static Version = "2.5.11";
|
||||
|
||||
protected static extractPropsAndMeasurements(data: { [key: string]: any }, properties: { [key: string]: any }, measurements: { [key: string]: any }) {
|
||||
if (!isNullOrUndefined(data)) {
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@microsoft/applicationinsights-analytics-js",
|
||||
"version": "2.5.10",
|
||||
"version": "2.5.11",
|
||||
"description": "Microsoft Application Insights Javascript SDK apis",
|
||||
"main": "dist/applicationinsights-analytics-js.js",
|
||||
"module": "dist-esm/applicationinsights-analytics-js.js",
|
||||
|
@ -19,7 +19,7 @@
|
|||
},
|
||||
"devDependencies": {
|
||||
"@microsoft/applicationinsights-rollup-es3" : "1.1.3",
|
||||
"@microsoft/applicationinsights-properties-js": "2.5.10",
|
||||
"@microsoft/applicationinsights-properties-js": "2.5.11",
|
||||
"typescript": "2.5.3",
|
||||
"globby": "^11.0.0",
|
||||
"rollup-plugin-node-resolve": "^3.4.0",
|
||||
|
@ -36,8 +36,8 @@
|
|||
"dependencies": {
|
||||
"@microsoft/dynamicproto-js": "^1.1.0",
|
||||
"@microsoft/applicationinsights-shims" : "1.0.3",
|
||||
"@microsoft/applicationinsights-core-js": "2.5.10",
|
||||
"@microsoft/applicationinsights-common": "2.5.10"
|
||||
"@microsoft/applicationinsights-core-js": "2.5.11",
|
||||
"@microsoft/applicationinsights-common": "2.5.11"
|
||||
},
|
||||
"license": "MIT"
|
||||
}
|
||||
|
|
|
@ -36,7 +36,7 @@ function _dispatchEvent(target:EventTarget, evnt: Event) {
|
|||
}
|
||||
|
||||
export class ApplicationInsights extends BaseTelemetryPlugin implements IAppInsights, IAppInsightsInternal {
|
||||
public static Version = "2.5.10"; // Not currently used anywhere
|
||||
public static Version = "2.5.11"; // Not currently used anywhere
|
||||
|
||||
public static getDefaultConfig(config?: IConfig): IConfig {
|
||||
if (!config) {
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@microsoft/applicationinsights-clickanalytics-js",
|
||||
"version": "2.5.10",
|
||||
"version": "2.5.11",
|
||||
"description": "Microsoft Application Insights Click Analytics extension",
|
||||
"main": "dist/applicationinsights-clickanalytics-js.js",
|
||||
"module": "dist-esm/applicationinsights-clickanalytics-js.js",
|
||||
|
@ -15,7 +15,7 @@
|
|||
},
|
||||
"devDependencies": {
|
||||
"@microsoft/applicationinsights-rollup-es3": "1.1.3",
|
||||
"@microsoft/applicationinsights-properties-js": "2.5.10",
|
||||
"@microsoft/applicationinsights-properties-js": "2.5.11",
|
||||
"typescript": "2.5.3",
|
||||
"globby": "^11.0.0",
|
||||
"rollup-plugin-node-resolve": "^3.4.0",
|
||||
|
@ -32,8 +32,8 @@
|
|||
"dependencies": {
|
||||
"@microsoft/dynamicproto-js": "^1.1.0",
|
||||
"@microsoft/applicationinsights-shims": "1.0.3",
|
||||
"@microsoft/applicationinsights-core-js": "2.5.10",
|
||||
"@microsoft/applicationinsights-common": "2.5.10"
|
||||
"@microsoft/applicationinsights-core-js": "2.5.11",
|
||||
"@microsoft/applicationinsights-common": "2.5.11"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@microsoft/applicationinsights-debugplugin-js",
|
||||
"version": "2.5.10-beta",
|
||||
"version": "2.5.11-beta",
|
||||
"description": "Microsoft Application Insights Javascript SDK apis",
|
||||
"main": "dist/applicationinsights-debugplugin-js.js",
|
||||
"module": "dist-esm/applicationinsights-debugplugin-js.js",
|
||||
|
@ -33,8 +33,8 @@
|
|||
},
|
||||
"dependencies": {
|
||||
"@microsoft/dynamicproto-js": "^1.1.0",
|
||||
"@microsoft/applicationinsights-common": "2.5.10",
|
||||
"@microsoft/applicationinsights-core-js": "2.5.10",
|
||||
"@microsoft/applicationinsights-common": "2.5.11",
|
||||
"@microsoft/applicationinsights-core-js": "2.5.11",
|
||||
"@microsoft/applicationinsights-shims": "1.0.3"
|
||||
},
|
||||
"license": "MIT"
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@microsoft/applicationinsights-dependencies-js",
|
||||
"version": "2.5.10",
|
||||
"version": "2.5.11",
|
||||
"description": "Microsoft Application Insights XHR dependencies plugin",
|
||||
"main": "dist/applicationinsights-dependencies-js.js",
|
||||
"module": "dist-esm/applicationinsights-dependencies-js.js",
|
||||
|
@ -35,8 +35,8 @@
|
|||
"dependencies": {
|
||||
"@microsoft/dynamicproto-js": "^1.1.0",
|
||||
"@microsoft/applicationinsights-shims" : "1.0.3",
|
||||
"@microsoft/applicationinsights-core-js": "2.5.10",
|
||||
"@microsoft/applicationinsights-common": "2.5.10"
|
||||
"@microsoft/applicationinsights-core-js": "2.5.11",
|
||||
"@microsoft/applicationinsights-common": "2.5.11"
|
||||
},
|
||||
"license": "MIT"
|
||||
}
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@microsoft/applicationinsights-properties-js",
|
||||
"version": "2.5.10",
|
||||
"version": "2.5.11",
|
||||
"description": "Microsoft Application Insights properties (Part A) plugin",
|
||||
"main": "dist/applicationinsights-properties-js.js",
|
||||
"module": "dist-esm/applicationinsights-properties-js.js",
|
||||
|
@ -33,8 +33,8 @@
|
|||
},
|
||||
"dependencies": {
|
||||
"@microsoft/applicationinsights-shims" : "1.0.3",
|
||||
"@microsoft/applicationinsights-core-js": "2.5.10",
|
||||
"@microsoft/applicationinsights-common": "2.5.10"
|
||||
"@microsoft/applicationinsights-core-js": "2.5.11",
|
||||
"@microsoft/applicationinsights-common": "2.5.11"
|
||||
},
|
||||
"license": "MIT"
|
||||
}
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
import { IInternal } from '@microsoft/applicationinsights-common';
|
||||
import { ITelemetryConfig } from '../Interfaces/ITelemetryConfig';
|
||||
|
||||
const Version = "2.5.10";
|
||||
const Version = "2.5.11";
|
||||
|
||||
export class Internal implements IInternal {
|
||||
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"name": "@microsoft/applicationinsights-core-js",
|
||||
"author": "Microsoft Corporation",
|
||||
"version": "2.5.10",
|
||||
"version": "2.5.11",
|
||||
"description": "Microsoft Application Insights Core Javascript SDK",
|
||||
"keywords": [
|
||||
"azure",
|
||||
|
|
Загрузка…
Ссылка в новой задаче