Skip to content

Commit

Permalink
Release 2.3.3
Browse files Browse the repository at this point in the history
  • Loading branch information
TrevorSquillario committed Sep 16, 2021
1 parent b516525 commit f7990f5
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion DellOpenManage/DellOpenManage.psd1
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
RootModule = 'DellOpenManage.psm1'

# Version number of this module.
ModuleVersion = '2.3.2'
ModuleVersion = '2.3.3'

# Supported PSEditions
# CompatiblePSEditions = @()
Expand Down
2 changes: 1 addition & 1 deletion DellOpenManage/Public/OME/New-OMEDiscovery.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -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
}
Expand Down

0 comments on commit f7990f5

Please sign in to comment.