Skip to content

Commit 1b73308

Browse files
committed
Update generator
Signed-off-by: C0D3 M4513R <28912031+C0D3-M4513R@users.noreply.github.com>
1 parent ebaa14b commit 1b73308

489 files changed

Lines changed: 32733 additions & 52169 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/workflows/ci.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ jobs:
4444
run: npm install @openapitools/openapi-generator-cli
4545

4646
- name: Set OpenAPI Generator version
47-
run: ./node_modules/\@openapitools/openapi-generator-cli/main.js version-manager set 6.2.1
47+
run: ./node_modules/\@openapitools/openapi-generator-cli/main.js version-manager set 7.24.0
4848

4949
- name: Download Specification
5050
run: wget "${SPEC_URL}" '--output-document' "${ARTIFACT_NAME}"

.github/workflows/maven.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,11 @@ jobs:
1717
runs-on: ubuntu-latest
1818
strategy:
1919
matrix:
20-
java: [ '8' ]
20+
java: [ 17, 21 ]
2121
steps:
22-
- uses: actions/checkout@v3
22+
- uses: actions/checkout@v4
2323
- name: Set up JDK
24-
uses: actions/setup-java@v3
24+
uses: actions/setup-java@v4
2525
with:
2626
java-version: ${{ matrix.java }}
2727
distribution: 'temurin'

.openapi-generator/FILES

Lines changed: 32 additions & 72 deletions
Large diffs are not rendered by default.

.openapi-generator/VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
6.2.1
1+
7.24.0

build.gradle

Lines changed: 11 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -62,9 +62,9 @@ if(hasProperty('target') && target == 'android') {
6262
def task = project.tasks.create "jar${variant.name.capitalize()}", Jar
6363
task.description = "Create jar artifact for ${variant.name}"
6464
task.dependsOn variant.javaCompile
65-
task.from variant.javaCompile.destinationDir
66-
task.destinationDir = project.file("${project.buildDir}/outputs/jar")
67-
task.archiveName = "${project.name}-${variant.baseName}-${version}.jar"
65+
task.from variant.javaCompile.destinationDirectory
66+
task.destinationDirectory = project.file("${project.buildDir}/outputs/jar")
67+
task.archiveFileName = "${project.name}-${variant.baseName}-${version}.jar"
6868
artifacts.add('archives', task)
6969
}
7070
}
@@ -106,20 +106,18 @@ ext {
106106
}
107107

108108
dependencies {
109-
implementation 'io.swagger:swagger-annotations:1.6.8'
110109
implementation "com.google.code.findbugs:jsr305:3.0.2"
111-
implementation 'com.squareup.okhttp3:okhttp:4.10.0'
112-
implementation 'com.squareup.okhttp3:logging-interceptor:4.10.0'
110+
implementation 'com.squareup.okhttp3:okhttp:4.12.0'
111+
implementation 'com.squareup.okhttp3:logging-interceptor:4.12.0'
113112
implementation 'com.google.code.gson:gson:2.9.1'
114-
implementation 'io.gsonfire:gson-fire:1.8.5'
115-
implementation 'javax.ws.rs:jsr311-api:1.1.1'
116-
implementation 'javax.ws.rs:javax.ws.rs-api:2.1.1'
117-
implementation 'org.openapitools:jackson-databind-nullable:0.2.4'
118-
implementation group: 'org.apache.commons', name: 'commons-lang3', version: '3.12.0'
113+
implementation 'io.gsonfire:gson-fire:1.9.0'
114+
implementation 'jakarta.ws.rs:jakarta.ws.rs-api:2.1.6'
115+
implementation 'org.openapitools:jackson-databind-nullable:0.2.10'
116+
implementation group: 'org.apache.commons', name: 'commons-lang3', version: '3.18.0'
119117
implementation "jakarta.annotation:jakarta.annotation-api:$jakarta_annotation_version"
120-
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.9.1'
118+
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.10.3'
121119
testImplementation 'org.mockito:mockito-core:3.12.4'
122-
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.9.1'
120+
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.10.3'
123121
}
124122

125123
javadoc {

build.sbt

Lines changed: 10 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -3,25 +3,24 @@ lazy val root = (project in file(".")).
33
organization := "io.github.vrchatapi",
44
name := "vrchatapi",
55
version := "1.20.7",
6-
scalaVersion := "2.11.4",
6+
scalaVersion := "2.11.12",
77
scalacOptions ++= Seq("-feature"),
8-
javacOptions in compile ++= Seq("-Xlint:deprecation"),
9-
publishArtifact in (Compile, packageDoc) := false,
8+
compile / javacOptions ++= Seq("-Xlint:deprecation"),
9+
Compile / packageDoc / publishArtifact := false,
1010
resolvers += Resolver.mavenLocal,
1111
libraryDependencies ++= Seq(
1212
"io.swagger" % "swagger-annotations" % "1.6.5",
13-
"com.squareup.okhttp3" % "okhttp" % "4.10.0",
14-
"com.squareup.okhttp3" % "logging-interceptor" % "4.10.0",
13+
"com.squareup.okhttp3" % "okhttp" % "4.12.0",
14+
"com.squareup.okhttp3" % "logging-interceptor" % "4.12.0",
1515
"com.google.code.gson" % "gson" % "2.9.1",
16-
"org.apache.commons" % "commons-lang3" % "3.12.0",
17-
"javax.ws.rs" % "jsr311-api" % "1.1.1",
18-
"javax.ws.rs" % "javax.ws.rs-api" % "2.1.1",
19-
"org.openapitools" % "jackson-databind-nullable" % "0.2.4",
20-
"io.gsonfire" % "gson-fire" % "1.8.5" % "compile",
16+
"org.apache.commons" % "commons-lang3" % "3.18.0",
17+
"jakarta.ws.rs" % "jakarta.ws.rs-api" % "2.1.6",
18+
"org.openapitools" % "jackson-databind-nullable" % "0.2.10",
19+
"io.gsonfire" % "gson-fire" % "1.9.0" % "compile",
2120
"jakarta.annotation" % "jakarta.annotation-api" % "1.3.5" % "compile",
2221
"com.google.code.findbugs" % "jsr305" % "3.0.2" % "compile",
2322
"jakarta.annotation" % "jakarta.annotation-api" % "1.3.5" % "compile",
24-
"org.junit.jupiter" % "junit-jupiter-api" % "5.9.1" % "test",
23+
"org.junit.jupiter" % "junit-jupiter-api" % "5.10.3" % "test",
2524
"com.novocode" % "junit-interface" % "0.10" % "test",
2625
"org.mockito" % "mockito-core" % "3.12.4" % "test"
2726
)

docs/AgeVerificationStatus.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@
55
## Enum
66

77

8-
* `plus18` (value: `"18+"`)
8+
* `hidden` (value: `"18+"`)
99

10-
* `hidden` (value: `"hidden"`)
10+
* `plus18` (value: `"hidden"`)
1111

1212
* `verified` (value: `"verified"`)
1313

0 commit comments

Comments
 (0)