You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airavata.apache.org by ma...@apache.org on 2021/08/23 15:19:16 UTC

[airavata-django-portal-sdk] branch master updated (b777a55 -> 4aec179)

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

machristie pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/airavata-django-portal-sdk.git.


    from b777a55  AIRAVATA-3498 Fix download bug with 2 or more nested directories
     new 7a71303  AIRAVATA-3420 Add utility method to user_storage module
     new 4aec179  Bump version to 1.2.0

The 2 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:
 airavata_django_portal_sdk/user_storage/__init__.py | 2 ++
 setup.py                                            | 2 +-
 2 files changed, 3 insertions(+), 1 deletion(-)

[airavata-django-portal-sdk] 02/02: Bump version to 1.2.0

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

machristie pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/airavata-django-portal-sdk.git

commit 4aec179d4c7f2fa89e478d0bbcb275734a582ec9
Author: Marcus Christie <ma...@apache.org>
AuthorDate: Mon Aug 23 11:17:31 2021 -0400

    Bump version to 1.2.0
---
 setup.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/setup.py b/setup.py
index 373c910..01726fd 100644
--- a/setup.py
+++ b/setup.py
@@ -10,7 +10,7 @@ def read(fname):
 
 setup(
     name="airavata-django-portal-sdk",
-    version="1.2.dev2",
+    version="1.2.0",
     url="https://github.com/apache/airavata-django-portal-sdk",
     author="Apache Software Foundation",
     author_email="dev@airavata.apache.org",

[airavata-django-portal-sdk] 01/02: AIRAVATA-3420 Add utility method to user_storage module

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

machristie pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/airavata-django-portal-sdk.git

commit 7a71303973c61ca625a44ea9d1425165cb5a6c65
Author: Marcus Christie <ma...@apache.org>
AuthorDate: Mon Aug 23 11:16:59 2021 -0400

    AIRAVATA-3420 Add utility method to user_storage module
---
 airavata_django_portal_sdk/user_storage/__init__.py | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/airavata_django_portal_sdk/user_storage/__init__.py b/airavata_django_portal_sdk/user_storage/__init__.py
index d4ef5db..b60033c 100644
--- a/airavata_django_portal_sdk/user_storage/__init__.py
+++ b/airavata_django_portal_sdk/user_storage/__init__.py
@@ -9,6 +9,7 @@ from .api import (
     exists,
     experiment_dir_exists,
     get_data_product_metadata,
+    get_default_storage_resource_id,
     get_download_url,
     get_experiment_dir,
     get_file,
@@ -39,6 +40,7 @@ __all__ = [
     'exists',
     'experiment_dir_exists',
     'get_data_product_metadata',
+    'get_default_storage_resource_id',
     'get_download_url',
     'get_experiment_dir',
     'get_file',