Skip to content

Commit 0ecfcb3

Browse files
authored
Resolve VCSWP-28066 (#67)
* Fix response status code for Make A Call * Resolve dependabot vulnerabilities
1 parent 4d54c46 commit 0ecfcb3

11 files changed

Lines changed: 95 additions & 67 deletions

File tree

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,14 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
99

1010
None
1111

12+
<a name="6.4.1"></a>
13+
14+
## [6.4.1] - 2026-05-12
15+
16+
### Changed
17+
18+
- Response status code for Make A Call should be 202 instead of 200
19+
1220
<a name="6.4.0"></a>
1321

1422
## [6.4.0] - 2026-04-06

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ Add this dependency to your project's POM:
4040
<dependency>
4141
<groupId>com.github.freeclimbapi</groupId>
4242
<artifactId>freeclimb-java-client</artifactId>
43-
<version>6.4.0</version>
43+
<version>6.4.1</version>
4444
<scope>compile</scope>
4545
</dependency>
4646
```
@@ -56,7 +56,7 @@ Add this dependency to your project's build file:
5656
}
5757
5858
dependencies {
59-
implementation "com.github.freeclimbapi:freeclimb-java-client:6.4.0"
59+
implementation "com.github.freeclimbapi:freeclimb-java-client:6.4.1"
6060
implementation("com.squareup.okhttp3:okhttp:4.9.3")
6161
implementation("com.squareup.okhttp3:logging-interceptor:4.9.3")
6262
}
@@ -72,7 +72,7 @@ mvn clean package
7272

7373
Then manually install the following JARs:
7474

75-
* `target/freeclimb-java-client-6.4.0.jar`
75+
* `target/freeclimb-java-client-6.4.1.jar`
7676
* `target/lib/*.jar`
7777

7878
## Getting Started

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ apply plugin: 'java'
44
apply plugin: 'com.diffplug.spotless'
55

66
group = 'com.github.freeclimbapi'
7-
version = '6.4.0'
7+
version = '6.4.1'
88

99
buildscript {
1010
repositories {

build.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ lazy val root = (project in file(".")).
22
settings(
33
organization := "com.github.freeclimbapi",
44
name := "freeclimb-java-client",
5-
version := "6.4.0",
5+
version := "6.4.1",
66
scalaVersion := "2.11.4",
77
scalacOptions ++= Seq("-feature"),
88
javacOptions in compile ++= Seq("-Xlint:deprecation"),

docs/DefaultApi.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3980,7 +3980,7 @@ Name | Type | Description | Notes
39803980
### HTTP response details
39813981
| Status code | Description | Response headers |
39823982
|-------------|-------------|------------------|
3983-
**200** | Call that was created | - |
3983+
**202** | Call that was created | - |
39843984

39853985
<a name="makeAWebrtcJwt"></a>
39863986
# **makeAWebrtcJwt**

openapi.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6145,7 +6145,7 @@
61456145
},
61466146
"deprecated": false,
61476147
"responses": {
6148-
"200": {
6148+
"202": {
61496149
"description": "Call that was created",
61506150
"content": {
61516151
"application/json": {

package.json

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,18 @@
11
{
22
"dependencies": {
33
"@stoplight/prism-cli": "5.14.2",
4-
"fast-xml-parser": "^5.3.8",
4+
"fast-xml-parser": "^5.7.0",
55
"jsonpath-plus": "^10.3.0"
6+
},
7+
"resolutions": {
8+
"lodash": "^4.18.0",
9+
"fast-xml-parser": "^5.7.0",
10+
"fast-xml-builder": "^1.1.7",
11+
"picomatch": "^4.0.4",
12+
"fast-uri": "^3.1.2",
13+
"ajv": "^8.18.0",
14+
"yaml": "^1.10.3",
15+
"js-yaml": "^3.14.2",
16+
"@tootallnate/once": "^3.0.1"
617
}
718
}

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<artifactId>freeclimb-java-client</artifactId>
66
<packaging>jar</packaging>
77
<name>freeclimb-java-client</name>
8-
<version>6.4.0</version>
8+
<version>6.4.1</version>
99
<url>https://github.com/freeclimbapi/java-sdk</url>
1010
<description>FreeClimb Java Client</description>
1111
<scm>

src/main/java/com/github/freeclimbapi/ApiClient.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ private void init() {
121121
json = new JSON();
122122

123123
// Set default User-Agent.
124-
setUserAgent("OpenAPI-Generator/6.4.0/java");
124+
setUserAgent("OpenAPI-Generator/6.4.1/java");
125125

126126
authentications = new HashMap<String, Authentication>();
127127
}

src/main/java/com/github/freeclimbapi/DefaultApi.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9573,7 +9573,7 @@ public okhttp3.Call listSmsMessagesAsync(
95739573
* @http.response.details
95749574
* <table summary="Response Details" border="1">
95759575
* <tr><td> Status Code </td><td> Description </td><td> Response Headers </td></tr>
9576-
* <tr><td> 200 </td><td> Call that was created </td><td> - </td></tr>
9576+
* <tr><td> 202 </td><td> Call that was created </td><td> - </td></tr>
95779577
* </table>
95789578
*/
95799579
public okhttp3.Call makeACallCall(MakeCallRequest makeCallRequest, final ApiCallback _callback)
@@ -9655,7 +9655,7 @@ private okhttp3.Call makeACallValidateBeforeCall(
96559655
* @http.response.details
96569656
* <table summary="Response Details" border="1">
96579657
* <tr><td> Status Code </td><td> Description </td><td> Response Headers </td></tr>
9658-
* <tr><td> 200 </td><td> Call that was created </td><td> - </td></tr>
9658+
* <tr><td> 202 </td><td> Call that was created </td><td> - </td></tr>
96599659
* </table>
96609660
*/
96619661
public CallResult makeACall(MakeCallRequest makeCallRequest) throws ApiException {
@@ -9673,7 +9673,7 @@ public CallResult makeACall(MakeCallRequest makeCallRequest) throws ApiException
96739673
* @http.response.details
96749674
* <table summary="Response Details" border="1">
96759675
* <tr><td> Status Code </td><td> Description </td><td> Response Headers </td></tr>
9676-
* <tr><td> 200 </td><td> Call that was created </td><td> - </td></tr>
9676+
* <tr><td> 202 </td><td> Call that was created </td><td> - </td></tr>
96779677
* </table>
96789678
*/
96799679
public ApiResponse<CallResult> makeACallWithHttpInfo(MakeCallRequest makeCallRequest)
@@ -9694,7 +9694,7 @@ public ApiResponse<CallResult> makeACallWithHttpInfo(MakeCallRequest makeCallReq
96949694
* @http.response.details
96959695
* <table summary="Response Details" border="1">
96969696
* <tr><td> Status Code </td><td> Description </td><td> Response Headers </td></tr>
9697-
* <tr><td> 200 </td><td> Call that was created </td><td> - </td></tr>
9697+
* <tr><td> 202 </td><td> Call that was created </td><td> - </td></tr>
96989698
* </table>
96999699
*/
97009700
public okhttp3.Call makeACallAsync(

0 commit comments

Comments
 (0)