You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@libcloud.apache.org by qu...@apache.org on 2018/01/26 11:43:19 UTC

[1/2] libcloud git commit: Add support for DigitalOcean Spaces sgp1 region.

Repository: libcloud
Updated Branches:
  refs/heads/trunk ecfde67c4 -> ff5b5a344


Add support for DigitalOcean Spaces sgp1 region.

Signed-off-by: Quentin Pradet <qu...@apache.org>


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

Branch: refs/heads/trunk
Commit: d649a2be5b3f28d5921f5e8a826d20edd3e6b45e
Parents: ecfde67
Author: Andrew Starr-Bochicchio <a....@gmail.com>
Authored: Thu Jan 25 17:42:23 2018 -0500
Committer: Quentin Pradet <qu...@apache.org>
Committed: Fri Jan 26 15:42:08 2018 +0400

----------------------------------------------------------------------
 libcloud/storage/drivers/digitalocean_spaces.py | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/libcloud/blob/d649a2be/libcloud/storage/drivers/digitalocean_spaces.py
----------------------------------------------------------------------
diff --git a/libcloud/storage/drivers/digitalocean_spaces.py b/libcloud/storage/drivers/digitalocean_spaces.py
index cdd95cc..5e49ce2 100644
--- a/libcloud/storage/drivers/digitalocean_spaces.py
+++ b/libcloud/storage/drivers/digitalocean_spaces.py
@@ -23,7 +23,8 @@ __all__ = [
 ]
 
 DO_SPACES_HOSTS_BY_REGION = {'nyc3': 'nyc3.digitaloceanspaces.com',
-                             'ams3': 'ams3.digitaloceanspaces.com'}
+                             'ams3': 'ams3.digitaloceanspaces.com',
+                             'sgp1': 'sgp1.digitaloceanspaces.com'}
 DO_SPACES_DEFAULT_REGION = 'nyc3'
 DEFAULT_SIGNATURE_VERSION = '2'
 S3_API_VERSION = '2006-03-01'


[2/2] libcloud git commit: Add changes for #1168

Posted by qu...@apache.org.
Add changes for #1168

Closes #1168


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

Branch: refs/heads/trunk
Commit: ff5b5a34482dbcb4e6f8b1248aec02dce198c6e5
Parents: d649a2b
Author: Quentin Pradet <qu...@apache.org>
Authored: Fri Jan 26 15:42:50 2018 +0400
Committer: Quentin Pradet <qu...@apache.org>
Committed: Fri Jan 26 15:42:50 2018 +0400

----------------------------------------------------------------------
 CHANGES.rst | 3 +++
 1 file changed, 3 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/libcloud/blob/ff5b5a34/CHANGES.rst
----------------------------------------------------------------------
diff --git a/CHANGES.rst b/CHANGES.rst
index 2775535..8537c4a 100644
--- a/CHANGES.rst
+++ b/CHANGES.rst
@@ -149,6 +149,9 @@ Storage
 - [Digital Ocean Spaces] Add support for AMS3 region (GITHUB-1142)
   [Andrew Starr-Bochicchio]
 
+- [Digital Ocean Spaces] Add support for SGP1 region (GITHUB-1168)
+  [Andrew Starr-Bochicchio]
+
 - Fix a bug / regression which resulted in increased memory consumption when
   using ``download_object`` method. This method would store whole object
   content in memory even though there was no need for that.