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
+16Lines changed: 16 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -5,6 +5,22 @@ 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
+
## [3.25.2009.0]
9
+
10
+
### Added
11
+
- Added -AzureEnvironment parameter to `Initialize-PnPPowerShellAuthentication` to create an Azure AD App in other Azure environments than the default one.
12
+
- Added -AzureEnvironment parameter to all Connect-PnPOnline options which result in an OAuth based authentication connection, supporting the various Azure Environments available.
13
+
14
+
### Changed
15
+
- Fixed issue with Submit-PnPTeamsChannelMessage not posting HTML message when setting the content type to Html.
16
+
- The content type that Submit-PnPTeamsChannelMessage uses defaults now to HTML.
17
+
- Fixed an issue with the PnP Provisioning Engine not being able to correctly acquire a token for the Microsoft Graph when provisioning a tenant template containing a Team.
18
+
- Optimized Submit-PnPSearchQuery and Get-PnPSiteSearchQueryResults cmdlets when using the -All parameter.
19
+
- Fixed TrimDuplicates to be default off for Submit-PnPSearchQuery
Copy file name to clipboardExpand all lines: Commands/Base/ConnectOnline.cs
+14-6Lines changed: 14 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -522,6 +522,9 @@ public class ConnectOnline : BasePSCmdlet
522
522
[Parameter(Mandatory=false,ParameterSetName=ParameterSet_APPONLYAADCER,HelpMessage="The Azure environment to use for authentication, the defaults to 'Production' which is the main Azure environment.")]
523
523
[Parameter(Mandatory=false,ParameterSetName=ParameterSet_TOKEN,HelpMessage="The Azure environment to use for authentication, the defaults to 'Production' which is the main Azure environment.")]
524
524
[Parameter(Mandatory=false,ParameterSetName=ParameterSet_APPONLYCLIENTIDCLIENTSECRETURL,HelpMessage="The Azure environment to use for authentication, the defaults to 'Production' which is the main Azure environment.")]
525
+
[Parameter(Mandatory=false,ParameterSetName=ParameterSet_AADWITHSCOPE,HelpMessage="The Azure environment to use for authentication, the defaults to 'Production' which is the main Azure environment.")]
526
+
[Parameter(Mandatory=false,ParameterSetName=ParameterSet_DEVICELOGIN,HelpMessage="The Azure environment to use for authentication, the defaults to 'Production' which is the main Azure environment.")]
527
+
[Parameter(Mandatory=false,ParameterSetName=ParameterSet_GRAPHDEVICELOGIN,HelpMessage="The Azure environment to use for authentication, the defaults to 'Production' which is the main Azure environment.")]
[Parameter(Mandatory=true,ParameterSetName=ParameterSet_AADWITHSCOPE,HelpMessage="The array of permission scopes to request from Azure Active Directory")]
Host.UI.Write(ConsoleColor.Yellow,Host.UI.RawUI.BackgroundColor,$"Waiting {waitTime} seconds to launch consent flow in a browser window. This wait is required to make sure that Azure AD is able to initialize all required artifacts.");
0 commit comments