diff --git a/CHANGELOG.md b/CHANGELOG.md index f3551d3e..54fdf13b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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)) diff --git a/azurefunctions/build.gradle b/azurefunctions/build.gradle index fc5f86fd..42f28bae 100644 --- a/azurefunctions/build.gradle +++ b/azurefunctions/build.gradle @@ -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' diff --git a/azuremanaged/build.gradle b/azuremanaged/build.gradle index bdd640be..d7abf055 100644 --- a/azuremanaged/build.gradle +++ b/azuremanaged/build.gradle @@ -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' diff --git a/client/build.gradle b/client/build.gradle index 350ccf5b..0d4618fd 100644 --- a/client/build.gradle +++ b/client/build.gradle @@ -10,7 +10,7 @@ plugins { } group 'com.microsoft' -version = '1.7.0' +version = '1.8.0' archivesBaseName = 'durabletask-client' def grpcVersion = '1.78.0'