Skip to content

Commit 36cdfd2

Browse files
Update dependencies
1 parent 4bfe2bf commit 36cdfd2

File tree

10 files changed

+24
-24
lines changed

10 files changed

+24
-24
lines changed

gradle.properties

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
org.gradle.jvmargs=-Xmx1024M
2-
quarkusPlatformVersion=3.17.6
3-
quarkusPluginVersion=3.17.6
4-
sentryVersion=7.19.0
2+
quarkusPlatformVersion=3.19.3
3+
quarkusPluginVersion=3.19.3
4+
sentryVersion=8.4.0
55
javaXtVersion=2.1.9
66
twelveMonkeysVersion=3.12.0
7-
spotlessPluginVersion=7.0.1
8-
lombokPluginVersion=8.11
7+
spotlessPluginVersion=7.0.2
8+
lombokPluginVersion=8.13

gradle/wrapper/gradle-wrapper.jar

122 Bytes
Binary file not shown.

gradle/wrapper/gradle-wrapper.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-8.12-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.13-bin.zip
44
networkTimeout=10000
55
validateDistributionUrl=true
66
zipStoreBase=GRADLE_USER_HOME

gradlew

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -205,7 +205,7 @@ fi
205205
DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"'
206206

207207
# Collect all arguments for the java command:
208-
# * DEFAULT_JVM_OPTS, JAVA_OPTS, JAVA_OPTS, and optsEnvironmentVar are not allowed to contain shell fragments,
208+
# * DEFAULT_JVM_OPTS, JAVA_OPTS, and optsEnvironmentVar are not allowed to contain shell fragments,
209209
# and any embedded shellness will be escaped.
210210
# * For example: A user cannot expect ${Hostname} to be expanded, as it is an environment variable and will be
211211
# treated as '${Hostname}' itself on the command line.

src/main/java/app/fyreplace/api/endpoints/ChaptersEndpoint.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ public Response deleteChapter(
117117
@Path("{position}/position")
118118
@Authenticated
119119
@Transactional
120-
@RequestBody(required = true)
120+
@RequestBody
121121
@APIResponse(responseCode = "200", description = "OK")
122122
@APIResponse(
123123
responseCode = "400",
@@ -190,7 +190,7 @@ public String setChapterText(
190190
@Path("{position}/image")
191191
@Authenticated
192192
@Transactional
193-
@RequestBody(required = true, content = @Content(mediaType = MediaType.APPLICATION_OCTET_STREAM))
193+
@RequestBody(content = @Content(mediaType = MediaType.APPLICATION_OCTET_STREAM))
194194
@APIResponse(responseCode = "200", description = "OK")
195195
@APIResponse(
196196
responseCode = "400",

src/main/java/app/fyreplace/api/endpoints/CommentsEndpoint.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ public Iterable<Comment> listComments(
7272
@POST
7373
@Authenticated
7474
@Transactional
75-
@RequestBody(required = true)
75+
@RequestBody
7676
@APIResponse(
7777
responseCode = "201",
7878
description = "Created",
@@ -153,7 +153,7 @@ public Response deleteComment(
153153
@Path("{position}/reported")
154154
@Authenticated
155155
@Transactional
156-
@RequestBody(required = true)
156+
@RequestBody
157157
@APIResponse(responseCode = "200", description = "OK")
158158
@APIResponse(
159159
responseCode = "400",

src/main/java/app/fyreplace/api/endpoints/EmailsEndpoint.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ public Iterable<Email> listEmails(@QueryParam("page") @PositiveOrZero final int
7070
@POST
7171
@Authenticated
7272
@Transactional
73-
@RequestBody(required = true)
73+
@RequestBody
7474
@APIResponse(
7575
responseCode = "201",
7676
description = "Created",
@@ -173,7 +173,7 @@ public long countEmails() {
173173
@Path("activate")
174174
@Authenticated
175175
@Transactional
176-
@RequestBody(required = true)
176+
@RequestBody
177177
@APIResponse(responseCode = "200", description = "OK")
178178
@APIResponse(
179179
responseCode = "400",

src/main/java/app/fyreplace/api/endpoints/PostsEndpoint.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ public Response deletePost(@PathParam("id") final UUID id) {
139139
@Path("{id}/subscribed")
140140
@Authenticated
141141
@Transactional
142-
@RequestBody(required = true)
142+
@RequestBody
143143
@APIResponse(responseCode = "200", description = "OK")
144144
@APIResponse(
145145
responseCode = "400",
@@ -167,7 +167,7 @@ public Response setPostSubscribed(@PathParam("id") final UUID id, @NotNull @Vali
167167
@Path("{id}/reported")
168168
@Authenticated
169169
@Transactional
170-
@RequestBody(required = true)
170+
@RequestBody
171171
@APIResponse(responseCode = "200", description = "OK")
172172
@APIResponse(
173173
responseCode = "400",
@@ -195,7 +195,7 @@ public Response setPostReported(@PathParam("id") final UUID id, @NotNull @Valid
195195
@Path("{id}/publish")
196196
@Authenticated
197197
@Transactional
198-
@RequestBody(required = true)
198+
@RequestBody
199199
@APIResponse(responseCode = "200", description = "OK")
200200
@APIResponse(
201201
responseCode = "400",
@@ -230,7 +230,7 @@ public Response publishPost(@PathParam("id") final UUID id, @NotNull @Valid fina
230230
@Path("{id}/vote")
231231
@Authenticated
232232
@Transactional
233-
@RequestBody(required = true)
233+
@RequestBody
234234
@APIResponse(responseCode = "200", description = "OK")
235235
@APIResponse(
236236
responseCode = "400",

src/main/java/app/fyreplace/api/endpoints/TokensEndpoint.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ public final class TokensEndpoint {
4848

4949
@POST
5050
@Transactional
51-
@RequestBody(required = true)
51+
@RequestBody
5252
@APIResponse(
5353
responseCode = "201",
5454
description = "Created",
@@ -109,7 +109,7 @@ public String getNewToken() {
109109
@POST
110110
@Path("new")
111111
@Transactional
112-
@RequestBody(required = true)
112+
@RequestBody
113113
@APIResponse(responseCode = "200", description = "OK")
114114
@APIResponse(
115115
responseCode = "400",

src/main/java/app/fyreplace/api/endpoints/UsersEndpoint.java

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ public final class UsersEndpoint {
7070

7171
@POST
7272
@Transactional
73-
@RequestBody(required = true)
73+
@RequestBody
7474
@APIResponse(
7575
responseCode = "201",
7676
description = "Created",
@@ -136,7 +136,7 @@ public User getUser(@PathParam("id") final UUID id) {
136136
@Path("{id}/blocked")
137137
@Authenticated
138138
@Transactional
139-
@RequestBody(required = true)
139+
@RequestBody
140140
@APIResponse(responseCode = "200", description = "OK")
141141
@APIResponse(
142142
responseCode = "400",
@@ -198,7 +198,7 @@ public Response setUserBanned(@PathParam("id") final UUID id) {
198198
@Path("{id}/reported")
199199
@Authenticated
200200
@Transactional
201-
@RequestBody(required = true)
201+
@RequestBody
202202
@APIResponse(responseCode = "200", description = "OK")
203203
@APIResponse(
204204
responseCode = "400",
@@ -254,7 +254,7 @@ public Response deleteCurrentUser() {
254254
@Path("current/bio")
255255
@Authenticated
256256
@Transactional
257-
@RequestBody(required = true, content = @Content(mediaType = MediaType.TEXT_PLAIN))
257+
@RequestBody(content = @Content(mediaType = MediaType.TEXT_PLAIN))
258258
@APIResponse(responseCode = "200", description = "OK")
259259
@APIResponse(
260260
responseCode = "400",
@@ -276,7 +276,7 @@ public String setCurrentUserBio(
276276
@Path("current/avatar")
277277
@Authenticated
278278
@Transactional
279-
@RequestBody(required = true, content = @Content(mediaType = MediaType.APPLICATION_OCTET_STREAM))
279+
@RequestBody(content = @Content(mediaType = MediaType.APPLICATION_OCTET_STREAM))
280280
@APIResponse(responseCode = "200", description = "OK")
281281
@APIResponse(responseCode = "413", description = "Payload Too Large")
282282
@APIResponse(responseCode = "415", description = "Unsupported Media Type")

0 commit comments

Comments
 (0)