Skip to content

Commit

Permalink
PrimeReact 10.8.5
Browse files Browse the repository at this point in the history
  • Loading branch information
melloware committed Nov 28, 2024
1 parent 199b2d6 commit 6637069
Show file tree
Hide file tree
Showing 6 changed files with 208 additions and 179 deletions.
6 changes: 3 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@
<modelVersion>4.0.0</modelVersion>
<groupId>com.melloware</groupId>
<artifactId>quarkus-primereact</artifactId>
<version>10.8.4</version>
<version>10.8.5</version>
<name>Quarkus PrimeReact</name>
<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.16.3</quarkus.platform.version>
<quarkus.platform.version>3.16.4</quarkus.platform.version>
<quarkus-quinoa.version>2.5.0</quarkus-quinoa.version>
<quarkus-postrgres.version>0.2.3</quarkus-postrgres.version>
<lombok.version>1.18.36</lombok.version>
Expand Down Expand Up @@ -262,4 +262,4 @@
</build>
</profile>
</profiles>
</project>
</project>
4 changes: 2 additions & 2 deletions src/main/resources/application.properties
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ quarkus.http.filter.static.methods=GET,HEAD
quarkus.http.filter.static.order=1
# Quinoa
quarkus.quinoa.package-manager-install=true
quarkus.quinoa.package-manager-install.node-version=20.15.0
quarkus.quinoa.package-manager-install.node-version=22.11.0
quarkus.quinoa.enable-spa-routing=true
# Open API
quarkus.logging-manager.openapi.included=true
Expand All @@ -43,4 +43,4 @@ mp.openapi.extensions.smallrye.info.description=Quarkus monorepo demonstrating P
mp.openapi.extensions.smallrye.info.version=1.0.0
mp.openapi.extensions.smallrye.info.contact.name=Melloware
mp.openapi.extensions.smallrye.info.contact.email=[email protected]
mp.openapi.extensions.smallrye.info.contact.url=https://melloware.com
mp.openapi.extensions.smallrye.info.contact.url=https://melloware.com
8 changes: 4 additions & 4 deletions src/main/webui/openapi.json
Original file line number Diff line number Diff line change
Expand Up @@ -644,15 +644,15 @@
"HealthResponse" : {
"type" : "object",
"properties" : {
"status" : {
"enum" : [ "UP", "DOWN" ],
"type" : "string"
},
"checks" : {
"type" : "array",
"items" : {
"$ref" : "#/components/schemas/HealthCheck"
}
},
"status" : {
"enum" : [ "UP", "DOWN" ],
"type" : "string"
}
}
},
Expand Down
8 changes: 4 additions & 4 deletions src/main/webui/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -492,15 +492,15 @@ components:
HealthResponse:
type: object
properties:
checks:
type: array
items:
$ref: "#/components/schemas/HealthCheck"
status:
enum:
- UP
- DOWN
type: string
checks:
type: array
items:
$ref: "#/components/schemas/HealthCheck"
HealthCheck:
type: object
properties:
Expand Down
Loading

0 comments on commit 6637069

Please sign in to comment.