Skip to content

Commit 4a25422

Browse files
committed
Rest Problem update and JS updates
1 parent cf1c571 commit 4a25422

File tree

6 files changed

+29
-29
lines changed

6 files changed

+29
-29
lines changed

pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,11 @@
99
<description>Quarkus monorepo demonstrating Panache REST server with PrimeReact UI client</description>
1010
<url>https://github.com/melloware/quarkus-monorepo</url>
1111
<properties>
12-
<quarkus.platform.version>3.21.1</quarkus.platform.version>
12+
<quarkus.platform.version>3.22.0</quarkus.platform.version>
1313
<quarkus.logmanager.version>3.3.2</quarkus.logmanager.version>
1414
<quarkus.ngrok.version>1.6.0</quarkus.ngrok.version>
1515
<quarkus.postgresql.version>0.3.1</quarkus.postgresql.version>
16-
<quarkus.rest-problem.version>3.20.0</quarkus.rest-problem.version>
16+
<quarkus.rest-problem.version>3.20.1</quarkus.rest-problem.version>
1717
<quarkus.quinoa.version>2.5.4</quarkus.quinoa.version>
1818
<lombok.version>1.18.38</lombok.version>
1919
<!-- Plugins-->

src/main/webui/openapi.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@
7575
}
7676
},
7777
"HttpProblem" : {
78-
"description" : "HTTP Problem Response according to RFC9457 & RFC7807",
78+
"description" : "HTTP Problem Response according to RFC9457 and RFC7807",
7979
"additionalProperties" : true,
8080
"type" : "object",
8181
"properties" : {
@@ -110,7 +110,7 @@
110110
}
111111
},
112112
"HttpValidationProblem" : {
113-
"description" : "HTTP Validation Problem Response according to RFC9457 & RFC7807",
113+
"description" : "HTTP Validation Problem Response according to RFC9457 and RFC7807",
114114
"additionalProperties" : true,
115115
"type" : "object",
116116
"properties" : {

src/main/webui/openapi.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ components:
7575
examples:
7676
- equals
7777
HttpProblem:
78-
description: HTTP Problem Response according to RFC9457 & RFC7807
78+
description: HTTP Problem Response according to RFC9457 and RFC7807
7979
additionalProperties: true
8080
type: object
8181
properties:
@@ -110,7 +110,7 @@ components:
110110
examples:
111111
- https://api.example.com/errors/123
112112
HttpValidationProblem:
113-
description: HTTP Validation Problem Response according to RFC9457 & RFC7807
113+
description: HTTP Validation Problem Response according to RFC9457 and RFC7807
114114
additionalProperties: true
115115
type: object
116116
properties:

src/main/webui/package-lock.json

Lines changed: 19 additions & 19 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/main/webui/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,15 +12,15 @@
1212
"dependencies": {
1313
"@tanstack/react-form": "1.6.3",
1414
"@tanstack/react-query": "5.74.4",
15-
"@tanstack/react-query-devtools": "5.74.4",
15+
"@tanstack/react-query-devtools": "5.74.6",
1616
"axios": "1.8.4",
1717
"primeflex": "4.0.0",
1818
"primeicons": "7.0.0",
1919
"primelocale": "2.1.2",
2020
"primereact": "10.9.4",
2121
"react": "19.1.0",
2222
"react-dom": "19.1.0",
23-
"react-router-dom": "7.5.1",
23+
"react-router-dom": "7.5.2",
2424
"react-transition-group": "4.4.5",
2525
"react-use-websocket": "4.13.0",
2626
"zod": "3.24.3"

src/main/webui/src/service/CarService.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ export interface FilterConstraint {
7878
}
7979

8080
/**
81-
* HTTP Problem Response according to RFC9457 & RFC7807
81+
* HTTP Problem Response according to RFC9457 and RFC7807
8282
*/
8383
export interface HttpProblem {
8484
/** A optional URI reference that identifies the problem type */
@@ -95,7 +95,7 @@ export interface HttpProblem {
9595
}
9696

9797
/**
98-
* HTTP Validation Problem Response according to RFC9457 & RFC7807
98+
* HTTP Validation Problem Response according to RFC9457 and RFC7807
9999
*/
100100
export interface HttpValidationProblem {
101101
/** A optional URI reference that identifies the problem type */

0 commit comments

Comments
 (0)