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

[airavata-django-portal] branch staging updated (aac5a81b -> 40ccb1f8)

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

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


    from 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

No new revisions were added by this update.

Summary of changes:
 .../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               |  16 ++-
 .../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  |  23 +++-
 .../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      |   3 +-
 .../js/web-components/store.js                     |  55 +++++++--
 .../tests/unit/web-components/store.spec.js        |   8 ++
 .../static/common/js/components/Uppy.vue           |  16 ++-
 requirements.txt                                   |   2 +-
 32 files changed, 453 insertions(+), 123 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