Skip to content

Commit

Permalink
Merge branch 'devel'
Browse files Browse the repository at this point in the history
  • Loading branch information
TrevorSquillario committed Jan 6, 2023
2 parents d1efe4c + 0b4ac3c commit 9392e21
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions DellOpenManage/DellOpenManage.psd1
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
#
# Generated by: Trevor Squillario <[email protected]>
#
# Generated on: 12/7/2022
# Generated on: 1/6/2023
#

@{
Expand All @@ -12,7 +12,7 @@
RootModule = 'DellOpenManage.psm1'

# Version number of this module.
ModuleVersion = '3.1.0'
ModuleVersion = '3.1.1'

# Supported PSEditions
# CompatiblePSEditions = @()
Expand Down
2 changes: 1 addition & 1 deletion DellOpenManage/Private/New-DeviceFromJson.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
13 changes: 13 additions & 0 deletions RELEASE.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 9392e21

Please sign in to comment.