Skip to content

Commit

Permalink
Merge pull request #4704 from microsoft/Dev
Browse files Browse the repository at this point in the history
Release 1.24.522.1
  • Loading branch information
NikCharlebois committed May 22, 2024
2 parents e3db448 + b7c0d9b commit ee8b573
Show file tree
Hide file tree
Showing 51 changed files with 7,476 additions and 205 deletions.
40 changes: 40 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,40 @@
# Change log for Microsoft365DSC

# 1.24.522.1

* IntuneDeviceConfigurationPlatformScriptWindows
* Initial Release
FIXES [#4157](https://github.com/microsoft/Microsoft365DSC/issues/4157)
* IntuneDeviceConfigurationPlatformScriptMacOS
* Initial Release
FIXES [#4157](https://github.com/microsoft/Microsoft365DSC/issues/4157)
* IntuneDeviceEnrollmentPlatformRestriction
* Fix missing export of the default policy
FIXES [#4694](https://github.com/microsoft/Microsoft365DSC/issues/4694)
* IntuneDeviceEnrollmentStatusPageWindows10
* Return all authentication methods when retrieving the policies otherwise
it may fail deducing the OrganizationName via TenantId
* IntuneDeviceRemediation
* Initial Release
FIXES [#4159](https://github.com/microsoft/Microsoft365DSC/issues/4159)
* IntuneWindowsUpdateForBusinessDriverUpdateProfileWindows10
* Initial Release
FIXES [#3747](https://github.com/microsoft/Microsoft365DSC/issues/3747)
* SPOTenantCdnPolicy
* If properties in the tenant are empty then export them as empty arrays
instead of null strings, missed while fixing #4658
* SPOTenantSettings
* Remove property UserVoiceForFeedbackEnabled when setting the resource since
it has been deprecated
* M365DSCUtil
* Fixed an issue in `Assert-M365DSCBlueprint` where the clone and export
of a blueprint with a GUID could lead to configuration name starting
with a digit instead of a letter.
Partially fixes [#4681](https://github.com/microsoft/Microsoft365DSC/issues/4681)
* DEPENDENCIES
* Updated ExchangeOnlineManagement to version 3.5.0
* Updated MicrosoftTeams to version 6.2.0

# 1.24.515.2

* EXOManagementRoleEntry
Expand All @@ -11,6 +46,11 @@
* Initial release, set the azure portal and default Timeout.
* AADGroup
* Fixes #4596
* AADConditionalAccessPolicy
* Fix ExcludeGuestOrExternalUserTypes and IncludeGuestOrExternalUserTypes parameters
FIXES [#4630]
* Added support for Authentication Flow TransferMethod
FIXES [#4472]
* AADGroupSettings
* Added support for parameter NewUnifiedGroupWritebackDefault
* EXOManagementRoleEntry
Expand Down

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@ class MSFT_AADConditionalAccessPolicy : OMI_BaseResource
[Write, Description("Specifies, whether Browser Persistence is controlled by the Policy.")] Boolean PersistentBrowserIsEnabled;
[Write, Description("Specifies, what Browser Persistence control is enforced by the Policy."), ValueMap{"Always","Never",""}, Values{"Always","Never",""}] String PersistentBrowserMode;
[Write, Description("Name of the associated authentication strength policy.")] String AuthenticationStrength;
[Write, Description("Names of the associated authentication flow transfer methods")] String TransferMethods;
[Write, Description("Authentication context class references.")] String AuthenticationContexts[];
[Write, Description("Specify if the Azure AD CA Policy should exist or not."), ValueMap{"Present","Absent"}, Values{"Present","Absent"}] String Ensure;
[Write, Description("Credentials for the Microsoft Graph delegated permissions."), EmbeddedInstance("MSFT_Credential")] string Credential;
Expand Down

0 comments on commit ee8b573

Please sign in to comment.