Skip to content

Commit 50bf4c7

Browse files
authored
Merge pull request #1070 from pnp/dev
2 parents bd4714d + fa9559d commit 50bf4c7

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

55 files changed

+17340
-13592
lines changed

.circleci/config.yml

Lines changed: 0 additions & 173 deletions
This file was deleted.

.github/workflows/dev-release.yml

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
name: BETA Release
2+
on:
3+
push:
4+
branches:
5+
- dev
6+
7+
jobs:
8+
build:
9+
runs-on: ubuntu-latest
10+
steps:
11+
- uses: actions/checkout@v2
12+
- uses: actions/setup-node@v1
13+
with:
14+
node-version: 14
15+
registry-url: https://registry.npmjs.org/
16+
17+
- name: Install npm dependencies
18+
run: npm i
19+
20+
- name: Update the package version
21+
if: github.ref == 'refs/heads/dev'
22+
run: node scripts/update-package-version.js $GITHUB_RUN_ID
23+
24+
- name: Update version number for telemetry
25+
run: npm run versionUpdater
26+
27+
- name: Create/update the missing localization keys
28+
run: npm run localization
29+
30+
- name: Run build
31+
run: npm run build
32+
33+
- name: Publish beta release
34+
run: npm publish --tag next --access public
35+
if: github.ref == 'refs/heads/dev'
36+
env:
37+
NODE_AUTH_TOKEN: ${{secrets.NPM_PUBLISH_TOKEN}}

.github/workflows/main-release.yml

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
name: Release
2+
on:
3+
release:
4+
types:
5+
- published
6+
workflow_dispatch:
7+
8+
jobs:
9+
build:
10+
runs-on: ubuntu-latest
11+
steps:
12+
- uses: actions/checkout@v2
13+
- uses: actions/setup-node@v1
14+
with:
15+
node-version: 14
16+
registry-url: https://registry.npmjs.org/
17+
18+
- name: Install npm dependencies
19+
run: npm i
20+
21+
- name: Update version number for telemetry
22+
run: npm run versionUpdater
23+
24+
- name: Create/update the missing localization keys
25+
run: npm run localization
26+
27+
- name: Run build
28+
run: npm run build
29+
30+
- name: Publish release
31+
run: npm publish
32+
env:
33+
NODE_AUTH_TOKEN: ${{secrets.NPM_PUBLISH_TOKEN}}

.yo-rc.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"@microsoft/generator-sharepoint": {
3-
"version": "1.12.1",
3+
"version": "1.13.1",
44
"libraryName": "sp-dev-fx-controls-react",
55
"libraryId": "92b1e52c-a5fa-490a-bcf4-76080f39442c",
66
"environment": "spo",

CHANGELOG.JSON

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,47 @@
11
{
22
"versions": [
3+
{
4+
"version": "3.5.0",
5+
"changes": {
6+
"new": [],
7+
"enhancements": [
8+
"Update `mgt` package to the latest version [#1038](https://github.com/pnp/sp-dev-fx-controls-react/pull/1038)",
9+
"`ListView`: Add ability to provide CSS class names for list wrapper and list itself [#1007](https://github.com/pnp/sp-dev-fx-controls-react/issues/1007)",
10+
"`IconPicker`: `onCancel` property is added [#1043](https://github.com/pnp/sp-dev-fx-controls-react/issues/1043)",
11+
"SharePoint Framework v1.13.* support",
12+
"`DynamicForm`: `disabledFields` property added [#987](https://github.com/pnp/sp-dev-fx-controls-react/pull/987)",
13+
"`ListPicker`: Add multi numbers support for baseTemplate option [#1016](https://github.com/pnp/sp-dev-fx-controls-react/issues/1016)",
14+
"`ComboboxListItemPicker`: Add option to sort the items in the picker [#985](https://github.com/pnp/sp-dev-fx-controls-react/issues/985)",
15+
"`PeoplePicker`: Added filter for Microsoft 365 Group [#985](https://github.com/pnp/sp-dev-fx-controls-react/pull/1027)",
16+
"`Accordion`: Added custom icons [#1033](https://github.com/pnp/sp-dev-fx-controls-react/issues/1033)",
17+
"Localization: Correction for german localizations [#1059](https://github.com/pnp/sp-dev-fx-controls-react/issues/1059)",
18+
"Localization: Corrections for norwegian localizations [#1060](https://github.com/pnp/sp-dev-fx-controls-react/pull/1060)",
19+
"`PeoplePicker `: Added Styles property [#1061](https://github.com/pnp/sp-dev-fx-controls-react/pull/1061)",
20+
"Localization: Update pt-pt and pt-br loc files [#1066](https://github.com/pnp/sp-dev-fx-controls-react/pull/1066)"
21+
],
22+
"fixes": [
23+
"`FilePicker`: `defaultFolderAbsolutePath` does not work Out of context [#1023](https://github.com/pnp/sp-dev-fx-controls-react/issues/1023)",
24+
"`ModernTaxonomyPicker`: correctly display with RTL mode [#1041](https://github.com/pnp/sp-dev-fx-controls-react/pull/1041)",
25+
"`FilePicker`: Fixed showing the selection circle on recent tabs [#1048](https://github.com/pnp/sp-dev-fx-controls-react/issues/1048)",
26+
"`FilePicker`: Your organisation tab breadcrumb not working [#1056](https://github.com/pnp/sp-dev-fx-controls-react/issues/1056)"
27+
]
28+
},
29+
"contributions": [
30+
"[Gautam Sheth](https://github.com/gautamdsheth)",
31+
"[Jouni Pohjolainen](https://github.com/jonepo)",
32+
"[jumpei-yamauchi](https://github.com/jumpei-yamauchi)",
33+
"[Louis Pineau](https://github.com/pineaulo)",
34+
"[Michalis Koutroupis](https://github.com/mkoutroupis)",
35+
"[MonalisaBaltatescu](https://github.com/MonalisaBaltatescu)",
36+
"[Patrik Hellgren](https://github.com/patrikhellgren)",
37+
"[Xiyitifu](https://github.com/Xiyitifu)",
38+
"[Russell gove](https://github.com/russgove)",
39+
"[Andreas Omayrat](https://github.com/andreasomayrat)",
40+
"[Abderahman Moujahid](https://github.com/Abderahman88)",
41+
"[Alexander M](https://github.com/alexanmo)",
42+
"[João Mendes](https://github.com/joaojmendes)"
43+
]
44+
},
345
{
446
"version": "3.4.1",
547
"changes": {

CHANGELOG.md

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

3+
## 3.5.0
4+
5+
### Enhancements
6+
7+
- Update `mgt` package to the latest version [#1038](https://github.com/pnp/sp-dev-fx-controls-react/pull/1038)
8+
- `ListView`: Add ability to provide CSS class names for list wrapper and list itself [#1007](https://github.com/pnp/sp-dev-fx-controls-react/issues/1007)
9+
- `IconPicker`: `onCancel` property is added [#1043](https://github.com/pnp/sp-dev-fx-controls-react/issues/1043)
10+
- SharePoint Framework v1.13.* support
11+
- `DynamicForm`: `disabledFields` property added [#987](https://github.com/pnp/sp-dev-fx-controls-react/pull/987)
12+
- `ListPicker`: Add multi numbers support for baseTemplate option [#1016](https://github.com/pnp/sp-dev-fx-controls-react/issues/1016)
13+
- `ComboboxListItemPicker`: Add option to sort the items in the picker [#985](https://github.com/pnp/sp-dev-fx-controls-react/issues/985)
14+
- `PeoplePicker`: Added filter for Microsoft 365 Group [#985](https://github.com/pnp/sp-dev-fx-controls-react/pull/1027)
15+
- `Accordion`: Added custom icons [#1033](https://github.com/pnp/sp-dev-fx-controls-react/issues/1033)
16+
- Localization: Correction for german localizations [#1059](https://github.com/pnp/sp-dev-fx-controls-react/issues/1059)
17+
- Localization: Corrections for norwegian localizations [#1060](https://github.com/pnp/sp-dev-fx-controls-react/pull/1060)
18+
- `PeoplePicker `: Added Styles property [#1061](https://github.com/pnp/sp-dev-fx-controls-react/pull/1061)
19+
- Localization: Update pt-pt and pt-br loc files [#1066](https://github.com/pnp/sp-dev-fx-controls-react/pull/1066)
20+
21+
### Fixes
22+
23+
- `FilePicker`: `defaultFolderAbsolutePath` does not work Out of context [#1023](https://github.com/pnp/sp-dev-fx-controls-react/issues/1023)
24+
- `ModernTaxonomyPicker`: correctly display with RTL mode [#1041](https://github.com/pnp/sp-dev-fx-controls-react/pull/1041)
25+
- `FilePicker`: Fixed showing the selection circle on recent tabs [#1048](https://github.com/pnp/sp-dev-fx-controls-react/issues/1048)
26+
- `FilePicker`: Your organisation tab breadcrumb not working [#1056](https://github.com/pnp/sp-dev-fx-controls-react/issues/1056)
27+
28+
### Contributors
29+
30+
Special thanks to our contributors (in alphabetical order): [Gautam Sheth](https://github.com/gautamdsheth), [Jouni Pohjolainen](https://github.com/jonepo), [jumpei-yamauchi](https://github.com/jumpei-yamauchi), [Louis Pineau](https://github.com/pineaulo), [Michalis Koutroupis](https://github.com/mkoutroupis), [MonalisaBaltatescu](https://github.com/MonalisaBaltatescu), [Patrik Hellgren](https://github.com/patrikhellgren), [Xiyitifu](https://github.com/Xiyitifu), [Russell gove](https://github.com/russgove), [Andreas Omayrat](https://github.com/andreasomayrat), [Abderahman Moujahid](https://github.com/Abderahman88), [Alexander M](https://github.com/alexanmo), [João Mendes](https://github.com/joaojmendes).
31+
332
## 3.4.1
433

534
## 3.4.0

config/copy-assets.json

Lines changed: 0 additions & 4 deletions
This file was deleted.

config/package-solution.json

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,14 @@
66
"version": "1.0.0.0",
77
"skipFeatureDeployment": true,
88
"isDomainIsolated": false,
9-
"includeClientSideAssets": true
9+
"includeClientSideAssets": true,
10+
"developer": {
11+
"name": "Microsoft 365 PnP",
12+
"privacyUrl": "",
13+
"termsOfUseUrl": "",
14+
"websiteUrl": "",
15+
"mpnId": "Undefined-1.13.0"
16+
}
1017
},
1118
"paths": {
1219
"zippedPackage": "solution/sp-dev-fx-controls-react.sppkg"

config/serve.json

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,6 @@
11
{
22
"$schema": "https://developer.microsoft.com/json-schemas/core-build/serve.schema.json",
33
"port": 4321,
4-
"initialPage": "https://localhost:5432/workbench",
5-
"https": true,
6-
"api": {
7-
"port": 5432,
8-
"entryPath": "node_modules/@microsoft/sp-webpart-workbench/lib/api/"
9-
}
4+
"initialPage": "https://enter-your-SharePoint-site/_layouts/workbench.aspx",
5+
"https": true
106
}

config/supported.localization.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
"langs": ["bg-bg", "ca-es", "da-dk", "de-de", "el-gr", "es-es", "et-ee", "fi-fi", "fr-fr", "fr-ca", "it-it", "ja-jp", "lt-lt", "lv-lv", "nb-no", "nl-nl", "pl-pl", "pt-pt", "ro-ro", "ru-ru", "sk-sk", "sr-latn-rs", "sv-se", "tr-tr", "vi-vn", "zh-cn", "zh-tw"]
2+
"langs": ["bg-bg", "ca-es", "da-dk", "de-de", "el-gr", "es-es", "et-ee", "fi-fi", "fr-fr", "fr-ca", "it-it", "ja-jp", "lt-lt", "lv-lv", "nb-no", "nl-nl", "pl-pl", "pt-pt", "pt-br", "ro-ro", "ru-ru", "sk-sk", "sr-latn-rs", "sv-se", "tr-tr", "vi-vn", "zh-cn", "zh-tw"]
33
}

0 commit comments

Comments
 (0)