Skip to content

Commit b54fda7

Browse files
authored
Merge pull request pnp#137 from SharePoint/dev
Merge for v1.9.0
2 parents fbdbbc6 + e9eb35e commit b54fda7

File tree

14 files changed

+3400
-3151
lines changed

14 files changed

+3400
-3151
lines changed

.circleci/config.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,12 @@ jobs:
2626
- run:
2727
name: build
2828
command: npm run build
29+
- run:
30+
name: sonarcloud:config
31+
command: npm run sonarcloud:config $SONARCLOUD_TOKEN $CIRCLE_BRANCH
32+
- run:
33+
name: sonarcloud:start
34+
command: npm run sonarcloud:start
2935
- persist_to_workspace:
3036
root: .
3137
paths: .

CHANGELOG.JSON

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,20 @@
11
{
22
"versions": [
3+
{
4+
"version": "1.9.0",
5+
"changes": {
6+
"new": [],
7+
"enhancements": [
8+
"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)"
9+
],
10+
"fixes": [
11+
"`FieldLookupRenderer`: Lookup dialog is empty [#131](https://github.com/SharePoint/sp-dev-fx-controls-react/issues/131)",
12+
"`IFrameDialog`: Unnecessary horizontal scroll in IFrame dialog [#132](https://github.com/SharePoint/sp-dev-fx-controls-react/issues/132)",
13+
"`PeoplePicker`: Suggested People not loading after first selection [#134](https://github.com/SharePoint/sp-dev-fx-controls-react/issues/134)"
14+
]
15+
},
16+
"contributions": ["[Gautam Sheth](https://github.com/gautamdsheth)", "[Alex Terentiev](https://github.com/AJIXuMuK)"]
17+
},
318
{
419
"version": "1.8.0",
520
"changes": {

CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,17 @@
11
# Releases
22

3+
## 1.9.0
4+
5+
**Enhancements**
6+
7+
- 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)
8+
9+
**Fixes**
10+
11+
- `FieldLookupRenderer`: Lookup dialog is empty [#131](https://github.com/SharePoint/sp-dev-fx-controls-react/issues/131)
12+
- `IFrameDialog`: Unnecessary horizontal scroll in IFrame dialog [#132](https://github.com/SharePoint/sp-dev-fx-controls-react/issues/132)
13+
- `PeoplePicker`: Suggested People not loading after first selection [#134](https://github.com/SharePoint/sp-dev-fx-controls-react/issues/134)
14+
315
## 1.8.0
416

517
**Enhancements**

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

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,17 @@
11
# Releases
22

3+
## 1.9.0
4+
5+
**Enhancements**
6+
7+
- 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)
8+
9+
**Fixes**
10+
11+
- `FieldLookupRenderer`: Lookup dialog is empty [#131](https://github.com/SharePoint/sp-dev-fx-controls-react/issues/131)
12+
- `IFrameDialog`: Unnecessary horizontal scroll in IFrame dialog [#132](https://github.com/SharePoint/sp-dev-fx-controls-react/issues/132)
13+
- `PeoplePicker`: Suggested People not loading after first selection [#134](https://github.com/SharePoint/sp-dev-fx-controls-react/issues/134)
14+
315
## 1.8.0
416

517
**Enhancements**

gulpfile.sonarqube.js

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
var gulp = require('gulp');
2+
var sonarqubeScanner = require('sonarqube-scanner');
3+
4+
gulp.task('sonarqube', function(callback) {
5+
sonarqubeScanner({
6+
serverUrl : "https://sonarcloud.io",
7+
options : {}
8+
}, callback);
9+
});

0 commit comments

Comments
 (0)