-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #56 from xenon-middleware/v1.0-rc1
V1.0 rc1
- Loading branch information
Showing
44 changed files
with
579 additions
and
230 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,28 @@ | ||
# Unreleased | ||
# Version 1.0-rc1 | ||
- Split SourceFileSystem setting into sourceFileSystem for inputs and cwlFileSystem for workflow storage | ||
- Added check on job submission whether the referenced workflow exists on the cwlFileSystem | ||
- Added /workflows api that supplies a list of available workflows in the cwlFileSystem | ||
- Upgrade admin interface to Angular 11 | ||
|
||
# Version 0.4-process | ||
- Upgrade to Xenon 3 | ||
- Upgrade admin interface to Angular 11 | ||
|
||
# Version 0.3-alpha | ||
- Fixed pending jobs throwing an error | ||
|
||
# Version 0.2-alpha | ||
Output file serving and cwl parsing updates | ||
- Output files are now served if they are stored on the local filesystem | ||
* This requires a new config block with a parameter "hosted" set to true: | ||
targetFileSystem: | ||
adaptor: file | ||
location: /home/bweel/Documents/projects/xenon-flow/output/ | ||
hosted: true | ||
|
||
- Output file paths are now set to this location if used | ||
|
||
- Parsing of cwl has been updated to support Maps in addition to arrays for inputs and outputs | ||
|
||
# Version 0.1-alpha | ||
- First pre-release | ||
- Updated to Xenon 2.1.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
19 changes: 19 additions & 0 deletions
19
src/main/java/nl/esciencecenter/computeservice/model/WorkflowListEntry.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
package nl.esciencecenter.computeservice.model; | ||
|
||
import com.fasterxml.jackson.annotation.JsonProperty; | ||
|
||
public class WorkflowListEntry { | ||
@JsonProperty("filename") | ||
String filename; | ||
|
||
@JsonProperty("path") | ||
String path; | ||
|
||
public WorkflowListEntry( | ||
@JsonProperty("filename") String filename, | ||
@JsonProperty("path") String path) { | ||
super(); | ||
this.filename = filename; | ||
this.path = path; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.