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.703.1 #4842

Merged
merged 1 commit into from
Jul 4, 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: 4 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Change log for Microsoft365DSC

# UNRELEASED
# 1.24.703.1

* EXOCASMailboxPlan
* Remove `DisplayName` from set parameters
Expand Down Expand Up @@ -36,10 +36,10 @@
* Added Microsoft Graph filter functions.
* Force array as parameter in `Compare-M365DSCIntunePolicyAssignment`.
* MISC
* Added support for `startswith`, `endswith` and `contains` filter methods to Intune resources
that did not support it previously.
* Added support for `startswith`, `endswith` and `contains` filter methods to Intune resources
that did not support it previously.
FIXES [#4597](https://github.com/microsoft/Microsoft365DSC/issues/4597)
* Fixes issues with values of type `groupSettingCollection` and `choiceSetting`
* Fixes issues with values of type `groupSettingCollection` and `choiceSetting`
when creating the settings catalog policy settings body.
* DEPENDENCIES
* Updated DSCParser to version 2.0.0.6
Expand Down
58 changes: 41 additions & 17 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-06-26
# Generated on: 2024-07-04

@{

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

# Version number of this module.
ModuleVersion = '1.24.626.1'
ModuleVersion = '1.24.703.1'

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

# ReleaseNotes of this module
ReleaseNotes = '* AADGroup
* FIXES [#4782](https://github.com/microsoft/Microsoft365DSC/issues/4782)
* IntuneDeviceManagementComplianceSettings
* Initial Release.
* IntuneDeviceRemediation
* Fix invalid assignment export and import.
FIXES [#4726](https://github.com/microsoft/Microsoft365DSC/issues/4726)
* DEPENDENCIES
* Updated MSCloudLoginAssistant to version 1.1.18
ReleaseNotes = '* EXOCASMailboxPlan
* Remove `DisplayName` from set parameters
FIXES [#4814](https://github.com/microsoft/Microsoft365DSC/issues/4814)
* EXODkimSigningConfig
* Add support for 2048 key size;
* Remove authentication parameters before changing the resources
FIXES [#4821](https://github.com/microsoft/Microsoft365DSC/issues/4821)
FIXES [#4805](https://github.com/microsoft/Microsoft365DSC/issues/4805)
* EXOGroupSettings
* Export unlimited number of groups
FIXES [#4800](https://github.com/microsoft/Microsoft365DSC/issues/4800)
* EXOHostedContentFilterRule
* When updating the resource assign property `Identity` to the correct value
FIXES [#4836](https://github.com/microsoft/Microsoft365DSC/issues/4836)
* EXOMailboxPlan
* Remove `DisplayName` from set parameters
FIXES [#4817](https://github.com/microsoft/Microsoft365DSC/issues/4817)
* EXOHostedOutboundSpamFilterRule
* Fix `if` clause on update scenario, remove property `Enabled` from being set
while updating the resource and ensure that also while updating the resource
the property `HostedOutboundSpamFilterPolicy` is only sent if it differs
from what the resource already has currently assigned
FIXES [#4838](https://github.com/microsoft/Microsoft365DSC/issues/4838)
* IntuneExploitProtectionPolicyWindows10SettingCatalog
* Migrate to new settings catalog cmdlets.
* IntuneSettingCatalogASRRulesPolicyWindows10
* Migrate to new settings catalog cmdlets.
* TeamsFederationConfiguration
* Add missing property `ExternalAccessWithTrialTenants`
FIXES [#4829](https://github.com/microsoft/Microsoft365DSC/issues/4829)
* M365DSCDRGUtil
* Add `collectionId` export to `ConvertFrom-IntunePolicyAssignment`
* Add handling for Intune assignments in `Compare-M365DSCComplexObject`
* M365DSCResourceGenerator
* Update CimInstance comparison template
* Added Microsoft Graph filter functions.
* Force array as parameter in `Compare-M365DSCIntunePolicyAssignment`.
* MISC
* Add group display name export and update assignment comparison across Intune
resources.'
* Added support for `startswith`, `endswith` and `contains` filter methods to Intune resources
that did not support it previously.
FIXES [#4597](https://github.com/microsoft/Microsoft365DSC/issues/4597)
* Fixes issues with values of type `groupSettingCollection` and `choiceSetting`
when creating the settings catalog policy settings body.
* DEPENDENCIES
* Updated DSCParser to version 2.0.0.6'

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