Skip to content

Commit

Permalink
chore: bump versions to 2.3.1 (#1109)
Browse files Browse the repository at this point in the history
* chore: bump versions to 2.3.1

* fix: broken shrinkwrap
  • Loading branch information
Mark Wolff committed Nov 7, 2019
1 parent 0b12b61 commit 8d7fd1e
Show file tree
Hide file tree
Showing 21 changed files with 8,321 additions and 190 deletions.
16 changes: 12 additions & 4 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,23 @@ before_install:
- npm i -g grunt-cli
jobs:
include:
- stage: "Prod build and test"
name: "Prod build and test"
- stage: "Build and Test: Legacy"
name: "Build and Test: Legacy"
script:
- cd legacy/
- npm install
- grunt
- grunt test
- stage: "build and test"
name: "build and test"
- stage: "Build and Test: React Native Plugin"
name: "Build and Test: React Native Plugin"
script:
- cd extensions/applicationinsights-react-native
- npm install
- npm run build
- npm run test
- npm run lint
- stage: "Build and Test: @microsoft/applicationinsights-web "
name: "Build and Test: @microsoft/applicationinsights-web "
script:
- set -e
- set NO_UPDATE_NOTIFIER=1
Expand Down
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.3.0",
"version": "2.3.1",
"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 @@ -47,12 +47,12 @@
"typescript": "2.5.3"
},
"dependencies": {
"@microsoft/applicationinsights-analytics-js": "2.3.0",
"@microsoft/applicationinsights-channel-js": "2.3.0",
"@microsoft/applicationinsights-common": "2.3.0",
"@microsoft/applicationinsights-core-js": "2.3.0",
"@microsoft/applicationinsights-dependencies-js": "2.3.0",
"@microsoft/applicationinsights-properties-js": "2.3.0"
"@microsoft/applicationinsights-analytics-js": "2.3.1",
"@microsoft/applicationinsights-channel-js": "2.3.1",
"@microsoft/applicationinsights-common": "2.3.1",
"@microsoft/applicationinsights-core-js": "2.3.1",
"@microsoft/applicationinsights-dependencies-js": "2.3.1",
"@microsoft/applicationinsights-properties-js": "2.3.1"
},
"peerDependencies": {
"tslib": "^1.9.3"
Expand Down
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.3.0",
"version": "2.3.1",
"description": "Microsoft Application Insights Javascript SDK core and channel",
"main": "dist/applicationinsights-web-basic.js",
"module": "dist-esm/index.js",
Expand All @@ -25,9 +25,9 @@
"tslint-config-prettier": "^1.18.0"
},
"dependencies": {
"@microsoft/applicationinsights-common": "2.3.0",
"@microsoft/applicationinsights-channel-js": "2.3.0",
"@microsoft/applicationinsights-core-js": "2.3.0"
"@microsoft/applicationinsights-common": "2.3.1",
"@microsoft/applicationinsights-channel-js": "2.3.1",
"@microsoft/applicationinsights-core-js": "2.3.1"
},
"peerDependencies": {
"tslib": "^1.9.3"
Expand Down
6 changes: 3 additions & 3 deletions channels/applicationinsights-channel-js/Tests/Sender.tests.ts
Original file line number Diff line number Diff line change
Expand Up @@ -260,7 +260,7 @@ export class SenderTests extends TestClass {
}

},
tags: [{"ai.internal.sdkVersion": "javascript:2.3.0"}],
tags: [{"ai.internal.sdkVersion": "javascript:2.3.1"}],
data: {
"property1": "val1",
"measurement1": 50.0,
Expand Down Expand Up @@ -305,7 +305,7 @@ export class SenderTests extends TestClass {
Assert.equal("d041d2e5fa834b4f9eee41ac163bf402", appInsightsEnvelope.tags["ai.session.id"]);
Assert.equal("browser", appInsightsEnvelope.tags["ai.device.id"]);
Assert.equal("Browser", appInsightsEnvelope.tags["ai.device.type"]);
Assert.equal("javascript:2.3.0", appInsightsEnvelope.tags["ai.internal.sdkVersion"]);
Assert.equal("javascript:2.3.1", appInsightsEnvelope.tags["ai.internal.sdkVersion"]);

// Assert name
Assert.ok(appInsightsEnvelope.name);
Expand Down Expand Up @@ -375,7 +375,7 @@ export class SenderTests extends TestClass {
Assert.ok(baseData.ver);
Assert.equal(2, baseData.ver);

Assert.equal("javascript:2.3.0", appInsightsEnvelope.tags["ai.internal.sdkVersion"]);
Assert.equal("javascript:2.3.1", 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.3.0",
"version": "2.3.1",
"description": "Microsoft Application Insights JavaScript SDK Channel",
"main": "dist/applicationinsights-channel-js.js",
"module": "dist-esm/applicationinsights-channel-js.js",
Expand Down Expand Up @@ -30,8 +30,8 @@
"rollup": "^0.66.0"
},
"dependencies": {
"@microsoft/applicationinsights-core-js": "2.3.0",
"@microsoft/applicationinsights-common": "2.3.0",
"@microsoft/applicationinsights-core-js": "2.3.1",
"@microsoft/applicationinsights-common": "2.3.1",
"tslib": "^1.9.3"
},
"license": "MIT"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ const baseType: string = "baseType";
const baseData: string = "baseData";

export abstract class EnvelopeCreator {
public static Version = "2.3.0";
public static Version = "2.3.1";

protected static extractPropsAndMeasurements(data: { [key: string]: any }, properties: { [key: string]: any }, measurements: { [key: string]: any }) {
if (!CoreUtils.isNullOrUndefined(data)) {
Expand Down
Loading

0 comments on commit 8d7fd1e

Please sign in to comment.