Skip to content

Commit 635b6ea

Browse files
author
Peter Amstutz
committed
Add LoadListing to changelog
1 parent d7ae9f5 commit 635b6ea

File tree

2 files changed

+20
-14
lines changed

2 files changed

+20
-14
lines changed

CommandLineTool.yml

Lines changed: 12 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -83,18 +83,21 @@ $graph:
8383
directories.
8484
* Clarify that unspecified details related to execution are left open to
8585
the platform.
86-
* Added `InputParameter.loadContents` field. Use of `loadContents` in
87-
`InputBinding` is deprecated; it is preserved for v1.0 backwards
86+
* Added `InputParameter.loadContents` field. Use of `loadContents` in
87+
`InputBinding` is deprecated; it is preserved for v1.0 backwards
8888
compatability and will be removed in CWL v2.0.
89-
* [Added](#TimeLimit) `TimeLimit` feature, allowing to set an upper limit on the
89+
* [Added](#TimeLimit) `TimeLimit` feature, allowing to set an upper limit on the
9090
execution time of a CommandLineTool or ExpressionTool.
91-
* [Added](#WorkReuse) `WorkReuse` feature, allowing to enable or disable the reuse
91+
* [Added](#WorkReuse) `WorkReuse` feature, allowing to enable or disable the reuse
9292
behavior for a particular tool or step for implementations that
9393
support reusing output from past work.
94-
* [Added](#NetworkAccess) `NetworkAccess` feature, allowing to indicate whether a
94+
* [Added](#NetworkAccess) `NetworkAccess` feature, allowing to indicate whether a
9595
process requires outgoing network access.
96-
* [Added](#InplaceUpdateRequirement) `InplaceUpdateRequirement` feature, allowing tools to directly
96+
* [Added](#InplaceUpdateRequirement) `InplaceUpdateRequirement` feature, allowing tools to directly
9797
update files with `writable: true` in `InitialWorkDirRequirement`.
98+
* [Added](#LoadListingRequirement) `LoadListingRequirement`
99+
and [loadListing](#LoadContents) to control whether and how
100+
`Directory` listings should be loaded for use in expressions.
98101
99102
See also the [CWL Workflow Description, v1.1.0-dev1 changelog](Workflow.html#Changelog).
100103
@@ -764,9 +767,9 @@ $graph:
764767
produces an empty command line).
765768
766769
Use of implicit ENTRYPOINT or CMD are discouraged due to reproducibility
767-
concerns of the implicit hidden execution point (For further discussion, see
768-
[https://doi.org/10.12688/f1000research.15140.1](https://doi.org/10.12688/f1000research.15140.1)). Portable
769-
CommandLineTool wrappers in which use of a container is optional must not rely on ENTRYPOINT or CMD.
770+
concerns of the implicit hidden execution point (For further discussion, see
771+
[https://doi.org/10.12688/f1000research.15140.1](https://doi.org/10.12688/f1000research.15140.1)). Portable
772+
CommandLineTool wrappers in which use of a container is optional must not rely on ENTRYPOINT or CMD.
770773
CommandLineTools which do rely on ENTRYPOINT or CMD must list `DockerRequirement` in the
771774
`requirements` section.
772775

Workflow.yml

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -76,15 +76,18 @@ $graph:
7676
* `secondaryFiles` can now be explicitly marked as `required` or not.
7777
* Add note that undefined details related to execution are left open to
7878
the platform.
79-
* [Added](#TimeLimit) `TimeLimit` feature, allowing to set an upper limit on the
79+
* [Added](#TimeLimit) `TimeLimit` feature, allowing to set an upper limit on the
8080
execution time of a CommandLineTool or ExpressionTool.
81-
* [Added](#WorkReuse) `WorkReuse` feature, allowing to enable or disable the reuse
81+
* [Added](#WorkReuse) `WorkReuse` feature, allowing to enable or disable the reuse
8282
behavior for a particular tool or step for implementations that
8383
support reusing output from past work.
84-
* [Added](#NetworkAccess) `NetworkAccess` feature, allowing to indicate whether a
84+
* [Added](#NetworkAccess) `NetworkAccess` feature, allowing to indicate whether a
8585
process requires outgoing network access.
86-
* [Added](#InplaceUpdateRequirement) `InplaceUpdateRequirement` feature, allowing tools to directly
86+
* [Added](#InplaceUpdateRequirement) `InplaceUpdateRequirement` feature, allowing tools to directly
8787
update files with `writable: true` in `InitialWorkDirRequirement`.
88+
* [Added](#LoadListingRequirement) `LoadListingRequirement`
89+
and [loadListing](#LoadContents) to control whether and how
90+
`Directory` listings should be loaded for use in expressions.
8891
8992
See also the [CWL Command Line Tool Description, v1.1.0-dev1 changelog](CommandLineTool.html#Changelog).
9093
@@ -202,7 +205,7 @@ $graph:
202205
docParent: "#Workflow"
203206
doc: |
204207
Describe an output parameter of a workflow. The parameter must be
205-
connected to one or more parameters defined in the workflow that
208+
connected to one or more parameters defined in the workflow that
206209
will provide the value of the output parameter. It is legal to
207210
connect a WorkflowInputParameter to a WorkflowOutputParameter.
208211
fields:

0 commit comments

Comments
 (0)