Skip to content
Draft
Show file tree
Hide file tree
Changes from 2 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
11 changes: 9 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
## v1.5.2
* Add distributed tracing support for Azure Functions client scenarios ([#211](https://github.com/microsoft/durabletask-java/pull/211))
## v1.5.3
* Update dependencies to fix CVE vulnerabilities:
* 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

## v1.5.2
* Add distributed tracing support for Azure Functions client scenarios ([#211](https://github.com/microsoft/durabletask-java/pull/211))


## v1.5.1
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.5.1'
version = '1.5.3'
archivesBaseName = 'durabletask-azure-functions'

def protocVersion = '3.12.0'
Expand Down
8 changes: 4 additions & 4 deletions azuremanaged/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,11 @@ plugins {

archivesBaseName = 'durabletask-azuremanaged'
group 'com.microsoft'
version = '1.5.1-preview.1'
version = '1.5.1-preview.2'

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
6 changes: 3 additions & 3 deletions client/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,12 @@ plugins {
}

group 'com.microsoft'
version = '1.5.1'
version = '1.5.3'
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