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.25.219.3 #5841

Merged
merged 38 commits into from
Feb 26, 2025
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
38 commits
Select commit Hold shift + click to select a range
37cd2b7
Add ReportChatMessageEnabled, ReportChatMessageToCustomizedAddressEna…
JuliusRauschen Feb 19, 2025
222614c
Merge branch 'Dev' into report-submission-policy-new-params
JuliusRauschen Feb 19, 2025
04411ef
Merge branch 'Dev' into report-submission-policy-new-params
NikCharlebois Feb 20, 2025
7eb5dec
Add placeholder descriptions to EXOReportSubmissionPolicy.schema.mof
JuliusRauschen Feb 20, 2025
5e34a03
Updated SC export functions to force authentication
ykuijs Feb 21, 2025
248b59f
Updated changelog
ykuijs Feb 21, 2025
56013c0
Add Intune Device Compliance Script for Windows10 resource
Feb 21, 2025
13db5a3
EXODistributionGroup - Fixed the Ability to Set Members
NikCharlebois Feb 21, 2025
5b22284
Update MSFT_EXODistributionGroup.psm1
NikCharlebois Feb 21, 2025
5d5dde7
Update
NikCharlebois Feb 21, 2025
b3e20ae
Updates to SCPolicyConfig handling of default values
NikCharlebois Feb 21, 2025
5e64ba4
Update Microsoft365DSC.SCPolicyConfig.Tests.ps1
NikCharlebois Feb 21, 2025
6f613f7
Merge pull request #5827 from NikCharlebois/EXODistributionGroup-Fix
NikCharlebois Feb 21, 2025
c65bd22
Updated Resources and Cmdlet documentation pages
NikCharlebois Feb 21, 2025
ee80efe
Updated Schema Definition
NikCharlebois Feb 21, 2025
e279755
AADApplication - Fix ReplyUrls Removal
NikCharlebois Feb 21, 2025
bae86f1
Merge pull request #5830 from NikCharlebois/AADApplication
NikCharlebois Feb 21, 2025
485d683
Merge branch 'Dev' into Dev
ykuijs Feb 22, 2025
e4112d9
Merge pull request #5825 from ykuijs/Dev
ykuijs Feb 22, 2025
d4d8d08
Merge branch 'Dev' into feat/device-compliance-script-windows10
FabienTschanz Feb 24, 2025
3fd4329
Merge pull request #5826 from FabienTschanz/feat/device-compliance-sc…
NikCharlebois Feb 24, 2025
5697213
Merge pull request #5806 from JuliusRauschen/report-submission-policy…
NikCharlebois Feb 24, 2025
94380c1
Updated Resources and Cmdlet documentation pages
NikCharlebois Feb 24, 2025
c5a1559
Updated Resources and Cmdlet documentation pages
NikCharlebois Feb 24, 2025
f08430d
Updated Schema Definition
NikCharlebois Feb 24, 2025
f30b2f7
Updated {Create} Intune Integration Tests
NikCharlebois Feb 24, 2025
3fe3a28
Various EXO fixes
NikCharlebois Feb 24, 2025
afb688a
Update CHANGELOG.md
NikCharlebois Feb 24, 2025
5c1358b
Fixes Unit Tests
NikCharlebois Feb 24, 2025
c4eb342
Merge pull request #5834 from NikCharlebois/Various-EXO-fixes
NikCharlebois Feb 24, 2025
d0965fc
Various AAD Fixes
NikCharlebois Feb 24, 2025
627988d
Updated Schema Definition
NikCharlebois Feb 24, 2025
d85b793
AAD Fixes
NikCharlebois Feb 24, 2025
a7409a3
Merge pull request #5835 from NikCharlebois/Various-EXO-fixes
NikCharlebois Feb 24, 2025
1e08444
Updated Dependencies
NikCharlebois Feb 25, 2025
b1329fd
Fixes for caching
NikCharlebois Feb 26, 2025
46db79b
Release 1.25.219.3
NikCharlebois Feb 26, 2025
b541663
Merge pull request #5840 from NikCharlebois/Updated-Dependencies
NikCharlebois Feb 26, 2025
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
Prev Previous commit
Next Next commit
Various AAD Fixes
  • Loading branch information
NikCharlebois committed Feb 24, 2025
commit d0965fca686f377486adc03d958453be1c647289
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@
* AADAppplication
* Fixed an issue where specifying an empty ReplyURLs array would not remove
the existing entries.
* AADAuthenticationMethodPolicy
* DEPRECATED - PolicyMigrationState property is now deprecated since it
cannot be set.
* EXOCalendarProcessing
* Changed the Get-TargetResource logic to return UPN instead of id.
* EXODistributionGroup
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -246,19 +246,11 @@ function Get-TargetResource
}
#endregion

#region resource generator code
$enumPolicyMigrationState = $null
if ($null -ne $getValue.PolicyMigrationState)
{
$enumPolicyMigrationState = $getValue.PolicyMigrationState.ToString()
}
#endregion

$results = @{
#region resource generator code
Description = $getValue.Description
DisplayName = $getValue.DisplayName
PolicyMigrationState = $enumPolicyMigrationState
#PolicyMigrationState = $enumPolicyMigrationState #DEPRECATED - Cannot be set
PolicyVersion = $getValue.PolicyVersion
ReconfirmationInDays = $getValue.ReconfirmationInDays
RegistrationEnforcement = $complexRegistrationEnforcement
Expand Down Expand Up @@ -405,6 +397,13 @@ function Set-TargetResource
$UpdateParameters.$key = Convert-M365DSCDRGComplexTypeToHashtable -ComplexObject $UpdateParameters.$key
}
}

if (-not [System.String]::IsNullOrEmpty($PolicyMigrationState))
{
Write-Verbose -Message "DEPRECATED - Property PolicyMigrationState cannot be set."
$UpdateParameters.Remove('PolicyMigrationState') | Out-Null
}

#region resource generator code
$UpdateParameters.Add('@odata.type', '#microsoft.graph.AuthenticationMethodsPolicy')
Write-Verbose -Message "Updating AuthenticationMethodPolicy with: `r`n$(Convert-M365DscHashtableToString -Hashtable $UpdateParameters)"
Expand Down Expand Up @@ -534,6 +533,7 @@ function Test-TargetResource
}

$ValuesToCheck.remove('Id') | Out-Null
$ValuesToCheck.remove('PolicyMigrationState') | Out-Null

Write-Verbose -Message "Current Values: $(Convert-M365DscHashtableToString -Hashtable $CurrentValues)"
Write-Verbose -Message "Target Values: $(Convert-M365DscHashtableToString -Hashtable $ValuesToCheck)"
Expand Down