The Oslo team is pleased to announce the release of: oslo.vmware 0.9.0: Oslo VMware library for OpenStack projects
The primary reason for this release is to move the code out of the oslo namespace package as part of https://blueprints.launchpad.net/oslo-incubator/+spec/drop-namespace-packages For more details, please see the git log history below and: http://launchpad.net/oslo.vmware/+milestone/0.9.0 Please report issues through launchpad: http://bugs.launchpad.net/oslo.vmware Changes in /home/dhellmann/repos/openstack/oslo.vmware 0.8.0..0.9.0 ------------------------------------------------------------------- a59c209 Imported Translations from Transifex c51cece Updated from global requirements 9ed4d8a Correct usage to oslo_vmware de27110 Fix line wrapping 3c67c7b Updated from global requirements 95de8ba Correct the doc usage example c4fa9f3 Fix missing project name in installation doc f1dcd53 Imported Translations from Transifex c87b38a Imported Translations from Transifex a229faf Fix race during session creation 2df3a62 Make setup.cfg packages include oslo.vmware a1f0e8c Updated from global requirements 48771e6 Move files out of the namespace package bc6477a Use ToggleLazy fixture from oslo.i18n 84f03f5 Use _is_valid_ipv6 from oslo.utils 93740df Allow checking api session 77dc51e Updated from global requirements e70a057 Updated from global requirements 24681fa Add pbr to installation requirements a251d82 Update urllib3 requirements 3f7a04e Workflow documentation is now in infra-manual 3f842f4 Fix re-create session during transient failures 7c39e50 Imported Translations from Transifex Diffstat (except docs and test files) ------------------------------------- CONTRIBUTING.rst | 7 +- HACKING.rst | 5 +- openstack-common.conf | 2 +- .../locale/fr/LC_MESSAGES/oslo.vmware-log-info.po | 19 +- .../fr/LC_MESSAGES/oslo.vmware-log-warning.po | 33 +- oslo.vmware/locale/fr/LC_MESSAGES/oslo.vmware.po | 161 ++-- oslo.vmware/locale/oslo.vmware-log-info.pot | 19 +- oslo.vmware/locale/oslo.vmware-log-warning.pot | 31 +- oslo.vmware/locale/oslo.vmware.pot | 151 ++-- oslo/vmware/__init__.py | 26 + oslo/vmware/_i18n.py | 35 - oslo/vmware/api.py | 486 +---------- oslo/vmware/common/__init__.py | 0 oslo/vmware/common/loopingcall.py | 144 ---- oslo/vmware/constants.py | 21 +- oslo/vmware/exceptions.py | 250 +----- oslo/vmware/image_transfer.py | 597 +------------- oslo/vmware/objects/datacenter.py | 16 +- oslo/vmware/objects/datastore.py | 307 +------ oslo/vmware/pbm.py | 189 +---- oslo/vmware/rw_handles.py | 628 +-------------- oslo/vmware/service.py | 346 +------- oslo/vmware/vim.py | 39 +- oslo/vmware/vim_util.py | 475 +---------- oslo/vmware/wsdl/5.5/core-types.xsd | 242 ------ oslo/vmware/wsdl/5.5/pbm-messagetypes.xsd | 155 ---- oslo/vmware/wsdl/5.5/pbm-types.xsd | 729 ----------------- oslo/vmware/wsdl/5.5/pbm.wsdl | 889 --------------------- oslo/vmware/wsdl/5.5/pbmService.wsdl | 16 - oslo_vmware/__init__.py | 0 oslo_vmware/_i18n.py | 35 + oslo_vmware/api.py | 490 ++++++++++++ oslo_vmware/common/__init__.py | 0 oslo_vmware/common/loopingcall.py | 144 ++++ oslo_vmware/constants.py | 32 + oslo_vmware/exceptions.py | 261 ++++++ oslo_vmware/image_transfer.py | 608 ++++++++++++++ oslo_vmware/objects/__init__.py | 0 oslo_vmware/objects/datacenter.py | 27 + oslo_vmware/objects/datastore.py | 318 ++++++++ oslo_vmware/pbm.py | 200 +++++ oslo_vmware/rw_handles.py | 632 +++++++++++++++ oslo_vmware/service.py | 357 +++++++++ oslo_vmware/vim.py | 50 ++ oslo_vmware/vim_util.py | 486 +++++++++++ oslo_vmware/wsdl/5.5/core-types.xsd | 242 ++++++ oslo_vmware/wsdl/5.5/pbm-messagetypes.xsd | 155 ++++ oslo_vmware/wsdl/5.5/pbm-types.xsd | 729 +++++++++++++++++ oslo_vmware/wsdl/5.5/pbm.wsdl | 889 +++++++++++++++++++++ oslo_vmware/wsdl/5.5/pbmService.wsdl | 16 + requirements-py3.txt | 8 +- requirements.txt | 11 +- setup.cfg | 2 + tox.ini | 3 +- 76 files changed, 9038 insertions(+), 5887 deletions(-) Requirements updates -------------------- diff --git a/requirements-py3.txt b/requirements-py3.txt index b14f525..8988bcb 100644 --- a/requirements-py3.txt +++ b/requirements-py3.txt @@ -14,2 +14,2 @@ six>=1.7.0 -oslo.i18n>=1.0.0 # Apache-2.0 -oslo.utils>=1.0.0 # Apache-2.0 +oslo.i18n>=1.3.0 # Apache-2.0 +oslo.utils>=1.2.0 # Apache-2.0 @@ -22 +22 @@ suds-jurko>=0.6 -eventlet>=0.15.2 +eventlet>=0.16.1 @@ -24 +24 @@ requests>=2.2.0,!=2.4.0 -urllib3>=1.7.1 +urllib3>=1.8.3 diff --git a/requirements.txt b/requirements.txt index 6939fd3..dfb723a 100644 --- a/requirements.txt +++ b/requirements.txt @@ -4,0 +5,2 @@ +pbr>=0.6,!=0.7,<1.0 + @@ -14,2 +16,2 @@ six>=1.7.0 -oslo.i18n>=1.0.0 # Apache-2.0 -oslo.utils>=1.0.0 # Apache-2.0 +oslo.i18n>=1.3.0 # Apache-2.0 +oslo.utils>=1.2.0 # Apache-2.0 @@ -22 +24 @@ suds>=0.4 -eventlet>=0.15.2 +eventlet>=0.16.1 @@ -24 +26,2 @@ requests>=2.2.0,!=2.4.0 -urllib3>=1.7.1 +urllib3>=1.8.3 +oslo.concurrency>=1.4.1 # Apache-2.0 __________________________________________________________________________ OpenStack Development Mailing List (not for usage questions) Unsubscribe: [email protected]?subject:unsubscribe http://lists.openstack.org/cgi-bin/mailman/listinfo/openstack-dev
