Merge branch 'trunk' into paramiko_consume_multi_byte_fix
Project: http://git-wip-us.apache.org/repos/asf/libcloud/repo Commit: http://git-wip-us.apache.org/repos/asf/libcloud/commit/514cbb33 Tree: http://git-wip-us.apache.org/repos/asf/libcloud/tree/514cbb33 Diff: http://git-wip-us.apache.org/repos/asf/libcloud/diff/514cbb33 Branch: refs/heads/trunk Commit: 514cbb334500f69c2bf11034e8547ed21d8ffd3a Parents: 89dcfbd bd17cb9 Author: Tomaz Muraus <[email protected]> Authored: Wed Jan 27 11:13:25 2016 +0100 Committer: Tomaz Muraus <[email protected]> Committed: Wed Jan 27 11:13:34 2016 +0100 ---------------------------------------------------------------------- CHANGES.rst | 18 +++++++---- doap_libcloud.rdf | 7 +++++ docs/conf.py | 2 +- docs/container/index.rst | 58 ------------------------------------ docs/other/using-http-proxy.rst | 6 ++-- libcloud/__init__.py | 2 +- libcloud/compute/drivers/ec2.py | 18 ++++++++--- libcloud/compute/providers.py | 4 +++ libcloud/compute/types.py | 2 ++ 9 files changed, 45 insertions(+), 72 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/libcloud/blob/514cbb33/CHANGES.rst ---------------------------------------------------------------------- diff --cc CHANGES.rst index 87a73bb,5111eb4..093c3a9 --- a/CHANGES.rst +++ b/CHANGES.rst @@@ -1,23 -1,19 +1,31 @@@ Changelog ========= -Change with current version of Apache Libcloud ----------------------------------------------- +Changes with Apache Libcloud in development +------------------------------------------- + +General +~~~~~~~ + +- Fix a bug with consuming stdout and stderr in the paramiko SSH client which + would manifest itself under very rare condition when a consumed chunk only + contained a single byte or part of a multi byte UTF-8 character. + [Lakshmi Kannan, Tomaz Muraus] + +- Increase default chunk size from ``1024`` to ``4096`` bytes in the paramiko + SSH client. This results in smaller number of receive calls on the average. + [Tomaz Muraus] - Changes with Apache Libcloud 1.0-pre1 - ------------------------------------- + Compute + ~~~~~~~ + -- Fix to set default signature version for AWS Seoul region to v4, removed non-supported size (hs1.xlarge) ++- Fix to set default signature version for AWS Seoul region to v4, removed ++ non-supported size (hs1.xlarge) + (GITHUB-684) + [Geunwoo Shin] + - + Changes with Apache Libcloud 1.0.0-pre1 + --------------------------------------- General ~~~~~~~
