On 5/26/2015 4:19 PM, Matt Riedemann wrote:
On 5/26/2015 9:53 AM, Davanum Srinivas wrote:We are gleeful to announce the release of: oslo.vmware 0.13.0: Oslo VMware library With source available at: http://git.openstack.org/cgit/openstack/oslo.vmware For more details, please see the git log history below and: http://launchpad.net/oslo.vmware/+milestone/0.13.0 Please report issues through launchpad: http://bugs.launchpad.net/oslo.vmware Changes in oslo.vmware 0.12.0..0.13.0 ------------------------------------- 5df9daa Add ToolsUnavailable exception 286cb9e Add support for dynamicProperty 7758123 Remove support for Python 3.3 11e7d71 Updated from global requirements 883c441 Remove run_cross_tests.sh 1986196 Use suds-jurko on Python 2 84ab8c4 Updated from global requirements 6cbde19 Imported Translations from Transifex 8d4695e Updated from global requirements 1668fef Raise VimFaultException for unknown faults 15dbfb2 Imported Translations from Transifex c338f19 Add NoDiskSpaceException 25ec49d Add utility function to get profiles by IDs 32c61ee Add bandit to tox for security static analysis f140b7e Add SPBM WSDL for vSphere 6.0 Diffstat (except docs and test files) ------------------------------------- bandit.yaml | 130 +++ openstack-common.conf | 2 - .../locale/fr/LC_MESSAGES/oslo.vmware-log-error.po | 9 - .../locale/fr/LC_MESSAGES/oslo.vmware-log-info.po | 3 - .../fr/LC_MESSAGES/oslo.vmware-log-warning.po | 10 - oslo.vmware/locale/fr/LC_MESSAGES/oslo.vmware.po | 86 +- oslo.vmware/locale/oslo.vmware.pot | 48 +- oslo_vmware/api.py | 10 +- oslo_vmware/exceptions.py | 13 +- oslo_vmware/objects/datastore.py | 6 +- oslo_vmware/pbm.py | 18 + oslo_vmware/service.py | 2 +- oslo_vmware/wsdl/6.0/core-types.xsd | 237 +++++ oslo_vmware/wsdl/6.0/pbm-messagetypes.xsd | 186 ++++ oslo_vmware/wsdl/6.0/pbm-types.xsd | 806 ++++++++++++++ oslo_vmware/wsdl/6.0/pbm.wsdl | 1104 ++++++++++++++++++++ oslo_vmware/wsdl/6.0/pbmService.wsdl | 16 + requirements-py3.txt | 27 - requirements.txt | 8 +- setup.cfg | 2 +- test-requirements-bandit.txt | 1 + tox.ini | 14 +- 27 files changed, 2645 insertions(+), 262 deletions(-) Requirements updates -------------------- diff --git a/requirements.txt b/requirements.txt index 807bcfc..dd5a1aa 100644 --- a/requirements.txt +++ b/requirements.txt @@ -5 +5 @@ -pbr>=0.6,!=0.7,<1.0 +pbr>=0.11,<2.0 @@ -23,3 +23,3 @@ PyYAML>=3.1.0 -suds>=0.4 -eventlet>=0.16.1,!=0.17.0 -requests>=2.2.0,!=2.4.0 +suds-jurko>=0.6 +eventlet>=0.17.3 +requests>=2.5.2 diff --git a/test-requirements-bandit.txt b/test-requirements-bandit.txt new file mode 100644 index 0000000..38c39e1 --- /dev/null +++ b/test-requirements-bandit.txt @@ -0,0 +1 @@ +bandit==0.10.1There is now a blocking vmware unit tests bug in nova due to the oslo.vmware 0.13.0 release: https://bugs.launchpad.net/nova/+bug/1459021 Since the vmware driver unit test code in nova likes to stub out external APIs there is probably a bug in the nova unit tests rather than an issue in oslo.vmware, but I'm not very familiar so I can't really say.
I have a revert for oslo.vmware here: https://review.openstack.org/#/c/185744/ And a block on the 0.13.0 version in global-requirements here: https://review.openstack.org/#/c/185748/ -- Thanks, Matt Riedemann __________________________________________________________________________ OpenStack Development Mailing List (not for usage questions) Unsubscribe: [email protected]?subject:unsubscribe http://lists.openstack.org/cgi-bin/mailman/listinfo/openstack-dev
