We are amped to announce the release of: python-qinlingclient 2.0.0: python-qinlingclient This release is part of the rocky release series. The source is available from: https://git.openstack.org/cgit/openstack/python-qinlingclient Download the package from: https://pypi.org/project/python-qinlingclient Please report issues through launchpad: https://storyboard.openstack.org/#!/project/926 For more details, please see below. 2.0.0 ^^^^^ New Features ************ * Add an administrative command "openstack runtime pool show" to get the runtime pool information. This command is useful for admin user to check the information such as the current capacity of the runtime, in order to adjust the pool size according to the users' need. * Support "--untrusted" parameter when creating runtime. Deprecation Notes ***************** * The param "--code-type" of function creation command is deprecated, the actual code type can be deduced by other given params. Changes in python-qinlingclient 1.1.0..2.0.0 -------------------------------------------- bb21ea9 Support '--untrusted' param for runtime creation 23167b6 Switch to stestr 50edb2e Add CLI to get runtime pool 5151adf Remove --code-type for function creation CLI Diffstat (except docs and test files) ------------------------------------- .gitignore | 2 +- .stestr.conf | 4 ++ .testr.conf | 7 -- lower-constraints.txt | 5 +- qinlingclient/osc/v1/base.py | 84 ++++++++++++++++++---- qinlingclient/osc/v1/function.py | 38 ++++------ qinlingclient/osc/v1/runtime.py | 27 ++++++- qinlingclient/v1/runtime.py | 7 +- .../deprecate-code-type-05211c5cf8cf5c51.yaml | 4 ++ .../notes/get-runtime-pool-d263e74d21b27091.yaml | 6 ++ ...support-untrusted-runtime-72739ab479265d81.yaml | 3 + requirements.txt | 2 +- setup.cfg | 1 + test-requirements.txt | 4 +- tools/cover.sh | 14 +++- tools/pretty_tox.sh | 6 -- tox.ini | 11 ++- 17 files changed, 156 insertions(+), 69 deletions(-) Requirements updates -------------------- diff --git a/requirements.txt b/requirements.txt index f442041..fa46909 100644 --- a/requirements.txt +++ b/requirements.txt @@ -5 +5 @@ pbr!=2.1.0,>=2.0.0 # Apache-2.0 -PrettyTable<0.8,>=0.7.1 # BSD +PrettyTable<0.8,>=0.7.2 # BSD diff --git a/test-requirements.txt b/test-requirements.txt index 15a80ce..3a5a878 100644 --- a/test-requirements.txt +++ b/test-requirements.txt @@ -10 +10 @@ requests-mock>=1.2.0 # Apache-2.0 -testrepository>=0.0.18 # Apache-2.0/BSD +stestr>=2.0.0 # Apache-2.0 @@ -18 +18 @@ oslosphinx>=4.7.0 # Apache-2.0 -sphinx!=1.6.6,!=1.6.7,>=1.6.2 # BSD +sphinx!=1.6.6,!=1.6.7,>=1.6.5 # BSD