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 2023/01/28 19:28:41 UTC

[libcloud] branch trunk updated (d8f0d3a9f -> 4e779e4c1)

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 d8f0d3a9f Add additional corectness tests for read_in_chunks function.
     add 9d46e75af Add an argument container=None
     add 3c3febe10 Add container argument when calling _upload_object
     add 9867b6e8a Add .upper() for data_hash and server_hash
     add ceb44cace Add container=None in Connection base class
     add dd5c697bc Merge pull request #1 from shengwubin/patch-1
     add f471181ef Overwrite the _upload_object function
     add 6b0984c86 Merge branch 'oss-fix-upload-object-issue' into trunk
     add 0dedc4c4b Revert previous changes to avoid influencing other storage providers
     add af147f543 Merge branch 'apache:trunk' into trunk
     add df239d1a4 Merge remote-tracking branch 'origin/trunk' into trunk
     new f6feb64f3 Merge branch 'trunk' of github.com:shengwubin/libcloud into shengwubin-trunk
     add 0de44d488 Update oss storage test cases to avoid argument error in upload_file()
     new 7c460b864 Merge branch 'trunk' into trunk
     new d984d0f0e Merge branch 'trunk' of https://github.com/shengwubin/libcloud into shengwubin-trunk
     new 83eda32ac Fix isort check.
     new 4e779e4c1 Add changelog entry for #1796.

The 5 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                       |  4 +++
 libcloud/storage/drivers/oss.py   | 66 ++++++++++++++++++++++++++++++++++++++-
 libcloud/test/storage/test_oss.py |  3 ++
 3 files changed, 72 insertions(+), 1 deletion(-)


[libcloud] 03/05: Merge branch 'trunk' of https://github.com/shengwubin/libcloud into shengwubin-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 d984d0f0e5c3470dc3587143582d63f8ae2ec0a6
Merge: f6feb64f3 7c460b864
Author: Tomaz Muraus <to...@tomaz.me>
AuthorDate: Sat Jan 28 20:25:35 2023 +0100

    Merge branch 'trunk' of https://github.com/shengwubin/libcloud into shengwubin-trunk

 .github/actions/gh-action-pip-audit/README.md      |  40 +++---
 .../actions/gh-action-pip-audit/requirements.txt   |   2 +-
 .../skip-duplicate-actions/package-lock.json       |  12 +-
 .github/workflows/codeql-analysis.yml              |   2 +-
 CHANGES.rst                                        |  13 ++
 libcloud/test/benchmarks/test_read_in_chunks.py    | 153 +++++++++++++++++++++
 libcloud/test/storage/test_oss.py                  |   3 +
 libcloud/test/test_utils.py                        |  98 ++++++++++++-
 libcloud/utils/files.py                            |  17 ++-
 requirements-lint.txt                              |   4 +-
 requirements-tests.txt                             |   8 +-
 tox.ini                                            |   1 +
 12 files changed, 317 insertions(+), 36 deletions(-)


[libcloud] 02/05: Merge branch 'trunk' 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 7c460b86402aafaaa12c10c17d6c1675dc07bf54
Merge: 0de44d488 d8f0d3a9f
Author: Tomaz Muraus <to...@tomaz.me>
AuthorDate: Sat Jan 28 17:47:40 2023 +0100

    Merge branch 'trunk' into trunk

 .github/actions/gh-action-pip-audit/README.md      |  40 +++---
 .../actions/gh-action-pip-audit/requirements.txt   |   2 +-
 .../skip-duplicate-actions/package-lock.json       |  12 +-
 .github/workflows/codeql-analysis.yml              |   2 +-
 .github/workflows/install_test.yml                 |   3 +-
 CHANGES.rst                                        |  13 ++
 libcloud/test/benchmarks/test_read_in_chunks.py    | 153 +++++++++++++++++++++
 libcloud/test/test_utils.py                        |  98 ++++++++++++-
 libcloud/utils/files.py                            |  17 ++-
 requirements-docs.txt                              |   2 +-
 requirements-lint.txt                              |   6 +-
 requirements-rtd.txt                               |   2 +-
 requirements-tests.txt                             |   8 +-
 tox.ini                                            |   9 +-
 14 files changed, 321 insertions(+), 46 deletions(-)


[libcloud] 04/05: Fix isort check.

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 83eda32ac2c251cf01db8905409c841899a1a118
Author: Tomaz Muraus <to...@tomaz.me>
AuthorDate: Sat Jan 28 20:25:54 2023 +0100

    Fix isort check.
---
 libcloud/storage/drivers/oss.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/libcloud/storage/drivers/oss.py b/libcloud/storage/drivers/oss.py
index 57ef46c87..a3aa4b45c 100644
--- a/libcloud/storage/drivers/oss.py
+++ b/libcloud/storage/drivers/oss.py
@@ -15,12 +15,12 @@
 
 # pylint: disable=unexpected-keyword-arg
 
+import os
 import hmac
 import time
 import base64
 import codecs
 from hashlib import sha1
-import os
 
 from libcloud.utils.py3 import ET, b, httplib, tostring, urlquote, urlencode
 from libcloud.utils.xml import findtext, fixxpath


[libcloud] 05/05: Add changelog entry for #1796.

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 4e779e4c1a6b1149030722f9ee7b1ac26d4b249f
Author: Tomaz Muraus <to...@tomaz.me>
AuthorDate: Sat Jan 28 20:28:07 2023 +0100

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

diff --git a/CHANGES.rst b/CHANGES.rst
index 93418617f..8bd253e4e 100644
--- a/CHANGES.rst
+++ b/CHANGES.rst
@@ -17,6 +17,10 @@ Storage
   (GITHUB-1847)
   [Tobias Biester - @Tobi995]
 
+- [Aliyun OSS] Fix ``upload_object()`` function.
+  (GITHUB-1796)
+  [@shengwubin]
+
 Changes in Apache Libcloud 3.7.0
 --------------------------------
 


[libcloud] 01/05: Merge branch 'trunk' of github.com:shengwubin/libcloud into shengwubin-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 f6feb64f34ae5c7fd8781d5c3232dea24c3d2eb3
Merge: af63e1b61 df239d1a4
Author: Tomaz Muraus <to...@tomaz.me>
AuthorDate: Sun Jan 15 15:56:54 2023 +0100

    Merge branch 'trunk' of github.com:shengwubin/libcloud into shengwubin-trunk

 libcloud/storage/drivers/oss.py | 66 ++++++++++++++++++++++++++++++++++++++++-
 1 file changed, 65 insertions(+), 1 deletion(-)