Skip to content
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
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
## Unreleased

## v1.8.0
* Adding rewind client API ([#253](https://github.com/microsoft/durabletask-java/pull/253)). Note: orchestration processing for rewind is supported with Azure Functions but not with the standalone `GrpcDurableTaskWorker`.
* Add permissions to build-validation workflow ([#265](https://github.com/microsoft/durabletask-java/pull/265))
* Add distributed tracing (OpenTelemetry) support with W3C Trace Context propagation ([#266](https://github.com/microsoft/durabletask-java/pull/266))
* Add GitHub Copilot agents for automated PR verification, daily code review, and issue triage ([#269](https://github.com/microsoft/durabletask-java/pull/269))

## v1.7.0
* Add descriptive error when orchestration type is not registered ([#261](https://github.com/microsoft/durabletask-java/pull/261))
Expand Down
2 changes: 1 addition & 1 deletion azurefunctions/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ plugins {
}

group 'com.microsoft'
version = '1.7.0'
version = '1.8.0'
archivesBaseName = 'durabletask-azure-functions'

def protocVersion = '3.25.8'
Expand Down
2 changes: 1 addition & 1 deletion azuremanaged/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ plugins {

archivesBaseName = 'durabletask-azuremanaged'
group 'com.microsoft'
version = '1.7.0'
version = '1.8.0'

def grpcVersion = '1.78.0'
def azureCoreVersion = '1.57.1'
Expand Down
2 changes: 1 addition & 1 deletion client/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ plugins {
}

group 'com.microsoft'
version = '1.7.0'
version = '1.8.0'
archivesBaseName = 'durabletask-client'

def grpcVersion = '1.78.0'
Expand Down
Loading