Skip to content

Commit d4926bd

Browse files
authored
Resolve VCSWP-23469 (#62)
* Make edits to a property in the CreateConferenceRequest model * Resolve dependabot issues * Resolve dependabot issues part 2
1 parent 367fb90 commit d4926bd

File tree

12 files changed

+50
-12
lines changed

12 files changed

+50
-12
lines changed

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,4 +20,5 @@ target
2020
.gradle
2121
build
2222

23-
api/openapi.yaml
23+
api/openapi.yaml
24+
node_modules

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.1.2"></a>
13+
14+
## [6.1.2] - 2025-02-18
15+
16+
### Changed
17+
18+
- Make statusCallbackURL property mandatory for CreateConference
19+
1220
<a name="6.1.1"></a>
1321

1422
## [6.1.1] - 2025-02-05

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.1.1</version>
43+
<version>6.1.2</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.1.1"
59+
implementation "com.github.freeclimbapi:freeclimb-java-client:6.1.2"
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.1.1.jar`
75+
* `target/freeclimb-java-client-6.1.2.jar`
7676
* `target/lib/*.jar`
7777

7878
## Getting Started

build.gradle

Lines changed: 2 additions & 2 deletions
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.1.1'
7+
version = '6.1.2'
88

99
buildscript {
1010
repositories {
@@ -119,7 +119,7 @@ dependencies {
119119
implementation "jakarta.annotation:jakarta.annotation-api:$jakarta_annotation_version"
120120
testImplementation 'junit:junit:4.13.2'
121121
testImplementation 'org.mockito:mockito-core:3.12.4'
122-
implementation 'org.json:json:20171018'
122+
implementation 'org.json:json:20231013'
123123
}
124124

125125
javadoc {

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.1.1",
5+
version := "6.1.2",
66
scalaVersion := "2.11.4",
77
scalacOptions ++= Seq("-feature"),
88
javacOptions in compile ++= Seq("-Xlint:deprecation"),

docs/CreateConferenceRequest.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Name | Type | Description | Notes
1111
**playBeep** | **PlayBeep** | | [optional]
1212
**record** | **Boolean** | Setting to &#x60;true&#x60; records the entire Conference. | [optional]
1313
**waitUrl** | **URI** | If specified, a URL for the audio file that provides custom hold music for the Conference when it is in the populated state. Otherwise, FreeClimb uses a system default audio file. This is always fetched using HTTP GET and is fetched just once &amp;mdash; when the Conference is created. | [optional]
14-
**statusCallbackUrl** | **URI** | This URL is invoked when the status of the Conference changes. For more information, see **statusCallbackUrl** (below). | [optional]
14+
**statusCallbackUrl** | **URI** | This URL is invoked when the status of the Conference changes. For more information, see **statusCallbackUrl** (below). |
1515

1616

1717

openapi.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3658,6 +3658,9 @@
36583658
},
36593659
"CreateConferenceRequest": {
36603660
"type": "object",
3661+
"required": [
3662+
"statusCallbackUrl"
3663+
],
36613664
"properties": {
36623665
"alias": {
36633666
"type": "string",

package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
{
22
"dependencies": {
3-
"@stoplight/prism-cli": "5.6.0"
3+
"@stoplight/prism-cli": "5.6.0",
4+
"jsonpath-plus": "^10.3.0"
45
},
56
"resolutions": {
67
"@stoplight/json": "3.20.0",

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.1.1</version>
8+
<version>6.1.2</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.1.1/java");
124+
setUserAgent("OpenAPI-Generator/6.1.2/java");
125125

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

0 commit comments

Comments
 (0)