You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@libcloud.apache.org by to...@apache.org on 2015/03/28 15:51:33 UTC

[16/16] libcloud git commit: Merge branch 'trunk' into aws_signing_algo_v4_fixes

Merge branch 'trunk' into aws_signing_algo_v4_fixes

Conflicts:
	CHANGES.rst


Project: http://git-wip-us.apache.org/repos/asf/libcloud/repo
Commit: http://git-wip-us.apache.org/repos/asf/libcloud/commit/928b64f0
Tree: http://git-wip-us.apache.org/repos/asf/libcloud/tree/928b64f0
Diff: http://git-wip-us.apache.org/repos/asf/libcloud/diff/928b64f0

Branch: refs/heads/trunk
Commit: 928b64f062e77853ea44d6cbdd941fb8380b0111
Parents: 9ea27ca 8fa1168
Author: Tomaz Muraus <to...@apache.org>
Authored: Sat Mar 28 14:49:49 2015 +0100
Committer: Tomaz Muraus <to...@apache.org>
Committed: Sat Mar 28 14:49:49 2015 +0100

----------------------------------------------------------------------
 CHANGES.rst                                     |  55 ++++++-
 .../generate_provider_feature_matrix_table.py   |  12 ++
 docs/committer_guide.rst                        |  24 ++-
 .../_supported_methods_block_storage.rst        |  10 +-
 .../_supported_methods_image_management.rst     |   2 +
 .../_supported_methods_key_pair_management.rst  |   2 +
 docs/compute/_supported_methods_main.rst        |   2 +
 docs/compute/_supported_providers.rst           |   2 +
 docs/third_party_drivers.rst                    |   4 +-
 docs/upgrade_notes.rst                          |  15 ++
 libcloud/compute/base.py                        |  34 ++++-
 libcloud/compute/drivers/auroracompute.py       |  29 ++++
 libcloud/compute/drivers/cloudstack.py          | 152 +++++++++++++++++--
 libcloud/compute/drivers/ec2.py                 |  54 +++++--
 libcloud/compute/drivers/gce.py                 |  13 +-
 libcloud/compute/drivers/ibm_sce.py             |   2 +-
 libcloud/compute/drivers/openstack.py           |  96 ++++++++++--
 libcloud/compute/drivers/rackspace.py           |   8 +-
 libcloud/compute/providers.py                   |   2 +
 libcloud/compute/ssh.py                         |  21 +--
 libcloud/compute/types.py                       |  17 +++
 .../listIpForwardingRules_default.json          |   1 +
 .../compute/fixtures/ec2/describe_volumes.xml   |   6 +-
 .../openstack_v1.1/_flavors_detail.json         |   2 +-
 .../fixtures/openstack_v1.1/_os_volumes.json    |   4 +-
 libcloud/test/compute/test_auroracompute.py     |  27 ++++
 libcloud/test/compute/test_base.py              |   6 +-
 libcloud/test/compute/test_cloudstack.py        |  10 ++
 libcloud/test/compute/test_ec2.py               |  20 ++-
 libcloud/test/compute/test_openstack.py         |  54 ++++++-
 libcloud/test/compute/test_rackspace.py         |   1 +
 libcloud/utils/py3.py                           |  15 +-
 requirements-tests.txt                          |   2 +-
 setup.py                                        |  31 ++--
 34 files changed, 640 insertions(+), 95 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/libcloud/blob/928b64f0/CHANGES.rst
----------------------------------------------------------------------
diff --cc CHANGES.rst
index e269238,84e0c6b..32a2c6b
--- a/CHANGES.rst
+++ b/CHANGES.rst
@@@ -66,10 -95,23 +101,28 @@@ Comput
    (LIBCLOUD-671, GITHUB-468)
    [Mateusz Korszun]
  
 +- Add a support for a new AWS Frankfurt, Germany region (``eu-central-1``) to
 +  the EC2 driver using AWS Signature v4.
 +  (GITHUB-444)
-   [Gertjan Oude Lohuis]
++  [Gertjan Oude Lohuis, Tomaz Muraus]
++
+ - Allow Filtering in EC2 list_images() driver
+   (GITHUB-456, LIBCLOUD-667)
+   [Katriel Traum]
+ 
+ - Add ex_list_ip_forwarding_rules() to CloudStack driver
+   (GITHUB-483)
+   [Atsushi Sasaki]
+ 
+ - Add AURORA compute driver
+   (LIBCLOUD-641, GITHUB-477)
+   [Wido den Hollander]
+ 
+ - Update ``ex_describe_tags`` method in the EC2 driver and allow user to list
+   tags for any supported resource. Previously you could only list tags for a
+   node or a storage volume.
+   (LIBCLOUD-676, GITHUB-482)
+   [John Kinsella]
  
  DNS
  ~~~

http://git-wip-us.apache.org/repos/asf/libcloud/blob/928b64f0/libcloud/compute/drivers/ec2.py
----------------------------------------------------------------------