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/06/07 13:06:07 UTC

[airavata-django-portal] branch dependabot/pip/django-3.2.13 updated (9a7151f1 -> cd4c1789)

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

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


    omit 9a7151f1 Bump django from 3.2.11 to 3.2.13
     add 8e20b8cf Documenting LOGIN_REDIRECT_URL
     add e88ba7fa Document url_prefix for custom Django apps
     add 723f8d3a AIRAVATA-3577: Enabling to disregard node to cpu count in the experiment creation
     add dec55917 AIRAVATA-3577: Revalidate the node to cpu count based on node count once the lock is set
     add 4147b122 AIRAVATA-3577: Enabling the webcomponents queue settings to have the lock button to disregard node to cpu check
     add 6fd684d2 AIRAVATA-3577: Enable the cpu to node lock button only when the cpuPerNode > 0 in the queue
     add f4593a4b Merge pull request #69 from dinukadesilva/AIRAVATA-3577-enabling-to-disregard-not-to-cpu-count-in-experiment-creation
     add 175662d0 Updating OS used for Travis builds
     add aac5a81b Fixing typo in input dependencies schema
     add 8b234086 AIRAVATA-3610 Only emit upload-finished event when all uploads have been completely processed
     add 44f53308 AIRAVATA-3612: Enable `disable` property on compute resource selector and group resource selector
     add 77839b10 Merge pull request #79 from dinukadesilva/AIRAVATA-3612-enable-disable-property-on-computer-resource-selector-and-group-resource-selector
     add 2ba4bccc AIRAVATA-3576 UI setting to control whether to show queue settings for app interface
     add 2085b245 AIRAVATA-3616 Show the actual hostName for the compute resource
     add d75db024 AIRAVATA-3618 Upgrade to sdk 1.3.2
     add 58298b09 AIRAVATA-3576 Load application interface when using standalone web components
     add 0a63e136 Fix "not all arguments converted during string formatting" bug
     add 3c4036d9 Fix null latestJobStatus bug
     add 5076046d Fix unit tests to utilize enableNodeCountToCpuCheck
     add 4c2399f2 AIRAVATA-3625 Refactor to use new intermediate_output SDK module
     add 57e586a6 Fix null latestJobStatus bug
     add a448cd2d AIRAVATA-3574: Enabling `showInDashboard` parameter on manage-notifications endpoint
     add 82215aad AIRAVATA-3574: Refactoring
     add 93b5340e AIRAVATA-3574: Enabling the workspace notificatioons on the UI
     add 23b7f861 AIRAVATA-3574: Fix notifications update endpoint
     add cc766726 AIRAVATA-3575: Enabling the Application instructions text box
     add 4f9523fd AIRAVATA-3575: Enabling validations on the application instructions text area
     add 948e5bd2 AIRAVATA-3574: Refactoring
     add f5cf4042 Merge branch 'develop' of https://github.com/apache/airavata-django-portal into AIRAVATA-3574-enabling-workspace-documentation
     add ae742c5a AIRAVATA-3574: Resolve migration conflicts
     add 958f5777 AIRAVATA-3574: flake8 fixes
     add b325fcd0 Merge pull request #88 from dinukadesilva/AIRAVATA-3574-enabling-workspace-documentation
     add 3d44ae6e Fix jsdoc comment to show correct schema
     add 7afb8993 AIRAVATA-3575: Move the application notification to be below the application description in the create experiment
     add 25e8bb17 AIRAVATA-3574: Ammend the publishedTime filtering to the workspace notification list
     add 1b352664 Merge pull request #96 from dinukadesilva/AIRAVATA-3574-bug-fixes
     add fe5b3082 AIRAVATA-3574: Fix application description in experiment edit
     add 674a2516 Merge pull request #97 from dinukadesilva/AIRAVATA-3574-bug-fixes
     add 40ccb1f8 AIRAVATA-3575 Fix null dereference when applicationDescription is null
     add cd4c1789 Bump django from 3.2.11 to 3.2.13

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   (9a7151f1)
            \
             N -- N -- N   refs/heads/dependabot/pip/django-3.2.13 (cd4c1789)

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                                        |   1 +
 .../GroupComputeResourcePreference.vue             |  31 +++--
 .../applications/ApplicationEditorContainer.vue    |   1 -
 .../applications/ApplicationInterfaceEditor.vue    |  41 ++++--
 .../src/components/notices/NoticeEditor.vue        |  14 ++
 .../notices/NoticesManagementContainer.vue         |   4 +
 .../statistics/ExperimentDetailsView.vue           |   3 +-
 .../api/migrations/0007_applicationsettings.py     |  21 +++
 .../api/migrations/0007_notificationextension.py   |  24 ++++
 .../api/migrations/0008_merge_20220601_1951.py     |  14 ++
 django_airavata/apps/api/models.py                 |  13 ++
 django_airavata/apps/api/serializers.py            | 126 +++++++++++-------
 .../js/models/ApplicationInterfaceDefinition.js    |   1 +
 .../js/models/InputDataObjectType.js               |  18 ++-
 .../django_airavata_api/js/models/Notification.js  |   1 +
 django_airavata/apps/api/views.py                  |  12 +-
 .../ComputationalResourceSchedulingEditor.vue      |   1 +
 .../js/components/experiment/ExperimentEditor.vue  |  22 +++-
 .../js/components/experiment/ExperimentSummary.vue |  17 ++-
 .../components/experiment/QueueSettingsEditor.vue  | 144 +++++++++++++--------
 .../WorkspaceNoticesManagementContainer.vue        |  52 ++++++++
 .../js/containers/CreateExperimentContainer.vue    |   3 +
 .../js/containers/DashboardContainer.vue           |   3 +
 .../js/containers/EditExperimentContainer.vue      |   3 +
 .../js/store/modules/view-experiment.js            |  29 +++--
 .../js/web-components/ComputeResourceSelector.vue  |   6 +-
 .../ExperimentComputeResourceSelector.vue          |   6 +-
 .../GroupResourceProfileSelector.vue               |   5 +
 .../js/web-components/QueueSettingsEditor.vue      | 105 +++++++++------
 .../js/web-components/store.js                     |  59 +++++++--
 .../tests/unit/web-components/store.spec.js        |   8 ++
 .../static/common/js/components/Uppy.vue           |  16 ++-
 docs/dev/custom_django_app.md                      |   8 +-
 docs/dev/customization_howto.md                    |  22 ++++
 mkdocs.yml                                         |   1 +
 requirements.txt                                   |   2 +-
 36 files changed, 625 insertions(+), 212 deletions(-)
 create mode 100644 django_airavata/apps/api/migrations/0007_applicationsettings.py
 create mode 100644 django_airavata/apps/api/migrations/0007_notificationextension.py
 create mode 100644 django_airavata/apps/api/migrations/0008_merge_20220601_1951.py
 create mode 100644 django_airavata/apps/workspace/static/django_airavata_workspace/js/components/notices/WorkspaceNoticesManagementContainer.vue
 create mode 100644 docs/dev/customization_howto.md