You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jan 19, 2021. It is now read-only.
Copy file name to clipboardExpand all lines: CHANGELOG.md
+23Lines changed: 23 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -5,6 +5,26 @@ All notable changes to this project will be documented in this file.
5
5
6
6
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/).
7
7
8
+
## [Unreleased]
9
+
10
+
### Added
11
+
12
+
### Changed
13
+
14
+
### Contributors
15
+
16
+
## [3.14.1910.1]
17
+
18
+
### Added
19
+
20
+
- ConvertTo-PnPClientSidePage: Added support for logging to console via `-LogType Console`
21
+
- Copy-PnPFile: Fixes (#2300)
22
+
- ConvertTo-PnPClientSidePage: Added support for controlling the target page name is any cross site transformation (so wiki, web part, blog in addition the already existing option for publishing pages) via the `-TargetPageName` parameter
23
+
24
+
### Changed
25
+
26
+
### Contributors
27
+
8
28
## [3.14.1910.0]
9
29
10
30
### Added
@@ -18,6 +38,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/).
18
38
19
39
### Changed
20
40
41
+
- Several documentation fixes
21
42
- Add-PnPClientSideWebPart now also works for SP2019
22
43
- Added -List parameter to Get-PnPFolder to retrieve all folders in a list
23
44
- Added owner paramter to New-PnPSite when create Communications site
@@ -28,11 +49,13 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/).
Remarks="Converts a wiki page named 'somepage' to a client side page and adds the page accept banner web part on top of the page. This requires that the SPFX solution holding the web part (https://github.com/SharePoint/sp-dev-modernization/blob/master/Solutions/PageTransformationUI/assets/sharepointpnp-pagetransformation-client.sppkg?raw=true) has been installed to the tenant app catalog",
34
+
Remarks="Converts a wiki/web part page named 'somepage' to a client side page and adds the page accept banner web part on top of the page. This requires that the SPFX solution holding the web part (https://github.com/SharePoint/sp-dev-modernization/blob/master/Solutions/PageTransformationUI/assets/sharepointpnp-pagetransformation-client.sppkg?raw=true) has been installed to the tenant app catalog",
Remarks="Converts a web part page named 'somepage' and creates a log file in SharePoint but skip the actual write. Use this option to make multiple ConvertTo-PnPClientSidePage invocations create a single log",
66
+
Remarks="Converts a wiki/web part page named 'somepage' and creates a log file in SharePoint but skip the actual write. Use this option to make multiple ConvertTo-PnPClientSidePage invocations create a single log",
Remarks="Converts a blog page with a title starting with 'my post title' to a client side page in the https://contoso.sharepoint.com/sites/targetmodernsite site",
71
+
SortOrder=12)]
68
72
publicclassConvertToClientSidePage:PnPWebCmdlet
69
73
{
70
74
privatestaticstringrootFolder="<root>";
@@ -165,6 +169,9 @@ public class ConvertToClientSidePage : PnPWebCmdlet
165
169
[Parameter(Mandatory=false,HelpMessage="Name for the target page (only applies to publishing page transformation)")]
166
170
publicstringPublishingTargetPageName="";
167
171
172
+
[Parameter(Mandatory=false,HelpMessage="Name for the target page (only applies when doing cross site page transformation)")]
173
+
publicstringTargetPageName="";
174
+
168
175
[Parameter(Mandatory=false,HelpMessage="Optional connection to be used by the cmdlet. Retrieve the value for this parameter by either specifying -ReturnConnection on Connect-PnPOnline or by executing Get-PnPConnection.")]// do not remove '#!#99'
0 commit comments