Skip to content

Commit 0e24c74

Browse files
committed
APPS-1354 release dxCompiler
(fix) everywhere - version updates
1 parent 80c4c87 commit 0e24c74

File tree

7 files changed

+31
-10
lines changed

7 files changed

+31
-10
lines changed

RELEASE_NOTES.md

Lines changed: 22 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,32 @@
11
# Release Notes
22

3-
## in develop
3+
## 2.10.4 2022-08-23
44

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

9+
### Dependency updates
10+
11+
#### dxApi [0.13.3](https://github.com/dnanexus/dxScala/releases/tag/api-0.13.3)
12+
13+
* Handling of non-fully qualified file IDs for bulk search/describe. Now for the files provided without the project ID,
14+
the `describe` response will be returned only for current workspace/project. If a file was cloned to other projects, they
15+
will be ignored. Non-fully qualified file IDs are not allowed when searching files in other projects.
16+
* Regression tests for API calls to platform
17+
18+
#### dxCommon [0.11.4](https://github.com/dnanexus/dxScala/releases/tag/common-0.11.4)
19+
20+
* Fix for handling 503 error in dx CLI when API requests are throttled
21+
22+
#### dxFileAccessProtocols [0.5.5](https://github.com/dnanexus/dxScala/releases/tag/protocols-0.5.5)
23+
24+
* Dependency update
25+
26+
#### wdlTools [0.17.12](https://github.com/dnanexus/wdlTools/releases/tag/0.17.12)
27+
28+
* Optional types are preserved when using outputs from the standard library functions without explicit declaration.
29+
930

1031
## 2.10.3 2022-08-02
1132

build.sbt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -132,12 +132,12 @@ val githubDxCompilerResolver = Resolver.githubPackages("dnanexus", "dxCompiler")
132132

133133
lazy val dependencies =
134134
new {
135-
val dxCommonVersion = "0.11.4-SNAPSHOT"
136-
val dxApiVersion = "0.13.3-SNAPSHOT"
137-
val dxFileAccessProtocolsVersion = "0.5.5-SNAPSHOT"
135+
val dxCommonVersion = "0.11.4"
136+
val dxApiVersion = "0.13.3"
137+
val dxFileAccessProtocolsVersion = "0.5.5"
138138
val dxYamlVersion = "0.1.1"
139139
val cwlScalaVersion = "0.8.4"
140-
val wdlToolsVersion = "0.17.12-SNAPSHOT"
140+
val wdlToolsVersion = "0.17.12"
141141
val typesafeVersion = "1.4.1"
142142
val sprayVersion = "1.3.6"
143143
val scalatestVersion = "3.2.9"

compiler/src/main/resources/application.conf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
dxCompiler {
2-
version = "2.10.4-SNAPSHOT"
2+
version = "2.10.4"
33
}
44

55
#

core/src/main/resources/application.conf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
dxCompilerCore {
2-
version = "2.10.4-SNAPSHOT"
2+
version = "2.10.4"
33
}
44

55
#

executorCommon/src/main/resources/application.conf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
dxExecutorCommon {
2-
version = "2.10.4-SNAPSHOT"
2+
version = "2.10.4"
33
}
44

55
#

executorCwl/src/main/resources/application.conf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
dxExecutorCwl {
2-
version = "2.10.4-SNAPSHOT"
2+
version = "2.10.4"
33
}
44

55
#

executorWdl/src/main/resources/application.conf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
dxExecutorWdl {
2-
version = "2.10.4-SNAPSHOT"
2+
version = "2.10.4"
33
}
44

55
#

0 commit comments

Comments
 (0)