diff --git a/CHANGELOG.md b/CHANGELOG.md index 312e430..4b6407f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,11 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [2.3.3]() - 2021-09-16 + +### Fixed +- Added support for OME 3.5+ and the -UseAllProtocols parameter on New-OMEDiscovery ([Issue #4](https://github.com/dell/OpenManage-PowerShell-Modules/issues/4)) + ## [2.3.2]() - 2021-09-16 ### Fixed diff --git a/DellOpenManage/DellOpenManage.psd1 b/DellOpenManage/DellOpenManage.psd1 index 24170c9..47e6857 100644 --- a/DellOpenManage/DellOpenManage.psd1 +++ b/DellOpenManage/DellOpenManage.psd1 @@ -12,7 +12,7 @@ RootModule = 'DellOpenManage.psm1' # Version number of this module. -ModuleVersion = '2.3.2' +ModuleVersion = '2.3.3' # Supported PSEditions # CompatiblePSEditions = @() diff --git a/DellOpenManage/Public/OME/New-OMEDiscovery.ps1 b/DellOpenManage/Public/OME/New-OMEDiscovery.ps1 index 612b040..7c2fa64 100644 --- a/DellOpenManage/Public/OME/New-OMEDiscovery.ps1 +++ b/DellOpenManage/Public/OME/New-OMEDiscovery.ps1 @@ -73,7 +73,7 @@ function Get-DiscoverDevicePayload($Name, $HostList, $DeviceType, $DiscoveryUser $DiscoveryConfigPayload.TrapDestination = $true } # Add version check for UseAllProfiles - if ($SessionAuth.Version -ge [System.Version]"3.7.0") { + if ($SessionAuth.Version -ge [System.Version]"3.5.0") { if ($UseAllProtocols) { $DiscoveryConfigPayload | Add-Member -NotePropertyName UseAllProfiles -NotePropertyValue $true }