[zun] python-zunclient 0.5.0 (queens)
We are pleased to announce the release of: python-zunclient 0.5.0: Client Library for Zun This release is part of the queens release series. The source is available from: https://git.openstack.org/cgit/openstack/python-zunclient Download the package from: https://pypi.python.org/pypi/python-zunclient Please report issues through launchpad: https://bugs.launchpad.net/zun For more details, please see below. Changes in python-zunclient 0.4.0..0.5.0 ---------------------------------------- 1ef8c9d Migrate to Zuulv3 0a7d233 Enhance the README page 79ad648 Consolidate API version in client 217f7e8 add capsule describe 15af565 Updated from global requirements 908e1b9 TrivialFix: the format of the annotation 883b0db Bring hostname option back 139e3d2 Updated from global requirements 4da1666 Add attach network CLI 2645db1 Add support for `runtime` parameter a9f280f Updated from global requirements b01905f 'module' object has no attribute 'WebSocketBadStatusException' 706f000 Add capsule method in zunclient f3c8c35 Bump the api version to 1.7 244fadc Show container network. 3cae0e0 Bump the api version to 1.6. 25304f5 Updated from global requirements b2bda48 [Refactor code] Update client v1 6c49f94 [Refactor code] Backward compatibility. 5e35360 [Refactor code] Update shell b1cd390 Updated from global requirements f4e2e41 [Refactor code] Support dynamic load Client module 8268d3a Add detach network CLI side 6791086 Fix the default service type as container d18fabd Reserve links info when showing host info a2daf84 Remove null parms form image_list and host_list e7bb107 Align the style with Docker on commit 644ba9b Remove unused CLI options 3a527d2 Fixed the incorrect metaver in OSC ae8a005 Add host show CLI 5a775df Add CLI support for add_security_group 60be365 Add host list cli 302ac04 Showing contain info after updating by osc command 7737e27 Reserve links info when showing image 518d91a Add <> for metavar info 5ec2943 Fixed description in README.rst d59e40e Update reno for stable/pike 9b12509 Autoremove container added to zun run client d235c5b Reserve links info when showing a container by osc command Diffstat (except docs and test files) ------------------------------------- .zuul.yaml | 23 + README.rst | 46 +- playbooks/zunclient-devstack-docker-sql/post.yaml | 15 + playbooks/zunclient-devstack-docker-sql/run.yaml | 75 +++ releasenotes/source/index.rst | 1 + releasenotes/source/pike.rst | 6 + requirements.txt | 13 +- setup.cfg | 5 + test-requirements.txt | 10 +- zunclient/api_versions.py | 637 +++++++++++---------- zunclient/client.py | 92 ++- zunclient/common/apiclient/auth.py | 2 - zunclient/common/httpclient.py | 3 +- zunclient/common/template_format.py | 63 ++ zunclient/common/template_utils.py | 87 +++ zunclient/common/utils.py | 41 +- zunclient/common/websocketclient/exceptions.py | 2 +- .../common/websocketclient/websocketclient.py | 20 +- zunclient/exceptions.py | 1 + zunclient/experimental/__init__.py | 0 zunclient/experimental/capsules.py | 112 ++++ zunclient/experimental/capsules_shell.py | 120 ++++ zunclient/experimental/client.py | 123 ++++ zunclient/experimental/shell.py | 19 + zunclient/osc/plugin.py | 10 +- zunclient/osc/v1/containers.py | 169 +++++- zunclient/osc/v1/hosts.py | 92 +++ zunclient/osc/v1/images.py | 4 +- zunclient/shell.py | 74 ++- zunclient/v1/client.py | 157 ++--- zunclient/v1/containers.py | 15 +- zunclient/v1/containers_shell.py | 114 +++- zunclient/v1/hosts.py | 82 +++ zunclient/v1/hosts_shell.py | 70 +++ zunclient/v1/images_shell.py | 1 + zunclient/v1/shell.py | 2 + 42 files changed, 1930 insertions(+), 563 deletions(-) Requirements updates -------------------- diff --git a/requirements.txt b/requirements.txt index 76061e4..bcc703b 100644 --- a/requirements.txt +++ b/requirements.txt @@ -7,2 +7,2 @@ PrettyTable<0.8,>=0.7.1 # BSD -python-openstackclient!=3.10.0,>=3.3.0 # Apache-2.0 -keystoneauth1>=3.1.0 # Apache-2.0 +python-openstackclient>=3.12.0 # Apache-2.0 +keystoneauth1>=3.2.0 # Apache-2.0 @@ -10,4 +10,5 @@ osc-lib>=1.7.0 # Apache-2.0 -oslo.i18n!=3.15.2,>=2.1.0 # Apache-2.0 -oslo.utils>=3.20.0 # Apache-2.0 -websocket-client>=0.32.0 # LGPLv2+ -docker>=2.0.0 # Apache-2.0 +oslo.i18n>=3.15.3 # Apache-2.0 +oslo.utils>=3.28.0 # Apache-2.0 +websocket-client>=0.33.0 # LGPLv2+ +docker>=2.4.2 # Apache-2.0 +PyYAML>=3.10 # MIT diff --git a/test-requirements.txt b/test-requirements.txt index cab05ca..6a475ce 100644 --- a/test-requirements.txt +++ b/test-requirements.txt @@ -7 +7 @@ coverage!=4.4,>=4.0 # Apache-2.0 -doc8 # Apache-2.0 +doc8>=0.6.0 # Apache-2.0 @@ -10 +10 @@ hacking!=0.13.0,<0.14,>=0.12.0 # Apache-2.0 -openstackdocstheme>=1.16.0 # Apache-2.0 +openstackdocstheme>=1.17.0 # Apache-2.0 @@ -13 +13 @@ osprofiler>=1.4.0 # Apache-2.0 -os-testr>=0.8.0 # Apache-2.0 +os-testr>=1.0.0 # Apache-2.0 @@ -17 +17 @@ tempest>=16.1.0 # Apache-2.0 -testresources>=0.2.4 # Apache-2.0/BSD +testresources>=2.0.0 # Apache-2.0/BSD @@ -23 +23 @@ testtools>=1.4.0 # MIT -reno!=2.3.1,>=1.8.0 # Apache-2.0 +reno>=2.5.0 # Apache-2.0
participants (1)
-
no-reply@openstack.org