diff --git a/docs/antora.yml b/docs/antora.yml index ea3bf58f573a..df0f968dac6b 100644 --- a/docs/antora.yml +++ b/docs/antora.yml @@ -34,7 +34,7 @@ asciidoc: quarkus-version: 3.17.0.CR1 # replace ${quarkus.version} graalvm-version: 23.1.2 # replace ${graalvm.version} graalvm-docs-version: jdk21 # replace ${graalvm-docs.version} - mapstruct-version: 1.6.2 # replace ${mapstruct.version} + mapstruct-version: 1.6.3 # replace ${mapstruct.version} min-maven-version: 3.8.2 # replace ${min-maven-version} target-maven-version: 3.9.9 # replace ${target-maven-version} diff --git a/docs/modules/ROOT/examples/components/etcd3.yml b/docs/modules/ROOT/examples/components/etcd3.yml index ecd418ebee08..fecae4c6ca34 100644 --- a/docs/modules/ROOT/examples/components/etcd3.yml +++ b/docs/modules/ROOT/examples/components/etcd3.yml @@ -4,7 +4,7 @@ cqArtifactId: camel-quarkus-etcd3 cqArtifactIdBase: etcd3 cqNativeSupported: false cqStatus: Preview -cqDeprecated: false +cqDeprecated: true cqJvmSince: 2.0.0 cqNativeSince: n/a cqCamelPartName: etcd3 diff --git a/docs/modules/ROOT/pages/reference/extensions/etcd3.adoc b/docs/modules/ROOT/pages/reference/extensions/etcd3.adoc index 7281417109ae..6bb3fab22467 100644 --- a/docs/modules/ROOT/pages/reference/extensions/etcd3.adoc +++ b/docs/modules/ROOT/pages/reference/extensions/etcd3.adoc @@ -6,15 +6,15 @@ :cq-artifact-id: camel-quarkus-etcd3 :cq-native-supported: false :cq-status: Preview -:cq-status-deprecation: Preview +:cq-status-deprecation: Preview Deprecated :cq-description: Aggregation repository using EtcD as datastore -:cq-deprecated: false +:cq-deprecated: true :cq-jvm-since: 2.0.0 :cq-native-since: n/a ifeval::[{doc-show-badges} == true] [.badges] -[.badge-key]##JVM since##[.badge-supported]##2.0.0## [.badge-key]##Native##[.badge-unsupported]##unsupported## +[.badge-key]##JVM since##[.badge-supported]##2.0.0## [.badge-key]##Native##[.badge-unsupported]##unsupported## [.badge-key]##⚠️##[.badge-unsupported]##Deprecated## endif::[] Aggregation repository using EtcD as datastore diff --git a/extensions/pinecone/deployment/src/main/java/org/apache/camel/quarkus/component/pinecone/deployment/PineconeProcessor.java b/extensions/pinecone/deployment/src/main/java/org/apache/camel/quarkus/component/pinecone/deployment/PineconeProcessor.java index 8f64d327aa36..62471255e46b 100644 --- a/extensions/pinecone/deployment/src/main/java/org/apache/camel/quarkus/component/pinecone/deployment/PineconeProcessor.java +++ b/extensions/pinecone/deployment/src/main/java/org/apache/camel/quarkus/component/pinecone/deployment/PineconeProcessor.java @@ -28,7 +28,7 @@ import io.quarkus.deployment.builditem.nativeimage.RuntimeInitializedClassBuildItem; import org.jboss.jandex.ClassInfo; import org.jboss.jandex.DotName; -import org.openapitools.client.Configuration; +import org.openapitools.db_control.client.Configuration; class PineconeProcessor { private static final String FEATURE = "camel-pinecone"; diff --git a/integration-tests/pinecone/src/main/java/org/apache/camel/quarkus/component/pinecone/it/PineconeResource.java b/integration-tests/pinecone/src/main/java/org/apache/camel/quarkus/component/pinecone/it/PineconeResource.java index d76af776f100..9f2d7da50319 100644 --- a/integration-tests/pinecone/src/main/java/org/apache/camel/quarkus/component/pinecone/it/PineconeResource.java +++ b/integration-tests/pinecone/src/main/java/org/apache/camel/quarkus/component/pinecone/it/PineconeResource.java @@ -44,7 +44,7 @@ import org.apache.camel.component.pinecone.PineconeVectorDbConfiguration; import org.eclipse.microprofile.config.ConfigProvider; import org.jetbrains.annotations.NotNull; -import org.openapitools.client.model.IndexModel; +import org.openapitools.db_control.client.model.IndexModel; @Path("/pinecone") @ApplicationScoped diff --git a/integration-tests/pinecone/src/test/java/org/apache/camel/quarkus/component/pinecone/it/PineconeTest.java b/integration-tests/pinecone/src/test/java/org/apache/camel/quarkus/component/pinecone/it/PineconeTest.java index 90bd623236f6..3f5fc4f2f47b 100644 --- a/integration-tests/pinecone/src/test/java/org/apache/camel/quarkus/component/pinecone/it/PineconeTest.java +++ b/integration-tests/pinecone/src/test/java/org/apache/camel/quarkus/component/pinecone/it/PineconeTest.java @@ -28,7 +28,7 @@ import org.eclipse.microprofile.config.ConfigProvider; import org.junit.jupiter.api.BeforeAll; import org.junit.jupiter.api.Test; -import org.openapitools.client.model.IndexModel; +import org.openapitools.db_control.client.model.IndexModel; import static org.apache.camel.quarkus.component.pinecone.it.PineconeResource.createPineconeClient; import static org.apache.camel.quarkus.component.pinecone.it.PineconeRoutes.INDEX_NAME; @@ -36,7 +36,7 @@ import static org.hamcrest.Matchers.is; import static org.hamcrest.Matchers.startsWith; import static org.junit.jupiter.api.Assertions.assertTrue; -import static org.openapitools.client.model.IndexModelStatus.StateEnum.READY; +import static org.openapitools.db_control.client.model.IndexModelStatus.StateEnum.READY; @QuarkusTestResource(PineconeTestResource.class) @QuarkusTest diff --git a/integration-tests/pubnub/src/main/java/org/apache/camel/quarkus/component/pubnub/it/PubnubResource.java b/integration-tests/pubnub/src/main/java/org/apache/camel/quarkus/component/pubnub/it/PubnubResource.java index 0fc78a3b5ca1..1871e209273a 100644 --- a/integration-tests/pubnub/src/main/java/org/apache/camel/quarkus/component/pubnub/it/PubnubResource.java +++ b/integration-tests/pubnub/src/main/java/org/apache/camel/quarkus/component/pubnub/it/PubnubResource.java @@ -22,16 +22,16 @@ import java.util.Map; import java.util.Optional; -import com.pubnub.api.PNConfiguration; -import com.pubnub.api.PubNub; import com.pubnub.api.PubNubException; import com.pubnub.api.UserId; -import com.pubnub.api.enums.PNReconnectionPolicy; +import com.pubnub.api.java.PubNub; +import com.pubnub.api.java.v2.PNConfiguration; import com.pubnub.api.models.consumer.history.PNHistoryItemResult; import com.pubnub.api.models.consumer.presence.PNGetStateResult; import com.pubnub.api.models.consumer.presence.PNHereNowResult; import com.pubnub.api.models.consumer.pubsub.PNMessageResult; import com.pubnub.api.models.consumer.pubsub.PNPresenceEventResult; +import com.pubnub.api.retry.RetryConfiguration; import jakarta.inject.Inject; import jakarta.inject.Named; import jakarta.inject.Singleton; @@ -161,18 +161,21 @@ public int herenow() throws Exception { @Singleton @Named public PubNub pubNub() throws PubNubException { - PNConfiguration configuration = new PNConfiguration(new UserId("camel-quarkus-integration-tests")); - configuration.setPublishKey(publishKey); - configuration.setSubscribeKey(subscribeKey); - configuration.setSecretKey(secretKey); + PNConfiguration.Builder configuration = PNConfiguration + .builder(new UserId("camel-quarkus-integration-tests"), subscribeKey) + .publishKey(publishKey) + .subscribeKey(subscribeKey) + .secretKey(secretKey); Optional url = ConfigProvider.getConfig().getOptionalValue("pubnub.url", String.class); if (url.isPresent()) { - configuration.setOrigin(url.get()); - configuration.setSecure(false); - configuration.setReconnectionPolicy(PNReconnectionPolicy.LINEAR); + configuration.origin(url.get()) + .secure(false) + .retryConfiguration(new RetryConfiguration.Linear( + 5, + 1000)); } - return PubNub.create(configuration); + return PubNub.create(configuration.build()); } } diff --git a/poms/bom/src/main/generated/flattened-full-pom.xml b/poms/bom/src/main/generated/flattened-full-pom.xml index 4ab35b515be9..a9ffe3d55af2 100644 --- a/poms/bom/src/main/generated/flattened-full-pom.xml +++ b/poms/bom/src/main/generated/flattened-full-pom.xml @@ -6513,7 +6513,7 @@ com.ibm.icu icu4j - 75.1 + 76.1 com.ibm.mq @@ -6698,7 +6698,7 @@ io.projectreactor.netty reactor-netty - 1.1.23 + 1.2.0 io.quarkiverse.freemarker @@ -6713,22 +6713,22 @@ io.quarkiverse.groovy quarkus-groovy - 3.15.0 + 3.16.1 io.quarkiverse.groovy quarkus-groovy-deployment - 3.15.0 + 3.16.1 io.quarkiverse.jackson-jq quarkus-jackson-jq - 2.1.0 + 2.2.0 io.quarkiverse.jackson-jq quarkus-jackson-jq-deployment - 2.1.0 + 2.2.0 io.quarkiverse.jgit @@ -6753,12 +6753,12 @@ io.quarkiverse.langchain4j quarkus-langchain4j-core - 0.20.3 + 0.21.0 io.quarkiverse.langchain4j quarkus-langchain4j-core-deployment - 0.20.3 + 0.21.0 io.quarkiverse.messaginghub @@ -6829,7 +6829,7 @@ io.swagger.codegen.v3 swagger-codegen - 3.0.63 + 3.0.64 ch.qos.logback @@ -6864,7 +6864,7 @@ io.swagger.codegen.v3 swagger-codegen-generators - 1.0.53 + 1.0.54 io.swagger.core.v3 @@ -7070,22 +7070,17 @@ org.bouncycastle bcmail-jdk18on - 1.78.1 + 1.79 org.bouncycastle bcpg-jdk18on - 1.78.1 + 1.79 org.bouncycastle bcutil-jdk18on - 1.78.1 - - - org.brotli - dec - 0.1.2 + 1.79 org.eclipse.angus @@ -7165,7 +7160,7 @@ org.mapstruct mapstruct-processor - 1.6.2 + 1.6.3 org.mvel @@ -7210,7 +7205,7 @@ org.springframework spring-aop - 6.1.14 + 6.2.0 org.springframework @@ -7225,7 +7220,7 @@ org.springframework spring-expression - 6.1.14 + 6.2.0 org.springframework @@ -7236,7 +7231,7 @@ org.springframework spring-jdbc - 6.1.14 + 6.2.0 org.springframework @@ -7251,7 +7246,7 @@ org.springframework spring-jms - 6.1.14 + 6.2.0 org.springframework @@ -7266,7 +7261,7 @@ org.springframework spring-messaging - 6.1.14 + 6.2.0 org.springframework @@ -7281,7 +7276,7 @@ org.springframework spring-orm - 6.1.14 + 6.2.0 org.springframework @@ -7296,7 +7291,7 @@ org.springframework spring-tx - 6.1.14 + 6.2.0 org.springframework @@ -7311,7 +7306,7 @@ org.springframework spring-web - 6.1.14 + 6.2.0 org.springframework diff --git a/poms/bom/src/main/generated/flattened-reduced-pom.xml b/poms/bom/src/main/generated/flattened-reduced-pom.xml index 07468e12f759..cfb9e49cfbf5 100644 --- a/poms/bom/src/main/generated/flattened-reduced-pom.xml +++ b/poms/bom/src/main/generated/flattened-reduced-pom.xml @@ -6508,7 +6508,7 @@ com.ibm.icu icu4j - 75.1 + 76.1 com.ibm.mq @@ -6668,7 +6668,7 @@ io.projectreactor.netty reactor-netty - 1.1.23 + 1.2.0 io.quarkiverse.freemarker @@ -6683,22 +6683,22 @@ io.quarkiverse.groovy quarkus-groovy - 3.15.0 + 3.16.1 io.quarkiverse.groovy quarkus-groovy-deployment - 3.15.0 + 3.16.1 io.quarkiverse.jackson-jq quarkus-jackson-jq - 2.1.0 + 2.2.0 io.quarkiverse.jackson-jq quarkus-jackson-jq-deployment - 2.1.0 + 2.2.0 io.quarkiverse.jgit @@ -6723,12 +6723,12 @@ io.quarkiverse.langchain4j quarkus-langchain4j-core - 0.20.3 + 0.21.0 io.quarkiverse.langchain4j quarkus-langchain4j-core-deployment - 0.20.3 + 0.21.0 io.quarkiverse.messaginghub @@ -6789,7 +6789,7 @@ io.swagger.codegen.v3 swagger-codegen - 3.0.63 + 3.0.64 ch.qos.logback @@ -6824,7 +6824,7 @@ io.swagger.codegen.v3 swagger-codegen-generators - 1.0.53 + 1.0.54 io.swagger.core.v3 @@ -7015,22 +7015,17 @@ org.bouncycastle bcmail-jdk18on - 1.78.1 + 1.79 org.bouncycastle bcpg-jdk18on - 1.78.1 + 1.79 org.bouncycastle bcutil-jdk18on - 1.78.1 - - - org.brotli - dec - 0.1.2 + 1.79 org.eclipse.angus @@ -7105,7 +7100,7 @@ org.mapstruct mapstruct-processor - 1.6.2 + 1.6.3 org.mvel @@ -7150,7 +7145,7 @@ org.springframework spring-aop - 6.1.14 + 6.2.0 org.springframework @@ -7165,7 +7160,7 @@ org.springframework spring-expression - 6.1.14 + 6.2.0 org.springframework @@ -7176,7 +7171,7 @@ org.springframework spring-jdbc - 6.1.14 + 6.2.0 org.springframework @@ -7191,7 +7186,7 @@ org.springframework spring-jms - 6.1.14 + 6.2.0 org.springframework @@ -7206,7 +7201,7 @@ org.springframework spring-messaging - 6.1.14 + 6.2.0 org.springframework @@ -7221,7 +7216,7 @@ org.springframework spring-tx - 6.1.14 + 6.2.0 org.springframework @@ -7236,7 +7231,7 @@ org.springframework spring-web - 6.1.14 + 6.2.0 org.springframework diff --git a/poms/bom/src/main/generated/flattened-reduced-verbose-pom.xml b/poms/bom/src/main/generated/flattened-reduced-verbose-pom.xml index da8a9cedf74b..81c3db12d5be 100644 --- a/poms/bom/src/main/generated/flattened-reduced-verbose-pom.xml +++ b/poms/bom/src/main/generated/flattened-reduced-verbose-pom.xml @@ -6508,7 +6508,7 @@ com.ibm.icu icu4j - 75.1 + 76.1 com.ibm.mq @@ -6668,7 +6668,7 @@ io.projectreactor.netty reactor-netty - 1.1.23 + 1.2.0 io.quarkiverse.freemarker @@ -6683,22 +6683,22 @@ io.quarkiverse.groovy quarkus-groovy - 3.15.0 + 3.16.1 io.quarkiverse.groovy quarkus-groovy-deployment - 3.15.0 + 3.16.1 io.quarkiverse.jackson-jq quarkus-jackson-jq - 2.1.0 + 2.2.0 io.quarkiverse.jackson-jq quarkus-jackson-jq-deployment - 2.1.0 + 2.2.0 io.quarkiverse.jgit @@ -6723,12 +6723,12 @@ io.quarkiverse.langchain4j quarkus-langchain4j-core - 0.20.3 + 0.21.0 io.quarkiverse.langchain4j quarkus-langchain4j-core-deployment - 0.20.3 + 0.21.0 io.quarkiverse.messaginghub @@ -6789,7 +6789,7 @@ io.swagger.codegen.v3 swagger-codegen - 3.0.63 + 3.0.64 ch.qos.logback @@ -6824,7 +6824,7 @@ io.swagger.codegen.v3 swagger-codegen-generators - 1.0.53 + 1.0.54 io.swagger.core.v3 @@ -7015,22 +7015,17 @@ org.bouncycastle bcmail-jdk18on - 1.78.1 + 1.79 org.bouncycastle bcpg-jdk18on - 1.78.1 + 1.79 org.bouncycastle bcutil-jdk18on - 1.78.1 - - - org.brotli - dec - 0.1.2 + 1.79 org.eclipse.angus @@ -7105,7 +7100,7 @@ org.mapstruct mapstruct-processor - 1.6.2 + 1.6.3 org.mvel @@ -7150,7 +7145,7 @@ org.springframework spring-aop - 6.1.14 + 6.2.0 org.springframework @@ -7165,7 +7160,7 @@ org.springframework spring-expression - 6.1.14 + 6.2.0 org.springframework @@ -7176,7 +7171,7 @@ org.springframework spring-jdbc - 6.1.14 + 6.2.0 org.springframework @@ -7191,7 +7186,7 @@ org.springframework spring-jms - 6.1.14 + 6.2.0 org.springframework @@ -7206,7 +7201,7 @@ org.springframework spring-messaging - 6.1.14 + 6.2.0 org.springframework @@ -7221,7 +7216,7 @@ org.springframework spring-tx - 6.1.14 + 6.2.0 org.springframework @@ -7236,7 +7231,7 @@ org.springframework spring-web - 6.1.14 + 6.2.0 org.springframework