We are excited to announce the release of: python-troveclient 2.1.0: Client library for OpenStack DBaaS API This release is part of the mitaka release series. With source available at: https://git.openstack.org/cgit/openstack/python-troveclient With package available at: https://pypi.python.org/pypi/python-troveclient Please report issues through launchpad: https://bugs.launchpad.net/python-troveclient For more details, please see below. Changes in python-troveclient 2.0.0..2.1.0 ------------------------------------------ cf8fee5 Add suport for module maintenance commands 2502b50 Fix for guest_log authentication failure b56fef2 Updated from global requirements 420c638 Update readme file to be valid rst and update content 1875667 support OS_ENDPOINT_TYPE environment variable da22ce6 Updated from global requirements fb33d87 Client Changes for Guest Log File Retrieval 1beb72a Fix the "OpenStack CLI guide" link 2be0800 Updated from global requirements e9e4c14 use oslotest to break into the debugger when running test cases 862d9b6 Remove argparse from requirements a5234f0 Time to get rid of any last vestiges of slave_of 4ed9ef9 remove unnecessary message when running unit test Diffstat (except docs and test files) ------------------------------------- README.rst | 388 ++++++++++++++++++++++---------------- requirements.txt | 18 +- test-requirements.txt | 17 +- tox.ini | 11 ++ troveclient/compat/client.py | 2 + troveclient/exceptions.py | 5 + troveclient/shell.py | 6 +- troveclient/v1/client.py | 2 + troveclient/v1/instances.py | 182 +++++++++++++++++- troveclient/v1/modules.py | 132 +++++++++++++ troveclient/v1/shell.py | 317 +++++++++++++++++++++++++++++++ 13 files changed, 1012 insertions(+), 186 deletions(-) Requirements updates -------------------- diff --git a/requirements.txt b/requirements.txt index 6f5e92a..9d0a459 100644 --- a/requirements.txt +++ b/requirements.txt @@ -4,9 +4,9 @@ -pbr>=1.6 -argparse -PrettyTable<0.8,>=0.7 -requests!=2.9.0,>=2.8.1 -simplejson>=2.2.0 -oslo.utils>=3.2.0 # Apache-2.0 -python-keystoneclient!=1.8.0,>=1.6.0 -Babel>=1.3 -six>=1.9.0 +pbr>=1.6 # Apache-2.0 +PrettyTable<0.8,>=0.7 # BSD +requests!=2.9.0,>=2.8.1 # Apache-2.0 +simplejson>=2.2.0 # MIT +oslo.utils>=3.5.0 # Apache-2.0 +python-keystoneclient!=1.8.0,!=2.1.0,>=1.6.0 # Apache-2.0 +Babel>=1.3 # BSD +six>=1.9.0 # MIT +python-swiftclient>=2.2.0 # Apache-2.0 diff --git a/test-requirements.txt b/test-requirements.txt index 059b2a7..c3213ff 100644 --- a/test-requirements.txt +++ b/test-requirements.txt @@ -5,2 +5,2 @@ hacking<0.11,>=0.10.0 -coverage>=3.6 -discover +coverage>=3.6 # Apache-2.0 +discover # BSD @@ -7,0 +8 @@ oslosphinx!=3.4.0,>=2.5.0 # Apache-2.0 +oslotest>=1.10.0 # Apache-2.0 @@ -9,6 +10,6 @@ requests-mock>=0.7.0 # Apache-2.0 -sphinx!=1.2.0,!=1.3b1,<1.3,>=1.1.2 -testrepository>=0.0.18 -testscenarios>=0.4 -testtools>=1.4.0 -mock>=1.2 -httplib2>=0.7.5 +sphinx!=1.2.0,!=1.3b1,<1.3,>=1.1.2 # BSD +testrepository>=0.0.18 # Apache-2.0/BSD +testscenarios>=0.4 # Apache-2.0/BSD +testtools>=1.4.0 # MIT +mock>=1.2 # BSD +httplib2>=0.7.5 # MIT