diff --git a/CHANGELOG.md b/CHANGELOG.md index e26a9828..a37009b4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,6 @@ -## v1.5.2 -* Add distributed tracing support for Azure Functions client scenarios ([#211](https://github.com/microsoft/durabletask-java/pull/211)) +## placeholder +* Fix CVE vulnerabilities by updating dependencies ([#226](https://github.com/microsoft/durabletask-java/pull/226)) +* Add distributed tracing support for Azure Functions client scenarios ([#211](https://github.com/microsoft/durabletask-java/pull/211)) ## v1.5.1 diff --git a/azuremanaged/build.gradle b/azuremanaged/build.gradle index 6ede2393..9270159f 100644 --- a/azuremanaged/build.gradle +++ b/azuremanaged/build.gradle @@ -19,9 +19,9 @@ archivesBaseName = 'durabletask-azuremanaged' group 'com.microsoft' version = '1.5.1-preview.1' -def grpcVersion = '1.59.0' -def azureCoreVersion = '1.45.0' -def azureIdentityVersion = '1.11.1' +def grpcVersion = '1.62.2' +def azureCoreVersion = '1.46.0' +def azureIdentityVersion = '1.11.2' // When build on local, you need to set this value to your local jdk11 directory. // Java11 is used to compile and run all the tests. def PATH_TO_TEST_JAVA_RUNTIME = System.env.JDK_11 ?: System.getProperty("java.home") diff --git a/client/build.gradle b/client/build.gradle index d9a1e345..72211d73 100644 --- a/client/build.gradle +++ b/client/build.gradle @@ -12,9 +12,9 @@ group 'com.microsoft' version = '1.5.1' archivesBaseName = 'durabletask-client' -def grpcVersion = '1.59.0' +def grpcVersion = '1.62.2' def protocVersion = '3.12.0' -def jacksonVersion = '2.15.3' +def jacksonVersion = '2.16.1' def openTelemetryVersion = '1.25.0' // When build on local, you need to set this value to your local jdk11 directory. // Java11 is used to compile and run all the tests.