Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 7 additions & 10 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,17 +1,14 @@
# 5.2.1 (unreleased)
# 5.2.1
#### Notes
Extends support of the SDK to OneView REST API version 800, 1000, 1200 and 1600.
Added support to OneView 'Restores' feature for REST API versions 800, 1000, 1200 and 1600.
Added code to handle login acknowledgement.

#### Features supported
- Restores

#### Bug fixes & Enhancements
- #21 In correct endpoint passed when uploading a downloaded appliance backup
- #23 MISSING_JSON_TYPE error code is thrown when attempting to restore the appliance
- #58 loginMsgAck is not handled in python code
- #60 SPT type for api1600 should be ServerProfileTemplateV8
- #67 raise exception with proper error message when ip is not provided in config
- [#21](https://github.com/HewlettPackard/oneview-python/issues/21) In correct endpoint passed when uploading a downloaded appliance backup
- [#23](https://github.com/HewlettPackard/oneview-python/issues/23) MISSING_JSON_TYPE error code is thrown when attempting to restore the appliance
- [#58](https://github.com/HewlettPackard/oneview-python/issues/58) loginMsgAck is not handled in python code
- [#60](https://github.com/HewlettPackard/oneview-python/issues/60) SPT type for api1600 should be ServerProfileTemplateV8
- [#67](https://github.com/HewlettPackard/oneview-python/issues/67) raise exception with proper error message when ip is not provided in config

# 5.2.0
#### Notes
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -215,6 +215,7 @@ The API list is as follows:
- HPE OneView 4.10 API version: `800`
- HPE OneView 4.20 API version: `1000`
- HPE OneView 5.00 API version: `1200`
- HPE OneView 5.20 API version: `1600`

### HPE Synergy Image Streamer

Expand Down
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'5.2.0'
version = u'5.2.1'
# The full version, including alpha/beta/rc tags.
release = u'5.2.0'
release = u'5.2.1'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
2 changes: 1 addition & 1 deletion hpOneView/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
standard_library.install_aliases()

__title__ = 'hpOneView'
__version__ = '5.2.0'
__version__ = '5.2.1'
__copyright__ = '(C) Copyright (2012-2020) Hewlett Packard Enterprise Development LP'
__license__ = 'Apache'

Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,10 @@
from setuptools import setup

setup(name='hpOneView',
version='5.2.0',
version='5.2.1',
description='HPE OneView Python Library',
url='https://github.com/HewlettPackard/oneview-python',
download_url="https://github.com/HewlettPackard/oneview-python/tarball/v5.2.0",
download_url="https://github.com/HewlettPackard/oneview-python/tarball/v5.2.1",
author='Hewlett Packard Enterprise Development LP',
author_email='oneview-pythonsdk@hpe.com',
license='Apache',
Expand Down