Skip to content

Commit

Permalink
8.7_Validation
Browse files Browse the repository at this point in the history
  • Loading branch information
akshith-gunasheelan committed Jan 5, 2024
1 parent c72ebf6 commit 63564d6
Show file tree
Hide file tree
Showing 8 changed files with 513 additions and 446 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/createtagandrelease.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
WITH_V: true
CUSTOM_TAG: "v8.6.0"
CUSTOM_TAG: "v8.7.0"
- name: Display
run: echo ${{ steps.tag_and_prepare_release.outputs.new_tag }}
- uses: actions/checkout@v2
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/dockerimage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,6 @@ jobs:
- name: Login to Docker Hub
run: echo ${{ secrets.DOCKER_PASSWORD }} | docker login -u ${{ secrets.DOCKER_USERNAME }} --password-stdin
- name: Build the tagged Docker image
run: docker build . --file Dockerfile --tag hewlettpackardenterprise/hpe-oneview-sdk-for-python:${{ env.GITHUB_REF }}-OV8.6
run: docker build . --file Dockerfile --tag hewlettpackardenterprise/hpe-oneview-sdk-for-python:${{ env.GITHUB_REF }}-OV8.7
- name: Push the tagged Docker image
run: docker push hewlettpackardenterprise/hpe-oneview-sdk-for-python:${{ env.GITHUB_REF }}-OV8.6
run: docker push hewlettpackardenterprise/hpe-oneview-sdk-for-python:${{ env.GITHUB_REF }}-OV8.7
67 changes: 67 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,70 @@
# 8.7.0
#### Notes
Extends Support Of The Sdk To Oneview Rest Api Version 6000 (Oneview V8.7.0)

##### Features Supported With The Current Release
- Appliance Configuration Timeconfig
- Appliance Health Status
- Appliance Network Interfaces
- Appliance Node Information
- Appliance Proxy Configuration
- Appliance Snmpv1 Trap Destinations
- Appliance Snmpv3 Trap Destinations
- Appliance Snmpv3 Users
- Appliance Ssh Access
- Appliance Time And Locale Configuration
- Certificates Server
- Drive Enclosures
- Connection Templates
- Enclosure Groups
- Enclosures
- Ethernet Networks
- Fc Networks
- Fcoe Networks
- Firmware Bundles
- Firmware Drivers
- Ha Nodes
- Hypervisor Cluster Profiles
- Hypervisor Managers
- Id Pool Ipv4 Range
- Id Pool Ipv4 Subnets
- Id Pools
- Index Resources
- Interconnect Types
- Interconnects
- Labels
- Logical Enclosures
- Logical Interconnect Groups
- Logical Interconnects
- Network Sets
- Rack Managers
- Repositories
- Restores
- San Managers
- San Providers
- Sas Interconnects
- Sas Interconnect Types
- Sas Logical Interconnect Groups
- Sas Logical Interconnects
- Sas Logical Jbods
- Sas Logical Jbod Attachments
- Scopes
- Server Hardware
- Server Hardware Types
- Server Profile Templates
- Server Profiles
- Storage Pools
- Storage Systems
- Storage Templates
- Storage Volume
- Storage Volume Attachments
- Storage Volume Templates
- Tasks
- Uplink Sets
- Users
- Version
- Volumes

# 8.6.0
#### Notes
Extends Support Of The Sdk To Oneview Rest Api Version 5800 (Oneview V8.6.0)
Expand Down
14 changes: 7 additions & 7 deletions README.md

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -71,9 +71,9 @@
# built documents.
#
# The short X.Y version.
version = u'8.6.0'
version = u'8.7.0'
# The full version, including alpha/beta/rc tags.
release = u'8.6.0'
release = u'8.7.0'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
860 changes: 430 additions & 430 deletions endpoints-support.md

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions hpeOneView/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,12 @@
standard_library.install_aliases()

__title__ = 'hpeOneView'
__version__ = '8.6.0'
__copyright__ = '(C) Copyright (2012-2023) Hewlett Packard Enterprise Development LP'
__version__ = '8.7.0'
__copyright__ = '(C) Copyright (2012-2024) Hewlett Packard Enterprise Development LP'
__license__ = 'Apache'

###
# (C) Copyright [2021] Hewlett Packard Enterprise Development LP
# (C) Copyright [2024] Hewlett Packard Enterprise Development LP
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
from setuptools import setup

setup(name='hpeOneView',
version='8.6.0',
version='8.7.0',
description='HPE OneView Python Library',
url='https://github.com/HewlettPackard/oneview-python',
download_url="https://github.com/HewlettPackard/oneview-python/tarball/v8.6.0",
Expand Down

0 comments on commit 63564d6

Please sign in to comment.