File tree 4 files changed +7
-6
lines changed
4 files changed +7
-6
lines changed Original file line number Diff line number Diff line change 6
6
[String ]$Version
7
7
)
8
8
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."
Original file line number Diff line number Diff line change @@ -4,14 +4,15 @@ All notable changes to this project will be documented in this file.
4
4
The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.0.0/ ) ,
5
5
and this project adheres to [ Semantic Versioning] ( https://semver.org/spec/v2.0.0.html ) .
6
6
7
- ## [ 3.8.1 ] ( ) - 2024-02-23
7
+ ## [ 3.9.0 ] ( ) - 2025-03-03
8
8
### Fixed
9
9
- Fixed paging when filtering Get-OMEDevice by Group
10
10
- Fixed paging in Get-OMEJob
11
11
- Fixed paging in Get-OMEFirmwareBaseline
12
12
13
13
### Added
14
14
- Get-OMEDiscovery
15
+ - Invoke-OMEBlinkLED
15
16
16
17
## [ 3.8.0] ( ) - 2024-02-23
17
18
### Fixed
Original file line number Diff line number Diff line change 12
12
RootModule = ' DellOpenManage.psm1'
13
13
14
14
# Version number of this module.
15
- ModuleVersion = ' 3.8 .0'
15
+ ModuleVersion = ' 3.9 .0'
16
16
17
17
# Supported PSEditions
18
18
# CompatiblePSEditions = @()
@@ -27,7 +27,7 @@ Author = 'Trevor Squillario <Trevor.Squillario@Dell.com>'
27
27
CompanyName = ' Dell EMC'
28
28
29
29
# Copyright statement for this module
30
- Copyright = ' (c) 2023 Dell EMC. All rights reserved.'
30
+ Copyright = ' (c) 2025 Dell EMC. All rights reserved.'
31
31
32
32
# Description of the functionality provided by this module
33
33
Description = ' Dell OpenManage Enterprise PowerShell Module'
Original file line number Diff line number Diff line change @@ -122,7 +122,7 @@ Process {
122
122
}
123
123
if ($GroupInfo .' @odata.nextLink' )
124
124
{
125
- $NextLinkUrl = $BaseUri + $GroupInfo .' @odata.nextLink' + " & " + $Filter
125
+ $NextLinkUrl = $BaseUri + $GroupInfo .' @odata.nextLink'
126
126
}
127
127
while ($NextLinkUrl )
128
128
{
@@ -136,7 +136,7 @@ Process {
136
136
}
137
137
if ($NextLinkData .' @odata.nextLink' )
138
138
{
139
- $NextLinkUrl = $BaseUri + $NextLinkData .' @odata.nextLink' + " & " + $Filter
139
+ $NextLinkUrl = $BaseUri + $NextLinkData .' @odata.nextLink'
140
140
}
141
141
else
142
142
{
You can’t perform that action at this time.
0 commit comments