Skip to content

Commit

Permalink
Release 3.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
TrevorSquillario committed Jan 20, 2023
1 parent d5008bc commit 456dd4d
Show file tree
Hide file tree
Showing 3 changed files with 7 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.3.1]() - 2023-01-20
### Fixed
- Another fix for column order issue in Invoke-OMEReport ([Issue #7](https://github.com/dell/OpenManage-PowerShell-Modules/issues/7))

## [3.3.0]() - 2023-01-19
### Added
- Get-OMEApplianceInfo
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: 1/19/2023
# Generated on: 1/20/2023
#

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

# Version number of this module.
ModuleVersion = '3.3.0'
ModuleVersion = '3.3.1'

# Supported PSEditions
# CompatiblePSEditions = @()
Expand Down
2 changes: 1 addition & 1 deletion DellOpenManage/Public/OME/Invoke-OMEReport.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
$DeetsResp = Invoke-WebRequest -Uri $ReportDeets -UseBasicParsing -Headers $Headers -Method Get -ContentType $Type
if ($DeetsResp.StatusCode -eq 200){
$DeetsInfo = $DeetsResp.Content | ConvertFrom-Json
$ColumnNames = $DeetsInfo.ResultRowColumns | Sort-Object Sequence | ForEach-Object{$_.Name}
$ColumnNames = $DeetsInfo.ResultRowColumns | ForEach-Object{$_.Name}
Write-Verbose "Extracting results for report ($($ReportId))"
$ResultUrl = $BaseUri + "/api/ReportService/ReportDefs($($ReportId))/ReportResults/ResultRows"

Expand Down

0 comments on commit 456dd4d

Please sign in to comment.