(camel-quarkus) 03/05: Workaround BigQuery & Apache Arrow Netty imcompatibilities #5641

2024-01-14 Thread jamesnetherton
This is an automated email from the ASF dual-hosted git repository.

jamesnetherton pushed a commit to branch quarkus-main
in repository https://gitbox.apache.org/repos/asf/camel-quarkus.git

commit 7841b232dd6b19eaef8013e14c62118ed17b4385
Author: James Netherton 
AuthorDate: Mon Jan 8 14:37:02 2024 +

Workaround BigQuery & Apache Arrow Netty imcompatibilities #5641
---
 .../src/main/java/io/netty/buffer/LargeBuffer.java |  34 ++
 .../io/netty/buffer/MutableWrappedByteBuf.java | 447 +
 .../io/netty/buffer/PooledByteBufAllocatorL.java   | 275 +
 .../io/netty/buffer/UnsafeDirectLittleEndian.java  | 261 
 4 files changed, 1017 insertions(+)

diff --git 
a/extensions/google-bigquery/runtime/src/main/java/io/netty/buffer/LargeBuffer.java
 
b/extensions/google-bigquery/runtime/src/main/java/io/netty/buffer/LargeBuffer.java
new file mode 100644
index 00..1d81b725b4
--- /dev/null
+++ 
b/extensions/google-bigquery/runtime/src/main/java/io/netty/buffer/LargeBuffer.java
@@ -0,0 +1,34 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License.  You may obtain a copy of the License at
+ *
+ *http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+package io.netty.buffer;
+
+/**
+ * A MutableWrappedByteBuf that also maintains a metric of the number of huge 
buffer bytes and
+ * counts.
+ */
+public class LargeBuffer extends MutableWrappedByteBuf {
+
+public LargeBuffer(ByteBuf buffer) {
+super(buffer);
+}
+
+@Override
+public ByteBuf copy(int index, int length) {
+return new LargeBuffer(buffer.copy(index, length));
+}
+}
diff --git 
a/extensions/google-bigquery/runtime/src/main/java/io/netty/buffer/MutableWrappedByteBuf.java
 
b/extensions/google-bigquery/runtime/src/main/java/io/netty/buffer/MutableWrappedByteBuf.java
new file mode 100644
index 00..2bee1bc509
--- /dev/null
+++ 
b/extensions/google-bigquery/runtime/src/main/java/io/netty/buffer/MutableWrappedByteBuf.java
@@ -0,0 +1,447 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License.  You may obtain a copy of the License at
+ *
+ *http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+package io.netty.buffer;
+
+import java.io.IOException;
+import java.io.InputStream;
+import java.io.OutputStream;
+import java.nio.ByteBuffer;
+import java.nio.ByteOrder;
+import java.nio.channels.FileChannel;
+import java.nio.channels.GatheringByteChannel;
+import java.nio.channels.ScatteringByteChannel;
+
+import io.netty.util.ByteProcessor;
+
+/**
+ * This is basically a complete copy of netty's DuplicatedByteBuf. We copy 
because we want to override
+ * some behaviors and make buffer mutable.
+ */
+abstract class MutableWrappedByteBuf extends AbstractByteBuf {
+
+ByteBuf buffer;
+
+public MutableWrappedByteBuf(ByteBuf buffer) {
+super(buffer.maxCapacity());
+
+if (buffer instanceof MutableWrappedByteBuf) {
+this.buffer = ((MutableWrappedByteBuf) buffer).buffer;
+} else {
+this.buffer = buffer;
+}
+
+setIndex(buffer.readerIndex(), buffer.writerIndex());
+}
+
+@Override
+public ByteBuffer nioBuffer(int index, int length) {
+return unwrap().nioBuffer(index, length);
+}
+
+@Override
+public ByteBuf unwrap() {
+return buffer;
+}
+
+@Override
+public ByteBufAllocator alloc() {
+return buffer.alloc();
+}
+
+@Override
+public ByteOrder order() {
+return buffer.order();
+}
+
+@Override
+public boolean isDirect() {
+return buffer.isDirect();
+}
+
+@Override
+public int capacity() {
+return buffer

(camel-quarkus) 04/05: Revert "Set io.netty.tryReflectionSetAccessible=false for jfr & google-bigquery native modules #5603"

2024-01-14 Thread jamesnetherton
This is an automated email from the ASF dual-hosted git repository.

jamesnetherton pushed a commit to branch quarkus-main
in repository https://gitbox.apache.org/repos/asf/camel-quarkus.git

commit 2f54724371f1b688a896eb7e11ff56d5eeffe69c
Author: James Netherton 
AuthorDate: Tue Jan 9 07:42:58 2024 +

Revert "Set io.netty.tryReflectionSetAccessible=false for jfr & 
google-bigquery native modules #5603"

This reverts commit fe111eebcb11d94695119c4f69870eff00cb9922.

Fixes #5603
---
 .../src/main/resources/application.properties | 19 ---
 .../jfr/src/main/resources/application.properties |  3 ---
 2 files changed, 22 deletions(-)

diff --git 
a/integration-tests/google-bigquery/src/main/resources/application.properties 
b/integration-tests/google-bigquery/src/main/resources/application.properties
deleted file mode 100644
index ef07b35318..00
--- 
a/integration-tests/google-bigquery/src/main/resources/application.properties
+++ /dev/null
@@ -1,19 +0,0 @@
-## ---
-## Licensed to the Apache Software Foundation (ASF) under one or more
-## contributor license agreements.  See the NOTICE file distributed with
-## this work for additional information regarding copyright ownership.
-## The ASF licenses this file to You under the Apache License, Version 2.0
-## (the "License"); you may not use this file except in compliance with
-## the License.  You may obtain a copy of the License at
-##
-##  http://www.apache.org/licenses/LICENSE-2.0
-##
-## Unless required by applicable law or agreed to in writing, software
-## distributed under the License is distributed on an "AS IS" BASIS,
-## WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-## See the License for the specific language governing permissions and
-## limitations under the License.
-## ---
-
-# TODO: https://github.com/apache/camel-quarkus/issues/5603
-quarkus.native.additional-build-args=-Dio.netty.tryReflectionSetAccessible=false
diff --git a/integration-tests/jfr/src/main/resources/application.properties 
b/integration-tests/jfr/src/main/resources/application.properties
index 813280f78d..7805738045 100644
--- a/integration-tests/jfr/src/main/resources/application.properties
+++ b/integration-tests/jfr/src/main/resources/application.properties
@@ -17,6 +17,3 @@
 
 # Must enable VM inspection for JFR in native mode
 quarkus.native.monitoring=jfr
-
-# TODO: https://github.com/apache/camel-quarkus/issues/5603
-quarkus.native.additional-build-args=-Dio.netty.tryReflectionSetAccessible=false



(camel-quarkus) 02/05: Workaround openstack4j incompatibility with Jackson 2.16.x #5604

2024-01-14 Thread jamesnetherton
This is an automated email from the ASF dual-hosted git repository.

jamesnetherton pushed a commit to branch quarkus-main
in repository https://gitbox.apache.org/repos/asf/camel-quarkus.git

commit 5bd2508ed8a781ba8ddb4e296f927aa4e0b8aaa0
Author: James Netherton 
AuthorDate: Mon Dec 11 08:53:29 2023 +

Workaround openstack4j incompatibility with Jackson 2.16.x #5604
---
 extensions/openstack/runtime/pom.xml   | 11 +++
 .../OSBadBooleanDeserializerSubstitutions.java | 87 ++
 2 files changed, 98 insertions(+)

diff --git a/extensions/openstack/runtime/pom.xml 
b/extensions/openstack/runtime/pom.xml
index f8f4521943..4d3411bfd6 100644
--- a/extensions/openstack/runtime/pom.xml
+++ b/extensions/openstack/runtime/pom.xml
@@ -52,6 +52,17 @@
 io.quarkus
 quarkus-jackson
 
+
+
+com.fasterxml.jackson.core
+jackson-databind
+provided
+
+
+org.graalvm.sdk
+graal-sdk
+provided
+
 
 
 
diff --git 
a/extensions/openstack/runtime/src/main/java/org/apache/camel/quarkus/component/openstack/graal/OSBadBooleanDeserializerSubstitutions.java
 
b/extensions/openstack/runtime/src/main/java/org/apache/camel/quarkus/component/openstack/graal/OSBadBooleanDeserializerSubstitutions.java
new file mode 100644
index 00..7d7ef1ba62
--- /dev/null
+++ 
b/extensions/openstack/runtime/src/main/java/org/apache/camel/quarkus/component/openstack/graal/OSBadBooleanDeserializerSubstitutions.java
@@ -0,0 +1,87 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License.  You may obtain a copy of the License at
+ *
+ *  http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.apache.camel.quarkus.component.openstack.graal;
+
+import java.io.IOException;
+
+import com.fasterxml.jackson.core.JsonParser;
+import com.fasterxml.jackson.core.JsonProcessingException;
+import com.fasterxml.jackson.core.JsonToken;
+import com.fasterxml.jackson.databind.DeserializationContext;
+import com.fasterxml.jackson.databind.JsonMappingException;
+import com.fasterxml.jackson.databind.util.ClassUtil;
+import com.oracle.svm.core.annotate.Alias;
+import com.oracle.svm.core.annotate.Substitute;
+import com.oracle.svm.core.annotate.TargetClass;
+import org.openstack4j.core.transport.internal.OSBadBooleanDeserializer;
+
+/**
+ * TODO: Remove this https://github.com/apache/camel-quarkus/issues/5604
+ *
+ * Mostly a replica of the original OSBadBooleanDeserializer.deserialize but 
with references to
+ * deprecated & removed Jackson methods replaced.
+ */
+@TargetClass(OSBadBooleanDeserializer.class)
+final class OSBadBooleanDeserializerSubstitutions {
+
+@Substitute
+public Boolean deserialize(JsonParser jp, DeserializationContext ctxt) 
throws IOException, JsonProcessingException {
+JsonToken t = jp.getCurrentToken();
+if (t == JsonToken.VALUE_TRUE) {
+return Boolean.TRUE;
+}
+if (t == JsonToken.VALUE_FALSE) {
+return Boolean.FALSE;
+}
+// [JACKSON-78]: should accept ints too, (0 == false, otherwise true)
+if (t == JsonToken.VALUE_NUMBER_INT) {
+// 11-Jan-2012, tatus: May be outside of int...
+if (jp.getNumberType() == JsonParser.NumberType.INT) {
+return (jp.getIntValue() == 0) ? Boolean.FALSE : Boolean.TRUE;
+}
+return Boolean.valueOf(_parseBooleanFromNumber(jp, ctxt));
+}
+if (t == JsonToken.VALUE_NULL) {
+return null;
+}
+// And finally, let's allow Strings to be converted too
+if (t == JsonToken.VALUE_STRING) {
+String text = jp.getText().trim();
+if ("true".equalsIgnoreCase(text)) {
+return Boolean.TRUE;
+}
+if ("false".equalsIgnoreCase(text)) {
+return Boolean.FALSE;
+}
+if (text.length() == 0) {
+return null;
+}
+throw ctxt.weirdStringException(text, Boolean.class, "only 
\"true\" or \"false\" recognized");
+}
+
+ctxt.handleUnexpectedToken(Boolean.class, ctxt.getParser());
+// Otherwise, no can do:
+throw JsonMappingException.from(ctxt.ge

(camel-quarkus) 01/05: Upgrade Quarkus to 3.7.0.CR1

2024-01-14 Thread jamesnetherton
This is an automated email from the ASF dual-hosted git repository.

jamesnetherton pushed a commit to branch quarkus-main
in repository https://gitbox.apache.org/repos/asf/camel-quarkus.git

commit e8587ee091897680eb81374041c07555a61135e8
Author: James Netherton 
AuthorDate: Fri Nov 24 11:19:53 2023 +

Upgrade Quarkus to 3.7.0.CR1
---
 docs/antora.yml|  2 +-
 .../component/pgevent/deployment/PgeventProcessor.java |  7 +++
 pom.xml| 14 +++---
 poms/bom/src/main/generated/flattened-full-pom.xml |  8 
 poms/bom/src/main/generated/flattened-reduced-pom.xml  |  6 +++---
 .../src/main/generated/flattened-reduced-verbose-pom.xml   |  6 +++---
 6 files changed, 25 insertions(+), 18 deletions(-)

diff --git a/docs/antora.yml b/docs/antora.yml
index 8a449be96e..9b4afeb1a5 100644
--- a/docs/antora.yml
+++ b/docs/antora.yml
@@ -31,7 +31,7 @@ asciidoc:
 camel-version: 4.3.0 # replace ${camel.version}
 camel-docs-version: next
 camel-quarkus-version: 3.7.0 # replace ${camel-quarkus.version}
-quarkus-version: 3.6.4 # replace ${quarkus.version}
+quarkus-version: 999-SNAPSHOT # replace ${quarkus.version}
 graalvm-version: 23.0.1 # replace ${graalvm.version}
 graalvm-docs-version: jdk21 # replace ${graalvm-docs.version}
 mapstruct-version: 1.5.5.Final # replace ${mapstruct.version}
diff --git 
a/extensions/pgevent/deployment/src/main/java/org/apache/camel/quarkus/component/pgevent/deployment/PgeventProcessor.java
 
b/extensions/pgevent/deployment/src/main/java/org/apache/camel/quarkus/component/pgevent/deployment/PgeventProcessor.java
index fbbec58c71..0e4539c1da 100644
--- 
a/extensions/pgevent/deployment/src/main/java/org/apache/camel/quarkus/component/pgevent/deployment/PgeventProcessor.java
+++ 
b/extensions/pgevent/deployment/src/main/java/org/apache/camel/quarkus/component/pgevent/deployment/PgeventProcessor.java
@@ -21,6 +21,7 @@ import java.sql.Driver;
 import java.util.Set;
 import java.util.stream.Stream;
 
+import com.impossibl.postgres.jdbc.PGBuffersStruct;
 import com.impossibl.postgres.system.procs.ProcProvider;
 import io.quarkus.agroal.spi.JdbcDriverBuildItem;
 import io.quarkus.datasource.common.runtime.DatabaseKind;
@@ -29,6 +30,7 @@ import io.quarkus.deployment.annotations.BuildStep;
 import io.quarkus.deployment.builditem.FeatureBuildItem;
 import io.quarkus.deployment.builditem.SslNativeConfigBuildItem;
 import io.quarkus.deployment.builditem.nativeimage.ReflectiveClassBuildItem;
+import 
io.quarkus.deployment.builditem.nativeimage.RuntimeInitializedClassBuildItem;
 import io.quarkus.deployment.builditem.nativeimage.ServiceProviderBuildItem;
 import io.quarkus.deployment.util.ServiceUtil;
 
@@ -48,6 +50,11 @@ class PgeventProcessor {
 return 
ReflectiveClassBuildItem.builder("io.netty.channel.nio.NioEventLoopGroup").fields().build();
 }
 
+@BuildStep
+void 
runtimeInitializedClasses(BuildProducer 
runtimeInitializedClass) {
+runtimeInitializedClass.produce(new 
RuntimeInitializedClassBuildItem(PGBuffersStruct.class.getName()));
+}
+
 @BuildStep
 void registerNativeImageResources(BuildProducer 
services) {
 Stream.of(
diff --git a/pom.xml b/pom.xml
index 5beebad2cb..df49581858 100644
--- a/pom.xml
+++ b/pom.xml
@@ -61,7 +61,7 @@
 2.2.0
 
2.3.0
 2.0.2
-3.6.4
+999-SNAPSHOT
 
4.0.0
 2.5.0
 
@@ -75,7 +75,7 @@
 1.11.3
 2.22.1
 0.29.1
-3.24.2
+3.25.1
 1.11.714
 ${azure-sdk-bom-version}
 1.45.1
@@ -104,7 +104,7 @@
 23.0.1
 jdk21
 4.0.17
-1.59.0
+1.59.1
 ${hapi-version}
 ${hapi-base-version}
 ${hapi-fhir-version}
@@ -114,7 +114,7 @@
 ${icu4j-version}
 2.9.3
 ${influx-java-driver-version}
-2.15.3
+2.16.1
 
${jakarta-jms-api-version}
 
${json-patch-version}
 ${jodatime2-version}
@@ -132,7 +132,7 @@
 2.4.10
 3.6.1
 ${kudu-version}
-1.9.21
+1.9.22
 2.24.0
 ${mapstruct-version}
 8.2.2
@@ -143,11 +143,11 @@
 ${squareup-okio-version}
 0.31.0
 0.26.0
-3.24.4
+3.25.0
 3.4.34
 ${reactor-netty-version}
 2.9.0
-
4.10.2
+
4.15.0
 2.2
 
${snakeyaml-engine-version}
 ${spring-version}
diff --git a/poms/bom/src/main/generated/flattened-full-pom.xml 
b/poms/bom/src/main/generated/flattened-full-pom.xml
index a414561932..fdbfbbae44 100644
--- a/poms/bom/src/main/generated/flattened-full-pom.xml
+++ b/poms/bom/src/main/generated/flattened-full-pom.xml
@@ -6333,7 +6333,7 @@
   
 io.smallrye.reactive
 smallrye-reactive-messaging-camel
-4.10.2
+4.15.0
   
   
   

(camel-quarkus) 05/05: Exclude redundant kubernetes-client dependencies

2024-01-14 Thread jamesnetherton
This is an automated email from the ASF dual-hosted git repository.

jamesnetherton pushed a commit to branch quarkus-main
in repository https://gitbox.apache.org/repos/asf/camel-quarkus.git

commit 63701a281a45bb5de647915c094ab5f089f7dbd0
Author: James Netherton 
AuthorDate: Tue Jan 9 08:16:16 2024 +

Exclude redundant kubernetes-client dependencies

Fixes #5515
---
 integration-tests/camel-k-runtime/pom.xml  |  5 -
 integration-tests/kubernetes/pom.xml   |  5 -
 integration-tests/master-openshift/pom.xml | 24 --
 poms/bom/pom.xml   | 12 +++
 poms/bom/src/main/generated/flattened-full-pom.xml | 12 +++
 .../src/main/generated/flattened-reduced-pom.xml   | 12 +++
 .../generated/flattened-reduced-verbose-pom.xml| 12 +++
 7 files changed, 66 insertions(+), 16 deletions(-)

diff --git a/integration-tests/camel-k-runtime/pom.xml 
b/integration-tests/camel-k-runtime/pom.xml
index fadacdd0fc..c64174cb5e 100644
--- a/integration-tests/camel-k-runtime/pom.xml
+++ b/integration-tests/camel-k-runtime/pom.xml
@@ -30,11 +30,6 @@
 Camel Quarkus :: Integration Tests :: Camel K Runtime
 Integration tests for Camel Quarkus K Runtime 
extension
 
-
-
-true
-
-
 
 
 org.apache.camel.quarkus
diff --git a/integration-tests/kubernetes/pom.xml 
b/integration-tests/kubernetes/pom.xml
index 0b9cdc892f..73b2bf3383 100644
--- a/integration-tests/kubernetes/pom.xml
+++ b/integration-tests/kubernetes/pom.xml
@@ -30,11 +30,6 @@
 Camel Quarkus :: Integration Tests :: Kubernetes
 Integration tests for Camel Quarkus Kubernetes 
extension
 
-
-
-true
-
-
 
 
 org.apache.camel.quarkus
diff --git a/integration-tests/master-openshift/pom.xml 
b/integration-tests/master-openshift/pom.xml
index 3bb0e84ac1..87b18901b7 100644
--- a/integration-tests/master-openshift/pom.xml
+++ b/integration-tests/master-openshift/pom.xml
@@ -30,12 +30,6 @@
 Camel Quarkus :: Integration Tests :: Master With OpenShift
 Integration tests for Camel Quarkus Master extension with 
OpenShift
 
-
-
${project.build.directory}/quarkus-app/quarkus-run.jar
-
-true
-
-
 
 
 org.apache.camel.quarkus
@@ -68,6 +62,24 @@
 
 io.quarkus
 quarkus-openshift-client
+
+
+io.fabric8
+kubernetes-httpclient-okhttp
+
+
+io.fabric8
+openshift-model-hive
+
+
+io.fabric8
+openshift-model-miscellaneous
+
+
+io.fabric8
+openshift-model-operator
+
+
 
 
 
diff --git a/poms/bom/pom.xml b/poms/bom/pom.xml
index 0f6ba05436..824c129ff1 100644
--- a/poms/bom/pom.xml
+++ b/poms/bom/pom.xml
@@ -1679,6 +1679,18 @@
 io.fabric8
 kubernetes-httpclient-okhttp
 
+
+io.fabric8
+openshift-model-hive
+
+
+io.fabric8
+openshift-model-miscellaneous
+
+
+io.fabric8
+openshift-model-operator
+
 
 
 
diff --git a/poms/bom/src/main/generated/flattened-full-pom.xml 
b/poms/bom/src/main/generated/flattened-full-pom.xml
index fdbfbbae44..6ed679 100644
--- a/poms/bom/src/main/generated/flattened-full-pom.xml
+++ b/poms/bom/src/main/generated/flattened-full-pom.xml
@@ -1617,6 +1617,18 @@
 io.fabric8
 kubernetes-httpclient-okhttp
   
+  
+io.fabric8
+openshift-model-hive
+  
+  
+io.fabric8
+openshift-model-miscellaneous
+  
+  
+io.fabric8
+openshift-model-operator
+  
 
   
   
diff --git a/poms/bom/src/main/generated/flattened-reduced-pom.xml 
b/poms/bom/src/main/generated/flattened-reduced-pom.xml
index 1c6ff7fb91..0f9187e76c 100644
--- a/poms/bom/src/main/generated/flattened-reduced-pom.xml
+++ b/poms/bom/src/main/generated/flattened-reduced-pom.xml
@@ -1617,6 +1617,18 @@
 io.fabric8
 kubernetes-httpclient-okhttp
   
+  
+io.fabric8
+openshift-model-hive
+  
+  
+io.fabric8
+openshift-model-miscellaneous
+  
+  
+io.fabric8
+openshift-model-operator
+  
 
   

(camel-quarkus) branch quarkus-main updated (53bd83cd40 -> 63701a281a)

2024-01-14 Thread jamesnetherton
This is an automated email from the ASF dual-hosted git repository.

jamesnetherton pushed a change to branch quarkus-main
in repository https://gitbox.apache.org/repos/asf/camel-quarkus.git


 discard 53bd83cd40 Exclude redundant kubernetes-client dependencies
 discard a4ceb5a9a1 Revert "Set io.netty.tryReflectionSetAccessible=false for 
jfr & google-bigquery native modules #5603"
 discard 8583e26334 Workaround BigQuery & Apache Arrow Netty imcompatibilities 
#5641
 discard 3fd14c921b Workaround openstack4j incompatibility with Jackson 2.16.x 
#5604
 discard 3a5dc6ad77 Upgrade Quarkus to 3.7.0.CR1
 new e8587ee091 Upgrade Quarkus to 3.7.0.CR1
 new 5bd2508ed8 Workaround openstack4j incompatibility with Jackson 2.16.x 
#5604
 new 7841b232dd Workaround BigQuery & Apache Arrow Netty imcompatibilities 
#5641
 new 2f54724371 Revert "Set io.netty.tryReflectionSetAccessible=false for 
jfr & google-bigquery native modules #5603"
 new 63701a281a Exclude redundant kubernetes-client dependencies

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (53bd83cd40)
\
 N -- N -- N   refs/heads/quarkus-main (63701a281a)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omit" are not gone; other references still
refer to them.  Any revisions marked "discard" are gone forever.

The 5 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)



Re: [I] Creating file with same name overwrites the existing files [camel-karavan]

2024-01-14 Thread via GitHub


mvolf commented on issue #1065:
URL: https://github.com/apache/camel-karavan/issues/1065#issuecomment-1891445338

   @mgubaidullin Please assign this one to me.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@camel.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



Re: [I] Create Bean java.lang.ClassNotFoundException [camel-karavan]

2024-01-14 Thread via GitHub


rapetum228 commented on issue #1063:
URL: https://github.com/apache/camel-karavan/issues/1063#issuecomment-1891396396

   @dpalinic thank you very much, its work!!!


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@camel.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



Re: [I] Create Bean java.lang.ClassNotFoundException [camel-karavan]

2024-01-14 Thread via GitHub


rapetum228 closed issue #1063: Create Bean java.lang.ClassNotFoundException
URL: https://github.com/apache/camel-karavan/issues/1063


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@camel.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



Re: [PR] Bump mockito-version from 5.8.0 to 5.9.0 [camel]

2024-01-14 Thread via GitHub


github-actions[bot] commented on PR #12787:
URL: https://github.com/apache/camel/pull/12787#issuecomment-1891390924

   :star2: Thank you for your contribution to the Apache Camel project! :star2: 
   
   :robot: CI automation will test this PR automatically.
   
   :camel: Apache Camel Committers, please review the following items:
   
   * First-time contributors **require MANUAL approval** for the GitHub Actions 
to run
   
   * You can use the command `/component-test (camel-)component-name1 
(camel-)component-name2..` to request a test from the test bot.
   
   * You can label PRs using `build-all`, `build-dependents`, `skip-tests` and 
`test-dependents` to fine-tune the checks executed by this PR.
   
   * Build and test logs are available in the Summary page. **Only** [Apache 
Camel committers](https://camel.apache.org/community/team/#committers) have 
access to the summary. 
   
   * :warning: Be careful when sharing logs. Review their contents before 
sharing them publicly.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@camel.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



(camel) branch dependabot/maven/mockito-version-5.9.0 created (now c36f84f0ab4)

2024-01-14 Thread github-bot
This is an automated email from the ASF dual-hosted git repository.

github-bot pushed a change to branch dependabot/maven/mockito-version-5.9.0
in repository https://gitbox.apache.org/repos/asf/camel.git


  at c36f84f0ab4 Bump mockito-version from 5.8.0 to 5.9.0

No new revisions were added by this update.



[PR] Bump mockito-version from 5.8.0 to 5.9.0 [camel]

2024-01-14 Thread via GitHub


dependabot[bot] opened a new pull request, #12787:
URL: https://github.com/apache/camel/pull/12787

   Bumps `mockito-version` from 5.8.0 to 5.9.0.
   Updates `org.mockito:mockito-junit-jupiter` from 5.8.0 to 5.9.0
   
   Release notes
   Sourced from https://github.com/mockito/mockito/releases";>org.mockito:mockito-junit-jupiter's
 releases.
   
   v5.9.0
   Changelog generated 
by https://github.com/shipkit/shipkit-changelog";>Shipkit Changelog 
Gradle Plugin
   5.9.0
   
   2024-01-14 - https://github.com/mockito/mockito/compare/v5.8.0...v5.9.0";>18 
commit(s) by Björn Michael, Stefano Cordio, dependabot[bot]
   Bump org.gradle.toolchains.foojay-resolver-convention from 0.7.0 to 
0.8.0 [(https://redirect.github.com/mockito/mockito/issues/3234";>#3234)](https://redirect.github.com/mockito/mockito/pull/3234";>mockito/mockito#3234)
   Align Javadoc configuration to Java 21 standards [(https://redirect.github.com/mockito/mockito/issues/3230";>#3230)](https://redirect.github.com/mockito/mockito/pull/3230";>mockito/mockito#3230)
   Bump com.google.googlejavaformat:google-java-format from 1.19.1 to 
1.19.2 [(https://redirect.github.com/mockito/mockito/issues/3228";>#3228)](https://redirect.github.com/mockito/mockito/pull/3228";>mockito/mockito#3228)
   Run release job on Java 21 [(https://redirect.github.com/mockito/mockito/issues/3226";>#3226)](https://redirect.github.com/mockito/mockito/pull/3226";>mockito/mockito#3226)
   Update Gradle to 8.5 [(https://redirect.github.com/mockito/mockito/issues/3225";>#3225)](https://redirect.github.com/mockito/mockito/pull/3225";>mockito/mockito#3225)
   Bump org.assertj:assertj-core from 3.25.0 to 3.25.1 [(https://redirect.github.com/mockito/mockito/issues/3223";>#3223)](https://redirect.github.com/mockito/mockito/pull/3223";>mockito/mockito#3223)
   Bump org.assertj:assertj-core from 3.24.2 to 3.25.0 [(https://redirect.github.com/mockito/mockito/issues/3218";>#3218)](https://redirect.github.com/mockito/mockito/pull/3218";>mockito/mockito#3218)
   https://github.com/since";>@​since at 
ArgumentCaptor.captor() [(https://redirect.github.com/mockito/mockito/issues/3214";>#3214)](https://redirect.github.com/mockito/mockito/pull/3214";>mockito/mockito#3214)
   Bump org.codehaus.groovy:groovy from 3.0.19 to 3.0.20 [(https://redirect.github.com/mockito/mockito/issues/3213";>#3213)](https://redirect.github.com/mockito/mockito/pull/3213";>mockito/mockito#3213)
   Bump org.jetbrains.kotlin:kotlin-stdlib from 1.9.21 to 1.9.22 [(https://redirect.github.com/mockito/mockito/issues/3211";>#3211)](https://redirect.github.com/mockito/mockito/pull/3211";>mockito/mockito#3211)
   Bump org.jetbrains.kotlin:kotlin-gradle-plugin from 1.9.21 to 1.9.22 
[(https://redirect.github.com/mockito/mockito/issues/3210";>#3210)](https://redirect.github.com/mockito/mockito/pull/3210";>mockito/mockito#3210)
   Bump versions.bytebuddy from 1.14.10 to 1.14.11 [(https://redirect.github.com/mockito/mockito/issues/3208";>#3208)](https://redirect.github.com/mockito/mockito/pull/3208";>mockito/mockito#3208)
   Bump com.google.googlejavaformat:google-java-format from 1.18.1 to 
1.19.1 [(https://redirect.github.com/mockito/mockito/issues/3206";>#3206)](https://redirect.github.com/mockito/mockito/pull/3206";>mockito/mockito#3206)
   Bump actions/upload-artifact from 3 to 4 [(https://redirect.github.com/mockito/mockito/issues/3201";>#3201)](https://redirect.github.com/mockito/mockito/pull/3201";>mockito/mockito#3201)
   Bump com.gradle.enterprise from 3.16 to 3.16.1 [(https://redirect.github.com/mockito/mockito/issues/3200";>#3200)](https://redirect.github.com/mockito/mockito/pull/3200";>mockito/mockito#3200)
   Bump org.eclipse.platform:org.eclipse.osgi from 3.18.500 to 3.18.600 
[(https://redirect.github.com/mockito/mockito/issues/3193";>#3193)](https://redirect.github.com/mockito/mockito/pull/3193";>mockito/mockito#3193)
   Bump com.gradle.enterprise from 3.15.1 to 3.16 [(https://redirect.github.com/mockito/mockito/issues/3192";>#3192)](https://redirect.github.com/mockito/mockito/pull/3192";>mockito/mockito#3192)
   Bump com.diffplug.spotless from 6.23.2 to 6.23.3 [(https://redirect.github.com/mockito/mockito/issues/3191";>#3191)](https://redirect.github.com/mockito/mockito/pull/3191";>mockito/mockito#3191)
   
   
   
   
   Commits
   
   https://github.com/mockito/mockito/commit/e4fa6391b7ba988a4f7ea6df2cce42b8ab64c926";>e4fa639
 Align Javadoc configuration to Java 21 standards (https://redirect.github.com/mockito/mockito/issues/3230";>#3230)
   https://github.com/mockito/mockito/commit/71e2fdbf4a4ff393a616d8583e87d6bbc21d0f1f";>71e2fdb
 Bump org.gradle.toolchains.foojay-resolver-convention (https://redirect.github.com/mockito/mockito/issues/3234";>#3234)
   https://github.com/mockito/mockito/commit/3254d8bec97647ab6b074452676813b3c4bc4ce0";>3254d8b
 Run CI release job on Java 21 (https://redirect.github.com/mockito/mockito/issues/3226";>#3226)
   https://github.com/mockito/mockito/commit/53189fa6252b3bb2dc8b

Re: [I] [CI] - Quarkus Main Branch Build Failure [camel-quarkus]

2024-01-14 Thread via GitHub


github-actions[bot] commented on issue #2926:
URL: https://github.com/apache/camel-quarkus/issues/2926#issuecomment-1891216270

   The 
[quarkus-main](https://github.com/apache/camel-quarkus/tree/quarkus-main) 
branch build has failed:
   
   * Build ID: 7523478178-1362-8a7a5104-1c82-47c5-b4ba-d1bf240dcabf
   * Camel Quarkus Commit: 51245c0e84d74223b4ebb67a35c4dc608cab9df4
   
   * Quarkus Main Commit: 997c17b93a04a4bc647fd6229c6f416c95b5e4fc
   * Link to build: 
https://github.com/apache/camel-quarkus/actions/runs/7523478178


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@camel.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



(camel-k) branch dependabot/go_modules/github.com/evanphx/json-patch-5.8.0incompatible created (now 54309c44b)

2024-01-14 Thread github-bot
This is an automated email from the ASF dual-hosted git repository.

github-bot pushed a change to branch 
dependabot/go_modules/github.com/evanphx/json-patch-5.8.0incompatible
in repository https://gitbox.apache.org/repos/asf/camel-k.git


  at 54309c44b chore(deps): bump github.com/evanphx/json-patch

No new revisions were added by this update.



[PR] chore(deps): bump github.com/evanphx/json-patch from 5.7.0+incompatible to 5.8.0+incompatible [camel-k]

2024-01-14 Thread via GitHub


dependabot[bot] opened a new pull request, #5068:
URL: https://github.com/apache/camel-k/pull/5068

   Bumps [github.com/evanphx/json-patch](https://github.com/evanphx/json-patch) 
from 5.7.0+incompatible to 5.8.0+incompatible.
   
   Release notes
   Sourced from https://github.com/evanphx/json-patch/releases";>github.com/evanphx/json-patch's
 releases.
   
   Blargh Phixs and Empathyprovements
   This release fixes a few stray panics, addresses large number accuracy, 
and improves performance!
   What's Changed
   
   Compare strings after decoding them to handle unicode correctly. Fixes 
https://redirect.github.com/evanphx/json-patch/issues/172";>#172 by 
https://github.com/evanphx";>@​evanphx in https://redirect.github.com/evanphx/json-patch/pull/195";>evanphx/json-patch#195
   Always use UseNumber() to avoid float64 lossyness by https://github.com/evanphx";>@​evanphx in https://redirect.github.com/evanphx/json-patch/pull/194";>evanphx/json-patch#194
   Handle null correctly when introduced by replace. Fixes https://redirect.github.com/evanphx/json-patch/issues/171";>#171 by https://github.com/evanphx";>@​evanphx in https://redirect.github.com/evanphx/json-patch/pull/196";>evanphx/json-patch#196
   Handle from="" more properly. Fixes https://redirect.github.com/evanphx/json-patch/issues/192";>#192 by https://github.com/evanphx";>@​evanphx in https://redirect.github.com/evanphx/json-patch/pull/193";>evanphx/json-patch#193
   Improve performance by https://github.com/evanphx";>@​evanphx in https://redirect.github.com/evanphx/json-patch/pull/197";>evanphx/json-patch#197
   
   Full Changelog: https://github.com/evanphx/json-patch/compare/v5.7.0...v5.8.0";>https://github.com/evanphx/json-patch/compare/v5.7.0...v5.8.0
   
   
   
   Commits
   
   https://github.com/evanphx/json-patch/commit/05c952675fb54a42b0120d9602a65958001d1dce";>05c9526
 Merge pull request https://redirect.github.com/evanphx/json-patch/issues/197";>#197 from 
evanphx/f-perf
   https://github.com/evanphx/json-patch/commit/7a438a6eed18be914c52bcfa1730199931f7bd1e";>7a438a6
 Minor simplifications
   https://github.com/evanphx/json-patch/commit/2a122d1880d16ec5c5e34fc9adff482ebb029ca5";>2a122d1
 More optimizations
   https://github.com/evanphx/json-patch/commit/174e1d7a1f84118ba7030d46ac371d331060b798";>174e1d7
 Add MergePatch benchmark
   https://github.com/evanphx/json-patch/commit/7b8895c9258ff24a26f3a7e0ecd46bea33d7a573";>7b8895c
 Use internal/json
   https://github.com/evanphx/json-patch/commit/f18a4986aaf1c188fda8cd29a842f080e1c0ba38";>f18a498
 Import version of encoding/json, alter to track key order
   https://github.com/evanphx/json-patch/commit/a9c085a75a5541ebc19b239ff620078cdf51942e";>a9c085a
 Merge pull request https://redirect.github.com/evanphx/json-patch/issues/193";>#193 from 
evanphx/b-empty-from
   https://github.com/evanphx/json-patch/commit/e8ab61f4a0e6205bbed116ee7c172f22554ecb2e";>e8ab61f
 Catch IO advancement errors as well
   https://github.com/evanphx/json-patch/commit/c645ff441b0958be0c723b43e1eb95f2746d3a0e";>c645ff4
 Handle add with path="". Fixes https://redirect.github.com/evanphx/json-patch/issues/188";>#188
   https://github.com/evanphx/json-patch/commit/b5e20d456f0e423d412d09f4801b0560ec1eb9a3";>b5e20d4
 Handle from="" more properly. Fixes https://redirect.github.com/evanphx/json-patch/issues/192";>#192
   Additional commits viewable in https://github.com/evanphx/json-patch/compare/v5.7.0...v5.8.0";>compare 
view
   
   
   
   
   
   [![Dependabot compatibility 
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=github.com/evanphx/json-patch&package-manager=go_modules&previous-version=5.7.0+incompatible&new-version=5.8.0+incompatible)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)
   
   Dependabot will resolve any conflicts with this PR as long as you don't 
alter it yourself. You can also trigger a rebase manually by commenting 
`@dependabot rebase`.
   
   [//]: # (dependabot-automerge-start)
   [//]: # (dependabot-automerge-end)
   
   ---
   
   
   Dependabot commands and options
   
   
   You can trigger Dependabot actions by commenting on this PR:
   - `@dependabot rebase` will rebase this PR
   - `@dependabot recreate` will recreate this PR, overwriting any edits that 
have been made to it
   - `@dependabot merge` will merge this PR after your CI passes on it
   - `@dependabot squash and merge` will squash and merge this PR after your CI 
passes on it
   - `@dependabot cancel merge` will cancel a previously requested merge and 
block automerging
   - `@dependabot reopen` will reopen this PR if it is closed
   - `@dependabot close` will close this PR and stop Dependabot recreating it. 
You can achieve the same result by closing it manually
   - `@dependabot show  ignore conditions` will show all of 
the ignore conditions of the specified dependency
   - `@dependabot ignore

(camel-k) branch dependabot/go_modules/github.com/prometheus/common-0.46.0 created (now da9b982a6)

2024-01-14 Thread github-bot
This is an automated email from the ASF dual-hosted git repository.

github-bot pushed a change to branch 
dependabot/go_modules/github.com/prometheus/common-0.46.0
in repository https://gitbox.apache.org/repos/asf/camel-k.git


  at da9b982a6 chore(deps): bump github.com/prometheus/common from 0.45.0 
to 0.46.0

No new revisions were added by this update.



[PR] chore(deps): bump github.com/prometheus/common from 0.45.0 to 0.46.0 [camel-k]

2024-01-14 Thread via GitHub


dependabot[bot] opened a new pull request, #5067:
URL: https://github.com/apache/camel-k/pull/5067

   Bumps [github.com/prometheus/common](https://github.com/prometheus/common) 
from 0.45.0 to 0.46.0.
   
   Release notes
   Sourced from https://github.com/prometheus/common/releases";>github.com/prometheus/common's
 releases.
   
   v0.46.0
   What's Changed
   
   Add golangci-lint config by https://github.com/SuperQ";>@​SuperQ in https://redirect.github.com/prometheus/common/pull/517";>prometheus/common#517
   model: add metric type values by https://github.com/bboreham";>@​bboreham in https://redirect.github.com/prometheus/common/pull/533";>prometheus/common#533
   Synchronize common files from prometheus/prometheus by https://github.com/prombot";>@​prombot in https://redirect.github.com/prometheus/common/pull/532";>prometheus/common#532
   Bump github.com/aws/aws-sdk-go from 1.45.19 to 1.47.0 in /sigv4 by https://github.com/dependabot";>@​dependabot in https://redirect.github.com/prometheus/common/pull/529";>prometheus/common#529
   Update modules by https://github.com/SuperQ";>@​SuperQ in https://redirect.github.com/prometheus/common/pull/534";>prometheus/common#534
   Synchronize common files from prometheus/prometheus by https://github.com/prombot";>@​prombot in https://redirect.github.com/prometheus/common/pull/535";>prometheus/common#535
   Allow using empty Authorization credentials by https://github.com/TheSpiritXIII";>@​TheSpiritXIII in https://redirect.github.com/prometheus/common/pull/546";>prometheus/common#546
   enable errorlint linter by https://github.com/mmorel-35";>@​mmorel-35 in https://redirect.github.com/prometheus/common/pull/550";>prometheus/common#550
   Synchronize common files from prometheus/prometheus by https://github.com/prombot";>@​prombot in https://redirect.github.com/prometheus/common/pull/548";>prometheus/common#548
   Bump github.com/aws/aws-sdk-go from 1.47.0 to 1.48.10 in /sigv4 by https://github.com/dependabot";>@​dependabot in https://redirect.github.com/prometheus/common/pull/539";>prometheus/common#539
   Bump github.com/alecthomas/kingpin/v2 from 2.3.2 to 2.4.0 by https://github.com/dependabot";>@​dependabot in https://redirect.github.com/prometheus/common/pull/542";>prometheus/common#542
   Synchronize common files from prometheus/prometheus by https://github.com/prombot";>@​prombot in https://redirect.github.com/prometheus/common/pull/552";>prometheus/common#552
   Bump golang.org/x/net from 0.18.0 to 0.19.0 by https://github.com/dependabot";>@​dependabot in https://redirect.github.com/prometheus/common/pull/541";>prometheus/common#541
   Bump golang.org/x/oauth2 from 0.14.0 to 0.15.0 by https://github.com/dependabot";>@​dependabot in https://redirect.github.com/prometheus/common/pull/540";>prometheus/common#540
   Add hints for promlog by https://github.com/lucacome";>@​lucacome in https://redirect.github.com/prometheus/common/pull/556";>prometheus/common#556
   Bump google.golang.org/protobuf from 1.31.0 to 1.32.0 by https://github.com/dependabot";>@​dependabot in https://redirect.github.com/prometheus/common/pull/560";>prometheus/common#560
   Bump github.com/prometheus/client_golang from 1.17.0 to 1.18.0 in /sigv4 
by https://github.com/dependabot";>@​dependabot in https://redirect.github.com/prometheus/common/pull/558";>prometheus/common#558
   Synchronize common files from prometheus/prometheus by https://github.com/prombot";>@​prombot in https://redirect.github.com/prometheus/common/pull/555";>prometheus/common#555
   Bump github.com/prometheus/client_golang from 1.17.0 to 1.18.0 by https://github.com/dependabot";>@​dependabot in https://redirect.github.com/prometheus/common/pull/559";>prometheus/common#559
   Bump github.com/aws/aws-sdk-go from 1.48.10 to 1.49.13 in /sigv4 by https://github.com/dependabot";>@​dependabot in https://redirect.github.com/prometheus/common/pull/557";>prometheus/common#557
   Synchronize common files from prometheus/prometheus by https://github.com/prombot";>@​prombot in https://redirect.github.com/prometheus/common/pull/561";>prometheus/common#561
   Make version getRevision public by https://github.com/SuperQ";>@​SuperQ in https://redirect.github.com/prometheus/common/pull/563";>prometheus/common#563
   enable gofumpt, goimports, testifylint linters by https://github.com/mmorel-35";>@​mmorel-35 in https://redirect.github.com/prometheus/common/pull/551";>prometheus/common#551
   version: make GetTegs() public by https://github.com/ArthurSens";>@​ArthurSens in https://redirect.github.com/prometheus/common/pull/565";>prometheus/common#565
   switch to protodelim package (which pbutil now calls) by https://github.com/stapelberg";>@​stapelberg in https://redirect.github.com/prometheus/common/pull/567";>prometheus/common#567
   Bump Go modules by https://github.com/SuperQ";>@​SuperQ in https://redirect.github.com/prometheus/common/pull/568";>prometheus/common#568
   
   New Contributors
   
   https://github.com/TheSpiritXII

(camel-k) branch dependabot/go_modules/github.com/prometheus-operator/prometheus-operator/pkg/apis/monitoring-0.71.0 created (now ecaab2878)

2024-01-14 Thread github-bot
This is an automated email from the ASF dual-hosted git repository.

github-bot pushed a change to branch 
dependabot/go_modules/github.com/prometheus-operator/prometheus-operator/pkg/apis/monitoring-0.71.0
in repository https://gitbox.apache.org/repos/asf/camel-k.git


  at ecaab2878 chore(deps): bump 
github.com/prometheus-operator/prometheus-operator/pkg/apis/monitoring

No new revisions were added by this update.



[PR] chore(deps): bump github.com/prometheus-operator/prometheus-operator/pkg/apis/monitoring from 0.67.1 to 0.71.0 [camel-k]

2024-01-14 Thread via GitHub


dependabot[bot] opened a new pull request, #5066:
URL: https://github.com/apache/camel-k/pull/5066

   Bumps 
[github.com/prometheus-operator/prometheus-operator/pkg/apis/monitoring](https://github.com/prometheus-operator/prometheus-operator)
 from 0.67.1 to 0.71.0.
   
   Release notes
   Sourced from https://github.com/prometheus-operator/prometheus-operator/releases";>github.com/prometheus-operator/prometheus-operator/pkg/apis/monitoring's
 releases.
   
   0.71.0 / 2024-01-12
   
   [CHANGE] Configure the configuration reloader sidecar with the same web 
configuration as Prometheus and Alertmanager. https://redirect.github.com/prometheus-operator/prometheus-operator/issues/6194";>#6194
   [FEATURE] Implement the Scale subresource for the Prometheus and 
PrometheusAgent CRDs. https://redirect.github.com/prometheus-operator/prometheus-operator/issues/5962";>#5962
   [FEATURE] Add support for OpenStack Service Discovery to the 
ScrapeConfig CRD. https://redirect.github.com/prometheus-operator/prometheus-operator/issues/6168";>#6168
   [FEATURE] Add support for all settings of the Kubernetes Service 
Discovery to the ScrapeConfig CRD. https://redirect.github.com/prometheus-operator/prometheus-operator/issues/6178";>#6178
   [FEATURE] Add support for proxy settings to the ScrapeConfig CRD. https://redirect.github.com/prometheus-operator/prometheus-operator/issues/6001";>#6001
   [FEATURE] Add the enableHTTP2 field to remote-write 
configuration. https://redirect.github.com/prometheus-operator/prometheus-operator/issues/6192";>#6192
   [FEATURE] Add .spec.maximumStartupDurationSeconds to the 
Prometheus and PrometheusAgent CRDs. https://redirect.github.com/prometheus-operator/prometheus-operator/issues/6137";>#6137
   [FEATURE] Emit Kubernetes events when detecting invalid configurations. 
https://redirect.github.com/prometheus-operator/prometheus-operator/issues/6179";>#6179
   [ENHANCEMENT] Add additionalLabels field to topology spread 
constraints for Prometheus and PrometheusAgent CRD. https://redirect.github.com/prometheus-operator/prometheus-operator/issues/5967";>#5967
   [ENHANCEMENT] Add .spec.clusterLabel to the Alertmanager 
CRD. https://redirect.github.com/prometheus-operator/prometheus-operator/issues/6162";>#6162
   [ENHANCEMENT] Add 
prometheus_operator_status_update_errors_total and 
prometheus_operator_status_update_operations_total metrics. https://redirect.github.com/prometheus-operator/prometheus-operator/issues/6185";>#6185
   
   0.70.0 / 2023-11-30
   
   [CHANGE] Use camelCase on scrapeConfig in prometheus job names. https://redirect.github.com/prometheus-operator/prometheus-operator/issues/6124";>#6124
   [CHANGE] Update field names for ConsulSD configs. https://redirect.github.com/prometheus-operator/prometheus-operator/issues/6094";>#6094
   [FEATURE] Add trackTimestampsStaleness field to 
ServiceMonitor, PodMonitor and 
ScrapeConfig CRDs. https://redirect.github.com/prometheus-operator/prometheus-operator/issues/6105";>#6105
   [FEATURE] Add persistentVolumeClaimRetentionPolicy field to 
the Prometheus and PrometheusAgent CRDs. https://redirect.github.com/prometheus-operator/prometheus-operator/issues/6038";>#6038
   [FEATURE] Support service,pod,endpoints,endpointslice,ingress roles to 
KubernetesSDConfigs in ScrapeConfig CRD. https://redirect.github.com/prometheus-operator/prometheus-operator/issues/6089";>#6089
   [FEATURE] Add support for Azure SD and GCE SD in 
ScrapeConfig CRD. https://redirect.github.com/prometheus-operator/prometheus-operator/issues/6078";>#6078
 https://redirect.github.com/prometheus-operator/prometheus-operator/issues/6009";>#6009
   [FEATURE] Add azure AD oauth support to remote write. https://redirect.github.com/prometheus-operator/prometheus-operator/issues/6037";>#6037
   [FEATURE] Add .spec.reloadStrategy to the Prometheus and 
PrometheusAgent CRDs. The value can be HTTP (default if not 
specified) or ProcessSignal. https://redirect.github.com/prometheus-operator/prometheus-operator/issues/5690";>#5690
   [ENHANCEMENT] Expose flag to enable the reloader probes in the jsonnet 
configuration. https://redirect.github.com/prometheus-operator/prometheus-operator/issues/6075";>#6075
   [ENHANCEMENT] Reduce memory usage for clusters with large number of 
secrets and/or configmaps. https://redirect.github.com/prometheus-operator/prometheus-operator/issues/5993";>#5993
   [ENHANCEMENT] Config reloader now sends all logs to 
os.Stdout. https://redirect.github.com/prometheus-operator/prometheus-operator/issues/6085";>#6085
   [BUGFIX] Remove verbose logging in admission-webhook pods. https://redirect.github.com/prometheus-operator/prometheus-operator/issues/6095";>#6095
   [BUGFIX] Fixed HTTP scheme value in the Consul SD configurations. https://redirect.github.com/prometheus-operator/prometheus-operator/issues/6098";>#6098
   [BUGFIX] Skip adding shard relabel rules if they were already set in 
additionalScrapeConfigs. https://redirect.github.com/prometheus

Re: [I] [CI] - Camel Main Branch Build Failure [camel-quarkus]

2024-01-14 Thread via GitHub


github-actions[bot] commented on issue #2927:
URL: https://github.com/apache/camel-quarkus/issues/2927#issuecomment-1891135211

   The [camel-main](https://github.com/apache/camel-quarkus/tree/camel-main) 
branch build has failed:
   
   * Build ID: 7522608111-1258-f5bb35b1-f2b9-4e57-a49e-eebff571036e
   * Camel Quarkus Commit: c8095a2e0174775655d0f8225bf4b85f0bbd15b3
   
   * Camel Main Commit: 997c17b93a04a4bc647fd6229c6f416c95b5e4fc
   * Link to build: 
https://github.com/apache/camel-quarkus/actions/runs/7522608111


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@camel.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



(camel-spring-boot) branch automatic-periodic-sync updated (d88612d6670 -> c08602d841e)

2024-01-14 Thread github-bot
This is an automated email from the ASF dual-hosted git repository.

github-bot pushed a change to branch automatic-periodic-sync
in repository https://gitbox.apache.org/repos/asf/camel-spring-boot.git


omit d88612d6670 [create-pull-request] automated change
 add c08602d841e [create-pull-request] automated change

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (d88612d6670)
\
 N -- N -- N   refs/heads/automatic-periodic-sync (c08602d841e)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omit" are not gone; other references still
refer to them.  Any revisions marked "discard" are gone forever.

No new revisions were added by this update.

Summary of changes:
 camel-spring-boot-sbom/camel-spring-boot-sbom.json | 11655 ---
 camel-spring-boot-sbom/camel-spring-boot-sbom.xml  |  9523 +++
 2 files changed, 9405 insertions(+), 11773 deletions(-)



[PR] CAMEL-20333 Camel Kotlin API [camel]

2024-01-14 Thread via GitHub


iMashtak opened a new pull request, #12786:
URL: https://github.com/apache/camel/pull/12786

   Checklist:
   
   - [ ] Wrappers for EIPs (almost all for now)
   - [x] Tests (anyway i will add some more)
   - [x] Autogenerated Endpoint DSL
   - [x] Autogenerated Dataformat DSL
   - [ ] REST (started)
   - [ ] Bean registration (done, but may be better, i want it to be like in 
YAML DSL BeanDeserializer)
   - [ ] Documentation
   - [ ] Sourcecheck, format, etc
   
   Questions:
   
   - What do you think about this? Is it sutable with Camel development vision?
   - How to add docs for that thing? Where should i place the file?
   - I dont understand how `resumable`/`pauseable` works. In docs they always 
comes right after `from`, but in code they defined as member of 
`ProcessorDefinition` like i can use them anywhere in the route. So the 
question: `resumable`/`pauseable` are properties of route or processors?
   - Should i implement route templates and `kamelet` EIP in this PR? Can i 
delay that functionality for later time? As far as i understand, `kamelet` is 
purposed for calling route templates, am i right?
   - How should i resolve megre conflicts - merge or rebase?


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@camel.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



(camel) branch regen_bot updated (191d1b3c4c7 -> 9eb7f37e3bd)

2024-01-14 Thread github-bot
This is an automated email from the ASF dual-hosted git repository.

github-bot pushed a change to branch regen_bot
in repository https://gitbox.apache.org/repos/asf/camel.git


from 191d1b3c4c7 Bump aws-java-sdk2-version from 2.23.2 to 2.23.3 (#12782)
 add 9e871766a63 Bump org.springframework.vault:spring-vault-core from 
3.1.0 to 3.1.1 (#12783)
 add 9eb7f37e3bd Regen SBOM from commit 
9e871766a63270e0f6ed45f9fe7c26f343d0427b (#12785)

No new revisions were added by this update.

Summary of changes:
 camel-sbom/camel-sbom.json | 11480 ++-
 camel-sbom/camel-sbom.xml  |  9942 +++--
 parent/pom.xml | 2 +-
 3 files changed, 11084 insertions(+), 10340 deletions(-)



Re: [PR] Generated sources regen for SBOM [camel]

2024-01-14 Thread via GitHub


oscerd merged PR #12785:
URL: https://github.com/apache/camel/pull/12785


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@camel.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[PR] Generated sources regen for SBOM [camel]

2024-01-14 Thread via GitHub


github-actions[bot] opened a new pull request, #12785:
URL: https://github.com/apache/camel/pull/12785

   Regen bot :robot: found some uncommitted changes after running build on 
:camel: `main` branch for generating SBOMs.
   Please do not delete `regen_bot_sbom` branch after merge/rebase.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@camel.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



(camel) branch regen_bot_sbom updated (21924ae352f -> c3b891d7707)

2024-01-14 Thread github-bot
This is an automated email from the ASF dual-hosted git repository.

github-bot pushed a change to branch regen_bot_sbom
in repository https://gitbox.apache.org/repos/asf/camel.git


omit 21924ae352f Regen SBOM from commit 
70488f4222669853aa8d4ce2190329e045df6439
 add 8443a996180 Regen SBOM from commit 
70488f4222669853aa8d4ce2190329e045df6439 (#12686)
 add 5f05908f459 Bump aws-java-sdk2-version from 2.22.10 to 2.22.11 (#12672)
 add a7a69540cfa docs: fix typos (#12681)
 add d2de234ec52 Regen for commit a7a69540cfaeacdf38787b6f0bd06f54a93c2d95 
(#12688)
 add 6c962afe37c Bump org.kiwiproject:consul-client from 1.2.0 to 1.3.0 
(#12690)
 add 4403f39e47b Bump org.owasp:dependency-check-maven from 9.0.7 to 9.0.8
 add ae89742d256 Upgrade Vert.x to 4.5.1
 add f96ca9e632f camel-vertx-websocket: Fix potentially flaky 
VertxWebsocketTest.testWsSchemeUriPrefix
 add 449180edf25 Bump opentelemetry-version from 1.33.0 to 1.34.0
 add 98497d765e0 (chores) camel-mllp: minor cleanups (#12694)
 add 06fd0c730d9 Bump aws-java-sdk2-version from 2.22.10 to 2.22.12
 add e87a79e927c CAMEL-20286: camel-netty - add support for native 
transport over kqueue and fixed UDS-connected warnings (#12625)
 add d4c535e5fa7 Camel-Robotframework: Fixed typo in docs (#12696)
 add b00051f5f7c CAMEL-20297 camel-file-watch: do not swallow interrupted 
exceptions
 add 56327a735c0 CAMEL-20297 camel-kafka: do not swallow interrupted 
exceptions
 add 80921f085bd CAMEL-20297 camel-rocketmq: do not swallow interrupted 
exceptions
 add 1c73ce90679 CAMEL-20297 camel-seda: do not swallow interrupted 
exceptions
 add de350b2ac28 CAMEL-20297 camel-stream: do not swallow interrupted 
exceptions
 add 07db1966e1c CAMEL-20297 camel-test: do not swallow interrupted 
exceptions
 add 2f11b3147d4 Bump curator-version from 5.5.0 to 5.6.0
 add e22a87f9685 Fix type acitvemq to activemq step-eip.adoc (#12701)
 add 0dc2dcf8ce6 Bump com.twilio.sdk:twilio from 9.14.1 to 9.15.0
 add 405e32a6bac Bump slf4j-version from 2.0.10 to 2.0.11
 add 99cf5916626 Bump aws-java-sdk2-version from 2.22.12 to 2.22.13 (#12702)
 add bea350e3300 Regen for commit 99cf591662639f9e1f893ac334cfb3964b8f5873 
(#12705)
 add a9e99afd05e Bump com.alibaba:fastjson from 2.0.44 to 2.0.45 (#12699)
 add c23df082b02 CAMEL-20303 - Camel-Sql: Add ObjectInputFilter String 
pattern parameter in JdbcAggregationRepository to be used in unmarshall 
operations (#12706)
 add 3ecb1874645 (chores) camel-api: formatting fixes
 add 15feffe579f Bump joda-time:joda-time from 2.12.5 to 2.12.6 (#12713)
 add 46983a1b1e4 Bump com.couchbase.client:java-client from 3.5.1 to 3.5.2 
(#12714)
 add 1aa785a6053 Bump com.google.auth:google-auth-library-oauth2-http 
(#12715)
 add 0d38884083a Bump google-auth-library-oauth2-http-version from 1.21.0 
to 1.22.0 (#12711)
 add cdbc36ce833 CAMEL-20303 - Camel-Sql: Add ObjectInputFilter String 
pattern parameter in JdbcAggregationRepository to be used in unmarshall 
operations - Added migration docs and sql docs (#12716)
 add 1634af20645 CAMEL-20231: use an unmodifiable list instead of copying 
the old one
 add f30b9162057 CAMEL-20297 camel-as2: do not swallow interrupted 
exceptions
 add 33153f080a4 CAMEL-20297 camel-controlbus: do not swallow interrupted 
exceptions
 add 1fe5f138249 CAMEL-20297 camel-direct: do not swallow interrupted 
exceptions
 add 7689bc302bf CAMEL-20297 camel-disruptor: do not swallow interrupted 
exceptions
 add f70676d71fd CAMEL-20297 camel-irc: do not swallow interrupted 
exceptions
 add 97d33f7ac78 [CAMEL-20298] Enhancing JSONata Compatibility for Full 
Reference Port (#12670)
 add 22ac1c8534b Bump org.apache.camel.k:camel-k-crds from 2.1.0 to 2.2.0 
(#12641)
 add 92be6f62832 Bump org.slf4j:slf4j-api from 2.0.10 to 2.0.11
 add 74b6e1994a3 CAMEL-20231: clear the services on initialization (#12722)
 add 9e173007798 CAMEL-20297 camel-aws2-athena: do not swallow interrupted 
exceptions
 add 9a4bb60bcc4 CAMEL-20297 camel-aws2-kinesis: do not swallow interrupted 
exceptions
 add 78cd82cd306 CAMEL-18969 - Support mongodb connection string/uri to 
configure camel-mongodb component.
 add 5b3411b923f Bump org.apache.maven.plugins:maven-surefire-report-plugin
 add 4c4c2e25bb9 Bump maven-surefire-plugin-version from 3.2.3 to 3.2.5
 add 7fce70b7334 bump com.google.apis:google-api-services-calendar
 add 5b07accf11b bump io.projectreactor:reactor-core from 3.6.1 to 3.6.2
 add 26e6bcfa347 Bump micrometer-version from 1.12.1 to 1.12.2
 add b3bc0a1daab Bump com.google.apis:google-api-services-gmail
 add e970f72480f Revert "Bump org.apache.camel.k:camel-k-crds from 2.1.0 to 
2.2.0 (#12641)" (#12732)
 add cf84a59a0ea remove lastResult from Kafka Camel component (#12002)
 add b7dc1da4dbe CAMEL-20044: formatting fixes
 add 489cae42383 CAMEL-20297 camel-jms: do n

(camel-kamelets) branch regen_bot updated (42886ae0 -> 189bb9f6)

2024-01-14 Thread github-bot
This is an automated email from the ASF dual-hosted git repository.

github-bot pushed a change to branch regen_bot
in repository https://gitbox.apache.org/repos/asf/camel-kamelets.git


from 42886ae0 chore: Fix YAKS tests for 4.4.0-SNAPSHOT
 add e64a3506 Updated CHANGELOG.md
 add 189bb9f6 Regen SBOM from commit 
e64a350631caef6c72424dc7d5efefa45eb31279 (#1829)

No new revisions were added by this update.

Summary of changes:
 CHANGELOG.md |   1 +
 camel-kamelets-sbom/camel-kamelets-sbom.json | 812 +--
 camel-kamelets-sbom/camel-kamelets-sbom.xml  | 812 +--
 3 files changed, 813 insertions(+), 812 deletions(-)



Re: [PR] Generated sources regen for SBOM [camel-kamelets]

2024-01-14 Thread via GitHub


oscerd merged PR #1829:
URL: https://github.com/apache/camel-kamelets/pull/1829


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@camel.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[PR] Generated sources regen for SBOM [camel-kamelets]

2024-01-14 Thread via GitHub


github-actions[bot] opened a new pull request, #1829:
URL: https://github.com/apache/camel-kamelets/pull/1829

   Regen bot :robot: found some uncommitted changes after running build on 
:camel-kamelets: `main` branch for generating SBOMs.
   Please do not delete `regen_bot_sbom` branch after merge/rebase.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@camel.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



(camel-kamelets) branch regen_bot_sbom updated (4ee83c6c -> 9ab8c1e3)

2024-01-14 Thread github-bot
This is an automated email from the ASF dual-hosted git repository.

github-bot pushed a change to branch regen_bot_sbom
in repository https://gitbox.apache.org/repos/asf/camel-kamelets.git


from 4ee83c6c Updated CHANGELOG.md
 add 29ca111c Bump org.apache.rat:apache-rat-plugin from 0.15 to 0.16 
(#1822)
 add bab4e0c8 Bump org.apache.maven.plugins:maven-surefire-plugin from 
3.2.3 to 3.2.5 (#1823)
 add b70b04f7 Bump org.apache.maven.plugins:maven-failsafe-plugin from 
3.2.3 to 3.2.5 (#1824)
 add 6730925c Bump org.apache.maven.plugins:maven-plugin-plugin from 3.10.2 
to 3.11.0 (#1825)
 add 111bc099 Bump org.apache.maven.plugin-tools:maven-plugin-annotations 
(#1826)
 add 29ae813a Bump org.apache.camel.k:camel-k-crds from 2.1.0 to 2.2.0 
(#1821)
 add 42886ae0 chore: Fix YAKS tests for 4.4.0-SNAPSHOT
 add e64a3506 Updated CHANGELOG.md
 add 9ab8c1e3 Regen SBOM from commit 
e64a350631caef6c72424dc7d5efefa45eb31279

No new revisions were added by this update.

Summary of changes:
 CHANGELOG.md   |   1 +
 camel-kamelets-sbom/camel-kamelets-sbom.json   | 812 ++---
 camel-kamelets-sbom/camel-kamelets-sbom.xml| 812 ++---
 library/kamelets-maven-plugin/pom.xml  |   4 +-
 pom.xml|   8 +-
 .../test/resources/citrus-application.properties   |   4 +-
 6 files changed, 821 insertions(+), 820 deletions(-)



(camel) branch regen_bot updated (47915727ef6 -> 191d1b3c4c7)

2024-01-14 Thread github-bot
This is an automated email from the ASF dual-hosted git repository.

github-bot pushed a change to branch regen_bot
in repository https://gitbox.apache.org/repos/asf/camel.git


from 47915727ef6 Bump aws-java-sdk2-version from 2.23.0 to 2.23.2 (#12779)
 add 6f3763983aa Bump org.springframework.data:spring-data-redis from 3.2.1 
to 3.2.2 (#12780)
 add 191d1b3c4c7 Bump aws-java-sdk2-version from 2.23.2 to 2.23.3 (#12782)

No new revisions were added by this update.

Summary of changes:
 parent/pom.xml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)



(camel) branch dependabot/maven/org.springframework.vault-spring-vault-core-3.1.1 deleted (was b1736dfddfa)

2024-01-14 Thread github-bot
This is an automated email from the ASF dual-hosted git repository.

github-bot pushed a change to branch 
dependabot/maven/org.springframework.vault-spring-vault-core-3.1.1
in repository https://gitbox.apache.org/repos/asf/camel.git


 was b1736dfddfa Bump org.springframework.vault:spring-vault-core from 
3.1.0 to 3.1.1

The revisions that were on this branch are still contained in
other references; therefore, this change does not discard any commits
from the repository.



(camel) branch main updated (191d1b3c4c7 -> 9e871766a63)

2024-01-14 Thread acosentino
This is an automated email from the ASF dual-hosted git repository.

acosentino pushed a change to branch main
in repository https://gitbox.apache.org/repos/asf/camel.git


from 191d1b3c4c7 Bump aws-java-sdk2-version from 2.23.2 to 2.23.3 (#12782)
 add 9e871766a63 Bump org.springframework.vault:spring-vault-core from 
3.1.0 to 3.1.1 (#12783)

No new revisions were added by this update.

Summary of changes:
 parent/pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)



(camel) branch main updated (6f3763983aa -> 191d1b3c4c7)

2024-01-14 Thread acosentino
This is an automated email from the ASF dual-hosted git repository.

acosentino pushed a change to branch main
in repository https://gitbox.apache.org/repos/asf/camel.git


from 6f3763983aa Bump org.springframework.data:spring-data-redis from 3.2.1 
to 3.2.2 (#12780)
 add 191d1b3c4c7 Bump aws-java-sdk2-version from 2.23.2 to 2.23.3 (#12782)

No new revisions were added by this update.

Summary of changes:
 parent/pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)



(camel) branch dependabot/maven/aws-java-sdk2-version-2.23.3 deleted (was fae14673f39)

2024-01-14 Thread github-bot
This is an automated email from the ASF dual-hosted git repository.

github-bot pushed a change to branch 
dependabot/maven/aws-java-sdk2-version-2.23.3
in repository https://gitbox.apache.org/repos/asf/camel.git


 was fae14673f39 Bump aws-java-sdk2-version from 2.23.2 to 2.23.3

The revisions that were on this branch are still contained in
other references; therefore, this change does not discard any commits
from the repository.



Re: [PR] Bump org.springframework.vault:spring-vault-core from 3.1.0 to 3.1.1 [camel]

2024-01-14 Thread via GitHub


oscerd merged PR #12783:
URL: https://github.com/apache/camel/pull/12783


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@camel.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



Re: [PR] Bump aws-java-sdk2-version from 2.23.2 to 2.23.3 [camel]

2024-01-14 Thread via GitHub


oscerd merged PR #12782:
URL: https://github.com/apache/camel/pull/12782


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@camel.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



Re: [PR] Bump aws-java-sdk2-version from 2.23.2 to 2.23.3 [camel]

2024-01-14 Thread via GitHub


github-actions[bot] commented on PR #12782:
URL: https://github.com/apache/camel/pull/12782#issuecomment-1890914932

   :robot: The Apache Camel test robot will run the tests for you :+1:


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@camel.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



Re: [PR] Bump aws-java-sdk2-version from 2.23.2 to 2.23.3 [camel]

2024-01-14 Thread via GitHub


oscerd commented on PR #12782:
URL: https://github.com/apache/camel/pull/12782#issuecomment-1890914834

   /component-test aws


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@camel.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



Re: [PR] Bump org.springframework.vault:spring-vault-core from 3.1.0 to 3.1.1 [camel]

2024-01-14 Thread via GitHub


github-actions[bot] commented on PR #12783:
URL: https://github.com/apache/camel/pull/12783#issuecomment-1890914661

   :robot: The Apache Camel test robot will run the tests for you :+1:


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@camel.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



Re: [PR] Bump org.springframework.vault:spring-vault-core from 3.1.0 to 3.1.1 [camel]

2024-01-14 Thread via GitHub


oscerd commented on PR #12783:
URL: https://github.com/apache/camel/pull/12783#issuecomment-1890914564

   /component-test hashicorp-vault


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@camel.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



Re: [PR] Generated sources regen for SBOM [camel-quarkus]

2024-01-14 Thread via GitHub


oscerd merged PR #5649:
URL: https://github.com/apache/camel-quarkus/pull/5649


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@camel.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



(camel-quarkus) branch regen_bot_sbom updated (e7780b0b44 -> 8e5ed874fb)

2024-01-14 Thread github-bot
This is an automated email from the ASF dual-hosted git repository.

github-bot pushed a change to branch regen_bot_sbom
in repository https://gitbox.apache.org/repos/asf/camel-quarkus.git


omit e7780b0b44 Regen SBOM from commit 
37d45bc03bb6914554fbc5eb6eb9eb83c279e23b
 add c26ec3c15e Regen SBOM from commit 
37d45bc03bb6914554fbc5eb6eb9eb83c279e23b (#5610)
 add f3d0f850c2 Remove redundant resolutionEntryPointIncludes for protoc 
from BOM generator config
 add 4f60123f59 Add support for s390x architecture to gRPC codegen
 add 32ba917362 Set -Xmx4500m for initial-mvn-install job
 add 27ce15dd46 Clean up remaining reference to deprecated 
quarkus.opentelemetry config
 add 968744f9ba Fix transformer service inclusion path
 add 5792b337e2 Add missing dependencies for transformer support
 add f575eb79e1 Add SMB extension
 add 1861562580 Add option to skip sanity-checks script execution
 add 8e5ed874fb Regen SBOM from commit 
1861562580677004650d1b5e5b0af4b566054cef

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (e7780b0b44)
\
 N -- N -- N   refs/heads/regen_bot_sbom (8e5ed874fb)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omit" are not gone; other references still
refer to them.  Any revisions marked "discard" are gone forever.

No new revisions were added by this update.

Summary of changes:
 .github/workflows/camel-master-cron.yaml   |2 +-
 .github/workflows/ci-build.yaml|2 +-
 .github/workflows/quarkus-master-cron.yaml |2 +-
 camel-quarkus-sbom/camel-quarkus-sbom.json | 1696 +---
 camel-quarkus-sbom/camel-quarkus-sbom.xml  |  700 +---
 docs/modules/ROOT/examples/components/smb.yml  |   13 +
 docs/modules/ROOT/nav.adoc |1 +
 .../ROOT/pages/reference/extensions/smb.adoc   |   45 +
 .../quarkus/core/deployment/CamelProcessor.java|2 +-
 extensions/aws2-ddb/deployment/pom.xml |4 +
 extensions/aws2-ddb/runtime/pom.xml|4 +
 extensions/aws2-sqs/deployment/pom.xml |4 +
 extensions/aws2-sqs/runtime/pom.xml|4 +
 extensions/azure-storage-blob/deployment/pom.xml   |4 +
 extensions/azure-storage-blob/runtime/pom.xml  |4 +
 extensions/azure-storage-queue/deployment/pom.xml  |4 +
 extensions/azure-storage-queue/runtime/pom.xml |4 +
 extensions/google-sheets/deployment/pom.xml|4 +
 extensions/google-sheets/runtime/pom.xml   |4 +
 extensions/google-storage/deployment/pom.xml   |4 +
 extensions/google-storage/runtime/pom.xml  |4 +
 extensions/grpc/codegen/pom.xml|   12 +
 .../deployment/OpenTelemetryDisabledTest.java  |2 +-
 extensions/pom.xml |1 +
 .../smb/deployment/pom.xml |   18 +-
 .../smb}/deployment/JakartaEnablement.java |   34 +-
 .../component/smb/deployment/SmbProcessor.java}|   33 +-
 .../parent-pom.xml => extensions/smb/pom.xml   |8 +-
 .../smb/runtime/pom.xml|   27 +-
 .../main/resources/META-INF/quarkus-extension.yaml |7 +-
 integration-tests/pom.xml  |1 +
 integration-tests/{splunk => smb}/pom.xml  |   22 +-
 .../quarkus/component/smb/it/SmbResource.java} |   27 +-
 .../camel/quarkus/component/smb/it/SmbRoute.java}  |   10 +-
 .../camel/quarkus/component/smb/it/SmbIT.java  |4 +-
 .../camel/quarkus/component/smb/it/SmbTest.java|   14 +-
 .../quarkus/component/smb/it/SmbTestResource.java  |   44 +-
 .../smb/src/test/resources/Dockerfile  |   20 +-
 .../smb/src/test/resources/smb.conf|   53 +-
 .../src/test/resources/start.sh}   |   23 +-
 poms/bom/pom.xml   |   45 +-
 poms/bom/src/main/generated/flattened-full-pom.xml |   43 +-
 .../src/main/generated/flattened-reduced-pom.xml   |   43 +-
 .../generated/flattened-reduced-verbose-pom.xml|   43 +-
 tooling/scripts/sanity-checks.groovy   |6 +
 tooling/scripts/test-categories.yaml   |1 +
 46 files changed, 1989 insertions(+), 1063 deletions(-)
 create mode 100644 docs/modules/ROOT/examples/components/smb.yml
 create mode 100644 docs/modules/ROOT/pages/reference/extensions/smb.adoc
 copy tooling/create-extension-templates/deployment-pom.xml => 
extensions/smb/deployment/pom.xml (79%)
 copy 
{extensions-support/ahc/deployment/src/mai

[PR] Generated sources regen for SBOM [camel-quarkus]

2024-01-14 Thread via GitHub


github-actions[bot] opened a new pull request, #5649:
URL: https://github.com/apache/camel-quarkus/pull/5649

   Regen bot :robot: found some uncommitted changes after running build on 
:camel-quarkus: `main` branch for generating SBOMs.
   Please do not delete `regen_bot_sbom` branch after merge/rebase.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@camel.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



Re: [PR] Bump opentelemetry-version from 1.34.0 to 1.34.1 [camel]

2024-01-14 Thread via GitHub


github-actions[bot] commented on PR #12784:
URL: https://github.com/apache/camel/pull/12784#issuecomment-1890907678

   :star2: Thank you for your contribution to the Apache Camel project! :star2: 
   
   :robot: CI automation will test this PR automatically.
   
   :camel: Apache Camel Committers, please review the following items:
   
   * First-time contributors **require MANUAL approval** for the GitHub Actions 
to run
   
   * You can use the command `/component-test (camel-)component-name1 
(camel-)component-name2..` to request a test from the test bot.
   
   * You can label PRs using `build-all`, `build-dependents`, `skip-tests` and 
`test-dependents` to fine-tune the checks executed by this PR.
   
   * Build and test logs are available in the Summary page. **Only** [Apache 
Camel committers](https://camel.apache.org/community/team/#committers) have 
access to the summary. 
   
   * :warning: Be careful when sharing logs. Review their contents before 
sharing them publicly.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@camel.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



(camel) branch dependabot/maven/opentelemetry-version-1.34.1 created (now 8125b4e9e98)

2024-01-14 Thread github-bot
This is an automated email from the ASF dual-hosted git repository.

github-bot pushed a change to branch 
dependabot/maven/opentelemetry-version-1.34.1
in repository https://gitbox.apache.org/repos/asf/camel.git


  at 8125b4e9e98 Bump opentelemetry-version from 1.34.0 to 1.34.1

No new revisions were added by this update.



[PR] Bump opentelemetry-version from 1.34.0 to 1.34.1 [camel]

2024-01-14 Thread via GitHub


dependabot[bot] opened a new pull request, #12784:
URL: https://github.com/apache/camel/pull/12784

   Bumps `opentelemetry-version` from 1.34.0 to 1.34.1.
   Updates `io.opentelemetry:opentelemetry-sdk-testing` from 1.34.0 to 1.34.1
   
   Release notes
   Sourced from https://github.com/open-telemetry/opentelemetry-java/releases";>io.opentelemetry:opentelemetry-sdk-testing's
 releases.
   
   Version 1.34.1
   This is a patch release on the previous 1.34.0 release, fixing the 
issue(s) below.
   
   Fix prometheus exporter regressions (https://redirect.github.com/open-telemetry/opentelemetry-java/pull/6138";>#6138)
   Fix native image regression (https://redirect.github.com/open-telemetry/opentelemetry-java/pull/6134";>#6134)
   
   
   
   
   Changelog
   Sourced from https://github.com/open-telemetry/opentelemetry-java/blob/main/CHANGELOG.md";>io.opentelemetry:opentelemetry-sdk-testing's
 changelog.
   
   Version 1.34.1 (2024-01-11)
   
   Fix prometheus exporter regressions
   (https://redirect.github.com/open-telemetry/opentelemetry-java/pull/6138";>#6138)
   Fix native image regression
   (https://redirect.github.com/open-telemetry/opentelemetry-java/pull/6134";>#6134)
   
   
   
   
   Commits
   
   https://github.com/open-telemetry/opentelemetry-java/commit/91c4a1b88dc107979589566cdbc24b0c5abee3ea";>91c4a1b
 [release/v1.34.x] Prepare release 1.34.1 (https://redirect.github.com/open-telemetry/opentelemetry-java/issues/6144";>#6144)
   https://github.com/open-telemetry/opentelemetry-java/commit/20cf66c75c541d1ba23b5e75d95f9d4148896762";>20cf66c
 Update changelog for 1.34.1 (https://redirect.github.com/open-telemetry/opentelemetry-java/issues/6143";>#6143)
   https://github.com/open-telemetry/opentelemetry-java/commit/92c470e9c0b637db64bd41cbd2ba38d85a53bc89";>92c470e
 [release/v1.34.x] Recreate graal RetryPolicy issue (https://redirect.github.com/open-telemetry/opentelemetry-java/issues/6142";>#6142)
   https://github.com/open-telemetry/opentelemetry-java/commit/ed1f8baa2788bfd922001fbfc3ba2bb58ceb5549";>ed1f8ba
 [release/v1.34.x] Restore prometheus metric name mapper tests, fix 
regression...
   See full diff in https://github.com/open-telemetry/opentelemetry-java/compare/v1.34.0...v1.34.1";>compare
 view
   
   
   
   
   Updates `io.opentelemetry:opentelemetry-sdk` from 1.34.0 to 1.34.1
   
   Release notes
   Sourced from https://github.com/open-telemetry/opentelemetry-java/releases";>io.opentelemetry:opentelemetry-sdk's
 releases.
   
   Version 1.34.1
   This is a patch release on the previous 1.34.0 release, fixing the 
issue(s) below.
   
   Fix prometheus exporter regressions (https://redirect.github.com/open-telemetry/opentelemetry-java/pull/6138";>#6138)
   Fix native image regression (https://redirect.github.com/open-telemetry/opentelemetry-java/pull/6134";>#6134)
   
   
   
   
   Changelog
   Sourced from https://github.com/open-telemetry/opentelemetry-java/blob/main/CHANGELOG.md";>io.opentelemetry:opentelemetry-sdk's
 changelog.
   
   Version 1.34.1 (2024-01-11)
   
   Fix prometheus exporter regressions
   (https://redirect.github.com/open-telemetry/opentelemetry-java/pull/6138";>#6138)
   Fix native image regression
   (https://redirect.github.com/open-telemetry/opentelemetry-java/pull/6134";>#6134)
   
   
   
   
   Commits
   
   https://github.com/open-telemetry/opentelemetry-java/commit/91c4a1b88dc107979589566cdbc24b0c5abee3ea";>91c4a1b
 [release/v1.34.x] Prepare release 1.34.1 (https://redirect.github.com/open-telemetry/opentelemetry-java/issues/6144";>#6144)
   https://github.com/open-telemetry/opentelemetry-java/commit/20cf66c75c541d1ba23b5e75d95f9d4148896762";>20cf66c
 Update changelog for 1.34.1 (https://redirect.github.com/open-telemetry/opentelemetry-java/issues/6143";>#6143)
   https://github.com/open-telemetry/opentelemetry-java/commit/92c470e9c0b637db64bd41cbd2ba38d85a53bc89";>92c470e
 [release/v1.34.x] Recreate graal RetryPolicy issue (https://redirect.github.com/open-telemetry/opentelemetry-java/issues/6142";>#6142)
   https://github.com/open-telemetry/opentelemetry-java/commit/ed1f8baa2788bfd922001fbfc3ba2bb58ceb5549";>ed1f8ba
 [release/v1.34.x] Restore prometheus metric name mapper tests, fix 
regression...
   See full diff in https://github.com/open-telemetry/opentelemetry-java/compare/v1.34.0...v1.34.1";>compare
 view
   
   
   
   
   Updates `io.opentelemetry:opentelemetry-api` from 1.34.0 to 1.34.1
   
   Release notes
   Sourced from https://github.com/open-telemetry/opentelemetry-java/releases";>io.opentelemetry:opentelemetry-api's
 releases.
   
   Version 1.34.1
   This is a patch release on the previous 1.34.0 release, fixing the 
issue(s) below.
   
   Fix prometheus exporter regressions (https://redirect.github.com/open-telemetry/opentelemetry-java/pull/6138";>#6138)
   Fix native image regression (https://redirect.github.com/open-telemetry/opentelemetry-java/pull/6134";>#6134)
   
   
   
   
   Changelog
   Sourced from https://github.com/o

Re: [PR] Bump org.springframework.vault:spring-vault-core from 3.1.0 to 3.1.1 [camel]

2024-01-14 Thread via GitHub


github-actions[bot] commented on PR #12783:
URL: https://github.com/apache/camel/pull/12783#issuecomment-1890906502

   :star2: Thank you for your contribution to the Apache Camel project! :star2: 
   
   :robot: CI automation will test this PR automatically.
   
   :camel: Apache Camel Committers, please review the following items:
   
   * First-time contributors **require MANUAL approval** for the GitHub Actions 
to run
   
   * You can use the command `/component-test (camel-)component-name1 
(camel-)component-name2..` to request a test from the test bot.
   
   * You can label PRs using `build-all`, `build-dependents`, `skip-tests` and 
`test-dependents` to fine-tune the checks executed by this PR.
   
   * Build and test logs are available in the Summary page. **Only** [Apache 
Camel committers](https://camel.apache.org/community/team/#committers) have 
access to the summary. 
   
   * :warning: Be careful when sharing logs. Review their contents before 
sharing them publicly.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@camel.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



(camel) branch dependabot/maven/org.springframework.vault-spring-vault-core-3.1.1 created (now b1736dfddfa)

2024-01-14 Thread github-bot
This is an automated email from the ASF dual-hosted git repository.

github-bot pushed a change to branch 
dependabot/maven/org.springframework.vault-spring-vault-core-3.1.1
in repository https://gitbox.apache.org/repos/asf/camel.git


  at b1736dfddfa Bump org.springframework.vault:spring-vault-core from 
3.1.0 to 3.1.1

No new revisions were added by this update.



[PR] Bump org.springframework.vault:spring-vault-core from 3.1.0 to 3.1.1 [camel]

2024-01-14 Thread via GitHub


dependabot[bot] opened a new pull request, #12783:
URL: https://github.com/apache/camel/pull/12783

   Bumps 
[org.springframework.vault:spring-vault-core](https://github.com/spring-projects/spring-vault)
 from 3.1.0 to 3.1.1.
   
   Release notes
   Sourced from https://github.com/spring-projects/spring-vault/releases";>org.springframework.vault:spring-vault-core's
 releases.
   
   3.1.1
   :green_book: Links
   
   https://docs.spring.io/spring-vault/reference";>Spring Vault 
3.1.1 Reference documentation
   https://docs.spring.io/spring-vault/docs/3.1.1/api";>Spring 
Vault 3.1.1 Javadoc
   
   :lady_beetle: Bug Fixes
   
   Leases no longer revoked after stopping 
SecretLeaseContainer https://redirect.github.com/spring-projects/spring-vault/issues/844";>#844
   
   :hammer: Dependency Upgrades
   
   Upgrade dependencies https://redirect.github.com/spring-projects/spring-vault/issues/850";>#850
   Upgrade to Project Reactor 2023.0.2 https://redirect.github.com/spring-projects/spring-vault/issues/849";>#849
   Upgrade to Spring Framework 6.1.3 https://redirect.github.com/spring-projects/spring-vault/issues/848";>#848
   Upgrade to Spring Data 2023.1.2 https://redirect.github.com/spring-projects/spring-vault/issues/847";>#847
   
   
   
   
   Commits
   
   https://github.com/spring-projects/spring-vault/commit/d83852cfba8c4b925273a29256bc5be2015280db";>d83852c
 Release Spring Vault 3.1.1.
   https://github.com/spring-projects/spring-vault/commit/330ab2db25f52f604a110faf1c55e25688505d52";>330ab2d
 Upgrade dependencies.
   https://github.com/spring-projects/spring-vault/commit/40251b92c236ac04c48346e222d5fb7b404aef88";>40251b9
 Upgrade to Project Reactor 2023.0.2.
   https://github.com/spring-projects/spring-vault/commit/5551b38f37c240a6ecd778580f35259aefb5919b";>5551b38
 Upgrade to Spring Framework 6.1.3.
   https://github.com/spring-projects/spring-vault/commit/668c1571f47659950aa811820265892faa65356d";>668c157
 Upgrade to Spring Data 2023.1.2.
   https://github.com/spring-projects/spring-vault/commit/0bc5513016829f9a98ef8d0aadd95edce92ee4c7";>0bc5513
 Fix Lease revocation on SecretLeaseContainer destroy.
   https://github.com/spring-projects/spring-vault/commit/47028c933f03dcf531e985c33dbbd68a8e392ff2";>47028c9
 Polishing.
   https://github.com/spring-projects/spring-vault/commit/69a63e41629d7a8d89365dd3e06cc51bbbf597a1";>69a63e4
 Prepare next development iteration.
   See full diff in https://github.com/spring-projects/spring-vault/compare/3.1.0...3.1.1";>compare
 view
   
   
   
   
   
   [![Dependabot compatibility 
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=org.springframework.vault:spring-vault-core&package-manager=maven&previous-version=3.1.0&new-version=3.1.1)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)
   
   Dependabot will resolve any conflicts with this PR as long as you don't 
alter it yourself. You can also trigger a rebase manually by commenting 
`@dependabot rebase`.
   
   [//]: # (dependabot-automerge-start)
   [//]: # (dependabot-automerge-end)
   
   ---
   
   
   Dependabot commands and options
   
   
   You can trigger Dependabot actions by commenting on this PR:
   - `@dependabot rebase` will rebase this PR
   - `@dependabot recreate` will recreate this PR, overwriting any edits that 
have been made to it
   - `@dependabot merge` will merge this PR after your CI passes on it
   - `@dependabot squash and merge` will squash and merge this PR after your CI 
passes on it
   - `@dependabot cancel merge` will cancel a previously requested merge and 
block automerging
   - `@dependabot reopen` will reopen this PR if it is closed
   - `@dependabot close` will close this PR and stop Dependabot recreating it. 
You can achieve the same result by closing it manually
   - `@dependabot show  ignore conditions` will show all of 
the ignore conditions of the specified dependency
   - `@dependabot ignore this major version` will close this PR and stop 
Dependabot creating any more for this major version (unless you reopen the PR 
or upgrade to it yourself)
   - `@dependabot ignore this minor version` will close this PR and stop 
Dependabot creating any more for this minor version (unless you reopen the PR 
or upgrade to it yourself)
   - `@dependabot ignore this dependency` will close this PR and stop 
Dependabot creating any more for this dependency (unless you reopen the PR or 
upgrade to it yourself)
   
   
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@camel.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



Re: [PR] Bump aws-java-sdk2-version from 2.23.2 to 2.23.3 [camel]

2024-01-14 Thread via GitHub


github-actions[bot] commented on PR #12782:
URL: https://github.com/apache/camel/pull/12782#issuecomment-1890903520

   :star2: Thank you for your contribution to the Apache Camel project! :star2: 
   
   :robot: CI automation will test this PR automatically.
   
   :camel: Apache Camel Committers, please review the following items:
   
   * First-time contributors **require MANUAL approval** for the GitHub Actions 
to run
   
   * You can use the command `/component-test (camel-)component-name1 
(camel-)component-name2..` to request a test from the test bot.
   
   * You can label PRs using `build-all`, `build-dependents`, `skip-tests` and 
`test-dependents` to fine-tune the checks executed by this PR.
   
   * Build and test logs are available in the Summary page. **Only** [Apache 
Camel committers](https://camel.apache.org/community/team/#committers) have 
access to the summary. 
   
   * :warning: Be careful when sharing logs. Review their contents before 
sharing them publicly.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@camel.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



(camel) branch dependabot/maven/aws-java-sdk2-version-2.23.3 created (now fae14673f39)

2024-01-14 Thread github-bot
This is an automated email from the ASF dual-hosted git repository.

github-bot pushed a change to branch 
dependabot/maven/aws-java-sdk2-version-2.23.3
in repository https://gitbox.apache.org/repos/asf/camel.git


  at fae14673f39 Bump aws-java-sdk2-version from 2.23.2 to 2.23.3

No new revisions were added by this update.



[PR] Bump aws-java-sdk2-version from 2.23.2 to 2.23.3 [camel]

2024-01-14 Thread via GitHub


dependabot[bot] opened a new pull request, #12782:
URL: https://github.com/apache/camel/pull/12782

   Bumps `aws-java-sdk2-version` from 2.23.2 to 2.23.3.
   Updates `software.amazon.awssdk:sqs` from 2.23.2 to 2.23.3
   
   Updates `software.amazon.awssdk:kinesis` from 2.23.2 to 2.23.3
   
   Updates `software.amazon.awssdk:s3` from 2.23.2 to 2.23.3
   
   Updates `software.amazon.awssdk:sns` from 2.23.2 to 2.23.3
   
   Updates `software.amazon.awssdk:cloudwatch` from 2.23.2 to 2.23.3
   
   Updates `software.amazon.awssdk:ec2` from 2.23.2 to 2.23.3
   
   Updates `software.amazon.awssdk:eventbridge` from 2.23.2 to 2.23.3
   
   Updates `software.amazon.awssdk:iam` from 2.23.2 to 2.23.3
   
   Updates `software.amazon.awssdk:kms` from 2.23.2 to 2.23.3
   
   Updates `software.amazon.awssdk:lambda` from 2.23.2 to 2.23.3
   
   Updates `software.amazon.awssdk:secretsmanager` from 2.23.2 to 2.23.3
   
   Updates `software.amazon.awssdk:sts` from 2.23.2 to 2.23.3
   
   Updates `software.amazon.awssdk:dynamodb` from 2.23.2 to 2.23.3
   
   Updates `software.amazon.awssdk:config` from 2.23.2 to 2.23.3
   
   Updates `software.amazon.awssdk:apache-client` from 2.23.2 to 2.23.3
   
   Updates `software.amazon.awssdk:athena` from 2.23.2 to 2.23.3
   
   Updates `software.amazon.awssdk:cloudtrail` from 2.23.2 to 2.23.3
   
   Updates `software.amazon.awssdk:ecs` from 2.23.2 to 2.23.3
   
   Updates `software.amazon.awssdk:eks` from 2.23.2 to 2.23.3
   
   Updates `software.amazon.awssdk:netty-nio-client` from 2.23.2 to 2.23.3
   
   Updates `software.amazon.awssdk:firehose` from 2.23.2 to 2.23.3
   
   Updates `software.amazon.awssdk:kafka` from 2.23.2 to 2.23.3
   
   Updates `software.amazon.awssdk:mq` from 2.23.2 to 2.23.3
   
   Updates `software.amazon.awssdk:redshiftdata` from 2.23.2 to 2.23.3
   
   Updates `software.amazon.awssdk:ses` from 2.23.2 to 2.23.3
   
   Updates `software.amazon.awssdk:sfn` from 2.23.2 to 2.23.3
   
   Updates `software.amazon.awssdk:timestreamquery` from 2.23.2 to 2.23.3
   
   Updates `software.amazon.awssdk:timestreamwrite` from 2.23.2 to 2.23.3
   
   Updates `software.amazon.awssdk:translate` from 2.23.2 to 2.23.3
   
   
   Dependabot will resolve any conflicts with this PR as long as you don't 
alter it yourself. You can also trigger a rebase manually by commenting 
`@dependabot rebase`.
   
   [//]: # (dependabot-automerge-start)
   [//]: # (dependabot-automerge-end)
   
   ---
   
   
   Dependabot commands and options
   
   
   You can trigger Dependabot actions by commenting on this PR:
   - `@dependabot rebase` will rebase this PR
   - `@dependabot recreate` will recreate this PR, overwriting any edits that 
have been made to it
   - `@dependabot merge` will merge this PR after your CI passes on it
   - `@dependabot squash and merge` will squash and merge this PR after your CI 
passes on it
   - `@dependabot cancel merge` will cancel a previously requested merge and 
block automerging
   - `@dependabot reopen` will reopen this PR if it is closed
   - `@dependabot close` will close this PR and stop Dependabot recreating it. 
You can achieve the same result by closing it manually
   - `@dependabot show  ignore conditions` will show all of 
the ignore conditions of the specified dependency
   - `@dependabot ignore this major version` will close this PR and stop 
Dependabot creating any more for this major version (unless you reopen the PR 
or upgrade to it yourself)
   - `@dependabot ignore this minor version` will close this PR and stop 
Dependabot creating any more for this minor version (unless you reopen the PR 
or upgrade to it yourself)
   - `@dependabot ignore this dependency` will close this PR and stop 
Dependabot creating any more for this dependency (unless you reopen the PR or 
upgrade to it yourself)
   
   
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@camel.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org