Skip to content

Commit

Permalink
Merge pull request #137 from SharePoint/dev
Browse files Browse the repository at this point in the history
Merge for v1.9.0
  • Loading branch information
estruyf committed Sep 21, 2018
2 parents fbdbbc6 + e9eb35e commit b54fda7
Show file tree
Hide file tree
Showing 14 changed files with 3,400 additions and 3,151 deletions.
6 changes: 6 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,12 @@ jobs:
- run:
name: build
command: npm run build
- run:
name: sonarcloud:config
command: npm run sonarcloud:config $SONARCLOUD_TOKEN $CIRCLE_BRANCH
- run:
name: sonarcloud:start
command: npm run sonarcloud:start
- persist_to_workspace:
root: .
paths: .
Expand Down
15 changes: 15 additions & 0 deletions CHANGELOG.JSON
Original file line number Diff line number Diff line change
@@ -1,5 +1,20 @@
{
"versions": [
{
"version": "1.9.0",
"changes": {
"new": [],
"enhancements": [
"Optimize bundle size for latest SPFx version due to Office UI Fabric specific versioning [#136](https://github.com/SharePoint/sp-dev-fx-controls-react/issues/136)"
],
"fixes": [
"`FieldLookupRenderer`: Lookup dialog is empty [#131](https://github.com/SharePoint/sp-dev-fx-controls-react/issues/131)",
"`IFrameDialog`: Unnecessary horizontal scroll in IFrame dialog [#132](https://github.com/SharePoint/sp-dev-fx-controls-react/issues/132)",
"`PeoplePicker`: Suggested People not loading after first selection [#134](https://github.com/SharePoint/sp-dev-fx-controls-react/issues/134)"
]
},
"contributions": ["[Gautam Sheth](https://github.com/gautamdsheth)", "[Alex Terentiev](https://github.com/AJIXuMuK)"]
},
{
"version": "1.8.0",
"changes": {
Expand Down
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
# Releases

## 1.9.0

**Enhancements**

- Optimize bundle size for latest SPFx version due to Office UI Fabric specific versioning [#136](https://github.com/SharePoint/sp-dev-fx-controls-react/issues/136)

**Fixes**

- `FieldLookupRenderer`: Lookup dialog is empty [#131](https://github.com/SharePoint/sp-dev-fx-controls-react/issues/131)
- `IFrameDialog`: Unnecessary horizontal scroll in IFrame dialog [#132](https://github.com/SharePoint/sp-dev-fx-controls-react/issues/132)
- `PeoplePicker`: Suggested People not loading after first selection [#134](https://github.com/SharePoint/sp-dev-fx-controls-react/issues/134)

## 1.8.0

**Enhancements**
Expand Down
12 changes: 12 additions & 0 deletions docs/documentation/docs/about/release-notes.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
# Releases

## 1.9.0

**Enhancements**

- Optimize bundle size for latest SPFx version due to Office UI Fabric specific versioning [#136](https://github.com/SharePoint/sp-dev-fx-controls-react/issues/136)

**Fixes**

- `FieldLookupRenderer`: Lookup dialog is empty [#131](https://github.com/SharePoint/sp-dev-fx-controls-react/issues/131)
- `IFrameDialog`: Unnecessary horizontal scroll in IFrame dialog [#132](https://github.com/SharePoint/sp-dev-fx-controls-react/issues/132)
- `PeoplePicker`: Suggested People not loading after first selection [#134](https://github.com/SharePoint/sp-dev-fx-controls-react/issues/134)

## 1.8.0

**Enhancements**
Expand Down
9 changes: 9 additions & 0 deletions gulpfile.sonarqube.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
var gulp = require('gulp');
var sonarqubeScanner = require('sonarqube-scanner');

gulp.task('sonarqube', function(callback) {
sonarqubeScanner({
serverUrl : "https://sonarcloud.io",
options : {}
}, callback);
});
Loading

0 comments on commit b54fda7

Please sign in to comment.