From 67ed180ce22bc388aa3a5d05aaf8f44c938b0275 Mon Sep 17 00:00:00 2001 From: Delegue Alexandre Date: Thu, 29 Feb 2024 09:07:14 +0100 Subject: [PATCH] Upgrade vertx 4.5.4 (#14) * Upgrade vertx * Upgrade jooq --- build.gradle | 4 ++-- jooq-async-reactive/build.gradle | 2 +- .../java/fr/maif/jooq/reactive/ReactiveRowQueryResult.java | 1 + 3 files changed, 4 insertions(+), 3 deletions(-) diff --git a/build.gradle b/build.gradle index 59486cc..4d48b59 100644 --- a/build.gradle +++ b/build.gradle @@ -29,9 +29,9 @@ subprojects { jacksonVersion = "2.10.5" akkaVersion = "2.6.6" vavrVersion = "0.10.0" - _jooqVersion = "3.18.6" + _jooqVersion = "3.19.5" scalaVersion = "2.13" - reactorVersion = "3.4.23" + reactorVersion = "3.6.3" } test { testLogging { diff --git a/jooq-async-reactive/build.gradle b/jooq-async-reactive/build.gradle index 2de3ea4..a6e625d 100644 --- a/jooq-async-reactive/build.gradle +++ b/jooq-async-reactive/build.gradle @@ -15,7 +15,7 @@ dependencies { implementation("io.projectreactor:reactor-core:$reactorVersion") implementation("com.ongres.scram:client:2.1") implementation("org.slf4j:slf4j-api:1.7.26") - implementation("io.vertx:vertx-pg-client:4.4.3") + implementation("io.vertx:vertx-pg-client:4.5.4") testImplementation project(':jooq-async-api-tck') testImplementation("com.novocode:junit-interface:0.11") diff --git a/jooq-async-reactive/src/main/java/fr/maif/jooq/reactive/ReactiveRowQueryResult.java b/jooq-async-reactive/src/main/java/fr/maif/jooq/reactive/ReactiveRowQueryResult.java index a67522b..f08b23d 100644 --- a/jooq-async-reactive/src/main/java/fr/maif/jooq/reactive/ReactiveRowQueryResult.java +++ b/jooq-async-reactive/src/main/java/fr/maif/jooq/reactive/ReactiveRowQueryResult.java @@ -5,6 +5,7 @@ import io.vertx.core.json.JsonArray; import io.vertx.core.json.JsonObject; import io.vertx.pgclient.data.*; +import io.vertx.pgclient.data.Path; import io.vertx.sqlclient.Row; import io.vertx.sqlclient.data.Numeric; import org.jooq.Record;