Skip to content

Prepare release 2.7.6 #531

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

Merged
merged 1 commit into from
Sep 22, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
27 changes: 27 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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

Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,12 +31,12 @@ Add *cadence-client* as a dependency to your *pom.xml*:
<dependency>
<groupId>com.uber.cadence</groupId>
<artifactId>cadence-client</artifactId>
<version>2.7.1</version>
<version>2.7.6</version>
</dependency>

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

Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ googleJavaFormat {
}

group = 'com.uber.cadence'
version = '2.7.1'
version = '2.7.6'

description = '''Uber Cadence Java Client'''

Expand Down