Releases: common-workflow-language/cwltool
Releases · common-workflow-language/cwltool
1.0.20190228155703
Major feature of this release is support for draft CWL v1.1
To try it out, use cwlVersion: v1.1.0-dev1
and cwltool --enable-ext
CWL v1.1 changelog for CommandLineTool and Workflow
1.0.20181012180214
cwltool 1.0.20181012180214
cwltool is the reference implementation of Common Workflow Language
Requirements:
- Python 3.4 or later (alternatively 2.7 or later)
License:
To install this release with pip use:
pip install cwltool==1.0.20181012180214
For more information, see the included README
1.0.20180912090223
cwltool 1.0.20180912090223
cwltool is the reference implementation of Common Workflow Language
Requirements:
- Python 3.4 or later (alternatively 2.7 or later)
License:
To install this release with pip use:
pip install cwltool==1.0.20180912090223
For more information, see the included README
1.0.20180809224403
cwltool 1.0.20180809224403
cwltool is the reference implementation of Common Workflow Language
Requirements:
- Python 3.4 or later (alternatively 2.7 or later)
License:
To install this release with pip use:
pip install cwltool==1.0.20180809224403
For more information, see the included README
1.0.20180521150620
still eval even if optional + null (#763)
1.0.20180501200546
Better text for secondaryFile mismatch warnings. (#734)
1.0.20180403145700: Merge pull request #706 from common-workflow-language/skip-validation
Add flag to skip validation.
1.0.20180326152342: Fix exec_js_process process caching (#701)
* Fix exec_js_process process caching The existing logic doesn't properly cache processes, leading to a new process being created for every invocation of `exec_js_process` (eventually leading to an error due to too many processes with many calls to execjs). This commit fixes this logic and adds tests for this.
1.0.20180322194411: Add javascript code snippet validation (#662)
* Add validation for javascript expressions. Fixes #594. To do this, it is needed to add jshint and refractor js_sandbox to so that it can be useful for this.
1.0.20180306163216: Experimental extension for "secret" parameters. (#683)
* Experimental extension for "secret" parameters. These are string input parameters that represent sensitive information such as passwords. This feature deliberately obscures them by replacing them with a placeholder during workflow evaluation and then substituting the real value at the last moment. Staged files containing secrets are deleted when the tool completes.