Skip to content

Commit

Permalink
Merge pull request #1885 from NikCharlebois/Release-1.22.413.1
Browse files Browse the repository at this point in the history
  • Loading branch information
NikCharlebois authored Apr 14, 2022
2 parents 2081133 + bd1ff29 commit c30daeb
Show file tree
Hide file tree
Showing 5 changed files with 32 additions and 30 deletions.
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,17 @@
# Change log for Microsoft365DSC

# UNRELEASED
# 1.22.413.1

* EXOAuthenticationPolicy
* Fix typo in AllowBasicAuthOfflineAddressBook (FIXES #1876)
* EXOQuarantinePolicy
* New resource
* O365Groups
* Fixed issue on export of O365Groups resource.
* DEPENDENCIES
* Updated Microsoft.Graph.* to 1.9.5.
* Updated Microsoft.PowerApps.Administration.PowerShell to 2.0.145.
* Updated MicrosoftTeams to 4.2.0.

# 1.22.406.1

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
class MSFT_EXOQuarantinePolicy : OMI_BaseResource
{
[Key, Description("The Identity parameter specifies the QuarantinePolicy you want to modify.")] String Identity;
[Write, Description("The EndUserQuarantinePermissionsValue parameter specifies the end-user permissions for the quarantine policy.")] Int32 EndUserQuarantinePermissionsValue;
[Write, Description("The EndUserQuarantinePermissionsValue parameter specifies the end-user permissions for the quarantine policy.")] UInt32 EndUserQuarantinePermissionsValue;
[Write, Description("The ESNEnabled parameter specifies whether to enable quarantine notifications (formerly known as end-user spam notifications) for the policy.")] Boolean ESNEnabled;
[Write, Description("The MultiLanguageCustomDisclaimer parameter specifies the custom disclaimer text to use near the bottom of quarantine notifications.")] String MultiLanguageCustomDisclaimer[];
[Write, Description("The MultiLanguageSenderName parameter specifies the email sender's display name to use in quarantine notifications.")] String MultiLanguageSenderName[];
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

## Description

This resource configures the settings of Windows 10 compliance policies
This resource configures the settings of Android WorkProfile Device policies
in your cloud-based organization.

## Permissions Needed
Expand Down
30 changes: 15 additions & 15 deletions Modules/Microsoft365DSC/Dependencies/Manifest.psd1
Original file line number Diff line number Diff line change
Expand Up @@ -10,63 +10,63 @@
},
@{
ModuleName = "Microsoft.Graph.Applications"
RequiredVersion = "1.9.3"
RequiredVersion = "1.9.5"
},
@{
ModuleName = "Microsoft.Graph.Authentication"
RequiredVersion = "1.9.3"
RequiredVersion = "1.9.5"
},
@{
ModuleName = "Microsoft.Graph.DeviceManagement"
RequiredVersion = "1.9.3"
RequiredVersion = "1.9.5"
},
@{
ModuleName = "Microsoft.Graph.DeviceManagement.Administration"
RequiredVersion = "1.9.3"
RequiredVersion = "1.9.5"
},
@{
ModuleName = "Microsoft.Graph.DeviceManagement.Enrolment"
RequiredVersion = "1.9.3"
RequiredVersion = "1.9.5"
},
@{
ModuleName = "Microsoft.Graph.Devices.CorporateManagement"
RequiredVersion = "1.9.3"
RequiredVersion = "1.9.5"
},
@{
ModuleName = "Microsoft.Graph.Groups"
RequiredVersion = "1.9.3"
RequiredVersion = "1.9.5"
},
@{
ModuleName = "Microsoft.Graph.Identity.DirectoryManagement"
RequiredVersion = "1.9.3"
RequiredVersion = "1.9.5"
},
@{
ModuleName = "Microsoft.Graph.Identity.Governance"
RequiredVersion = "1.9.3"
RequiredVersion = "1.9.5"
},
@{
ModuleName = "Microsoft.Graph.Identity.SignIns"
RequiredVersion = "1.9.3"
RequiredVersion = "1.9.5"
},
@{
ModuleName = "Microsoft.Graph.Planner"
RequiredVersion = "1.9.3"
RequiredVersion = "1.9.5"
},
@{
ModuleName = "Microsoft.Graph.Teams"
RequiredVersion = "1.9.3"
RequiredVersion = "1.9.5"
},
@{
ModuleName = "Microsoft.Graph.Users"
RequiredVersion = "1.9.3"
RequiredVersion = "1.9.5"
},
@{
ModuleName = "Microsoft.PowerApps.Administration.PowerShell"
RequiredVersion = "2.0.144"
RequiredVersion = "2.0.145"
},
@{
ModuleName = "MicrosoftTeams"
RequiredVersion = "4.1.0"
RequiredVersion = "4.2.0"
},
@{
ModuleName = "MSCloudLoginAssistant"
Expand Down
22 changes: 10 additions & 12 deletions Modules/Microsoft365DSC/Microsoft365DSC.psd1
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,15 @@
#
# Generated by: Microsoft Corporation
#
# Generated on: 2022-04-06
# Generated on: 2022-04-13

@{

# Script module or binary module file associated with this manifest.
# RootModule = ''

# Version number of this module.
ModuleVersion = '1.22.406.1'
ModuleVersion = '1.22.413.1'

# Supported PSEditions
# CompatiblePSEditions = @()
Expand Down Expand Up @@ -132,18 +132,16 @@
IconUri = 'https://github.com/microsoft/Microsoft365DSC/blob/Dev/Modules/Microsoft365DSC/Dependencies/Images/Logo.png?raw=true'

# ReleaseNotes of this module
ReleaseNotes = "* EXOMalwareFilterPolicy
* Add support for property QuarantineTag
* PPTenantIsolationSettings
ReleaseNotes = "* EXOAuthenticationPolicy
* Fix typo in AllowBasicAuthOfflineAddressBook (FIXES #1876)
* EXOQuarantinePolicy
* New resource
* MISC
* Updated Convert-M365DscHashtableToString function to also convert
Arrays and CimInstances to string.
* Updated permissions in settings.json files.
* O365Groups
* Fixed issue on export of O365Groups resource.
* DEPENDENCIES
* Updated Microsoft.PowerApps.Administration.PowerShell to 2.0.144.
* Updated MicrosoftTeams to 4.1.0.
* Updated PnP.PowerShell to 1.10.0."
* Updated Microsoft.Graph.* to 1.9.5.
* Updated Microsoft.PowerApps.Administration.PowerShell to 2.0.145.
* Updated MicrosoftTeams to 4.2.0."

# Flag to indicate whether the module requires explicit user acceptance for install/update
# RequireLicenseAcceptance = $false
Expand Down

0 comments on commit c30daeb

Please sign in to comment.