Skip to content
Draft
Show file tree
Hide file tree
Changes from 4 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
9 changes: 7 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
## v1.5.2
* Add distributed tracing support for Azure Functions client scenarios ([#211](https://github.com/microsoft/durabletask-java/pull/211))
## v1.5.2
* Update dependencies to fix CVE vulnerabilities ([#226](https://github.com/microsoft/durabletask-java/pull/226))
* Update gRPC from 1.59.0 to 1.62.2
* Update Jackson from 2.15.3 to 2.16.1
* Update Azure Core from 1.45.0 to 1.46.0
* Update Azure Identity from 1.11.1 to 1.11.2
* Add distributed tracing support for Azure Functions client scenarios ([#211](https://github.com/microsoft/durabletask-java/pull/211))


## v1.5.1
Expand Down
6 changes: 3 additions & 3 deletions azuremanaged/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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")
Expand Down
4 changes: 2 additions & 2 deletions client/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
Loading