Skip to content

Commit fb2e5f4

Browse files
Release 3.9.0
1 parent 4e05e35 commit fb2e5f4

File tree

4 files changed

+7
-6
lines changed

4 files changed

+7
-6
lines changed

Build-Module.ps1

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@ param(
66
[String]$Version
77
)
88

9-
Update-ModuleManifest -Path ".\DellOpenManage\DellOpenManage.psd1" -ModuleVersion $Version -Copyright "(c) 2023 Dell EMC. All rights reserved."
9+
Update-ModuleManifest -Path ".\DellOpenManage\DellOpenManage.psd1" -ModuleVersion $Version -Copyright "(c) 2025 Dell EMC. All rights reserved."

CHANGELOG.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,15 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

7-
## [3.8.1]() - 2024-02-23
7+
## [3.9.0]() - 2025-03-03
88
### Fixed
99
- Fixed paging when filtering Get-OMEDevice by Group
1010
- Fixed paging in Get-OMEJob
1111
- Fixed paging in Get-OMEFirmwareBaseline
1212

1313
### Added
1414
- Get-OMEDiscovery
15+
- Invoke-OMEBlinkLED
1516

1617
## [3.8.0]() - 2024-02-23
1718
### Fixed

DellOpenManage/DellOpenManage.psd1

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
RootModule = 'DellOpenManage.psm1'
1313

1414
# Version number of this module.
15-
ModuleVersion = '3.8.0'
15+
ModuleVersion = '3.9.0'
1616

1717
# Supported PSEditions
1818
# CompatiblePSEditions = @()
@@ -27,7 +27,7 @@ Author = 'Trevor Squillario <Trevor.Squillario@Dell.com>'
2727
CompanyName = 'Dell EMC'
2828

2929
# Copyright statement for this module
30-
Copyright = '(c) 2023 Dell EMC. All rights reserved.'
30+
Copyright = '(c) 2025 Dell EMC. All rights reserved.'
3131

3232
# Description of the functionality provided by this module
3333
Description = 'Dell OpenManage Enterprise PowerShell Module'

DellOpenManage/Public/OME/Get-OMEDevice.ps1

+2-2
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ Process {
122122
}
123123
if($GroupInfo.'@odata.nextLink')
124124
{
125-
$NextLinkUrl = $BaseUri + $GroupInfo.'@odata.nextLink' + "&" + $Filter
125+
$NextLinkUrl = $BaseUri + $GroupInfo.'@odata.nextLink'
126126
}
127127
while($NextLinkUrl)
128128
{
@@ -136,7 +136,7 @@ Process {
136136
}
137137
if($NextLinkData.'@odata.nextLink')
138138
{
139-
$NextLinkUrl = $BaseUri + $NextLinkData.'@odata.nextLink' + "&" + $Filter
139+
$NextLinkUrl = $BaseUri + $NextLinkData.'@odata.nextLink'
140140
}
141141
else
142142
{

0 commit comments

Comments
 (0)