Skip to content

Commit ff6decc

Browse files
Devx 10208 verify fix next workflow call (#598)
* fix: additional build fixes * fix(verify): Correct route for next workflow
1 parent 05ad2e8 commit ff6decc

File tree

6 files changed

+11
-8
lines changed

6 files changed

+11
-8
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22
All notable changes to this project will be documented in this file.
33
This project adheres to [Semantic Versioning](http://semver.org/).
44

5+
# [9.4.1] - 2025-08-22
6+
- Fixed typo for verify to correct the call to next workflow
7+
58
# [9.4.0] - 2025-08-22
69
- Added `bidirectional` flag for websockets to support the new Bi-Directional Audio Connector
710

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ Add the following to your `build.gradle` or `build.gradle.kts` file:
7474

7575
```groovy
7676
dependencies {
77-
implementation("com.vonage:server-sdk:9.4.0")
77+
implementation("com.vonage:server-sdk:9.4.1")
7878
}
7979
```
8080

@@ -85,7 +85,7 @@ Add the following to the `<dependencies>` section of your `pom.xml` file:
8585
<dependency>
8686
<groupId>com.vonage</groupId>
8787
<artifactId>server-sdk</artifactId>
88-
<version>9.4.0</version>
88+
<version>9.4.1</version>
8989
</dependency>
9090
```
9191

pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
<groupId>com.vonage</groupId>
77
<artifactId>server-sdk</artifactId>
8-
<version>9.4.0</version>
8+
<version>9.4.1</version>
99

1010
<name>Vonage Java Server SDK</name>
1111
<description>Java client for Vonage APIs</description>
@@ -44,7 +44,7 @@
4444
<java.version>8</java.version>
4545
<java.testVersion>21</java.testVersion>
4646
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
47-
<nexusUrl>https://oss.sonatype.org</nexusUrl>
47+
<nexusUrl>https://central.sonatype.com</nexusUrl>
4848
<jackson.version>2.19.0</jackson.version>
4949
<mockito.version>5.17.0</mockito.version>
5050
<jjwt.version>0.12.6</jjwt.version>
@@ -119,7 +119,7 @@
119119
<distributionManagement>
120120
<repository>
121121
<id>nexus-releases</id>
122-
<url>${nexusUrl}/service/local/staging/deploy/maven2/</url>
122+
<url>${nexusUrl}/api/v1/publisher/upload</url>
123123
</repository>
124124
</distributionManagement>
125125

src/main/java/com/vonage/client/HttpWrapper.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
public class HttpWrapper {
3838
private static final String
3939
CLIENT_NAME = "vonage-java-sdk",
40-
CLIENT_VERSION = "9.4.0",
40+
CLIENT_VERSION = "9.4.1",
4141
JAVA_VERSION = System.getProperty("java.version"),
4242
USER_AGENT = String.format("%s/%s java/%s", CLIENT_NAME, CLIENT_VERSION, JAVA_VERSION);
4343

src/main/java/com/vonage/client/verify2/Verify2Client.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ final class Endpoint<T, R> extends DynamicEndpoint<T, R> {
6565
verifyUser = new Endpoint<>(null, HttpMethod.POST);
6666
verifyRequest = new Endpoint<>(req -> req.requestId, HttpMethod.POST);
6767
cancel = new Endpoint<>(UUID::toString, HttpMethod.DELETE);
68-
nextWorkflow = new Endpoint<>(id -> id + "/next-workflow", HttpMethod.POST);
68+
nextWorkflow = new Endpoint<>(id -> id + "/next_workflow", HttpMethod.POST);
6969

7070
final String templatesBase = "templates";
7171
listTemplates = new Endpoint<>(__ -> templatesBase, HttpMethod.GET);

src/test/java/com/vonage/client/verify2/Verify2ClientTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -493,7 +493,7 @@ protected HttpMethod expectedHttpMethod() {
493493

494494
@Override
495495
protected String expectedEndpointUri(UUID request) {
496-
return "/v2/verify/"+request+"/next-workflow";
496+
return "/v2/verify/"+request+"/next_workflow";
497497
}
498498

499499
@Override

0 commit comments

Comments
 (0)