You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airavata.apache.org by gi...@apache.org on 2022/12/05 15:18:52 UTC

[airavata-django-portal-sdk] branch dependabot/pip/cryptography-3.3.2 updated (b9aeb4f -> 9f61df0)

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

github-bot pushed a change to branch dependabot/pip/cryptography-3.3.2
in repository https://gitbox.apache.org/repos/asf/airavata-django-portal-sdk.git


    omit b9aeb4f  Bump cryptography from 3.0 to 3.3.2
     add b990360  AIRAVATA-3625 intermediate_output module with utility functions
     add ba78fdd  Bump to version 1.4.0
     add 7f0bd4f  Fix Travis builds for Py 3.7, also adding 3.9
     add f571d08  Adding requests to dependencies
     add 24faafd  Updating mkdocs and pinning Jinja2 to fix readthedocs build
     add 1f1122e  Dropping Jinja2 to 3.0 for Py3.6 compat
     add da035d1  AIRAVATA-3646 improved error message when storage resource is missing provider config
     add cf12130  Bump to version 1.4.1
     add 5b916d9  AIRAVATA-3648 Report last modified time in metadata
     add eb90388  Bump to version 1.5.0
     add db1ec02  AIRAVATA-3649 Moved tests into module
     add 9c45b34  AIRAVATA-3649 Decorator for registering queue settings calculator functions
     add 4a38c1a  AIRAVATA-3649 Added exists method to check if queue settings calculator exists
     add d7a8288  Bump to version 1.6.0
     add 7fbf6d5  Making flake8 happy
     add b009297  Add request data to error emails
     add c0d7494  AIRAVATA-3676 Fix default USER_STORAGES lookup
     add 64d75c4  Bump django from 3.2.12 to 3.2.15
     add 94e539a  Merge pull request #9 from apache/dependabot/pip/django-3.2.15
     add 9f61df0  Bump cryptography from 3.0 to 3.3.2

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (b9aeb4f)
            \
             N -- N -- N   refs/heads/dependabot/pip/cryptography-3.3.2 (9f61df0)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omit" are not gone; other references still
refer to them.  Any revisions marked "discard" are gone forever.

No new revisions were added by this update.

Summary of changes:
 .travis.yml                                        |  2 +
 airavata_django_portal_sdk/decorators.py           |  1 +
 .../experiment_util/__init__.py                    |  3 +-
 airavata_django_portal_sdk/experiment_util/api.py  |  7 +-
 .../experiment_util/intermediate_output.py         | 98 ++++++++++++++++++++++
 .../queue_settings_calculators.py                  | 57 +++++++++++++
 .../tests}/__init__.py                             |  0
 .../tests/test_queue_settings_calculator.py        | 91 ++++++++++++++++++++
 .../tests}/test_settings.py                        |  0
 .../tests}/test_user_storage.py                    | 95 +++++++++++++++++++++
 .../tests}/test_util.py                            |  0
 airavata_django_portal_sdk/user_storage/api.py     | 48 ++++++-----
 .../backends/django_filesystem_provider.py         | 10 +++
 .../user_storage/backends/mft_provider.py          |  4 +
 docs/index.md                                      | 22 +++++
 requirements-dev.txt                               |  3 +-
 requirements.txt                                   |  2 +-
 runtests.py                                        |  4 +-
 setup.py                                           |  4 +-
 19 files changed, 423 insertions(+), 28 deletions(-)
 create mode 100644 airavata_django_portal_sdk/decorators.py
 create mode 100644 airavata_django_portal_sdk/experiment_util/intermediate_output.py
 create mode 100644 airavata_django_portal_sdk/queue_settings_calculators.py
 rename {tests => airavata_django_portal_sdk/tests}/__init__.py (100%)
 create mode 100644 airavata_django_portal_sdk/tests/test_queue_settings_calculator.py
 rename {tests => airavata_django_portal_sdk/tests}/test_settings.py (100%)
 rename {tests => airavata_django_portal_sdk/tests}/test_user_storage.py (71%)
 rename {tests => airavata_django_portal_sdk/tests}/test_util.py (100%)