Skip to content

Commit

Permalink
[incubator-kie-issues#1571] Fix CVE-2024-8391
Browse files Browse the repository at this point in the history
  • Loading branch information
Gabriele-Cardosi committed Oct 28, 2024
1 parent 79b771a commit bb3bcc0
Show file tree
Hide file tree
Showing 3 changed files with 57 additions and 1 deletion.
18 changes: 17 additions & 1 deletion kogito-build/kogito-dependencies-bom/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@

<version.io.smallrye.reactive.mutiny-vertx-web-client>3.11.0</version.io.smallrye.reactive.mutiny-vertx-web-client>

<version.io.vertx>4.5.7</version.io.vertx>
<version.io.vertx>4.5.10</version.io.vertx>
<version.io.grpc>1.59.1</version.io.grpc>

<version.io.quarkus.camel>3.9.0</version.io.quarkus.camel> <!-- TODO: quarkus version mismatch -->
Expand Down Expand Up @@ -882,6 +882,22 @@
<artifactId>jep</artifactId>
<version>${version.black.ninia}</version>
</dependency>

<dependency>
<groupId>io.vertx</groupId>
<artifactId>vertx-grpc-server</artifactId>
<version>${version.io.vertx}</version>
</dependency>
<dependency>
<groupId>io.vertx</groupId>
<artifactId>vertx-grpc-client</artifactId>
<version>${version.io.vertx}</version>
</dependency>
<dependency>
<groupId>io.vertx</groupId>
<artifactId>vertx-grpc-common</artifactId>
<version>${version.io.vertx}</version>
</dependency>
</dependencies>
</dependencyManagement>

Expand Down
22 changes: 22 additions & 0 deletions quarkus/addons/monitoring/prometheus/runtime/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,30 @@
<dependency>
<groupId>io.quarkus</groupId>
<artifactId>quarkus-grpc</artifactId>
<exclusions>
<exclusion>
<groupId>io.vertx</groupId>
<artifactId>vertx-grpc-server</artifactId>
</exclusion>
<exclusion>
<groupId>io.vertx</groupId>
<artifactId>vertx-grpc-client</artifactId>
</exclusion>
</exclusions>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>io.vertx</groupId>
<artifactId>vertx-grpc-server</artifactId>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>io.vertx</groupId>
<artifactId>vertx-grpc-client</artifactId>
<scope>runtime</scope>
</dependency>


<dependency>
<groupId>io.quarkus</groupId>
<artifactId>quarkus-micrometer-registry-prometheus</artifactId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,24 @@
<dependency>
<groupId>io.quarkus</groupId>
<artifactId>quarkus-grpc</artifactId>
<exclusions>
<exclusion>
<groupId>io.vertx</groupId>
<artifactId>vertx-grpc-server</artifactId>
</exclusion>
<exclusion>
<groupId>io.vertx</groupId>
<artifactId>vertx-grpc-client</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>io.vertx</groupId>
<artifactId>vertx-grpc-server</artifactId>
</dependency>
<dependency>
<groupId>io.vertx</groupId>
<artifactId>vertx-grpc-client</artifactId>
</dependency>

<!-- Support CloudEvents OotB -->
Expand Down

0 comments on commit bb3bcc0

Please sign in to comment.