Skip to content

Commit

Permalink
APPS-1354 release dxCompiler
Browse files Browse the repository at this point in the history
(fix) everywhere - version updates
  • Loading branch information
Gvaihir committed Aug 23, 2022
1 parent 80c4c87 commit 0e24c74
Show file tree
Hide file tree
Showing 7 changed files with 31 additions and 10 deletions.
23 changes: 22 additions & 1 deletion RELEASE_NOTES.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,32 @@
# Release Notes

## in develop
## 2.10.4 2022-08-23

* CWL: fixed target tool id when overriding docker requirement. File ID of an image provided in `DockerRequirement.dockerLoad`
in a CWL workflow is now correctly mapped and detected upon override.
* WDL: manifest mode correctly handles non-fully qualified file IDs (updated dxScala: api)

### Dependency updates

#### dxApi [0.13.3](https://github.com/dnanexus/dxScala/releases/tag/api-0.13.3)

* Handling of non-fully qualified file IDs for bulk search/describe. Now for the files provided without the project ID,
the `describe` response will be returned only for current workspace/project. If a file was cloned to other projects, they
will be ignored. Non-fully qualified file IDs are not allowed when searching files in other projects.
* Regression tests for API calls to platform

#### dxCommon [0.11.4](https://github.com/dnanexus/dxScala/releases/tag/common-0.11.4)

* Fix for handling 503 error in dx CLI when API requests are throttled

#### dxFileAccessProtocols [0.5.5](https://github.com/dnanexus/dxScala/releases/tag/protocols-0.5.5)

* Dependency update

#### wdlTools [0.17.12](https://github.com/dnanexus/wdlTools/releases/tag/0.17.12)

* Optional types are preserved when using outputs from the standard library functions without explicit declaration.


## 2.10.3 2022-08-02

Expand Down
8 changes: 4 additions & 4 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -132,12 +132,12 @@ val githubDxCompilerResolver = Resolver.githubPackages("dnanexus", "dxCompiler")

lazy val dependencies =
new {
val dxCommonVersion = "0.11.4-SNAPSHOT"
val dxApiVersion = "0.13.3-SNAPSHOT"
val dxFileAccessProtocolsVersion = "0.5.5-SNAPSHOT"
val dxCommonVersion = "0.11.4"
val dxApiVersion = "0.13.3"
val dxFileAccessProtocolsVersion = "0.5.5"
val dxYamlVersion = "0.1.1"
val cwlScalaVersion = "0.8.4"
val wdlToolsVersion = "0.17.12-SNAPSHOT"
val wdlToolsVersion = "0.17.12"
val typesafeVersion = "1.4.1"
val sprayVersion = "1.3.6"
val scalatestVersion = "3.2.9"
Expand Down
2 changes: 1 addition & 1 deletion compiler/src/main/resources/application.conf
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
dxCompiler {
version = "2.10.4-SNAPSHOT"
version = "2.10.4"
}

#
Expand Down
2 changes: 1 addition & 1 deletion core/src/main/resources/application.conf
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
dxCompilerCore {
version = "2.10.4-SNAPSHOT"
version = "2.10.4"
}

#
Expand Down
2 changes: 1 addition & 1 deletion executorCommon/src/main/resources/application.conf
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
dxExecutorCommon {
version = "2.10.4-SNAPSHOT"
version = "2.10.4"
}

#
Expand Down
2 changes: 1 addition & 1 deletion executorCwl/src/main/resources/application.conf
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
dxExecutorCwl {
version = "2.10.4-SNAPSHOT"
version = "2.10.4"
}

#
Expand Down
2 changes: 1 addition & 1 deletion executorWdl/src/main/resources/application.conf
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
dxExecutorWdl {
version = "2.10.4-SNAPSHOT"
version = "2.10.4"
}

#
Expand Down

0 comments on commit 0e24c74

Please sign in to comment.