From 5bb075f032faa64e3f1cb47fb52216a0c1248135 Mon Sep 17 00:00:00 2001 From: asisbagga Date: Wed, 10 Mar 2021 12:17:56 +0530 Subject: [PATCH 1/2] release PR for 6.0.0 --- CHANGELOG.md | 7 ++++++- README.md | 14 +++++++------- 2 files changed, 13 insertions(+), 8 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 605b95a5..36a42953 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,10 +1,15 @@ All notable changes to this project will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html) -# [v6.0.0] (Unreleased) +# [v6.0.0] ### Notes - This release extends supports of the SDK to Oneview API Version 2600. Image Streamer API Version 2010. +### New Changes +- Added Query parameter force for PUT call in Hypervisor Manager. +- Added Shared Storage Volume for Hypervisor Cluster Profiles. +- Added serverDisplaySchema for Server Hardware Types Resource. + ### Oneview Features supported - Deploymenet Plan - Ethernet Network diff --git a/README.md b/README.md index 1212dc7a..5b024a64 100644 --- a/README.md +++ b/README.md @@ -2,10 +2,10 @@ ## Build Status -OV Version | 5.60 | 5.50 | 5.40 | 5.30 | +OV Version | 6.00 | 5.60 | 5.50 | 5.40 | 5.30 | | ------------- |:-------------:|-------------:|-------------:|-------------:| -SDK Version/Tag | [v1.8.0](https://github.com/HewlettPackard/oneview-golang/releases/tag/v1.8.0) |[v1.7.0](https://github.com/HewlettPackard/oneview-golang/releases/tag/v1.7.0) | [v1.6.0](https://github.com/HewlettPackard/oneview-golang/releases/tag/v1.6.0) | [v1.5.0](https://github.com/HewlettPackard/oneview-golang/releases/tag/v1.5.0) | -Build Status | ![Build status](https://ci.appveyor.com/api/projects/status/u84505l6syp70013?svg=true) | ![Build status](https://ci.appveyor.com/api/projects/status/u84505l6syp70013?svg=true) | ![Build status](https://ci.appveyor.com/api/projects/status/u84505l6syp70013?svg=true) | ![Build status](https://ci.appveyor.com/api/projects/status/u84505l6syp70013?svg=true)| +SDK Version/Tag | [v6.0.0](https://github.com/HewlettPackard/oneview-golang/releases/tag/v6.0.0) |[v1.8.0](https://github.com/HewlettPackard/oneview-golang/releases/tag/v1.8.0) |[v1.7.0](https://github.com/HewlettPackard/oneview-golang/releases/tag/v1.7.0) | [v1.6.0](https://github.com/HewlettPackard/oneview-golang/releases/tag/v1.6.0) | [v1.5.0](https://github.com/HewlettPackard/oneview-golang/releases/tag/v1.5.0) | +Build Status | ![Build status](https://ci.appveyor.com/api/projects/status/u84505l6syp70013?svg=true)| ![Build status](https://ci.appveyor.com/api/projects/status/u84505l6syp70013?svg=true) | ![Build status](https://ci.appveyor.com/api/projects/status/u84505l6syp70013?svg=true) | ![Build status](https://ci.appveyor.com/api/projects/status/u84505l6syp70013?svg=true) | ![Build status](https://ci.appveyor.com/api/projects/status/u84505l6syp70013?svg=true)| ## Introduction @@ -17,7 +17,7 @@ You can find the latest supported HPE OneView Go SDK [here](https://github.com/H ## What's New -HPE OneView Go library extends support of the SDK to OneView REST API version 2400 (OneView v5.60) +HPE OneView Go library extends support of the SDK to OneView REST API version 2600 (OneView v6.00) Please refer to [notes](https://github.com/HewlettPackard/oneview-golang/blob/master/CHANGELOG.md) for more information on the changes , features supported and issues fixed in this version @@ -33,10 +33,10 @@ The light weight containerized version of the HPE OneView SDK for Go is availabl ```bash # Download and store a local copy of oneview-golang and use it as a Docker Image. -$ docker pull hewlettpackardenterprise/hpe-oneview-sdk-for-golang:v1.8.0-OV5.6 +$ docker pull hewlettpackardenterprise/hpe-oneview-sdk-for-golang:v6.0.0-OV6.0 # Run docker commands below given, which will in turn create a sh session # where you can create files, issue commands and execute the examples. -$ docker run -it hewlettpackardenterprise/hpe-oneview-sdk-for-golang:v1.8.0-OV5.6 /bin/sh +$ docker run -it hewlettpackardenterprise/hpe-oneview-sdk-for-golang:v6.0.0-OV6.0 /bin/sh ``` ### Local Setup @@ -81,7 +81,7 @@ $ export ONEVIEW_OV_DOMAIN=LOCAL $ export ONEVIEW_SSLVERIFY=false $ export ONEVIEW_APIVERSION= ``` -Note: Currently this SDK supports OneView API 2400 minimally, where we can test OneView API 2400 version with this SDK. If API version is not provided then appliance's API version will be used. If API version used is not supported then error will be thrown. +Note: Currently this SDK supports OneView API 2600 minimally, where we can test OneView API 2600 version with this SDK. If API version is not provided then appliance's API version will be used. If API version used is not supported then error will be thrown. ### OneView Client Configuration From 3cc7cdccc085904706f46c16a948ae6eeeed5121 Mon Sep 17 00:00:00 2001 From: asisbagga Date: Wed, 10 Mar 2021 12:18:25 +0530 Subject: [PATCH 2/2] release PR for 6.0.0 --- .github/workflows/main.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 6cdd19a4..6c6dbf61 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -19,6 +19,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-golang:${{ env.RELEASE_VERSION }}-OV5.6 + run: docker build . --file Dockerfile --tag hewlettpackardenterprise/hpe-oneview-sdk-for-golang:${{ env.RELEASE_VERSION }}-OV6.0 - name: Push the tagged Docker image - run: docker push hewlettpackardenterprise/hpe-oneview-sdk-for-golang:${{ env.RELEASE_VERSION }}-OV5.6 + run: docker push hewlettpackardenterprise/hpe-oneview-sdk-for-golang:${{ env.RELEASE_VERSION }}-OV6.0