Skip to content

Commit 23fbcbd

Browse files
authored
Bumped package version to 2.1.3 (#227)
* Bumped package version to 2.1.3 * Added release notes for 2.1.3 * Increased testChildAsyncWorkflow timeout as it was failing on travis
1 parent a0b0ac2 commit 23fbcbd

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed

CHANGELOG.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,8 @@
1818
- Added sticky workflow execution, which is caching of a workflow object between decisions. It is enabled by default,
1919
to disable use FactoryOptions.disableStickyExecution property.
2020
- Updated Thrift to expose new types of service exceptions: ServiceBusyError, DomainNotActiveError, LimitExceededError
21-
- Added metric for corrupted signal as well as metrics related to caching and evictions.
21+
- Added metric for corrupted signal as well as metrics related to caching and evictions.
22+
23+
## v2.1.3
24+
- Added RPC headers needed to enable sticky queries. Before this change
25+
queries did not used cached workflows.

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ googleJavaFormat {
3737
}
3838

3939
group = 'com.uber.cadence'
40-
version = '2.1.2'
40+
version = '2.1.3'
4141

4242
description = """Uber Cadence Java Client"""
4343

src/test/java/com/uber/cadence/workflow/WorkflowTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1230,7 +1230,7 @@ public String execute(String taskList) {
12301230
}
12311231
}
12321232

1233-
@Test
1233+
@Test(timeout = 20000)
12341234
public void testChildAsyncWorkflow() {
12351235
startWorkerFor(TestChildAsyncWorkflow.class, TestMultiargsWorkflowsImpl.class);
12361236

0 commit comments

Comments
 (0)