Skip to content

Commit

Permalink
Merge pull request #87 from SharePoint/dev
Browse files Browse the repository at this point in the history
Merge for v1.5.0
  • Loading branch information
estruyf committed Jun 19, 2018
2 parents 05d6045 + 1ad5309 commit 23af35a
Show file tree
Hide file tree
Showing 28 changed files with 1,094 additions and 114 deletions.
189 changes: 189 additions & 0 deletions CHANGELOG.JSON
@@ -0,0 +1,189 @@
{
"versions": [
{
"version": "1.5.0",
"changes": {
"new": [
"New `PeoplePicker` control added [#19](https://github.com/SharePoint/sp-dev-fx-controls-react/issues/19)"
],
"enhancements": [
"Added a properties to the `TaxonomyPicker` to specify which terms are disabled/not-selectable [#82](https://github.com/SharePoint/sp-dev-fx-controls-react/issues/82)"
],
"fixes": [
"Bug in `TaxonomyPicker` where values are not updated by an async change [#83](https://github.com/SharePoint/sp-dev-fx-controls-react/issues/83)",
"`FieldUserRenderer` uses email prop for `GetPropertiesFor` [#84](https://github.com/SharePoint/sp-dev-fx-controls-react/issues/84)",
"Fixed issue in single selection mode when all group items were selected in the `ListView` when user clicked on the group header [#86](https://github.com/SharePoint/sp-dev-fx-controls-react/issues/86)"
]
},
"contributions": ["Asish Padhy", "Alex Terentiev"]
},
{
"version": "1.4.0",
"changes": {
"new": [
"`SecurityTrimmedControl` control got added [#74](https://github.com/SharePoint/sp-dev-fx-controls-react/issues/74)"
],
"enhancements": [
"Allow the `TaxonomyPicker` to also be used in Application Customizer [#77](https://github.com/SharePoint/sp-dev-fx-controls-react/issues/77)",
"Add `npm postinstall` script to automatically add the locale config [#78](https://github.com/SharePoint/sp-dev-fx-controls-react/issues/78)"
],
"fixes": [
"Icon not showing up in the `Placeholder` control [#76](https://github.com/SharePoint/sp-dev-fx-controls-react/issues/76)"
]
},
"contributions": []
},
{
"version": "1.3.0",
"changes": {
"new": [],
"enhancements": [
"`TaxonomyPicker` control got added [#22](https://github.com/SharePoint/sp-dev-fx-controls-react/issues/22) [#63](https://github.com/SharePoint/sp-dev-fx-controls-react/issues/63) [#64](https://github.com/SharePoint/sp-dev-fx-controls-react/issues/64)",
"`ListPicker` control got added [#34](https://github.com/SharePoint/sp-dev-fx-controls-react/issues/34)"
],
"fixes": [
"Issue fixed when the optional `selection` property was not provided to the `ListView` [#65](https://github.com/SharePoint/sp-dev-fx-controls-react/issues/65)"
]
},
"contributions": []
},
{
"version": "1.2.5",
"changes": {
"new": [],
"enhancements": [],
"fixes": [
"Undo `ListView` item selection after items array updates [#55](https://github.com/SharePoint/sp-dev-fx-controls-react/issues/55)"
]
},
"contributions": []
},
{
"version": "1.2.4",
"changes": {
"new": [],
"enhancements": [
"Hiding placeholder title on small zones"
],
"fixes": [
"iFrame dialog reference fix [#52](https://github.com/SharePoint/sp-dev-fx-controls-react/issues/52)"
]
},
"contributions": []
},
{
"version": "1.2.3",
"changes": {
"new": [],
"enhancements": [
"Optimized telemetry so that it only pushes control data",
"`WebPartTitle` hide control completely when empty"
],
"fixes": []
},
"contributions": []
},
{
"version": "1.2.2",
"changes": {
"new": [],
"enhancements": [],
"fixes": ["Fixes an issue sorting in the `ListView` control while items were selected. Indexes were not updated."]
},
"contributions": []
},
{
"version": "1.2.1",
"changes": {
"new": [],
"enhancements": [],
"fixes": ["`FieldTaxonomyRenderer` got fixed to support single and multiple values"]
},
"contributions": []
},
{
"version": "1.2.0",
"changes": {
"new": [
"Field controls are added to the project",
"`IFrameDialog` was added to the project"
],
"enhancements": [],
"fixes": ["Fixed theming in the `WebPartTitle` control"]
},
"contributions": []
},
{
"version": "1.1.3",
"changes": {
"new": [],
"enhancements": [],
"fixes": ["`FileTypeIcon` icon fixed where it did not render an icon. This control should now works in SPFx extensions."]
},
"contributions": []
},
{
"version": "1.1.2",
"changes": {
"new": [],
"enhancements": ["Improved telemetry with some object checks"],
"fixes": ["Fix for `WebPartTitle` control to inherit color"]
},
"contributions": []
},
{
"version": "1.1.1",
"changes": {
"new": [],
"enhancements": ["Removed operation name from telemetry"],
"fixes": []
},
"contributions": []
},
{
"version": "1.1.0",
"changes": {
"new": [],
"enhancements": ["Telemetry added"],
"fixes": []
},
"contributions": []
},
{
"version": "1.0.0",
"changes": {
"new": ["`WebPartTitle` control got added"],
"enhancements": ["ListView control got extended with the ability to specify a set of preselected items."],
"fixes": []
},
"contributions": []
},
{
"version": "Beta 1.0.0-beta.8",
"changes": {
"new": [],
"enhancements": [],
"fixes": ["Fix for the `ListView` control when selection is used in combination with `setState`."]
},
"contributions": []
},
{
"version": "Beta 1.0.0-beta.7",
"changes": {
"new": ["Grouping functionality added to the `ListView` control"],
"enhancements": [],
"fixes": []
},
"contributions": []
},
{
"version": "Beta 1.0.0-beta.6",
"changes": {
"new": ["Initial release"],
"enhancements": [],
"fixes": []
},
"contributions": []
}
]
}
59 changes: 50 additions & 9 deletions CHANGELOG.md
@@ -1,8 +1,24 @@
# Releases

## 1.5.0

**New control(s)**

- New `PeoplePicker` control added [#19](https://github.com/SharePoint/sp-dev-fx-controls-react/issues/19)

**Enhancements**

- Added a properties to the `TaxonomyPicker` to specify which terms are disabled/not-selectable [#82](https://github.com/SharePoint/sp-dev-fx-controls-react/issues/82)

**Fixes**

- Bug in `TaxonomyPicker` where values are not updated by an async change [#83](https://github.com/SharePoint/sp-dev-fx-controls-react/issues/83)
- `FieldUserRenderer` uses email prop for `GetPropertiesFor` [#84](https://github.com/SharePoint/sp-dev-fx-controls-react/issues/84)
- Fixed issue in single selection mode when all group items were selected in the `ListView` when user clicked on the group header [#86](https://github.com/SharePoint/sp-dev-fx-controls-react/issues/86)

## 1.4.0

**New Controls**
**New control(s)**

- `SecurityTrimmedControl` control got added [#74](https://github.com/SharePoint/sp-dev-fx-controls-react/issues/74)

Expand All @@ -17,7 +33,7 @@

## 1.3.0

**New Controls**
**Enhancements**

- `TaxonomyPicker` control got added [#22](https://github.com/SharePoint/sp-dev-fx-controls-react/issues/22) [#63](https://github.com/SharePoint/sp-dev-fx-controls-react/issues/63) [#64](https://github.com/SharePoint/sp-dev-fx-controls-react/issues/64)
- `ListPicker` control got added [#34](https://github.com/SharePoint/sp-dev-fx-controls-react/issues/34)
Expand Down Expand Up @@ -63,7 +79,7 @@

## 1.2.0

**New controls**
**New control(s)**

- Field controls are added to the project
- `IFrameDialog` was added to the project
Expand All @@ -74,31 +90,56 @@

## 1.1.3

- `FileTypeIcon` icon fixed. This control should now also work in SPFx extensions.
**Fixes**

- `FileTypeIcon` icon fixed where it did not render an icon. This control should now works in SPFx extensions.

## 1.1.2

- Fix for `WebPartTitle` control to inherit color
**Enhancements**

- Improved telemetry with some object checks

**Fixes**

- Fix for `WebPartTitle` control to inherit color

## 1.1.1

**Enhancements**

- Removed operation name from telemetry

## 1.1.0

**Enhancements**

- Telemetry added

## 1.0.0
- **New control**: WebPartTitle control got added.
- **Enhancement**: ListView control got extended with the ability to specify a set of preselected items.

**New control(s)**

- `WebPartTitle` control got added

**Enhancements**

- ListView control got extended with the ability to specify a set of preselected items.

## Beta 1.0.0-beta.8
- **Bug fix**: bug fix for the `ListView` control when selection is used in combination with `setState`.

**Fixes**

- Fix for the `ListView` control when selection is used in combination with `setState`.

## Beta 1.0.0-beta.7
**Added**

**New control(s)**

- Grouping functionality added to the `ListView` control

## Beta 1.0.0-beta.6

**New control(s)**

- Initial release

0 comments on commit 23af35a

Please sign in to comment.