-
Notifications
You must be signed in to change notification settings - Fork 6
Added post for wdl 1.1.3 announcement. #18
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
Conversation
Updated the release date and added a note about the compliance suite.
This release includes several bug fixes, clarifications, and improvements to the testing infrastructure, such as fixing issues with testing examples and updating CI/CD pipelines.
| * Call statements missing required inputs or `input:` keyword, violating WDL syntax. | ||
| * Python heredoc examples with indentation errors causing `IndentationError`. | ||
| * `read_json()` fails on Python-stringified output due to single quotes - fixed by ensuring valid JSON format. | ||
| * HISAT2 example uses unsupported `--sra-acc` option - fixed by updating to valid options. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Didn't we end up removing this example altogether? If so, no need to include this in either blog post.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ya we did. I had it in there and tee'ed up before this so easy to remove.
| * Fixed the unit test for `round()` to properly test for round-half-up behavior as described in the specification. | ||
|
|
||
| * **Specification Clarifications**: | ||
| * Clarified that a file is not required to exist or be accessible until and unless it is accessed. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
In WDL 1.2, we changed this to be when the statement is evaluated (not when it's accessed). So we should update the spec to match that so that there is no backwards incompatible changes between 1.1 and 1.2, and we should update this line item.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Agreed I think i might have pulled the wrong changelog. I will double check.
Closes #24