diff --git a/CHANGELOG.md b/CHANGELOG.md index 12a7238..3c1a5e3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,10 @@ 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). +## [3.1.1]() - 2023-01-06 +### Fixed +- Fixed issue on commandlet Get-OMEDevice where NetworkAddress is not reported correctly on the MX7000 platform + ## [3.1.0]() - 2022-12-07 ### Added - Invoke-OMEOnboarding diff --git a/DellOpenManage/DellOpenManage.psd1 b/DellOpenManage/DellOpenManage.psd1 index e9e74e5..89d0890 100644 --- a/DellOpenManage/DellOpenManage.psd1 +++ b/DellOpenManage/DellOpenManage.psd1 @@ -3,7 +3,7 @@ # # Generated by: Trevor Squillario # -# Generated on: 12/7/2022 +# Generated on: 1/6/2023 # @{ @@ -12,7 +12,7 @@ RootModule = 'DellOpenManage.psm1' # Version number of this module. -ModuleVersion = '3.1.0' +ModuleVersion = '3.1.1' # Supported PSEditions # CompatiblePSEditions = @() diff --git a/DellOpenManage/Private/New-DeviceFromJson.ps1 b/DellOpenManage/Private/New-DeviceFromJson.ps1 index 95ebce8..5089368 100644 --- a/DellOpenManage/Private/New-DeviceFromJson.ps1 +++ b/DellOpenManage/Private/New-DeviceFromJson.ps1 @@ -15,7 +15,7 @@ function New-DeviceFromJson { # We only want the iDRAC network attributes foreach ($DeviceManagement in $Device.DeviceManagement) { foreach ($ManagementProfile in $DeviceManagement.ManagementProfile) { - if ($ManagementProfile.AgentName -eq "iDRAC") { + if ($ManagementProfile.AgentName -eq "iDRAC" -and $DeviceManagement.NetworkAddress -ne "[::]") { $DnsName = $DeviceManagement.DnsName $NetworkAddress = $DeviceManagement.NetworkAddress $MacAddress = $DeviceManagement.MacAddress diff --git a/RELEASE.md b/RELEASE.md index a1136d2..4251ca2 100644 --- a/RELEASE.md +++ b/RELEASE.md @@ -15,6 +15,19 @@ .\Documentation\GenerateMD.ps1 ``` +## Update CHANGELOG.md +``` +## [x.x.x]() - YYYY-MM-DD +### Added +- Added new commandlet + +### Changed +- Changed existing commandlet + +### Fixed +- Fixed issue on existing commandlet +``` + ## Bump Version ``` .\Build-Module.ps1 -Version 2.3.1