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.515.1 #4674

Merged
merged 1 commit into from
May 14, 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
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Change log for Microsoft365DSC

# UNRELEASED
# 1.24.515.1

* AADActivityBasedTimeoutPolicy
* Initial release, set the azure portal and default Timeout.
Expand Down
77 changes: 64 additions & 13 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-04-24
# Generated on: 2024-05-14

@{

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

# Version number of this module.
ModuleVersion = '1.24.424.1'
ModuleVersion = '1.24.515.1'

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

# ReleaseNotes of this module
ReleaseNotes = '* EXORecipientPermission
* Ensures we only return 1 Trustee per entry.
* EXOManagementRoleAssignment
* Removed logic to use Graph for Adminitrative Unit.
ReleaseNotes = '* AADActivityBasedTimeoutPolicy
* Initial release, set the azure portal and default Timeout.
* AADGroup
* Fixes #4596
* AADGroupSettings
* Added support for parameter NewUnifiedGroupWritebackDefault
* EXOManagementRoleEntry
* Initial Rrelease
* IntuneAntivirusPolicyWindows10SettingCatalog
* Add missing properties from templates
* Update setting handling so that the value is reverted to default when unset
* IntuneDeviceConfigurationCustomPolicyWindows10
* Fixed an issue where the payload of xml files was not encoded as base64.
* IntuneDeviceConfigurationDefenderForEndpointOnboardingPolicyWindows10
* Fixed a comparison issue when Defender for Endpoint is connected to Intune and the
onboarding blob is generated by the Defender for Endpoint service.
* IntuneDeviceConfigurationPolicyMacOS
* Fixed an issue where the update policy setting was not handled properly.
* Fixed a creation and update issue when the exported policy contains a
onboarding blob and the tenant is connected to Defender for Endpoint Service.
* SCAutoSensitivityLabelPolicy
* Fix incorrect mandatory Credential parameter in Set and Test methods
FIXES [#4283](https://github.com/microsoft/Microsoft365DSC/issues/4283)
* SPOSharingSettings
* Remove properties from being tested in certain conditions
FIXES [#4649](https://github.com/microsoft/Microsoft365DSC/issues/4649)
* Changed logic to retrieve my site for sovereign clouds.
* SPOTenantCdnPolicy
* Fixed an issue when both IncludeFileExtensions and
ExcludeRestrictedSiteClassifications needed to be changed but the latter got
the value of the former instead of the correct one
FIXES [#4658](https://github.com/microsoft/Microsoft365DSC/issues/4658)
* TeamsAudioConferencingPolicy
* Fix export and creation/set of this resource by converting a string array
into a comma-separated string and a comma-separated string into a string
array respectively
FIXES [#4655](https://github.com/microsoft/Microsoft365DSC/issues/4655)
* TeamsMeetingPolicy
* Fix creation and set of resource when cloud recording is set to false (off)
FIXES [#4653](https://github.com/microsoft/Microsoft365DSC/issues/4653)
* Fixed issue with property MeetingChatEnabledType by allowing the value
EnabledExceptAnonymous to be selected
FIXES [#4667](https://github.com/microsoft/Microsoft365DSC/issues/4667)
* TeamsGroupPolicyAssignment
* Add missing policy type TeamsVerticalPackagePolicy
FIXES [#4647](https://github.com/microsoft/Microsoft365DSC/issues/4647)
* TeamsUpdateManagementPolicy
* Remove unnecessary parameters from PSBoundParameters such as authentication
methods, Ensure and Verbose by calling Remove-M365DSCAuthenticationParameter
FIXES [#4651](https://github.com/microsoft/Microsoft365DSC/issues/4651)
* M365DSCUtil
* Fixed an issue where one could not pass empty arrays to the
`Compare-PSCustomObjectArrays` function.
* Fixed an issue with how the ResourceInstanceName was being assigned for
resource SPOTenantCdnPolicy by adding its primary key CDNType to the
heuristics
FIXES [#4658](https://github.com/microsoft/Microsoft365DSC/issues/4658)
* DEPENDENCIES
* Updated DSCParser to version 2.0.0.4.
* Updated Microsoft.Graph to version 2.19.0.
* Updated Microsoft.PowerApps.Administration.PowerShell to version 2.0.187.
* MISC
* Added support for AccessTokens in EXO resources.
* Updated MSCloudLoginAssistant dependencies to version 1.1.16.
* Added Filter support to Intune resources.'
* Added support for Access Tokens across AAD resources.
* Added support for Access Tokens across SC resources.
* Added support for Access Tokens across SPO resources.
* Added support for Access Tokens across Teams resources.
* Fixing fake passwords in Unit Tests.
* Added ability to configure Telemetry client by ConnectionString.'

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