Skip to content

Commit

Permalink
Quarkus 3.19.1
Browse files Browse the repository at this point in the history
  • Loading branch information
melloware committed Feb 27, 2025
1 parent 48c9df6 commit 5ca6528
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@
<description>Quarkus monorepo demonstrating Panache REST server with PrimeReact UI client</description>
<url>https://github.com/melloware/quarkus-monorepo</url>
<properties>
<quarkus.platform.version>3.18.4</quarkus.platform.version>
<quarkus.platform.version>3.19.1</quarkus.platform.version>
<quarkus.logmanager.version>3.3.2</quarkus.logmanager.version>
<quarkus.ngrok.version>1.6.0</quarkus.ngrok.version>
<quarkus.postgresql.version>0.3.1</quarkus.postgresql.version>
<quarkus.rest-problem.version>3.15.0</quarkus.rest-problem.version>
<quarkus.rest-problem.version>3.19.0</quarkus.rest-problem.version>
<quarkus.quinoa.version>2.5.1</quarkus.quinoa.version>
<lombok.version>1.18.36</lombok.version>
<!-- Plugins-->
Expand Down
6 changes: 6 additions & 0 deletions src/main/webui/openapi.json
Original file line number Diff line number Diff line change
Expand Up @@ -278,6 +278,9 @@
},
"422" : {
"description" : "Invalid car data provided"
},
"400" : {
"description" : "Bad Request"
}
}
}
Expand Down Expand Up @@ -342,6 +345,9 @@
},
"404" : {
"description" : "Car not found"
},
"400" : {
"description" : "Bad Request"
}
}
},
Expand Down
4 changes: 4 additions & 0 deletions src/main/webui/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -250,6 +250,8 @@ paths:
description: Car created successfully
"422":
description: Invalid car data provided
"400":
description: Bad Request
/entity/cars/manufacturers:
get:
summary: Get all manufacturers
Expand Down Expand Up @@ -294,6 +296,8 @@ paths:
$ref: "#/components/schemas/Car"
"404":
description: Car not found
"400":
description: Bad Request
get:
summary: Get a car by ID
description: Returns a car based on the provided ID
Expand Down

0 comments on commit 5ca6528

Please sign in to comment.