Skip to content

Commit 1f4d5da

Browse files
committed
Merge branch 'dev' of https://github.com/pnp/powershell into dev
2 parents 8c4d3c7 + 9780e24 commit 1f4d5da

File tree

5 files changed

+3496
-3489
lines changed

5 files changed

+3496
-3489
lines changed

MIGRATE-2.0-to-3.0.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,8 +54,9 @@ Recommend referring to these 2 links:
5454
| Get-PnPGraphAccessToken | It has been removed. Use `Get-PnPAccessToken` instead. |
5555
| Remove-PnPUser | The parameter `-Confirm` has been removed. Use `-Force` instead. |
5656
| Remove-PnPAvailableSiteClassification | The parameter `-Confirm` has been removed. Use `-Force` instead. |
57-
| Send-PnPMail | It now throws a warning about the retirement of SharePoint SendEmail API, if you are sending mails via SharePoint. To ignore it, use `-ErrorAction SilentlyContinue` along side the cmdlet. |
57+
| Send-PnPMail | It now throws a warning about the [retirement of SharePoint SendEmail API](https://devblogs.microsoft.com/microsoft365dev/retirement-of-the-sharepoint-sendemail-api/), if you are sending mails via SharePoint. To ignore the warning, use `-ErrorAction SilentlyContinue` along side the cmdlet. Recommendation is to use `Send-PnPMail` with [Microsoft Graph](https://pnp.github.io/powershell/cmdlets/Send-PnPMail.html#send-through-microsoft-graph) |
5858
| Send-PnPMail | The support for sending mails via SMTP servers is now removed. It is the recommendation of .NET as SMTP doesn't support modern protocols. So, the parameters `-EnableSSL` , `-UserName`, `-Password`, `-Server ` and `-ServerPort` are now removed. Use `Send-PnPMail` with [Microsoft Graph](https://pnp.github.io/powershell/cmdlets/Send-PnPMail.html#send-through-microsoft-graph) |
59+
| Invoke-PnPTransformation | It has been removed. Was never supported. |
5960

6061

6162
## Other notable changes

documentation/Move-PnPFile.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ Moves a folder named Archive located in the document library named "Shared Docum
5656
### EXAMPLE 5
5757
```powershell
5858
$job = Move-PnPFile -SourceUrl "Shared Documents/company.docx" -TargetUrl "SubSite2/Shared Documents" -NoWait
59-
$jobStatus = Receive-PnPCopyMoveJobStatus -Job $result
59+
$jobStatus = Receive-PnPCopyMoveJobStatus -Job $job
6060
if($jobStatus.JobState == 0)
6161
{
6262
Write-Host "Job finished"
@@ -209,4 +209,4 @@ Accept wildcard characters: False
209209
210210
## RELATED LINKS
211211
212-
[Microsoft 365 Patterns and Practices](https://aka.ms/m365pnp)
212+
[Microsoft 365 Patterns and Practices](https://aka.ms/m365pnp)

pnppowershell_hash.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
ba52197da4b025a8568dbfe3e26ad1060b4b02cf
1+
d757db80e4522de7efb51261e1a2312257794ca6

0 commit comments

Comments
 (0)