diff --git a/CHANGELOG.md b/CHANGELOG.md index 897ba624f..585f2bff0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,32 @@ # Changelog +## 2.7.6 +- Fix getVersion override when added new version +- Add async signal to untypedstub +- Fix RetryOptions.addDoNotRetry +- Add missing metrics from go client +- Fix a bug in setting retry expiration while getting history +- Fix start async return + +## 2.7.5 +- Added supports contextPropagators for localActivity + +## v2.7.4 +- Fix prometheus reporting issue +- Fix Promise.allOf should not block on empty input +- Misc: Added project directory to sourceItems path +- Add async start to untype stub + +## v2.7.3 +- Add wf type tag in decider metrics scope +- Fix WorkflowStub.fromTyped method +- Added missing fields to local activity task +- Honor user timeout for get workflow result + +## v2.7.2 +- Fix leak in Async GetWorkflowExecutionHistory +- Fix context timeout in execute workflow + ## v2.7.1 - Fix a bug in build.gradle that prevented javadoc and sources from being published diff --git a/README.md b/README.md index 25ac7c381..2b5de6621 100644 --- a/README.md +++ b/README.md @@ -31,12 +31,12 @@ Add *cadence-client* as a dependency to your *pom.xml*: com.uber.cadence cadence-client - 2.7.1 + 2.7.6 or to *build.gradle*: - compile group: 'com.uber.cadence', name: 'cadence-client', version: '2.7.1' + compile group: 'com.uber.cadence', name: 'cadence-client', version: '2.7.6' ## Documentation diff --git a/build.gradle b/build.gradle index 221c5a160..3e25bb05a 100644 --- a/build.gradle +++ b/build.gradle @@ -37,7 +37,7 @@ googleJavaFormat { } group = 'com.uber.cadence' -version = '2.7.1' +version = '2.7.6' description = '''Uber Cadence Java Client'''