Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release 1.24.110.1 #4139

Merged
merged 6 commits into from
Jan 10, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Change log for Microsoft365DSC

# UNRELEASED
# 1.24.110.1

* AADAdministrativeUnit
* Fix the Update logic flow to get around a bug in Microsoft.Graph 2.11.1.
Expand All @@ -11,16 +11,20 @@
* Implement Fix #3885. Manage Exclude Application.
FIXES [[#3885](https://github.com/microsoft/Microsoft365DSC/issues/3885)]
* EXOHostedContentFilterPolicy
* Fix issue on parameters AllowedSenders, AllowedSenderDomains, BlockedSenders,
* Fix issue on parameters AllowedSenders, AllowedSenderDomains, BlockedSenders,
BlockSenderDomains if desired state is empty but current state is not empty.
FIXES[#4124](https://github.com/microsoft/Microsoft365DSC/issues/4124)
* EXOMailContact
* Added support for Custom Attributes and Extension Custom Attributes.
* IntuneDeviceConfigurationPolicyMacOS
* Fix workaround added on PR #4099 in order to be able to use this resource
for deployments
FIXES [#4105](https://github.com/microsoft/Microsoft365DSC/issues/4105)
* SCDLPComplianceRule
* Fix type of AccessScope
FIXES [#3463](https://github.com/microsoft/Microsoft365DSC/issues/3463)
* TeamsTenantDialPlan
* FIXES [#3767](https://github.com/microsoft/Microsoft365DSC/issues/3767)

# 1.24.103.1

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,39 +24,23 @@ Configuration Example
Id = 'Legal Team'
TargetType = 'group'
}
MSFT_AADAuthenticationMethodPolicyAuthenticatorExcludeTarget{
Id = 'Paralegals'
TargetType = 'group'
}
);
FeatureSettings = MSFT_MicrosoftGraphmicrosoftAuthenticatorFeatureSettings{
DisplayLocationInformationRequiredState = MSFT_MicrosoftGraphAuthenticationMethodFeatureConfiguration{
ExcludeTarget = MSFT_AADAuthenticationMethodPolicyAuthenticatorFeatureTarget{
Id = 'all_users'
TargetType = 'group'
}
IncludeTarget = MSFT_AADAuthenticationMethodPolicyAuthenticatorFeatureTarget{
Id = 'all_users'
TargetType = 'group'
}
State = 'default'
}
CompanionAppAllowedState = MSFT_MicrosoftGraphAuthenticationMethodFeatureConfiguration{
ExcludeTarget = MSFT_AADAuthenticationMethodPolicyAuthenticatorFeatureTarget{
Id = 'all_users'
TargetType = 'group'
}
IncludeTarget = MSFT_AADAuthenticationMethodPolicyAuthenticatorFeatureTarget{
Id = 'all_users'
TargetType = 'group'
}
State = 'default'
}
DisplayAppInformationRequiredState = MSFT_MicrosoftGraphAuthenticationMethodFeatureConfiguration{
ExcludeTarget = MSFT_AADAuthenticationMethodPolicyAuthenticatorFeatureTarget{
Id = 'all_users'
TargetType = 'group'
}
IncludeTarget = MSFT_AADAuthenticationMethodPolicyAuthenticatorFeatureTarget{
Id = 'all_users'
TargetType = 'group'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@ Configuration Example
{
Credential = $Credscredential;
Ensure = "Present";
ExcludeTargets = @( # Updated Property
ExcludeTargets = @(
MSFT_AADAuthenticationMethodPolicyAuthenticatorExcludeTarget{
Id = 'Legal Team'
Id = 'Finance Team' # Updated Property
TargetType = 'group'
}
);
Expand Down
60 changes: 26 additions & 34 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: 2024-01-03
# Generated on: 2024-01-10

@{

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

# Version number of this module.
ModuleVersion = '1.24.103.1'
ModuleVersion = '1.24.110.1'

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

# ReleaseNotes of this module
ReleaseNotes = '* AADConditionalAccessPolicy
* Fix Get-TargetResource when the parameter Id is not present
FIXES [#4029](https://github.com/microsoft/Microsoft365DSC/issues/4003)
* EXOInboundConnector
* Corrected parameter descriptions, so the documentation on microsoft365dsc.com is generated correctly.
* EXOMailTips
* Added parameter descriptions for better documentation
* EXOOutboundConnector
* Corrected parameter descriptions, so the documentation on microsoft365dsc.com is generated correctly.
* EXOReportSubmissionPolicy
ReleaseNotes = '* AADAdministrativeUnit
* Fix the Update logic flow to get around a bug in Microsoft.Graph 2.11.1.
* AADAuthenticationMethodPolicyX509
* Added support for the property for include targets
* AADConditionalAccessPolicy
* Added support for application filters in the conditions.
* Implement Fix #3885. Manage Exclude Application.
FIXES [[#3885](https://github.com/microsoft/Microsoft365DSC/issues/3885)]
* AADGroupOwnerConsentSettings
* Initial release
FIXES [#3690](https://github.com/microsoft/Microsoft365DSC/issues/3690)
* EXOReportSubmissionRule
* Initial release
FIXES [#3690](https://github.com/microsoft/Microsoft365DSC/issues/3690)
* EXOTransportRule
* Stop supporting DLP-related rules, conditions, and actions (https://techcommunity.microsoft.com/t5/exchange-team-blog/exchange-online-mail-flow-rules-to-stop-supporting-dlp-related/ba-p/3959870)
FIXES [#3929](https://github.com/microsoft/Microsoft365DSC/issues/3929)
Implements [#4112](https://github.com/microsoft/Microsoft365DSC/issues/4112)
* EXOHostedContentFilterPolicy
* Fix issue on parameters AllowedSenders, AllowedSenderDomains, BlockedSenders,
BlockSenderDomains if desired state is empty but current state is not empty.
FIXES[#4124](https://github.com/microsoft/Microsoft365DSC/issues/4124)
* EXOMailContact
* Added support for Custom Attributes and Extension Custom Attributes.
* IntuneDeviceConfigurationPolicyMacOS
* Added parameter descriptions for better documentation
* IntuneSettingCatalogCustomPolicyWindows10
* Fix Get-TargetResource when the parameter Id is not present
FIXES [#4029](https://github.com/microsoft/Microsoft365DSC/issues/4003)
* SPOTenantSettings
* Added parameter descriptions for better documentation
* TeamsChannel
* Add error handling if GroupId of a team is null
FIXES [#3943](https://github.com/microsoft/Microsoft365DSC/issues/3943)
* TeamsFeedbackPolicy
* Added parameter descriptions for better documentation
* TeamsMobilityPolicy
* Added parameter descriptions for better documentation
* TeamsNetworkRoamingPolicy
* Added parameter descriptions for better documentation'
* Fix workaround added on PR #4099 in order to be able to use this resource
for deployments
FIXES [#4105](https://github.com/microsoft/Microsoft365DSC/issues/4105)
* SCDLPComplianceRule
* Fix type of AccessScope
FIXES [#3463](https://github.com/microsoft/Microsoft365DSC/issues/3463)
* TeamsTenantDialPlan
* FIXES [#3767](https://github.com/microsoft/Microsoft365DSC/issues/3767)'

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