Skip to content

Commit

Permalink
-- [#633] Fixed mishandling of network sets when assigned to a profil…
Browse files Browse the repository at this point in the history
…e connection and processing with ConvertTo-OVPowerShellScript.

-- [#634] Fixed missing -IloHostname parameter in ConvertTo-OVPowerShellScript when processing either a server profile template or server profile object.
-- [#637] Fixed generating user role output in ConvertTo-OVPowerShellScript.
-- [#638] Fixed Set-OVNetworkSet inadvertantly trying to change the network set type to REGULAR.
-- Added workaround to supporting Gen10 Plus V2 platforms and supporting firmware management.
-- Added Update-OVRemoteSupportEntitlement Cmdlet to refresh remote support entitlement data with the backend.
  • Loading branch information
ChrisLynchHPE committed May 31, 2023
1 parent b052f4f commit 8e274a7
Show file tree
Hide file tree
Showing 8 changed files with 169 additions and 121 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/stale.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: "Stale issue handler"
on:
workflow_dispatch:
schedule:
cron: "0 */12 * * *" # Run the job every 12 hours

jobs:
stale:
runs-on: ubuntu-latest
steps:
- uses: actions/stale@v3.0.14
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
stale-issue-message: 'This issue is stale because it has been open 60 or more days with no activity. Remove stale label or comment or this will be closed in 7 days.'
close-issue-message: 'This stale issue is being closed, because it has been open for 60 or more days with no further activity. If you feel this is in error, please add a comment or re-open the issue.'
days-before-stale: 60
days-before-close: 7
close-issue-label: Stale-Closed
operations-per-run: 250
21 changes: 10 additions & 11 deletions HPEOneView.800.psd1
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
RootModule = 'HPEOneView.800.psm1'

# Version number of this module.
ModuleVersion = '8.00.3439.1646'
ModuleVersion = '8.00.3528.2178'

# Supported PSEditions
# CompatiblePSEditions = @()
Expand Down Expand Up @@ -51,7 +51,7 @@ Copyright = ' (C) Copyright 2013-2023 Hewlett Packard Enterprise Development
Description = 'HPE OneView PowerShell Library'

# Minimum version of the PowerShell engine required by this module
PowerShellVersion = '5.1'
PowerShellVersion = '7.0'

# Name of the PowerShell host required by this module
# PowerShellHostName = ''
Expand Down Expand Up @@ -156,15 +156,14 @@ PrivateData = @{
# IconUri = ''

# ReleaseNotes of this module
ReleaseNotes = 'Release 8.00.3396.2206
- [#621] Fixed regression with New-OVServerProfileConnection and handling unassigned connections.
- [#622] Fixed issue with Get-OVComposerIloStatus returning a null value to the pipeline.
- [#625] Refactored New-OVDataCenter to handle mandatory parameters.
- [#630] Fixed regression in Get-OVEnclosureGroup and Reset-OVEnclosureDevice mishandling Synergy frame resources.
- [#631] Fixed Update-OVServerFirmware handling of system ROM component version not converting to Symentic version.
- [#631] Fixed returning baseline preview to pipeline without specifying the -PreviewOnly parameter. Baseline preview will be displayed to console as non-capturable text.
- Added Get-OVApplianceStatus Cmdlet to get appliance resource configuration (memory, CPU and LAN) and status.'
ReleaseNotes = 'Release 8.00.3528.2178
- [#633] Fixed mishandling of network sets when assigned to a profile connection and processing with ConvertTo-OVPowerShellScript.
- [#634] Fixed missing -IloHostname parameter in ConvertTo-OVPowerShellScript when processing either a server profile template or server profile object.
- [#637] Fixed generating user role output in ConvertTo-OVPowerShellScript.
- [#638] Fixed Set-OVNetworkSet inadvertantly trying to change the network set type to REGULAR.
- Added workaround to supporting Gen10 Plus V2 platforms and supporting firmware management.
- Added Update-OVRemoteSupportEntitlement Cmdlet to refresh remote support entitlement data with the backend.'

# Prerelease string of this module
# Prerelease = ''
Expand Down
Loading

0 comments on commit 8e274a7

Please sign in to comment.