Skip to content

Commit ae1937e

Browse files
committed
Version bumps for Vert.x 4.5.16
This is a coordinated version bumps across: - Mutiny Vert.x bindings 3.19.1 - Vert.x 4.5.16 This also fixes a breaking change in HttpServerResponse impacting AbstractResponseWrapper.
1 parent ba1b32a commit ae1937e

File tree

4 files changed

+10
-5
lines changed

4 files changed

+10
-5
lines changed

bom/application/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@
5757
<smallrye-context-propagation.version>2.2.1</smallrye-context-propagation.version>
5858
<smallrye-reactive-streams-operators.version>1.0.13</smallrye-reactive-streams-operators.version>
5959
<smallrye-reactive-types-converter.version>3.0.3</smallrye-reactive-types-converter.version>
60-
<smallrye-mutiny-vertx-binding.version>3.19.0</smallrye-mutiny-vertx-binding.version>
60+
<smallrye-mutiny-vertx-binding.version>3.19.1</smallrye-mutiny-vertx-binding.version>
6161
<smallrye-reactive-messaging.version>4.28.0</smallrye-reactive-messaging.version>
6262
<smallrye-stork.version>2.7.3</smallrye-stork.version>
6363
<jakarta.activation.version>2.1.3</jakarta.activation.version>
@@ -111,7 +111,7 @@
111111
<wildfly-elytron.version>2.6.4.Final</wildfly-elytron.version>
112112
<jboss-marshalling.version>2.2.3.Final</jboss-marshalling.version>
113113
<jboss-threads.version>3.9.1</jboss-threads.version>
114-
<vertx.version>4.5.14</vertx.version>
114+
<vertx.version>4.5.16</vertx.version>
115115
<httpclient.version>4.5.14</httpclient.version>
116116
<httpcore.version>4.4.16</httpcore.version>
117117
<httpasync.version>4.1.5</httpasync.version>

extensions/vertx-http/runtime/src/main/java/io/quarkus/vertx/http/runtime/filters/AbstractResponseWrapper.java

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -169,6 +169,11 @@ public HttpServerResponse endHandler(Handler<Void> handler) {
169169
return this;
170170
}
171171

172+
@Override
173+
public Future<Void> writeHead() {
174+
return delegate.writeHead();
175+
}
176+
172177
@Override
173178

174179
public Future<Void> write(String chunk, String enc) {

independent-projects/resteasy-reactive/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@
5757

5858
<mutiny.version>2.9.1</mutiny.version>
5959
<smallrye-common.version>2.12.0</smallrye-common.version>
60-
<vertx.version>4.5.14</vertx.version>
60+
<vertx.version>4.5.16</vertx.version>
6161
<rest-assured.version>5.5.5</rest-assured.version>
6262
<commons-logging-jboss-logging.version>1.0.0.Final</commons-logging-jboss-logging.version>
6363
<jackson-bom.version>2.19.1</jackson-bom.version>
@@ -66,7 +66,7 @@
6666
<yasson.version>3.0.4</yasson.version>
6767
<jakarta.json.bind-api.version>3.0.1</jakarta.json.bind-api.version>
6868
<awaitility.version>4.3.0</awaitility.version>
69-
<smallrye-mutiny-vertx-core.version>3.19.0</smallrye-mutiny-vertx-core.version>
69+
<smallrye-mutiny-vertx-core.version>3.19.1</smallrye-mutiny-vertx-core.version>
7070
<reactive-streams.version>1.0.4</reactive-streams.version>
7171
<mockito.version>5.18.0</mockito.version>
7272
<wiremock.version>3.13.1</wiremock.version>

independent-projects/vertx-utils/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717

1818
<properties>
1919
<jboss-logging.version>3.6.1.Final</jboss-logging.version>
20-
<vertx.version>4.5.14</vertx.version>
20+
<vertx.version>4.5.16</vertx.version>
2121
</properties>
2222

2323
<dependencies>

0 commit comments

Comments
 (0)