Skip to content

Commit 7725c27

Browse files
committed
Fix for pnp#81
1 parent 0775549 commit 7725c27

File tree

32 files changed

+875
-370
lines changed

32 files changed

+875
-370
lines changed

CHANGELOG.JSON

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
{
22
"versions": [
33
{
4-
"version": "1.5.`",
4+
"version": "1.6.0`",
55
"changes": {
66
"new": [],
77
"enhancements": [],
88
"fixes": [
9-
"Fix issue where Application Insights is not defined [#81](https://github.com/SharePoint/sp-dev-fx-controls-react/issues/81)"
9+
"New telemetry approach which allows you to use Application Insights [#81](https://github.com/SharePoint/sp-dev-fx-controls-react/issues/81)"
1010
]
1111
},
12-
"contributions": ["Asish Padhy", "Alex Terentiev"]
12+
"contributions": []
1313
},
1414
{
1515
"version": "1.5.0",

CHANGELOG.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
# Releases
22

3-
## 1.5.`
3+
## 1.6.0`
44

55
**Fixes**
66

7-
- Fix issue where Application Insights is not defined [#81](https://github.com/SharePoint/sp-dev-fx-controls-react/issues/81)
7+
- New telemetry approach which allows you to use Application Insights [#81](https://github.com/SharePoint/sp-dev-fx-controls-react/issues/81)
88

99
## 1.5.0
1010

docs/documentation/docs/about/release-notes.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
# Releases
22

3-
## 1.5.`
3+
## 1.6.0`
44

55
**Fixes**
66

7-
- Fix issue where Application Insights is not defined [#81](https://github.com/SharePoint/sp-dev-fx-controls-react/issues/81)
7+
- New telemetry approach which allows you to use Application Insights [#81](https://github.com/SharePoint/sp-dev-fx-controls-react/issues/81)
88

99
## 1.5.0
1010

gulpfile.js

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ const fs = require('fs');
77
// Update the version number in the version.ts file
88
gulp.task('versionUpdater', (done) => {
99
const pkgContents = require('./package.json');
10-
const filePath = './src/common/appInsights/version.ts';
10+
const filePath = './src/common/telemetry/version.ts';
1111
const fileContents = `export const version: string = "{versionPlaceholder}";`;
1212
const newContents = fileContents.replace("{versionPlaceholder}", pkgContents.version);
1313
console.log(`Updating version number to: ${pkgContents.version}`);
@@ -21,5 +21,3 @@ const karmaTask = build.karma;
2121
if (karmaTask) {
2222
karmaTask.taskConfig.configPath = './config/karma.config.js';
2323
}
24-
25-

0 commit comments

Comments
 (0)