@@ -16,23 +16,23 @@ Build fault-tolerant, stateful workflows in Java applications using the Durable
1616 <dependency >
1717 <groupId >com.microsoft</groupId >
1818 <artifactId >durabletask-client</artifactId >
19- <version >1.6.1 </version >
19+ <version >1.7.0 </version >
2020 </dependency >
2121 <dependency >
2222 <groupId >com.microsoft</groupId >
2323 <artifactId >durabletask-azuremanaged</artifactId >
24- <version >1.6.3 </version >
24+ <version >1.7.0 </version >
2525 </dependency >
2626 <dependency >
2727 <groupId >com.azure</groupId >
2828 <artifactId >azure-identity</artifactId >
29- <version >1.18.1 </version >
29+ <version >1.18.2 </version >
3030 </dependency >
3131 <!-- Logging -->
3232 <dependency >
3333 <groupId >ch.qos.logback</groupId >
3434 <artifactId >logback-classic</artifactId >
35- <version >1.5.28 </version >
35+ <version >1.5.32 </version >
3636 </dependency >
3737 <dependency >
3838 <groupId >org.slf4j</groupId >
@@ -70,12 +70,12 @@ repositories {
7070}
7171
7272dependencies {
73- implementation 'com.microsoft:durabletask-client:1.6.1 '
74- implementation 'com.microsoft:durabletask-azuremanaged:1.6.3 '
75- implementation 'com.azure:azure-identity:1.18.1 '
73+ implementation 'com.microsoft:durabletask-client:1.7.0 '
74+ implementation 'com.microsoft:durabletask-azuremanaged:1.7.0 '
75+ implementation 'com.azure:azure-identity:1.18.2 '
7676
7777 // Logging
78- implementation 'ch.qos.logback:logback-classic:1.5.28 '
78+ implementation 'ch.qos.logback:logback-classic:1.5.32 '
7979 implementation 'org.slf4j:slf4j-api:2.0.17'
8080
8181 // gRPC
@@ -554,8 +554,8 @@ client.raiseEvent(instanceId, "ApprovalEvent", approvalData);
554554client. terminate(instanceId, " User cancelled" );
555555
556556// Suspend/Resume
557- client. suspend (instanceId, " Pausing for maintenance" );
558- client. resume (instanceId, " Resuming operation" );
557+ client. suspendInstance (instanceId, " Pausing for maintenance" );
558+ client. resumeInstance (instanceId, " Resuming operation" );
559559```
560560
561561## Troubleshooting
0 commit comments