Skip to content

Commit

Permalink
[Release][Core] - Increase to version 2.5.9 (#1396)
Browse files Browse the repository at this point in the history
  • Loading branch information
MSNev committed Oct 6, 2020
1 parent 6c32093 commit b5d7743
Show file tree
Hide file tree
Showing 15 changed files with 72 additions and 39 deletions.
14 changes: 7 additions & 7 deletions AISKU/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@microsoft/applicationinsights-web",
"version": "2.5.8",
"version": "2.5.9",
"description": "Microsoft Application Insights Javascript SDK API 1.0 beta",
"main": "dist/applicationinsights-web.js",
"module": "dist-esm/applicationinsights-web.js",
Expand Down Expand Up @@ -52,12 +52,12 @@
"dependencies": {
"@microsoft/dynamicproto-js": "^1.0.0",
"@microsoft/applicationinsights-shims" : "1.0.3",
"@microsoft/applicationinsights-analytics-js": "2.5.8",
"@microsoft/applicationinsights-channel-js": "2.5.8",
"@microsoft/applicationinsights-common": "2.5.8",
"@microsoft/applicationinsights-core-js": "2.5.8",
"@microsoft/applicationinsights-dependencies-js": "2.5.8",
"@microsoft/applicationinsights-properties-js": "2.5.8"
"@microsoft/applicationinsights-analytics-js": "2.5.9",
"@microsoft/applicationinsights-channel-js": "2.5.9",
"@microsoft/applicationinsights-common": "2.5.9",
"@microsoft/applicationinsights-core-js": "2.5.9",
"@microsoft/applicationinsights-dependencies-js": "2.5.9",
"@microsoft/applicationinsights-properties-js": "2.5.9"
},
"license": "MIT"
}
8 changes: 4 additions & 4 deletions AISKULight/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@microsoft/applicationinsights-web-basic",
"version": "2.5.8",
"version": "2.5.9",
"description": "Microsoft Application Insights Javascript SDK core and channel",
"main": "dist/applicationinsights-web-basic.js",
"module": "dist-esm/index.js",
Expand Down Expand Up @@ -29,9 +29,9 @@
"dependencies": {
"@microsoft/dynamicproto-js": "^1.0.0",
"@microsoft/applicationinsights-shims" : "1.0.3",
"@microsoft/applicationinsights-common": "2.5.8",
"@microsoft/applicationinsights-channel-js": "2.5.8",
"@microsoft/applicationinsights-core-js": "2.5.8"
"@microsoft/applicationinsights-common": "2.5.9",
"@microsoft/applicationinsights-channel-js": "2.5.9",
"@microsoft/applicationinsights-core-js": "2.5.9"
},
"peerDependencies": {
},
Expand Down
33 changes: 33 additions & 0 deletions RELEASES.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,42 @@
# Releases

## 2.5.9 (September 5th, 2020)

### Changelog

- #1395 Update publishing scripts to support automation
- #1391 Increase the randomness and size of the sessionId (newId())
- #1390 using older version of types/cheerio dependecy
- #1389 take out SPO support
- #1388 Bump shims version for React, React-Native and Angular to latest.
- #1384 Add sideEffects field to applicationinsights-shims package.json
- Use updated Shims module (v1.0.2)
- #1381 [BUG] NPM package for @microsoft/applicationinsights-angularplugin-js does not have a dist folder
- #1377 [BUG] Session storage buffers being initialized though configured not to use
- #1375 Make AI JS SDK for with NativeScript-Angular
- Use updated Shims module (v1.0.1)
- #1374 indexof is wrongly cased
- #1365 correlationHeaderExcludePatterns added to IConfig
- #1364 [BUG] PerfManager and NotificationManager are not exported in AISKU
- #1363 [BUG] correlationHeaderExcludePatterns missing from types
- #1361 Debug plugin readme changes
- #1359 Add trackMetric method for Angular plugin
- #1358 Add snippet setup for SPO extension solution and update README

### New Package applicationinsights-shims v1.0.2

- #1384 Add sideEffects field to applicationinsights-shims package.json

### New Package applicationinsights-shims v1.0.1

- #1375 Make AI JS SDK for with NativeScript-Angular

## 2.5.8 (August 31st, 2020)

### Changelog

- #1356 add documentation on how to make snippet changes
- #1355 update angular package name
- #1350 [BUG] The new IPerfEvent is using Date.now() which is not supported in an ES3 environment
- #1349 Update angular plugin track pageview logic and test
- #1343 [BUG] IPerfManager interface - the create() function is defined to return an IPerfEvent and not an IPerfEvent?
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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.8", appInsightsEnvelope.tags["ai.internal.sdkVersion"]);
QUnit.assert.equal("javascript:2.5.9", appInsightsEnvelope.tags["ai.internal.sdkVersion"]);
}
})

Expand Down
6 changes: 3 additions & 3 deletions channels/applicationinsights-channel-js/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@microsoft/applicationinsights-channel-js",
"version": "2.5.8",
"version": "2.5.9",
"description": "Microsoft Application Insights JavaScript SDK Channel",
"main": "dist/applicationinsights-channel-js.js",
"module": "dist-esm/applicationinsights-channel-js.js",
Expand Down Expand Up @@ -38,8 +38,8 @@
"dependencies": {
"@microsoft/dynamicproto-js": "^1.0.0",
"@microsoft/applicationinsights-shims" : "1.0.3",
"@microsoft/applicationinsights-core-js": "2.5.8",
"@microsoft/applicationinsights-common": "2.5.8"
"@microsoft/applicationinsights-core-js": "2.5.9",
"@microsoft/applicationinsights-common": "2.5.9"
},
"license": "MIT"
}
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ function _setValueIf<T>(target:T, field:keyof T, value:any) {
}

export abstract class EnvelopeCreator {
public static Version = "2.5.8";
public static Version = "2.5.9";

protected static extractPropsAndMeasurements(data: { [key: string]: any }, properties: { [key: string]: any }, measurements: { [key: string]: any }) {
if (!isNullOrUndefined(data)) {
Expand Down
10 changes: 5 additions & 5 deletions common/config/rush/npm-shrinkwrap.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions extensions/applicationinsights-analytics-js/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@microsoft/applicationinsights-analytics-js",
"version": "2.5.8",
"version": "2.5.9",
"description": "Microsoft Application Insights Javascript SDK apis",
"main": "dist/applicationinsights-analytics-js.js",
"module": "dist-esm/applicationinsights-analytics-js.js",
Expand All @@ -19,7 +19,7 @@
},
"devDependencies": {
"@microsoft/applicationinsights-rollup-es3" : "1.1.3",
"@microsoft/applicationinsights-properties-js": "2.5.8",
"@microsoft/applicationinsights-properties-js": "2.5.9",
"typescript": "2.5.3",
"globby": "^11.0.0",
"rollup-plugin-node-resolve": "^3.4.0",
Expand All @@ -36,8 +36,8 @@
"dependencies": {
"@microsoft/dynamicproto-js": "^1.0.0",
"@microsoft/applicationinsights-shims" : "1.0.3",
"@microsoft/applicationinsights-core-js": "2.5.8",
"@microsoft/applicationinsights-common": "2.5.8"
"@microsoft/applicationinsights-core-js": "2.5.9",
"@microsoft/applicationinsights-common": "2.5.9"
},
"license": "MIT"
}
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ function _dispatchEvent(target:EventTarget, evnt: Event) {
}

export class ApplicationInsights extends BaseTelemetryPlugin implements IAppInsights, IAppInsightsInternal {
public static Version = "2.5.8"; // Not currently used anywhere
public static Version = "2.5.9"; // Not currently used anywhere

public static getDefaultConfig(config?: IConfig): IConfig {
if (!config) {
Expand Down
6 changes: 3 additions & 3 deletions extensions/applicationinsights-debugplugin-js/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@microsoft/applicationinsights-debugplugin-js",
"version": "2.5.8-beta",
"version": "2.5.9-beta",
"description": "Microsoft Application Insights Javascript SDK apis",
"main": "dist/applicationinsights-debugplugin-js.js",
"module": "dist-esm/applicationinsights-debugplugin-js.js",
Expand Down Expand Up @@ -33,8 +33,8 @@
},
"dependencies": {
"@microsoft/dynamicproto-js": "^1.0.0",
"@microsoft/applicationinsights-common": "2.5.8",
"@microsoft/applicationinsights-core-js": "2.5.8",
"@microsoft/applicationinsights-common": "2.5.9",
"@microsoft/applicationinsights-core-js": "2.5.9",
"@microsoft/applicationinsights-shims": "1.0.3"
},
"license": "MIT"
Expand Down
6 changes: 3 additions & 3 deletions extensions/applicationinsights-dependencies-js/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@microsoft/applicationinsights-dependencies-js",
"version": "2.5.8",
"version": "2.5.9",
"description": "Microsoft Application Insights XHR dependencies plugin",
"main": "dist/applicationinsights-dependencies-js.js",
"module": "dist-esm/applicationinsights-dependencies-js.js",
Expand Down Expand Up @@ -35,8 +35,8 @@
"dependencies": {
"@microsoft/dynamicproto-js": "^1.0.0",
"@microsoft/applicationinsights-shims" : "1.0.3",
"@microsoft/applicationinsights-core-js": "2.5.8",
"@microsoft/applicationinsights-common": "2.5.8"
"@microsoft/applicationinsights-core-js": "2.5.9",
"@microsoft/applicationinsights-common": "2.5.9"
},
"license": "MIT"
}
6 changes: 3 additions & 3 deletions extensions/applicationinsights-properties-js/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@microsoft/applicationinsights-properties-js",
"version": "2.5.8",
"version": "2.5.9",
"description": "Microsoft Application Insights properties (Part A) plugin",
"main": "dist/applicationinsights-properties-js.js",
"module": "dist-esm/applicationinsights-properties-js.js",
Expand Down Expand Up @@ -33,8 +33,8 @@
},
"dependencies": {
"@microsoft/applicationinsights-shims" : "1.0.3",
"@microsoft/applicationinsights-core-js": "2.5.8",
"@microsoft/applicationinsights-common": "2.5.8"
"@microsoft/applicationinsights-core-js": "2.5.9",
"@microsoft/applicationinsights-common": "2.5.9"
},
"license": "MIT"
}
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
import { IInternal } from '@microsoft/applicationinsights-common';
import { ITelemetryConfig } from '../Interfaces/ITelemetryConfig';

const Version = "2.5.8";
const Version = "2.5.9";

export class Internal implements IInternal {

Expand Down
4 changes: 2 additions & 2 deletions shared/AppInsightsCommon/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@microsoft/applicationinsights-common",
"version": "2.5.8",
"version": "2.5.9",
"description": "Microsoft Application Insights Common JavaScript Library",
"main": "./dist/applicationinsights-common.js",
"module": "./dist-esm/applicationinsights-common.js",
Expand Down Expand Up @@ -34,7 +34,7 @@
},
"dependencies": {
"@microsoft/applicationinsights-shims" : "1.0.3",
"@microsoft/applicationinsights-core-js": "2.5.8"
"@microsoft/applicationinsights-core-js": "2.5.9"
},
"license": "MIT"
}
2 changes: 1 addition & 1 deletion shared/AppInsightsCore/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@microsoft/applicationinsights-core-js",
"author": "Microsoft Corporation",
"version": "2.5.8",
"version": "2.5.9",
"description": "Microsoft Application Insights Core Javascript SDK",
"keywords": [
"azure",
Expand Down

0 comments on commit b5d7743

Please sign in to comment.