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 2019/10/08 20:48:21 UTC

[libcloud] branch trunk updated (6f6f16c -> 7a97372)

This is an automated email from the ASF dual-hosted git repository.

tomaz pushed a change to branch trunk
in repository https://gitbox.apache.org/repos/asf/libcloud.git.


    from 6f6f16c  Merge pull request #1353 from clustree/stop-streaming-response-on-upload
     new c926018  test:
     new 00f0b5d  Merge branch 'trunk' of http://gitbox.apache.org/repos/asf/libcloud into trunk
     new d9614a5  Add changelog entry for #1349.
     new 3cd7204  Merge branch 'trunk' of http://gitbox.apache.org/repos/asf/libcloud into trunk
     add 2e8e119  Fix list_sizes on Packet when using project API tokens
     new 8a9a596  Merge branch 'packet-project-api-token-fix' of https://github.com/mistio/libcloud into mistio-packet-project-api-token-fix
     new 2356c8a  Put changelog entry under a correct release.
     new f83775a  Fix failing test.
     new 7a97372  Add changelog entry.

The 8 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 CHANGES.rst                          | 24 +++++++++++++++++++++---
 README.rst                           |  1 +
 libcloud/compute/drivers/packet.py   | 10 ++++++++--
 libcloud/test/compute/test_packet.py |  4 ++++
 4 files changed, 34 insertions(+), 5 deletions(-)


[libcloud] 07/08: Fix failing test.

Posted by to...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

tomaz pushed a commit to branch trunk
in repository https://gitbox.apache.org/repos/asf/libcloud.git

commit f83775a9241c7b95a8ec08d19dee7d65a8dbce8a
Author: Tomaz Muraus <to...@tomaz.me>
AuthorDate: Tue Oct 8 22:43:11 2019 +0200

    Fix failing test.
---
 libcloud/test/compute/test_packet.py | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/libcloud/test/compute/test_packet.py b/libcloud/test/compute/test_packet.py
index 8083a48..999185f 100644
--- a/libcloud/test/compute/test_packet.py
+++ b/libcloud/test/compute/test_packet.py
@@ -290,6 +290,10 @@ class PacketMockHttp(MockHttp):
         body = self.fixtures.load('plans.json')
         return (httplib.OK, body, {}, httplib.responses[httplib.OK])
 
+    def _projects_3d27fd13_0466_4878_be22_9a4b5595a3df_plans(self, method, url, body, headers):
+        body = self.fixtures.load('plans.json')
+        return (httplib.OK, body, {}, httplib.responses[httplib.OK])
+
     def _projects(self, method, url, body, headers):
         body = self.fixtures.load('projects.json')
         return (httplib.OK, body, {}, httplib.responses[httplib.OK])


[libcloud] 02/08: Merge branch 'trunk' of http://gitbox.apache.org/repos/asf/libcloud into trunk

Posted by to...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

tomaz pushed a commit to branch trunk
in repository https://gitbox.apache.org/repos/asf/libcloud.git

commit 00f0b5d4316bfdeea553bf54b207719f104037aa
Merge: c926018 30f897e
Author: Tomaz Muraus <to...@tomaz.me>
AuthorDate: Wed Sep 11 11:32:11 2019 +0200

    Merge branch 'trunk' of http://gitbox.apache.org/repos/asf/libcloud into trunk

 libcloud/loadbalancer/drivers/alb.py               | 952 ++++++++++++++++++---
 .../loadbalancer/fixtures/alb/create_balancer.xml  |  35 +
 .../loadbalancer/fixtures/alb/create_listener.xml  |  27 +
 .../test/loadbalancer/fixtures/alb/create_rule.xml |  28 +
 .../fixtures/alb/create_target_group.xml           |  26 +
 .../alb/describe_load_balancer_listeters.xml       |   4 +-
 .../fixtures/alb/describe_load_balancer_rules.xml  |   2 +-
 .../alb/describe_load_balancer_target_groups.xml   |   8 +-
 .../loadbalancer/fixtures/alb/register_targets.xml |   6 +
 libcloud/test/loadbalancer/test_alb.py             | 240 ++++--
 10 files changed, 1160 insertions(+), 168 deletions(-)


[libcloud] 05/08: Merge branch 'packet-project-api-token-fix' of https://github.com/mistio/libcloud into mistio-packet-project-api-token-fix

Posted by to...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

tomaz pushed a commit to branch trunk
in repository https://gitbox.apache.org/repos/asf/libcloud.git

commit 8a9a596ce4c3a5b069f2f67740dcf5205fe03fd9
Merge: 3cd7204 2e8e119
Author: Tomaz Muraus <to...@tomaz.me>
AuthorDate: Tue Oct 8 22:39:21 2019 +0200

    Merge branch 'packet-project-api-token-fix' of https://github.com/mistio/libcloud into mistio-packet-project-api-token-fix

 libcloud/compute/drivers/packet.py | 10 ++++++++--
 1 file changed, 8 insertions(+), 2 deletions(-)



[libcloud] 03/08: Add changelog entry for #1349.

Posted by to...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

tomaz pushed a commit to branch trunk
in repository https://gitbox.apache.org/repos/asf/libcloud.git

commit d9614a505bfdf8e8d1f9d8485db1b6adac170b89
Author: Tomaz Muraus <to...@tomaz.me>
AuthorDate: Wed Sep 11 11:37:26 2019 +0200

    Add changelog entry for #1349.
---
 CHANGES.rst | 9 +++++++++
 1 file changed, 9 insertions(+)

diff --git a/CHANGES.rst b/CHANGES.rst
index cbdcaec..0275529 100644
--- a/CHANGES.rst
+++ b/CHANGES.rst
@@ -1,6 +1,15 @@
 Changelog
 =========
 
+Changes in Apache Libcloud in development
+-----------------------------------------
+
+Load Balancer
+~~~~~~~------
+
+- [AWS] Implement various create methods in the driver. (GITHUB-1349)
+  [Anton Kozyrev - @Irvan]
+
 Changes in Apache Libcloud 2.6.0
 --------------------------------
 


[libcloud] 06/08: Put changelog entry under a correct release.

Posted by to...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

tomaz pushed a commit to branch trunk
in repository https://gitbox.apache.org/repos/asf/libcloud.git

commit 2356c8acaabd28092384a4b4178e05d908bfbf10
Author: Tomaz Muraus <to...@tomaz.me>
AuthorDate: Tue Oct 8 22:42:02 2019 +0200

    Put changelog entry under a correct release.
---
 CHANGES.rst | 9 ++++++---
 1 file changed, 6 insertions(+), 3 deletions(-)

diff --git a/CHANGES.rst b/CHANGES.rst
index 7c4bd66..9aa66c1 100644
--- a/CHANGES.rst
+++ b/CHANGES.rst
@@ -4,6 +4,12 @@
 Changes in Apache Libcloud in development
 -----------------------------------------
 
+Storage
+~~~~~~~
+
+- [Common, S3, GCS] Reuse TCP connections when uploading files (GITHUB-1353)
+  [Quentin Pradet]
+
 Load Balancer
 ~~~~~~~------
 
@@ -226,9 +232,6 @@ Storage
   iterated / seeked upon before calculating the hash. (GITHUB-1326)
   [Gabe Van Engel - @gvengel, Tomaz Muraus]
 
-- [Common, S3, GCS] Reuse TCP connections when uploading files (GITHUB-1353)
-  [Quentin Pradet]
-
 - [Backblaze B2] Fix a bug with driver not working correctly due to a
   regression which was inadvertently introduced in one of the previous
   releases. (GITHUB-1338, GITHUB-1339)


[libcloud] 01/08: test:

Posted by to...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

tomaz pushed a commit to branch trunk
in repository https://gitbox.apache.org/repos/asf/libcloud.git

commit c926018521b333a03bbf1c0c182991e90a5672d2
Author: Tomaz Muraus <to...@tomaz.me>
AuthorDate: Mon Sep 9 18:10:28 2019 +0200

    test:
---
 README.rst | 1 +
 1 file changed, 1 insertion(+)

diff --git a/README.rst b/README.rst
index bde4ea2..daa1f4a 100644
--- a/README.rst
+++ b/README.rst
@@ -1,6 +1,7 @@
 Apache Libcloud - a unified interface for the cloud
 ====================================================
 
+
 Apache Libcloud is a Python library which hides differences between different
 cloud provider APIs and allows you to manage different cloud resources
 through a unified and easy to use API.


[libcloud] 04/08: Merge branch 'trunk' of http://gitbox.apache.org/repos/asf/libcloud into trunk

Posted by to...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

tomaz pushed a commit to branch trunk
in repository https://gitbox.apache.org/repos/asf/libcloud.git

commit 3cd7204d39bb420293fedfb96e792ad4336505fb
Merge: d9614a5 6f6f16c
Author: Tomaz Muraus <to...@tomaz.me>
AuthorDate: Tue Oct 8 22:39:13 2019 +0200

    Merge branch 'trunk' of http://gitbox.apache.org/repos/asf/libcloud into trunk

 CHANGES.rst                        |  3 +++
 libcloud/dns/providers.py          |  2 ++
 libcloud/dns/types.py              |  1 +
 libcloud/http.py                   |  2 +-
 libcloud/test/storage/test_base.py | 11 +++++++++++
 5 files changed, 18 insertions(+), 1 deletion(-)



[libcloud] 08/08: Add changelog entry.

Posted by to...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

tomaz pushed a commit to branch trunk
in repository https://gitbox.apache.org/repos/asf/libcloud.git

commit 7a9737248e7e0f7dbca9cab5cdfac6ff640bfc52
Author: Tomaz Muraus <to...@tomaz.me>
AuthorDate: Tue Oct 8 22:43:19 2019 +0200

    Add changelog entry.
---
 CHANGES.rst | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/CHANGES.rst b/CHANGES.rst
index 9aa66c1..0241c26 100644
--- a/CHANGES.rst
+++ b/CHANGES.rst
@@ -4,6 +4,12 @@
 Changes in Apache Libcloud in development
 -----------------------------------------
 
+Compute
+~~~~~~~
+
+- [Packet] Update ``list_sizes`` method so it accepts ``ex_project_id`` argument
+  and works with project API tokens. (GITHUB-1351) [Dimitris Moraitis - @d-mo]
+
 Storage
 ~~~~~~~