(camel) branch regen_bot updated (d441ff5dcfe -> ab4a4b607cb)

2024-01-04 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 d441ff5dcfe Regen for commit cf9a2cab956af5e9aac204e5e0559c25ee6ed082 
(#12671)
 add 87a8fa44349 (chores) camel-core: use a lambda for better readability 
in AbstractCamelContext
 add ab4a4b607cb (chores) camel-core: minor code cleanup

No new revisions were added by this update.

Summary of changes:
 .../camel/impl/engine/AbstractCamelContext.java  | 20 
 1 file changed, 12 insertions(+), 8 deletions(-)



(camel) 01/02: (chores) camel-core: use a lambda for better readability in AbstractCamelContext

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

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

commit 87a8fa4434924e58c0f39c4eba92bf5a63c10d65
Author: Otavio Rodolfo Piske 
AuthorDate: Thu Jan 4 16:17:10 2024 +0100

(chores) camel-core: use a lambda for better readability in 
AbstractCamelContext
---
 .../main/java/org/apache/camel/impl/engine/AbstractCamelContext.java| 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/core/camel-base-engine/src/main/java/org/apache/camel/impl/engine/AbstractCamelContext.java
 
b/core/camel-base-engine/src/main/java/org/apache/camel/impl/engine/AbstractCamelContext.java
index 4e8c9f31c19..cbe379d9e05 100644
--- 
a/core/camel-base-engine/src/main/java/org/apache/camel/impl/engine/AbstractCamelContext.java
+++ 
b/core/camel-base-engine/src/main/java/org/apache/camel/impl/engine/AbstractCamelContext.java
@@ -221,7 +221,7 @@ public abstract class AbstractCamelContext extends 
BaseService
 private final InternalRouteStartupManager internalRouteStartupManager = 
new InternalRouteStartupManager();
 private final List routeStartupOrder = new 
ArrayList<>();
 private final StopWatch stopWatch = new StopWatch(false);
-private final ThreadLocal> componentsInCreation = 
ThreadLocal.withInitial(() -> new HashSet<>());
+private final ThreadLocal> componentsInCreation = 
ThreadLocal.withInitial(HashSet::new);
 private VetoCamelContextStartException vetoed;
 private String managementName;
 private ClassLoader applicationContextClassLoader;



(camel) branch main updated (d441ff5dcfe -> ab4a4b607cb)

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

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


from d441ff5dcfe Regen for commit cf9a2cab956af5e9aac204e5e0559c25ee6ed082 
(#12671)
 new 87a8fa44349 (chores) camel-core: use a lambda for better readability 
in AbstractCamelContext
 new ab4a4b607cb (chores) camel-core: minor code cleanup

The 2 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:
 .../camel/impl/engine/AbstractCamelContext.java  | 20 
 1 file changed, 12 insertions(+), 8 deletions(-)



(camel) 02/02: (chores) camel-core: minor code cleanup

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

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

commit ab4a4b607cba08d5f1b6182bf61db74cbf8b29ac
Author: Otavio Rodolfo Piske 
AuthorDate: Thu Jan 4 16:22:05 2024 +0100

(chores) camel-core: minor code cleanup
---
 .../apache/camel/impl/engine/AbstractCamelContext.java | 18 +++---
 1 file changed, 11 insertions(+), 7 deletions(-)

diff --git 
a/core/camel-base-engine/src/main/java/org/apache/camel/impl/engine/AbstractCamelContext.java
 
b/core/camel-base-engine/src/main/java/org/apache/camel/impl/engine/AbstractCamelContext.java
index cbe379d9e05..7081ec8cb80 100644
--- 
a/core/camel-base-engine/src/main/java/org/apache/camel/impl/engine/AbstractCamelContext.java
+++ 
b/core/camel-base-engine/src/main/java/org/apache/camel/impl/engine/AbstractCamelContext.java
@@ -606,14 +606,18 @@ public abstract class AbstractCamelContext extends 
BaseService
 Component component = getComponent(name);
 if (componentType.isInstance(component)) {
 return componentType.cast(component);
+}
+
+final String message = invalidComponentMessage(name, componentType, 
component);
+throw new IllegalArgumentException(message);
+}
+
+private static <
+T extends Component> String invalidComponentMessage(String name, 
Class componentType, Component component) {
+if (component == null) {
+return "Did not find component given by the name: " + name;
 } else {
-String message;
-if (component == null) {
-message = "Did not find component given by the name: " + name;
-} else {
-message = "Found component of type: " + component.getClass() + 
" instead of expected: " + componentType;
-}
-throw new IllegalArgumentException(message);
+return "Found component of type: " + component.getClass() + " 
instead of expected: " + componentType;
 }
 }
 



Re: [PR] (chores) camel-core: minor cleanups [camel]

2024-01-04 Thread via GitHub


orpiske merged PR #12663:
URL: https://github.com/apache/camel/pull/12663


-- 
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) 01/02: Upgrade Quarkus to 3.7.0.CR1

2024-01-04 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 80f5d0e8edaec56a0b01020a7eef1e5a512a013d
Author: James Netherton 
AuthorDate: Fri Nov 24 11:19:53 2023 +

Upgrade Quarkus to 3.7.0.CR1
---
 docs/antora.yml  |  2 +-
 pom.xml  | 12 ++--
 poms/bom/src/main/generated/flattened-full-pom.xml   |  8 
 poms/bom/src/main/generated/flattened-reduced-pom.xml|  6 +++---
 .../bom/src/main/generated/flattened-reduced-verbose-pom.xml |  6 +++---
 5 files changed, 17 insertions(+), 17 deletions(-)

diff --git a/docs/antora.yml b/docs/antora.yml
index 0581f7e587..67db76f1e9 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: ""
 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/pom.xml b/pom.xml
index d624d85d4f..95dc91cfa5 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
 
@@ -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.13.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..dd3b61ac30 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.13.0
   
   
 io.swagger.core.v3
@@ -6589,17 +6589,17 @@
   
 org.jetbrains.kotlin
 kotlin-script-util
-1.9.21
+1.9.22
   
   
 org.jetbrains.kotlin
 kotlin-scripting-jvm
-1.9.21
+1.9.22
   
   
 org.jetbrains.kotlin
 kotlin-scripting-jvm-host
-1.9.21
+1.9.22
   
   
 org.jolokia
diff --git a/poms/bom/src/main/generated/flattened-reduced-pom.xml 
b/poms/bom/src/main/generated/flattened-reduced-pom.xml
index 015c68273f..05c27c5c8c 100644
--- a/poms/bom/src/main/generated/flattened-reduced-pom.xml
+++ b/poms/bom/src/main/generated/flattened-reduced-pom.xml
@@ -6308,7 +6308,7 @@
   
 io.smallrye.reactive
 smallrye-reactive-messaging-camel
-4.10.2
+4.13.0
   
   
 io.swagger.core.v3
@@ -6524,12 +6524,12 @@
   
 org.jetbrains.kotlin
 kotlin-scripting-jvm
-1.9.21
+1.9.22
   
   
 org.jetbrains.kotlin
 kotlin-scripting-jvm-host
-1.9.21
+1.9.22
   
   
 org.mapstruct
diff --git a/poms/bom/src/main/generated/flattened-reduced-verbose-pom.xml 
b/poms/bom/src/main/generated/flattened-reduced-verbose-pom.xml
index e21d1475d4..b8d31b1b04 100644
--- a/poms/bom/src/main/generated/flattened-reduced-verbose-pom.xml
+++ b/poms/bom/src/main/generated/flattened-reduced-verbose-pom.xml
@@ -6308,7 +6308,7 @@
   
 io.smallrye.reactive
 smallrye-reactive-messaging-camel
-4.10.2
+4.13.0
   
   
 io.swagger.core.v3
@@ -6524,12 +6524,12 @@
   
 org.jetbrains.kotlin
 kotlin-scripting-jvm
-1.9.21
+1.9.22
   
   
 org.jetbrains.kotlin
 kotlin-scripting-jvm-host
-1.9.21
+1.9.22
   
   
 org.mapstruct



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

2024-01-04 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 3c78a4169902a482454978633e2674d41a78dd1a
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 

(camel-quarkus) branch quarkus-main updated (1434350227 -> 3c78a41699)

2024-01-04 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 1434350227 Workaround openstack4j incompatibility with Jackson 2.16.x 
#5604
 discard 8604087c98 Upgrade Quarkus to 3.7.0.CR1
 new 80f5d0e8ed Upgrade Quarkus to 3.7.0.CR1
 new 3c78a41699 Workaround openstack4j incompatibility with Jackson 2.16.x 
#5604

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   (1434350227)
\
 N -- N -- N   refs/heads/quarkus-main (3c78a41699)

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 2 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(-)



[PR] Remove Salesforce PubSubApiConsumer POJO class loading workaround [camel-quarkus]

2024-01-04 Thread via GitHub


jamesnetherton opened a new pull request, #5637:
URL: https://github.com/apache/camel-quarkus/pull/5637

   (no comment)


-- 
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.22.11 created (now 2ffab2f7044)

2024-01-04 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.22.11
in repository https://gitbox.apache.org/repos/asf/camel.git


  at 2ffab2f7044 Bump aws-java-sdk2-version from 2.22.10 to 2.22.11

No new revisions were added by this update.



Re: [PR] Bump aws-java-sdk2-version from 2.22.10 to 2.22.11 [camel]

2024-01-04 Thread via GitHub


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

   :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



[PR] Bump aws-java-sdk2-version from 2.22.10 to 2.22.11 [camel]

2024-01-04 Thread via GitHub


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

   Bumps `aws-java-sdk2-version` from 2.22.10 to 2.22.11.
   Updates `software.amazon.awssdk:sqs` from 2.22.10 to 2.22.11
   
   Updates `software.amazon.awssdk:kinesis` from 2.22.10 to 2.22.11
   
   Updates `software.amazon.awssdk:s3` from 2.22.10 to 2.22.11
   
   Updates `software.amazon.awssdk:sns` from 2.22.10 to 2.22.11
   
   Updates `software.amazon.awssdk:cloudwatch` from 2.22.10 to 2.22.11
   
   Updates `software.amazon.awssdk:ec2` from 2.22.10 to 2.22.11
   
   Updates `software.amazon.awssdk:eventbridge` from 2.22.10 to 2.22.11
   
   Updates `software.amazon.awssdk:iam` from 2.22.10 to 2.22.11
   
   Updates `software.amazon.awssdk:kms` from 2.22.10 to 2.22.11
   
   Updates `software.amazon.awssdk:lambda` from 2.22.10 to 2.22.11
   
   Updates `software.amazon.awssdk:secretsmanager` from 2.22.10 to 2.22.11
   
   Updates `software.amazon.awssdk:sts` from 2.22.10 to 2.22.11
   
   Updates `software.amazon.awssdk:dynamodb` from 2.22.10 to 2.22.11
   
   Updates `software.amazon.awssdk:config` from 2.22.10 to 2.22.11
   
   Updates `software.amazon.awssdk:apache-client` from 2.22.10 to 2.22.11
   
   Updates `software.amazon.awssdk:athena` from 2.22.10 to 2.22.11
   
   Updates `software.amazon.awssdk:cloudtrail` from 2.22.10 to 2.22.11
   
   Updates `software.amazon.awssdk:ecs` from 2.22.10 to 2.22.11
   
   Updates `software.amazon.awssdk:eks` from 2.22.10 to 2.22.11
   
   Updates `software.amazon.awssdk:netty-nio-client` from 2.22.10 to 2.22.11
   
   Updates `software.amazon.awssdk:firehose` from 2.22.10 to 2.22.11
   
   Updates `software.amazon.awssdk:kafka` from 2.22.10 to 2.22.11
   
   Updates `software.amazon.awssdk:mq` from 2.22.10 to 2.22.11
   
   Updates `software.amazon.awssdk:redshiftdata` from 2.22.10 to 2.22.11
   
   Updates `software.amazon.awssdk:ses` from 2.22.10 to 2.22.11
   
   Updates `software.amazon.awssdk:sfn` from 2.22.10 to 2.22.11
   
   Updates `software.amazon.awssdk:timestreamquery` from 2.22.10 to 2.22.11
   
   Updates `software.amazon.awssdk:timestreamwrite` from 2.22.10 to 2.22.11
   
   Updates `software.amazon.awssdk:translate` from 2.22.10 to 2.22.11
   
   
   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: [I] [CI] - Quarkus Main Branch Build Failure [camel-quarkus]

2024-01-04 Thread via GitHub


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

   The 
[quarkus-main](https://github.com/apache/camel-quarkus/tree/quarkus-main) 
branch build has failed:
   
   * Build ID: 7417210773-1352-5514c106-809f-473a-b8a9-59090ea60700
   * Camel Quarkus Commit: 55c5a687fd7625bada4dbe2802a4c3b14538e017
   
   * Quarkus Main Commit: 61232e9ee046b471cd27853ce079450cd1a28226
   * Link to build: 
https://github.com/apache/camel-quarkus/actions/runs/7417210773


-- 
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] [CI] - Camel Main Branch Build Failure [camel-quarkus]

2024-01-04 Thread via GitHub


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

   The [camel-main](https://github.com/apache/camel-quarkus/tree/camel-main) 
branch build has failed:
   
   * Build ID: 7416288456-1248-57b31b16-5864-4d61-9d72-41dd674b6e7f
   * Camel Quarkus Commit: 4f81d106fc9ee6e852c484b2b6a87dca3ae32919
   
   * Camel Main Commit: 61232e9ee046b471cd27853ce079450cd1a28226
   * Link to build: 
https://github.com/apache/camel-quarkus/actions/runs/7416288456


-- 
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/golang.org/x/term-0.16.0 created (now 9dfc127a2)

2024-01-04 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/golang.org/x/term-0.16.0
in repository https://gitbox.apache.org/repos/asf/camel-k.git


  at 9dfc127a2 chore(deps): bump golang.org/x/term from 0.15.0 to 0.16.0

No new revisions were added by this update.



[PR] chore(deps): bump golang.org/x/term from 0.15.0 to 0.16.0 [camel-k]

2024-01-04 Thread via GitHub


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

   Bumps [golang.org/x/term](https://github.com/golang/term) from 0.15.0 to 
0.16.0.
   
   Commits
   
   https://github.com/golang/term/commit/ae941452f58ff9bf62f7e9dca3ea6ae3d214a68b;>ae94145
 go.mod: update golang.org/x dependencies
   See full diff in https://github.com/golang/term/compare/v0.15.0...v0.16.0;>compare 
view
   
   
   
   
   
   [![Dependabot compatibility 
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=golang.org/x/term=go_modules=0.15.0=0.16.0)](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



(camel-k) branch dependabot/go_modules/golang.org/x/sync-0.6.0 created (now f7687445a)

2024-01-04 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/golang.org/x/sync-0.6.0
in repository https://gitbox.apache.org/repos/asf/camel-k.git


  at f7687445a chore(deps): bump golang.org/x/sync from 0.5.0 to 0.6.0

No new revisions were added by this update.



[PR] chore(deps): bump golang.org/x/sync from 0.5.0 to 0.6.0 [camel-k]

2024-01-04 Thread via GitHub


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

   Bumps [golang.org/x/sync](https://github.com/golang/sync) from 0.5.0 to 
0.6.0.
   
   Commits
   
   https://github.com/golang/sync/commit/59c1ca1e4661ed4452be4069ceea3c233f4deec1;>59c1ca1
 errgroup: add reference to sync.WaitGroup
   See full diff in https://github.com/golang/sync/compare/v0.5.0...v0.6.0;>compare 
view
   
   
   
   
   
   [![Dependabot compatibility 
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=golang.org/x/sync=go_modules=0.5.0=0.6.0)](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



(camel-k) branch release-2.2.x updated (1b27b502e -> bc89be8fd)

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

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


from 1b27b502e chore: nightly SBOM update
 new 8b3a6c9d0 chore: changelog automatic update
 new bc89be8fd chore: nightly SBOM update

The 2 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:
 CHANGELOG.md   | 10 ++
 camel-k-sbom/camel-k-sbom.json | 12 ++--
 2 files changed, 16 insertions(+), 6 deletions(-)



(camel-k) 01/02: chore: changelog automatic update

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

github-bot pushed a commit to branch release-2.2.x
in repository https://gitbox.apache.org/repos/asf/camel-k.git

commit 8b3a6c9d0e77e82782344262bf5c3f3acdfd196a
Author: github-actions[bot] 
<41898282+github-actions[bot]@users.noreply.github.com>
AuthorDate: Fri Jan 5 00:40:32 2024 +

chore: changelog automatic update
---
 CHANGELOG.md | 10 ++
 1 file changed, 10 insertions(+)

diff --git a/CHANGELOG.md b/CHANGELOG.md
index 71f8ad734..ee5254648 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,15 @@
 # Changelog
 
+## [Unreleased](https://github.com/apache/camel-k/tree/HEAD)
+
+[Full Changelog](https://github.com/apache/camel-k/compare/v2.2.0...HEAD)
+
+**Closed issues:**
+
+- Integrations fail with Jib publish strategy 
[\#5007](https://github.com/apache/camel-k/issues/5007)
+- Multi arch operator default to AMD64 based image 
[\#4988](https://github.com/apache/camel-k/issues/4988)
+- Wildcards in Routes Sources 
[\#4941](https://github.com/apache/camel-k/issues/4941)
+
 ## [v2.2.0](https://github.com/apache/camel-k/tree/v2.2.0) (2024-01-03)
 
 [Full 
Changelog](https://github.com/apache/camel-k/compare/camel-k-crds-2.2.0...v2.2.0)



(camel-k) 02/02: chore: nightly SBOM update

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

github-bot pushed a commit to branch release-2.2.x
in repository https://gitbox.apache.org/repos/asf/camel-k.git

commit bc89be8fd167d09d80e548f6c2a59e3d9e126b16
Author: github-actions[bot] 
<41898282+github-actions[bot]@users.noreply.github.com>
AuthorDate: Fri Jan 5 00:43:51 2024 +

chore: nightly SBOM update
---
 camel-k-sbom/camel-k-sbom.json | 12 ++--
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/camel-k-sbom/camel-k-sbom.json b/camel-k-sbom/camel-k-sbom.json
index 1f4ec4bc2..d9e773e3a 100644
--- a/camel-k-sbom/camel-k-sbom.json
+++ b/camel-k-sbom/camel-k-sbom.json
@@ -2,10 +2,10 @@
   "$schema": "http://cyclonedx.org/schema/bom-1.4.schema.json;,
   "bomFormat": "CycloneDX",
   "specVersion": "1.4",
-  "serialNumber": "urn:uuid:997b0f22-5957-4aaa-ae7e-8e85c4a07a1a",
+  "serialNumber": "urn:uuid:8ee82176-cb45-4250-9592-9e8f34f4ea65",
   "version": 1,
   "metadata": {
-"timestamp": "2024-01-04T01:15:58Z",
+"timestamp": "2024-01-05T00:43:51Z",
 "tools": [
   {
 "vendor": "CycloneDX",
@@ -46,11 +46,11 @@
   }
 ],
 "component": {
-  "bom-ref": 
"pkg:golang/github.com/apache/camel-k/v2@v0.0.0-20240104011217-88aa4d44e148?type=module",
+  "bom-ref": 
"pkg:golang/github.com/apache/camel-k/v2@v0.0.0-20240105004032-8b3a6c9d0e77?type=module",
   "type": "application",
   "name": "github.com/apache/camel-k/v2",
-  "version": "v0.0.0-20240104011217-88aa4d44e148",
-  "purl": 
"pkg:golang/github.com/apache/camel-k/v2@v0.0.0-20240104011217-88aa4d44e148?type=module\u0026goos=linux\u0026goarch=amd64",
+  "version": "v0.0.0-20240105004032-8b3a6c9d0e77",
+  "purl": 
"pkg:golang/github.com/apache/camel-k/v2@v0.0.0-20240105004032-8b3a6c9d0e77?type=module\u0026goos=linux\u0026goarch=amd64",
   "externalReferences": [
 {
   "url": "https://github.com/apache/camel-k;,
@@ -3830,7 +3830,7 @@
   ],
   "dependencies": [
 {
-  "ref": 
"pkg:golang/github.com/apache/camel-k/v2@v0.0.0-20240104011217-88aa4d44e148?type=module",
+  "ref": 
"pkg:golang/github.com/apache/camel-k/v2@v0.0.0-20240105004032-8b3a6c9d0e77?type=module",
   "dependsOn": [
 "pkg:golang/github.com/Masterminds/semver@v1.5.0?type=module",
 "pkg:golang/github.com/container-tools/spectrum@v0.6.42?type=module",



[PR] [Github Actions] Periodic Sync Camel Spring Boot (Camel 4) [camel-spring-boot]

2024-01-04 Thread via GitHub


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

   Periodic Sync of Camel Spring Boot Main Branch with main Camel Main.
   see 
https://github.com/apache/camel-spring-boot/blob/main/.github/workflows/automatic-sync-main.yml


-- 
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) 03/03: chore: nightly SBOM update

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

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

commit c5cbd70f16f0fc1ecbead2554fabf93b26e53c50
Author: github-actions[bot] 
<41898282+github-actions[bot]@users.noreply.github.com>
AuthorDate: Thu Jan 4 23:46:30 2024 +

chore: nightly SBOM update
---
 camel-k-sbom/camel-k-sbom.json | 12 ++--
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/camel-k-sbom/camel-k-sbom.json b/camel-k-sbom/camel-k-sbom.json
index d365eb687..9d147fb56 100644
--- a/camel-k-sbom/camel-k-sbom.json
+++ b/camel-k-sbom/camel-k-sbom.json
@@ -2,10 +2,10 @@
   "$schema": "http://cyclonedx.org/schema/bom-1.4.schema.json;,
   "bomFormat": "CycloneDX",
   "specVersion": "1.4",
-  "serialNumber": "urn:uuid:60f01089-b233-4b60-9dd2-2d7b92e480cc",
+  "serialNumber": "urn:uuid:bf35c285-1340-4809-bf1b-97826044ea32",
   "version": 1,
   "metadata": {
-"timestamp": "2024-01-03T23:45:41Z",
+"timestamp": "2024-01-04T23:46:30Z",
 "tools": [
   {
 "vendor": "CycloneDX",
@@ -46,11 +46,11 @@
   }
 ],
 "component": {
-  "bom-ref": 
"pkg:golang/github.com/apache/camel-k/v2@v0.0.0-20240103234253-5517f2659886?type=module",
+  "bom-ref": 
"pkg:golang/github.com/apache/camel-k/v2@v0.0.0-20240104234609-56ee17887d4c?type=module",
   "type": "application",
   "name": "github.com/apache/camel-k/v2",
-  "version": "v0.0.0-20240103234253-5517f2659886",
-  "purl": 
"pkg:golang/github.com/apache/camel-k/v2@v0.0.0-20240103234253-5517f2659886?type=module\u0026goos=linux\u0026goarch=amd64",
+  "version": "v0.0.0-20240104234609-56ee17887d4c",
+  "purl": 
"pkg:golang/github.com/apache/camel-k/v2@v0.0.0-20240104234609-56ee17887d4c?type=module\u0026goos=linux\u0026goarch=amd64",
   "externalReferences": [
 {
   "url": "https://github.com/apache/camel-k;,
@@ -3830,7 +3830,7 @@
   ],
   "dependencies": [
 {
-  "ref": 
"pkg:golang/github.com/apache/camel-k/v2@v0.0.0-20240103234253-5517f2659886?type=module",
+  "ref": 
"pkg:golang/github.com/apache/camel-k/v2@v0.0.0-20240104234609-56ee17887d4c?type=module",
   "dependsOn": [
 "pkg:golang/github.com/Masterminds/semver@v1.5.0?type=module",
 "pkg:golang/github.com/container-tools/spectrum@v0.6.42?type=module",



(camel-k) 01/03: chore: changelog automatic update

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

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

commit 31780b71c7e3b2fb6686900c4f3e690b82f5d216
Author: github-actions[bot] 
<41898282+github-actions[bot]@users.noreply.github.com>
AuthorDate: Thu Jan 4 23:43:39 2024 +

chore: changelog automatic update
---
 CHANGELOG.md | 9 +
 1 file changed, 9 insertions(+)

diff --git a/CHANGELOG.md b/CHANGELOG.md
index ee07d725c..34d30eab4 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -4,8 +4,17 @@
 
 [Full Changelog](https://github.com/apache/camel-k/compare/v2.2.0...HEAD)
 
+**Closed issues:**
+
+- Integrations fail with Jib publish strategy 
[\#5007](https://github.com/apache/camel-k/issues/5007)
+- Multi arch operator default to AMD64 based image 
[\#4988](https://github.com/apache/camel-k/issues/4988)
+- Wildcards in Routes Sources 
[\#4941](https://github.com/apache/camel-k/issues/4941)
+
 **Merged pull requests:**
 
+- fix\(ci\): golang caching is already part of go actions 
[\#5018](https://github.com/apache/camel-k/pull/5018) 
([squakez](https://github.com/squakez))
+- fix\(\#5007\): Jib publish strategy registry secret 
[\#5016](https://github.com/apache/camel-k/pull/5016) 
([gansheer](https://github.com/gansheer))
+- feat: add support for glob pattern in run sources  
[\#5015](https://github.com/apache/camel-k/pull/5015) 
([rinaldodev](https://github.com/rinaldodev))
 - fix\(ci\): Sanitize PR head.ref 
[\#5013](https://github.com/apache/camel-k/pull/5013) 
([AdnaneKhan](https://github.com/AdnaneKhan))
 - chore\(deps\): bump github.com/prometheus/client\_golang from 1.17.0 to 
1.18.0 [\#5012](https://github.com/apache/camel-k/pull/5012) 
([dependabot[bot]](https://github.com/apps/dependabot))
 - chore\(deps\): bump knative.dev/eventing from 0.39.1 to 0.39.2 
[\#5011](https://github.com/apache/camel-k/pull/5011) 
([dependabot[bot]](https://github.com/apps/dependabot))



(camel-k) 02/03: chore: autogenerated project resource update

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

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

commit 56ee17887d4c426cdcf5b0caff7f38364e5f6b43
Author: github-actions[bot] 
<41898282+github-actions[bot]@users.noreply.github.com>
AuthorDate: Thu Jan 4 23:46:09 2024 +

chore: autogenerated project resource update
---
 pkg/resources/resources.go | 8 
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/pkg/resources/resources.go b/pkg/resources/resources.go
index ff3426a81..72d549721 100644
--- a/pkg/resources/resources.go
+++ b/pkg/resources/resources.go
@@ -743,12 +743,12 @@ var assets = func() http.FileSystem {
 
compressedContent: 
[]byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x53\xc1\x8e\xdb\x36\x14\xbc\xf3\x2b\x06\xd6\x25\x01\xd6\x72\xdb\x53\xe1\x9e\xdc\xcd\x6e\x2b\x34\xb0\x81\x95\xd3\x20\xc7\x67\xe9\x59\x7a\x58\x8a\x54\x1f\xa9\x55\xb6\x5f\x5f\x90\x96\xbb\x0e\xda\x63\x78\xb1\x05\x8d\xe6\xcd\xbc\x19\x16\x58\x7f\xbf\x63\x0a\x7c\x94\x86\x5d\xe0\x16\xd1\x23\xf6\x8c\xdd\x48\x4d\xcf\xa8\xfd\x39\xce\xa4\x8c\x47\x3f\xb9\x96\xa2\x78\x87\x77\xbb\xfa\xf1\x3d\x26\xd7\xb2\xc2\x3b\x86\x57\x0c\x5e\x
 [...]
},
-   "/camel-catalog-3.2.0.yaml": ۰CompressedFileInfo{
-   name: "camel-catalog-3.2.0.yaml",
+   "/camel-catalog-3.2.3.yaml": ۰CompressedFileInfo{
+   name: "camel-catalog-3.2.3.yaml",
modTime:  time.Time{},
uncompressedSize: 87987,
 
-   compressedContent: 
[]byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xc4\x7d\x5b\x77\xdc\xb6\xb2\xe6\xbb\x7f\x05\x57\xfc\x72\xce\x9a\x4d\x24\x71\xf6\x9c\xcc\xca\x3c\xc9\xb2\x65\x5b\xb6\x6c\xd9\xad\x9d\x78\xef\x97\x2c\x34\x89\xee\x86\x9a\x24\x28\x00\x6c\xb5\xfc\xeb\x67\x01\x04\xaf\x4d\x15\x2f\x2a\x68\xf4\x20\xb2\x89\xc2\x57\xa8\xaf\x40\xdc\x09\xbc\x0c\x42\xbc\xbf\x17\x2f\x83\x4f\x3c\x62\x99\x62\x71\xa0\x45\xa0\x77\x2c\x38\xcb\x69\xb4\x63\xc1\x4a\x6c\xf4\x3d\x95\x2c\xb8\x10\x45\x16\x53\x
 [...]
+   compressedContent: 
[]byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xc4\xbd\x4d\x77\xdb\xb8\xb2\x2e\x3c\xcf\xaf\xe0\xea\x4c\xce\x59\xef\x26\xba\x3b\xd9\xef\xe9\x7b\xfb\x8e\x1c\x27\x4e\xe2\xd8\x89\x13\x79\xa7\xb3\xf7\xa4\x17\x44\x42\x12\x24\x92\xa0\x01\x50\x96\xf3\xeb\xef\x02\x08\x7e\x8a\x2e\x8a\x74\xc1\xd7\x03\x93\x22\x0a\x4f\xa1\x9e\x02\xf1\x4d\xe0\x65\x10\xe2\xfd\xbd\x78\x19\x5c\xf1\x88\x65\x8a\xc5\x81\x16\x81\xde\xb0\xe0\x2c\xa7\xd1\x86\x05\x0b\xb1\xd2\xf7\x54\xb2\xe0\x42\x14\x59\x
 [...]
},
"/traits.yaml": ۰CompressedFileInfo{
name: "traits.yaml",
@@ -761,7 +761,7 @@ var assets = func() http.FileSystem {
fs["/"].(*vfsgen۰DirInfo).entries = []os.FileInfo{
fs["/addons"].(os.FileInfo),
fs["/builder"].(os.FileInfo),
-   fs["/camel-catalog-3.2.0.yaml"].(os.FileInfo),
+   fs["/camel-catalog-3.2.3.yaml"].(os.FileInfo),
fs["/crd"].(os.FileInfo),
fs["/manager"].(os.FileInfo),
fs["/prometheus"].(os.FileInfo),



(camel-k) branch main updated (bf0e79b97 -> c5cbd70f1)

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

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


from bf0e79b97 feat: add support for glob pattern in run sources
 new 31780b71c chore: changelog automatic update
 new 56ee17887 chore: autogenerated project resource update
 new c5cbd70f1 chore: nightly SBOM update

The 3 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:
 CHANGELOG.md   |  9 +
 camel-k-sbom/camel-k-sbom.json | 12 ++--
 pkg/resources/resources.go |  8 
 3 files changed, 19 insertions(+), 10 deletions(-)



(camel-k-runtime) 01/02: chore: update changelog

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

github-bot pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/camel-k-runtime.git

commit 6d389a0c1de89479e509097f98c27ca82a34aef8
Author: github-actions[bot] 
<41898282+github-actions[bot]@users.noreply.github.com>
AuthorDate: Thu Jan 4 23:34:14 2024 +

chore: update changelog
---
 CHANGELOG.md | 1 +
 1 file changed, 1 insertion(+)

diff --git a/CHANGELOG.md b/CHANGELOG.md
index 5a17d78c..a9df80e5 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -6,6 +6,7 @@
 
 **Merged pull requests:**
 
+- build\(deps\): bump org.assertj:assertj-core from 3.25.0 to 3.25.1 
[\#1145](https://github.com/apache/camel-k-runtime/pull/1145) 
([dependabot[bot]](https://github.com/apps/dependabot))
 - build\(deps\): bump org.assertj:assertj-core from 3.24.2 to 3.25.0 
[\#1144](https://github.com/apache/camel-k-runtime/pull/1144) 
([dependabot[bot]](https://github.com/apps/dependabot))
 - build\(deps\): bump org.apache.maven.plugins:maven-compiler-plugin from 
3.12.0 to 3.12.1 [\#1143](https://github.com/apache/camel-k-runtime/pull/1143) 
([dependabot[bot]](https://github.com/apps/dependabot))
 - build\(deps\): bump groovy-version from 4.0.16 to 4.0.17 
[\#1142](https://github.com/apache/camel-k-runtime/pull/1142) 
([dependabot[bot]](https://github.com/apps/dependabot))



(camel-k-runtime) 02/02: chore: update SBOM

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

github-bot pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/camel-k-runtime.git

commit b7c4911913c072ec12ac77dac152d1b68157ccbf
Author: github-actions[bot] 
<41898282+github-actions[bot]@users.noreply.github.com>
AuthorDate: Thu Jan 4 23:38:38 2024 +

chore: update SBOM
---
 camel-k-runtime-sbom/camel-k-runtime-sbom.json | 26 +-
 camel-k-runtime-sbom/camel-k-runtime-sbom.xml  | 26 +-
 2 files changed, 26 insertions(+), 26 deletions(-)

diff --git a/camel-k-runtime-sbom/camel-k-runtime-sbom.json 
b/camel-k-runtime-sbom/camel-k-runtime-sbom.json
index f7687c2c..25dfa713 100644
--- a/camel-k-runtime-sbom/camel-k-runtime-sbom.json
+++ b/camel-k-runtime-sbom/camel-k-runtime-sbom.json
@@ -9456,41 +9456,41 @@
 {
   "group" : "org.assertj",
   "name" : "assertj-core",
-  "version" : "3.25.0",
+  "version" : "3.25.1",
   "description" : "Rich and fluent assertions for testing in Java",
   "scope" : "required",
   "hashes" : [
 {
   "alg" : "MD5",
-  "content" : "b11582f3dec44ffbabb1774697db5e77"
+  "content" : "10f048a3a77a5b968a8a3e5c7dc64fa1"
 },
 {
   "alg" : "SHA-1",
-  "content" : "52a8dc925f362ca73c23161222e2a19cd80bcd55"
+  "content" : "a3a6e79792f041b61507be9f2a211a81297d7b0f"
 },
 {
   "alg" : "SHA-256",
-  "content" : 
"615dcead3038135c5404d27d66d83bc5a97772cf867c037df642b206f116192a"
+  "content" : 
"620da4e4de03108c2f412ec17a7ed44b0112dc65e181bd0732dc96fa3b65356f"
 },
 {
   "alg" : "SHA-512",
-  "content" : 
"1a59ecdd3f8dd31cdce7f0de1616ded079c0eebdf5f07d89e0a4529fffd5a0aad27c6c7653649b3fe34ad303a5b9684c70221f0334d3f844fe6dc2a7216cd71a"
+  "content" : 
"3fa98db654447efb401e60b7f26d1a850c563fc612f29336eb8c82cc13e078ec64e7db6c2440d63faf360debd950eb48e8e3dd5e21aa44140d5125606f9f7d2d"
 },
 {
   "alg" : "SHA-384",
-  "content" : 
"05abc81b08fc1af367382067be6f937b55bb5444f18e3c7ce2930ebd0bb4e7754f6c298ca966f8ae632da6fa82a17d5a"
+  "content" : 
"03f360606743192d0933adc843456580ace3f13d9600febedc1e9ad54db4b348384d68331a6d1cb898f2a1ab5302b8a3"
 },
 {
   "alg" : "SHA3-384",
-  "content" : 
"9c48a130b1ce7197f4eba070f23d81758c23c8de9ae713bd53a0f3183a7719584e2cd16c1050b6be785058f60518e85e"
+  "content" : 
"7323da14d04da3474f21c32bb92cd6dab140b14460a3dd21e0f9f2e7d9e5589060cc1fe2e33e8d1014cc22753d0645f5"
 },
 {
   "alg" : "SHA3-256",
-  "content" : 
"fc180c2c567bd0d6ef1a4ef1b84ec4b97cac89cdee4ee54536c5039738269cc6"
+  "content" : 
"aaf1914d03d4031ef954439fb5323956d52939b616506b693c99a7b16724ad41"
 },
 {
   "alg" : "SHA3-512",
-  "content" : 
"47c40711bcfdc6aa52f14486c0fcfee268017efe8682e44241a37e17494208c989fa6b88264d1fd2e85e39051eb60856cdba14c725e872e43fca8ad36d78eabe"
+  "content" : 
"53de0a81c839d9fc5731c4a4000af3658ac1750f54c96fa027bbfcb987639f70751510b9ae21d52dedf220d00f4290e4f5edac4f49a99609bf2c96f36c0d4fc6"
 }
   ],
   "licenses" : [
@@ -9500,7 +9500,7 @@
   }
 }
   ],
-  "purl" : "pkg:maven/org.assertj/assertj-core@3.25.0?type=jar",
+  "purl" : "pkg:maven/org.assertj/assertj-core@3.25.1?type=jar",
   "externalReferences" : [
 {
   "type" : "website",
@@ -9512,7 +9512,7 @@
 }
   ],
   "type" : "library",
-  "bom-ref" : "pkg:maven/org.assertj/assertj-core@3.25.0?type=jar"
+  "bom-ref" : "pkg:maven/org.assertj/assertj-core@3.25.1?type=jar"
 },
 {
   "group" : "net.bytebuddy",
@@ -32918,7 +32918,7 @@
   "ref" : 
"pkg:maven/org.apache.camel.k/camel-k-test@3.6.0-SNAPSHOT?type=jar",
   "dependsOn" : [
 "pkg:maven/org.junit.jupiter/junit-jupiter@5.10.0?type=jar",
-"pkg:maven/org.assertj/assertj-core@3.25.0?type=jar",
+"pkg:maven/org.assertj/assertj-core@3.25.1?type=jar",
 "pkg:maven/org.hamcrest/hamcrest-core@2.2?type=jar",
 "pkg:maven/io.rest-assured/rest-assured@5.3.2?type=jar",
 "pkg:maven/org.apache.groovy/groovy@4.0.17?type=jar",
@@ -32982,7 +32982,7 @@
   ]
 },
 {
-  "ref" : "pkg:maven/org.assertj/assertj-core@3.25.0?type=jar",
+  "ref" : "pkg:maven/org.assertj/assertj-core@3.25.1?type=jar",
   "dependsOn" : [
 "pkg:maven/net.bytebuddy/byte-buddy@1.14.7?type=jar"
   ]
diff --git a/camel-k-runtime-sbom/camel-k-runtime-sbom.xml 
b/camel-k-runtime-sbom/camel-k-runtime-sbom.xml
index 93e05902..86c307d8 100644
--- a/camel-k-runtime-sbom/camel-k-runtime-sbom.xml
+++ b/camel-k-runtime-sbom/camel-k-runtime-sbom.xml
@@ -3361,28 +3361,28 @@ file comparators, endian transformation classes, and 
much more.
   

(camel-k-runtime) branch main updated (4e89262d -> b7c49119)

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

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


from 4e89262d build(deps): bump org.assertj:assertj-core from 3.25.0 to 
3.25.1
 new 6d389a0c chore: update changelog
 new b7c49119 chore: update SBOM

The 2 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:
 CHANGELOG.md   |  1 +
 camel-k-runtime-sbom/camel-k-runtime-sbom.json | 26 +-
 camel-k-runtime-sbom/camel-k-runtime-sbom.xml  | 26 +-
 3 files changed, 27 insertions(+), 26 deletions(-)



Re: [I] Unable to authenticate with Docker Hub API v2 [camel-k]

2024-01-04 Thread via GitHub


lmorandini commented on issue #5017:
URL: https://github.com/apache/camel-k/issues/5017#issuecomment-1877871092

   No, it is not working correctly when the secret is created with the `v2` 
endpoint (i.e. `--docker-server=docker.io`).


-- 
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 (898fd003e97 -> d441ff5dcfe)

2024-01-04 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


omit 898fd003e97 Regen for commit cf9a2cab956af5e9aac204e5e0559c25ee6ed082
 add d441ff5dcfe Regen for commit cf9a2cab956af5e9aac204e5e0559c25ee6ed082 
(#12671)

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   (898fd003e97)
\
 N -- N -- N   refs/heads/regen_bot (d441ff5dcfe)

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) branch main updated: Regen for commit cf9a2cab956af5e9aac204e5e0559c25ee6ed082 (#12671)

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

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


The following commit(s) were added to refs/heads/main by this push:
 new d441ff5dcfe Regen for commit cf9a2cab956af5e9aac204e5e0559c25ee6ed082 
(#12671)
d441ff5dcfe is described below

commit d441ff5dcfe7ace9c480d9d7730b4177c24a9179
Author: github-actions[bot] 
<41898282+github-actions[bot]@users.noreply.github.com>
AuthorDate: Thu Jan 4 22:11:39 2024 +0100

Regen for commit cf9a2cab956af5e9aac204e5e0559c25ee6ed082 (#12671)

Signed-off-by: GitHub 
Co-authored-by: jeremyross 
---
 .../camel/catalog/components/salesforce.json   | 84 --
 1 file changed, 45 insertions(+), 39 deletions(-)

diff --git 
a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components/salesforce.json
 
b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components/salesforce.json
index 959c872f7d4..858cda6d268 100644
--- 
a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components/salesforce.json
+++ 
b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components/salesforce.json
@@ -89,39 +89,42 @@
 "allOrNone": { "index": 62, "kind": "property", "displayName": "All Or 
None", "group": "producer", "label": "producer", "required": false, "type": 
"boolean", "javaType": "boolean", "deprecated": false, "autowired": false, 
"secret": false, "defaultValue": false, "configurationClass": 
"org.apache.camel.component.salesforce.SalesforceEndpointConfig", 
"configurationField": "config", "description": "Composite API option to 
indicate to rollback all records if any are not successful." },
 "apexUrl": { "index": 63, "kind": "property", "displayName": "Apex Url", 
"group": "producer", "label": "producer", "required": false, "type": "string", 
"javaType": "java.lang.String", "deprecated": false, "autowired": false, 
"secret": false, "configurationClass": 
"org.apache.camel.component.salesforce.SalesforceEndpointConfig", 
"configurationField": "config", "description": "APEX method URL" },
 "compositeMethod": { "index": 64, "kind": "property", "displayName": 
"Composite Method", "group": "producer", "label": "producer", "required": 
false, "type": "string", "javaType": "java.lang.String", "deprecated": false, 
"autowired": false, "secret": false, "configurationClass": 
"org.apache.camel.component.salesforce.SalesforceEndpointConfig", 
"configurationField": "config", "description": "Composite (raw) method." },
-"lazyStartProducer": { "index": 65, "kind": "property", "displayName": 
"Lazy Start Producer", "group": "producer", "label": "producer", "required": 
false, "type": "boolean", "javaType": "boolean", "deprecated": false, 
"autowired": false, "secret": false, "defaultValue": false, "description": 
"Whether the producer should be started lazy (on the first message). By 
starting lazy you can use this to allow CamelContext and routes to startup in 
situations where a producer may otherwise fai [...]
-"rawHttpHeaders": { "index": 66, "kind": "property", "displayName": "Raw 
Http Headers", "group": "producer", "label": "producer", "required": false, 
"type": "string", "javaType": "java.lang.String", "deprecated": false, 
"autowired": false, "secret": false, "configurationClass": 
"org.apache.camel.component.salesforce.SalesforceEndpointConfig", 
"configurationField": "config", "description": "Comma separated list of message 
headers to include as HTTP parameters for Raw operation." },
-"rawMethod": { "index": 67, "kind": "property", "displayName": "Raw 
Method", "group": "producer", "label": "producer", "required": false, "type": 
"string", "javaType": "java.lang.String", "deprecated": false, "autowired": 
false, "secret": false, "configurationClass": 
"org.apache.camel.component.salesforce.SalesforceEndpointConfig", 
"configurationField": "config", "description": "HTTP method to use for the Raw 
operation" },
-"rawPath": { "index": 68, "kind": "property", "displayName": "Raw Path", 
"group": "producer", "label": "producer", "required": false, "type": "string", 
"javaType": "java.lang.String", "deprecated": false, "autowired": false, 
"secret": false, "configurationClass": 
"org.apache.camel.component.salesforce.SalesforceEndpointConfig", 
"configurationField": "config", "description": "The portion of the endpoint URL 
after the domain name. E.g., '\/services\/data\/v52.0\/sobjects\/Account\/'" },
-"rawQueryParameters": { "index": 69, "kind": "property", "displayName": 
"Raw Query Parameters", "group": "producer", "label": "producer", "required": 
false, "type": "string", "javaType": "java.lang.String", "deprecated": false, 
"autowired": false, "secret": false, "configurationClass": 
"org.apache.camel.component.salesforce.SalesforceEndpointConfig", 
"configurationField": "config", "description": "Comma separated 

Re: [PR] Generated sources regen [camel]

2024-01-04 Thread via GitHub


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


-- 
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 (031d6b0fe22 -> 898fd003e97)

2024-01-04 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 031d6b0fe22 Bump io.smallrye:smallrye-health from 4.0.4 to 4.1.0
 add 0267211e9b5 CAMEL-17719: camel-salesforce: Add operation to get event 
schemas
 add 682a7de070c CAMEL-17719: camel-salesforce: Add operation to get event 
schemas
 add cf9a2cab956 Revert inadvertent change.
 add 898fd003e97 Regen for commit cf9a2cab956af5e9aac204e5e0559c25ee6ed082

No new revisions were added by this update.

Summary of changes:
 .../camel/catalog/components/salesforce.json   | 84 --
 .../salesforce/SalesforceComponentConfigurer.java  | 18 +
 .../salesforce/SalesforceEndpointConfigurer.java   | 18 +
 .../salesforce/SalesforceEndpointUriFactory.java   |  5 +-
 .../camel/component/salesforce/salesforce.json | 84 --
 .../src/main/docs/salesforce-component.adoc| 20 ++
 .../component/salesforce/SalesforceEndpoint.java   |  4 +-
 .../salesforce/SalesforceEndpointConfig.java   | 55 +-
 .../component/salesforce/SalesforceProducer.java   |  2 +-
 .../salesforce/internal/OperationName.java |  1 +
 .../internal/client/DefaultRestClient.java | 37 ++
 .../salesforce/internal/client/RestClient.java | 18 +
 ...rFieldsEnum.java => EventSchemaFormatEnum.java} | 29 +++-
 .../internal/processor/AbstractRestProcessor.java  | 26 +++
 .../internal/processor/SalesforceProcessor.java|  2 -
 .../salesforce/RestApiIntegrationTest.java | 31 
 16 files changed, 328 insertions(+), 106 deletions(-)
 copy 
components/camel-salesforce/camel-salesforce-component/src/main/java/org/apache/camel/component/salesforce/internal/dto/{NotifyForFieldsEnum.java
 => EventSchemaFormatEnum.java} (67%)



[PR] Generated sources regen [camel]

2024-01-04 Thread via GitHub


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

   Regen bot :robot: found some uncommitted changes after running build on 
:camel: `main` branch.
   Please do not delete `regen_bot` 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 main updated: Revert inadvertent change.

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

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


The following commit(s) were added to refs/heads/main by this push:
 new cf9a2cab956 Revert inadvertent change.
cf9a2cab956 is described below

commit cf9a2cab956af5e9aac204e5e0559c25ee6ed082
Author: Jeremy Ross 
AuthorDate: Thu Jan 4 15:03:47 2024 -0600

Revert inadvertent change.
---
 .../component/salesforce/api/utils/JsonUtils.java  | 75 ++
 1 file changed, 4 insertions(+), 71 deletions(-)

diff --git 
a/components/camel-salesforce/camel-salesforce-component/src/main/java/org/apache/camel/component/salesforce/api/utils/JsonUtils.java
 
b/components/camel-salesforce/camel-salesforce-component/src/main/java/org/apache/camel/component/salesforce/api/utils/JsonUtils.java
index 3d1d1511797..3c7a134372b 100644
--- 
a/components/camel-salesforce/camel-salesforce-component/src/main/java/org/apache/camel/component/salesforce/api/utils/JsonUtils.java
+++ 
b/components/camel-salesforce/camel-salesforce-component/src/main/java/org/apache/camel/component/salesforce/api/utils/JsonUtils.java
@@ -148,20 +148,18 @@ public final class JsonUtils {
 throws JsonProcessingException {
 ObjectMapper schemaObjectMapper = createSchemaObjectMapper();
 return getJsonSchemaString(schemaObjectMapper,
-getSObjectJsonSchema(schemaObjectMapper, description, 
DEFAULT_ID_PREFIX, addQuerySchema, false),
-DEFAULT_ID_PREFIX);
+getSObjectJsonSchema(schemaObjectMapper, description, 
DEFAULT_ID_PREFIX, addQuerySchema), DEFAULT_ID_PREFIX);
 }
 
 public static JsonSchema getSObjectJsonSchemaAsSchema(SObjectDescription 
description, boolean addQuerySchema)
 throws JsonProcessingException {
 ObjectMapper schemaObjectMapper = createSchemaObjectMapper();
-return getJsonSchemaAsSchema(
-getSObjectJsonSchema(schemaObjectMapper, description, 
DEFAULT_ID_PREFIX, addQuerySchema, false),
+return getJsonSchemaAsSchema(getSObjectJsonSchema(schemaObjectMapper, 
description, DEFAULT_ID_PREFIX, addQuerySchema),
 DEFAULT_ID_PREFIX);
 }
 
 public static Set getSObjectJsonSchema(
-ObjectMapper objectMapper, SObjectDescription description, String 
idPrefix, boolean addQuerySchema, boolean forCdc)
+ObjectMapper objectMapper, SObjectDescription description, String 
idPrefix, boolean addQuerySchema)
 throws JsonProcessingException {
 Set allSchemas = new HashSet<>();
 
@@ -282,7 +280,7 @@ public final class JsonUtils {
 fieldSchema.setDescription(descriptionText);
 
 // add property to sobject schema
-if (field.isNillable() || forCdc) {
+if (field.isNillable()) {
 sobjectSchema.putOptionalProperty(field.getName(), 
fieldSchema);
 } else {
 sobjectSchema.putProperty(field.getName(), fieldSchema);
@@ -310,71 +308,6 @@ public final class JsonUtils {
 return allSchemas;
 }
 
-public static JsonSchema getCdcSchema(
-ObjectMapper objectMapper, Iterable 
descriptions,
-String idPrefix)
-throws JsonProcessingException {
-ObjectSchema cdcSchema = new ObjectSchema();
-cdcSchema.set$schema(SCHEMA4);
-cdcSchema.setId(idPrefix + ":cdc");
-cdcSchema.setTitle("CDC Change Events");
-
-ObjectSchema header = new ObjectSchema();
-header.putProperty("entityName", new StringSchema());
-
-ArraySchema recordIds = new ArraySchema();
-recordIds.setItems(new ArraySchema.SingleItems(new StringSchema()));
-header.putProperty("recordIds", recordIds);
-
-ArraySchema changedFields = new ArraySchema();
-changedFields.setItems(new ArraySchema.SingleItems(new 
StringSchema()));
-header.putProperty("changedFields", changedFields);
-
-StringSchema changeType = new StringSchema();
-changeType.setEnums(Set.of(
-"CREATE",
-"UPDATE",
-"DELETE",
-"UNDELETE",
-"GAP_CREATE",
-"GAP_UPDATE",
-"GAP_DELETE",
-"GAP_UNDELETE",
-"GAP_OVERFLOW"));
-header.putProperty("changeType", changeType);
-
-header.putProperty("changeOrigin", new StringSchema());
-header.putProperty("transactionKey", new StringSchema());
-header.putProperty("sequenceNumber", new IntegerSchema());
-header.putProperty("commitTimestamp", new IntegerSchema());
-header.putProperty("commitUser", new StringSchema());
-header.putProperty("commitNumber", new IntegerSchema());
-
-ObjectSchema data = new ObjectSchema();
-data.putProperty("schema", new StringSchema());
-
-ObjectSchema 

Re: [PR] Feature/jsonata full compatibility [camel]

2024-01-04 Thread via GitHub


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

   :star2: Thank you for your contribution to the Apache Camel project! :star2: 
   
   :warning: Please note that the changes on this PR may be **tested 
automatically**. 
   
   If necessary Apache Camel Committers may access logs and test results in the 
job summaries!


-- 
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] Feature/jsonata full compatibility [camel]

2024-01-04 Thread via GitHub


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

   # Description
   
   This pull request replaces the JSONAta library with a new one that provides 
full compatibility with the features of the spec. This change is necessary to 
ensure that our codebase aligns with the specifications and requirements.
   
   New (with full compability): https://github.com/dashjoin/jsonata-java
   Old ([with no full 
compability](https://github.com/IBM/JSONata4Java?tab=readme-ov-file#current-limitations)):
 https://github.com/IBM/JSONata4Java
   
   


-- 
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) 01/02: CAMEL-17719: camel-salesforce: Add operation to get event schemas

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

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

commit 0267211e9b5bb1be8628331bb6ac07293e692037
Author: Jeremy Ross 
AuthorDate: Fri Apr 15 10:21:42 2022 -0500

CAMEL-17719: camel-salesforce: Add operation to get event schemas

Event schemas are Avro schemas and support Platform Events,
Change Data Capture events, and custom events.
---
 .../salesforce/SalesforceComponentConfigurer.java  | 18 +
 .../salesforce/SalesforceEndpointConfigurer.java   | 18 +
 .../salesforce/SalesforceEndpointUriFactory.java   |  5 +-
 .../camel/component/salesforce/salesforce.json | 84 --
 .../src/main/docs/salesforce-component.adoc| 20 ++
 .../component/salesforce/SalesforceEndpoint.java   |  4 +-
 .../salesforce/SalesforceEndpointConfig.java   | 55 +-
 .../component/salesforce/SalesforceProducer.java   |  2 +-
 .../component/salesforce/api/utils/JsonUtils.java  | 75 +--
 .../salesforce/internal/OperationName.java |  1 +
 .../internal/client/DefaultRestClient.java | 37 ++
 .../salesforce/internal/client/RestClient.java | 18 +
 .../internal/dto/EventSchemaFormatEnum.java| 44 
 .../internal/processor/AbstractRestProcessor.java  | 26 +++
 .../internal/processor/SalesforceProcessor.java|  2 -
 .../salesforce/RestApiIntegrationTest.java | 32 +
 16 files changed, 391 insertions(+), 50 deletions(-)

diff --git 
a/components/camel-salesforce/camel-salesforce-component/src/generated/java/org/apache/camel/component/salesforce/SalesforceComponentConfigurer.java
 
b/components/camel-salesforce/camel-salesforce-component/src/generated/java/org/apache/camel/component/salesforce/SalesforceComponentConfigurer.java
index 41fe36cac2a..93e4abef2d8 100644
--- 
a/components/camel-salesforce/camel-salesforce-component/src/generated/java/org/apache/camel/component/salesforce/SalesforceComponentConfigurer.java
+++ 
b/components/camel-salesforce/camel-salesforce-component/src/generated/java/org/apache/camel/component/salesforce/SalesforceComponentConfigurer.java
@@ -59,6 +59,12 @@ public class SalesforceComponentConfigurer extends 
PropertyConfigurerSupport imp
 case "contentType": 
getOrCreateConfig(target).setContentType(property(camelContext, 
org.apache.camel.component.salesforce.api.dto.bulk.ContentType.class, value)); 
return true;
 case "defaultreplayid":
 case "defaultReplayId": 
getOrCreateConfig(target).setDefaultReplayId(property(camelContext, 
java.lang.Long.class, value)); return true;
+case "eventname":
+case "eventName": 
getOrCreateConfig(target).setEventName(property(camelContext, 
java.lang.String.class, value)); return true;
+case "eventschemaformat":
+case "eventSchemaFormat": 
getOrCreateConfig(target).setEventSchemaFormat(property(camelContext, 
org.apache.camel.component.salesforce.internal.dto.EventSchemaFormatEnum.class, 
value)); return true;
+case "eventschemaid":
+case "eventSchemaId": 
getOrCreateConfig(target).setEventSchemaId(property(camelContext, 
java.lang.String.class, value)); return true;
 case "fallbackreplayid":
 case "fallBackReplayId": 
getOrCreateConfig(target).setFallBackReplayId(property(camelContext, 
java.lang.Long.class, value)); return true;
 case "format": 
getOrCreateConfig(target).setFormat(property(camelContext, 
org.apache.camel.component.salesforce.internal.PayloadFormat.class, value)); 
return true;
@@ -255,6 +261,12 @@ public class SalesforceComponentConfigurer extends 
PropertyConfigurerSupport imp
 case "contentType": return 
org.apache.camel.component.salesforce.api.dto.bulk.ContentType.class;
 case "defaultreplayid":
 case "defaultReplayId": return java.lang.Long.class;
+case "eventname":
+case "eventName": return java.lang.String.class;
+case "eventschemaformat":
+case "eventSchemaFormat": return 
org.apache.camel.component.salesforce.internal.dto.EventSchemaFormatEnum.class;
+case "eventschemaid":
+case "eventSchemaId": return java.lang.String.class;
 case "fallbackreplayid":
 case "fallBackReplayId": return java.lang.Long.class;
 case "format": return 
org.apache.camel.component.salesforce.internal.PayloadFormat.class;
@@ -452,6 +464,12 @@ public class SalesforceComponentConfigurer extends 
PropertyConfigurerSupport imp
 case "contentType": return getOrCreateConfig(target).getContentType();
 case "defaultreplayid":
 case "defaultReplayId": return 
getOrCreateConfig(target).getDefaultReplayId();
+case "eventname":
+case "eventName": return getOrCreateConfig(target).getEventName();
+case "eventschemaformat":
+case "eventSchemaFormat": return 

(camel) 02/02: CAMEL-17719: camel-salesforce: Add operation to get event schemas

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

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

commit 682a7de070c9110093f763b00db59d9966bfab82
Author: Jeremy Ross 
AuthorDate: Thu Jan 4 14:25:52 2024 -0600

CAMEL-17719: camel-salesforce: Add operation to get event schemas

Event schemas are Avro schemas and support Platform Events,
Change Data Capture events, and custom events.
---
 .../org/apache/camel/component/salesforce/RestApiIntegrationTest.java| 1 -
 1 file changed, 1 deletion(-)

diff --git 
a/components/camel-salesforce/camel-salesforce-component/src/test/java/org/apache/camel/component/salesforce/RestApiIntegrationTest.java
 
b/components/camel-salesforce/camel-salesforce-component/src/test/java/org/apache/camel/component/salesforce/RestApiIntegrationTest.java
index e8fa5e95704..a4b91c047a9 100644
--- 
a/components/camel-salesforce/camel-salesforce-component/src/test/java/org/apache/camel/component/salesforce/RestApiIntegrationTest.java
+++ 
b/components/camel-salesforce/camel-salesforce-component/src/test/java/org/apache/camel/component/salesforce/RestApiIntegrationTest.java
@@ -554,7 +554,6 @@ public class RestApiIntegrationTest extends 
AbstractSalesforceTestBase {
 final String schemaId = (String) map.get("uuid");
 
 final Object idResult = 
template.requestBodyAndHeader("salesforce:getEventSchema", "", EVENT_SCHEMA_ID, 
schemaId);
-System.out.println(idResult);
 assertNotNull(idResult);
 }
 



(camel) branch main updated (031d6b0fe22 -> 682a7de070c)

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

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


from 031d6b0fe22 Bump io.smallrye:smallrye-health from 4.0.4 to 4.1.0
 new 0267211e9b5 CAMEL-17719: camel-salesforce: Add operation to get event 
schemas
 new 682a7de070c CAMEL-17719: camel-salesforce: Add operation to get event 
schemas

The 2 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:
 .../salesforce/SalesforceComponentConfigurer.java  | 18 +
 .../salesforce/SalesforceEndpointConfigurer.java   | 18 +
 .../salesforce/SalesforceEndpointUriFactory.java   |  5 +-
 .../camel/component/salesforce/salesforce.json | 84 --
 .../src/main/docs/salesforce-component.adoc| 20 ++
 .../component/salesforce/SalesforceEndpoint.java   |  4 +-
 .../salesforce/SalesforceEndpointConfig.java   | 55 +-
 .../component/salesforce/SalesforceProducer.java   |  2 +-
 .../component/salesforce/api/utils/JsonUtils.java  | 75 +--
 .../salesforce/internal/OperationName.java |  1 +
 .../internal/client/DefaultRestClient.java | 37 ++
 .../salesforce/internal/client/RestClient.java | 18 +
 ...rFieldsEnum.java => EventSchemaFormatEnum.java} | 29 +++-
 .../internal/processor/AbstractRestProcessor.java  | 26 +++
 .../internal/processor/SalesforceProcessor.java|  2 -
 .../salesforce/RestApiIntegrationTest.java | 31 
 16 files changed, 354 insertions(+), 71 deletions(-)
 copy 
components/camel-salesforce/camel-salesforce-component/src/main/java/org/apache/camel/component/salesforce/internal/dto/{NotifyForFieldsEnum.java
 => EventSchemaFormatEnum.java} (67%)



Re: [PR] JmsDeliveryDelayTest fix flackiness [camel]

2024-01-04 Thread via GitHub


kulagaIA commented on PR #12669:
URL: https://github.com/apache/camel/pull/12669#issuecomment-1877698146

   > /component-test camel-jms
   > 
   > **Result** ❌ The tests failed please [check the 
logs](https://github.com/apache/camel/actions/runs/7414143507)
   
   Apparently the problem is in how deliveryDelay is handled in jms component 
or jms implementation. I'll look into it.
   If you have any ideas what else can cause this test to fail, please share :)


-- 
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 (67af0b5dab2 -> 031d6b0fe22)

2024-01-04 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 67af0b5dab2 Bump com.google.auth:google-auth-library-oauth2-http
 add 031d6b0fe22 Bump io.smallrye:smallrye-health from 4.0.4 to 4.1.0

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 (67af0b5dab2 -> 031d6b0fe22)

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

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


from 67af0b5dab2 Bump com.google.auth:google-auth-library-oauth2-http
 add 031d6b0fe22 Bump io.smallrye:smallrye-health from 4.0.4 to 4.1.0

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/io.smallrye-smallrye-health-4.1.0 deleted (was 446be489b89)

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

github-bot pushed a change to branch 
dependabot/maven/io.smallrye-smallrye-health-4.1.0
in repository https://gitbox.apache.org/repos/asf/camel.git


 was 446be489b89 Bump io.smallrye:smallrye-health from 4.0.4 to 4.1.0

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 io.smallrye:smallrye-health from 4.0.4 to 4.1.0 [camel]

2024-01-04 Thread via GitHub


apupier merged PR #12667:
URL: https://github.com/apache/camel/pull/12667


-- 
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] JmsDeliveryDelayTest fix flackiness [camel]

2024-01-04 Thread via GitHub


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

   :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] JmsDeliveryDelayTest fix flackiness [camel]

2024-01-04 Thread via GitHub


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

   :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



Re: [PR] JmsDeliveryDelayTest fix flackiness [camel]

2024-01-04 Thread via GitHub


kulagaIA commented on PR #12669:
URL: https://github.com/apache/camel/pull/12669#issuecomment-1877673364

   /component-test camel-jms


-- 
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] JmsDeliveryDelayTest fix flackiness [camel]

2024-01-04 Thread via GitHub


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

   # Description
   testInOnlyWithDelay was flacky because sometimes message is not received 
from artemis before .assertIsSatisfied(context) is called.
   testInOutWithDelay was missing assertions of mock endpoint condition and of 
response contents.
   


-- 
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] Merge [camel]

2024-01-04 Thread via GitHub


otavioprado closed pull request #12668: Merge
URL: https://github.com/apache/camel/pull/12668


-- 
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] Merge [camel]

2024-01-04 Thread via GitHub


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

   :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



[PR] Merge [camel]

2024-01-04 Thread via GitHub


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

   # Description
   
   
   
   # Target
   
   - [ ] I checked that the commit is targeting the correct branch (note that 
Camel 3 uses `camel-3.x`, whereas Camel 4 uses the `main` branch)
   
   # Tracking
   - [ ] If this is a large change, bug fix, or code improvement, I checked 
there is a [JIRA issue](https://issues.apache.org/jira/browse/CAMEL) filed for 
the change (usually before you start working on it).
   
   
   
   # Apache Camel coding standards and style
   
   - [ ] I checked that each commit in the pull request has a meaningful 
subject line and body.
   
   
   
   - [ ] I have run `mvn clean install -DskipTests` locally and I have 
committed all auto-generated changes
   
   
   
   


-- 
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 (2a8613a3d69 -> 67af0b5dab2)

2024-01-04 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 2a8613a3d69 Bump org.jgroups:jgroups from 5.3.0.Final to 5.3.1.Final
 add 4e2d2054190 Bump io.nats:jnats from 2.17.1 to 2.17.2
 add 67af0b5dab2 Bump com.google.auth:google-auth-library-oauth2-http

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/com.google.auth-google-auth-library-oauth2-http-1.21.0 deleted (was 5af32dc952b)

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

github-bot pushed a change to branch 
dependabot/maven/com.google.auth-google-auth-library-oauth2-http-1.21.0
in repository https://gitbox.apache.org/repos/asf/camel.git


 was 5af32dc952b Bump com.google.auth:google-auth-library-oauth2-http

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 (4e2d2054190 -> 67af0b5dab2)

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

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


from 4e2d2054190 Bump io.nats:jnats from 2.17.1 to 2.17.2
 add 67af0b5dab2 Bump com.google.auth:google-auth-library-oauth2-http

No new revisions were added by this update.

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



Re: [PR] Bump com.google.auth:google-auth-library-oauth2-http from 1.20.0 to 1.21.0 [camel]

2024-01-04 Thread via GitHub


apupier merged PR #12666:
URL: https://github.com/apache/camel/pull/12666


-- 
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 io.smallrye:smallrye-health from 4.0.4 to 4.1.0 [camel]

2024-01-04 Thread via GitHub


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

   :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 io.smallrye:smallrye-health from 4.0.4 to 4.1.0 [camel]

2024-01-04 Thread via GitHub


apupier commented on PR #12667:
URL: https://github.com/apache/camel/pull/12667#issuecomment-1877638193

   /component-test microprofile


-- 
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 io.smallrye:smallrye-health from 4.0.4 to 4.1.0 [camel]

2024-01-04 Thread via GitHub


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

   :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/io.smallrye-smallrye-health-4.1.0 created (now 446be489b89)

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

github-bot pushed a change to branch 
dependabot/maven/io.smallrye-smallrye-health-4.1.0
in repository https://gitbox.apache.org/repos/asf/camel.git


  at 446be489b89 Bump io.smallrye:smallrye-health from 4.0.4 to 4.1.0

No new revisions were added by this update.



[PR] Bump io.smallrye:smallrye-health from 4.0.4 to 4.1.0 [camel]

2024-01-04 Thread via GitHub


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

   Bumps 
[io.smallrye:smallrye-health](https://github.com/smallrye/smallrye-health) from 
4.0.4 to 4.1.0.
   
   Release notes
   Sourced from https://github.com/smallrye/smallrye-health/releases;>io.smallrye:smallrye-health's
 releases.
   
   4.1.0
   
   https://redirect.github.com/smallrye/smallrye-health/issues/512;>#512 
Bump io.smallrye.config:smallrye-config from 3.4.4 to 3.5.1
   https://redirect.github.com/smallrye/smallrye-health/issues/510;>#510 
Bump com.googlecode.maven-download-plugin:download-maven-plugin from 1.7.1 to 
1.8.0
   https://redirect.github.com/smallrye/smallrye-health/issues/509;>#509 
Bump io.smallrye.reactive:mutiny from 2.5.2 to 2.5.3
   https://redirect.github.com/smallrye/smallrye-health/issues/508;>#508 
Improve context based healthchecks
   https://redirect.github.com/smallrye/smallrye-health/issues/507;>#507 
Bump io.smallrye.reactive:mutiny from 2.5.1 to 2.5.2
   https://redirect.github.com/smallrye/smallrye-health/issues/506;>#506 
Bump io.smallrye.config:smallrye-config from 3.4.3 to 3.4.4
   https://redirect.github.com/smallrye/smallrye-health/issues/505;>#505 
Bump io.smallrye.config:smallrye-config from 3.4.1 to 3.4.3
   https://redirect.github.com/smallrye/smallrye-health/issues/504;>#504 
Bump org.eclipse.parsson:jakarta.json from 1.1.4 to 1.1.5
   https://redirect.github.com/smallrye/smallrye-health/issues/503;>#503 
Bump org.eclipse.microprofile.config:microprofile-config-api from 3.0.3 to 
3.1
   https://redirect.github.com/smallrye/smallrye-health/issues/502;>#502 
Bump io.smallrye:smallrye-parent from 41 to 42
   https://redirect.github.com/smallrye/smallrye-health/issues/501;>#501 
Bump version.smallrye.common from 2.1.2 to 2.2.0
   https://redirect.github.com/smallrye/smallrye-health/issues/500;>#500 
Bump io.smallrye.config:smallrye-config from 3.4.0 to 3.4.1
   https://redirect.github.com/smallrye/smallrye-health/issues/499;>#499 
Bump io.smallrye.reactive:mutiny from 2.5.0 to 2.5.1
   https://redirect.github.com/smallrye/smallrye-health/issues/498;>#498 
Bump io.smallrye.config:smallrye-config from 3.3.4 to 3.4.0
   https://redirect.github.com/smallrye/smallrye-health/issues/497;>#497 
Bump io.smallrye:smallrye-parent from 40 to 41
   https://redirect.github.com/smallrye/smallrye-health/issues/496;>#496 
Bump io.smallrye.reactive:mutiny from 2.4.0 to 2.5.0
   https://redirect.github.com/smallrye/smallrye-health/issues/494;>#494 
Bump version.smallrye.common from 2.1.0 to 2.1.2
   https://redirect.github.com/smallrye/smallrye-health/issues/493;>#493 
Bump io.smallrye.reactive:mutiny from 2.3.1 to 2.4.0
   https://redirect.github.com/smallrye/smallrye-health/issues/491;>#491 
Bump io.smallrye.config:smallrye-config from 3.3.3 to 3.3.4
   https://redirect.github.com/smallrye/smallrye-health/issues/488;>#488 
Investigate how to handle concurrency correctly
   
   
   
   
   Commits
   
   https://github.com/smallrye/smallrye-health/commit/eabfde8d6852a700814f6d134f0bb183c5d0b25e;>eabfde8
 [maven-release-plugin] prepare release 4.1.0
   https://github.com/smallrye/smallrye-health/commit/227f5efae9480a1fc1d2c66f3d907a072bb3a1e5;>227f5ef
 Merge pull request https://redirect.github.com/smallrye/smallrye-health/issues/513;>#513 
from smallrye/release-4.1.0
   https://github.com/smallrye/smallrye-health/commit/3d24a4730f6c7ba0b056f70dfd203b15da588f61;>3d24a47
 Release 4.1.0
   https://github.com/smallrye/smallrye-health/commit/5ea15c5ddb34160def55853ef4640d91a792a7d0;>5ea15c5
 Fix integration verification GH action
   https://github.com/smallrye/smallrye-health/commit/ec9592a474f176a17a8293e47404f655ea2fb871;>ec9592a
 Merge pull request https://redirect.github.com/smallrye/smallrye-health/issues/512;>#512 
from smallrye/dependabot/maven/io.smallrye.config-sma...
   https://github.com/smallrye/smallrye-health/commit/1572401478cfbf5ea4e3e26dd9684ed5a86e2e0a;>1572401
 Bump io.smallrye.config:smallrye-config from 3.4.4 to 3.5.1
   https://github.com/smallrye/smallrye-health/commit/fc81b65141defff8f79d9c5cd6773126208c4a52;>fc81b65
 Merge pull request https://redirect.github.com/smallrye/smallrye-health/issues/510;>#510 
from smallrye/dependabot/maven/com.googlecode.maven-d...
   https://github.com/smallrye/smallrye-health/commit/a9358d892117ebd51455e1ae0be0c7bafec15ace;>a9358d8
 Bump com.googlecode.maven-download-plugin:download-maven-plugin
   https://github.com/smallrye/smallrye-health/commit/36f8da378aeecd9bfa88dd0d3b178edead38948c;>36f8da3
 Merge pull request https://redirect.github.com/smallrye/smallrye-health/issues/509;>#509 
from smallrye/dependabot/maven/io.smallrye.reactive-m...
   https://github.com/smallrye/smallrye-health/commit/5ceed983c7e93a5db61c8d4736248e2ab3aaed1b;>5ceed98
 Bump io.smallrye.reactive:mutiny from 2.5.2 to 2.5.3
   Additional commits viewable in https://github.com/smallrye/smallrye-health/compare/4.0.4...4.1.0;>compare
 view
   
   

Re: [PR] Bump com.google.auth:google-auth-library-oauth2-http from 1.20.0 to 1.21.0 [camel]

2024-01-04 Thread via GitHub


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

   :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 com.google.auth:google-auth-library-oauth2-http from 1.20.0 to 1.21.0 [camel]

2024-01-04 Thread via GitHub


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

   /component-test google


-- 
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 com.google.auth:google-auth-library-oauth2-http from 1.20.0 to 1.21.0 [camel]

2024-01-04 Thread via GitHub


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

   :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/com.google.auth-google-auth-library-oauth2-http-1.21.0 created (now 5af32dc952b)

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

github-bot pushed a change to branch 
dependabot/maven/com.google.auth-google-auth-library-oauth2-http-1.21.0
in repository https://gitbox.apache.org/repos/asf/camel.git


  at 5af32dc952b Bump com.google.auth:google-auth-library-oauth2-http

No new revisions were added by this update.



[PR] Bump com.google.auth:google-auth-library-oauth2-http from 1.20.0 to 1.21.0 [camel]

2024-01-04 Thread via GitHub


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

   Bumps com.google.auth:google-auth-library-oauth2-http from 1.20.0 to 1.21.0.
   
   
   [![Dependabot compatibility 
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=com.google.auth:google-auth-library-oauth2-http=maven=1.20.0=1.21.0)](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



(camel) branch regen_bot updated (b42242051ab -> 2a8613a3d69)

2024-01-04 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 b42242051ab Bump huaweicloud-sdk-version from 3.1.75-patch to 3.1.76
 add 2633371885a Bump google-auth-library-oauth2-http-version from 1.20.0 
to 1.21.0
 add 2a8613a3d69 Bump org.jgroups:jgroups from 5.3.0.Final to 5.3.1.Final

No new revisions were added by this update.

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



Re: [PR] Bump io.nats:jnats from 2.17.1 to 2.17.2 [camel]

2024-01-04 Thread via GitHub


apupier merged PR #12665:
URL: https://github.com/apache/camel/pull/12665


-- 
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.jgroups-jgroups-5.3.1.Final deleted (was ee6c1d9cd3c)

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

apupier pushed a change to branch 
dependabot/maven/org.jgroups-jgroups-5.3.1.Final
in repository https://gitbox.apache.org/repos/asf/camel.git


 was ee6c1d9cd3c Bump org.jgroups:jgroups from 5.3.0.Final to 5.3.1.Final

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 dependabot/maven/io.nats-jnats-2.17.2 deleted (was 69fb48c47ed)

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

apupier pushed a change to branch dependabot/maven/io.nats-jnats-2.17.2
in repository https://gitbox.apache.org/repos/asf/camel.git


 was 69fb48c47ed Bump io.nats:jnats from 2.17.1 to 2.17.2

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 (2a8613a3d69 -> 4e2d2054190)

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

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


from 2a8613a3d69 Bump org.jgroups:jgroups from 5.3.0.Final to 5.3.1.Final
 add 4e2d2054190 Bump io.nats:jnats from 2.17.1 to 2.17.2

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 (2633371885a -> 2a8613a3d69)

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

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


from 2633371885a Bump google-auth-library-oauth2-http-version from 1.20.0 
to 1.21.0
 add 2a8613a3d69 Bump org.jgroups:jgroups from 5.3.0.Final to 5.3.1.Final

No new revisions were added by this update.

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



Re: [PR] Bump org.jgroups:jgroups from 5.3.0.Final to 5.3.1.Final [camel]

2024-01-04 Thread via GitHub


apupier merged PR #12664:
URL: https://github.com/apache/camel/pull/12664


-- 
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] Issue in VSCode Karavan Plugin [camel-karavan]

2024-01-04 Thread via GitHub


ravishankarhassain commented on issue #1045:
URL: https://github.com/apache/camel-karavan/issues/1045#issuecomment-1877577177

   I figured the problem. I havent seleted the folder to create the 
integration. Silly 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] Issue in VSCode Karavan Plugin [camel-karavan]

2024-01-04 Thread via GitHub


ravishankarhassain closed issue #1045: Issue in VSCode Karavan Plugin
URL: https://github.com/apache/camel-karavan/issues/1045


-- 
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



svn commit: r66418 - in /release/camel/camel-karavan/4.3.0: ./ camel-karavan-4.3.0.zip camel-karavan-4.3.0.zip.asc camel-karavan-4.3.0.zip.sha512

2024-01-04 Thread marat
Author: marat
Date: Thu Jan  4 17:25:50 2024
New Revision: 66418

Log:
Import camel-karavan release

Added:
release/camel/camel-karavan/4.3.0/
release/camel/camel-karavan/4.3.0/camel-karavan-4.3.0.zip   (with props)
release/camel/camel-karavan/4.3.0/camel-karavan-4.3.0.zip.asc
release/camel/camel-karavan/4.3.0/camel-karavan-4.3.0.zip.sha512

Added: release/camel/camel-karavan/4.3.0/camel-karavan-4.3.0.zip
==
Binary file - no diff available.

Propchange: release/camel/camel-karavan/4.3.0/camel-karavan-4.3.0.zip
--
svn:mime-type = application/octet-stream

Added: release/camel/camel-karavan/4.3.0/camel-karavan-4.3.0.zip.asc
==
--- release/camel/camel-karavan/4.3.0/camel-karavan-4.3.0.zip.asc (added)
+++ release/camel/camel-karavan/4.3.0/camel-karavan-4.3.0.zip.asc Thu Jan  4 
17:25:50 2024
@@ -0,0 +1,16 @@
+-BEGIN PGP SIGNATURE-
+
+iQIzBAABCAAdFiEE7hC6duO+UDoHt1ULCeTRn4/SWEgFAmWNmtUACgkQCeTRn4/S
+WEjS3RAAiAXCEz7E7TP5Zs78B1TqPyxQ5er0ntyq2q/cBMkZnVxGJCJU8getHsZb
+I1zsh7ScC/6Hk5z9xQGNgZ6B+jHjyQ3ErUmgaJcWpH/teOa+bnkKnplT0JYlbXpV
+Vo+jkZWKzE7auiQ26oV2dbVyb6mvxa9gQ0z+puQ9imqnhXfpyHUEpBtxbXq68YY1
+dkhLynRelXZXhr22NKaMYAj7gac63TpSDuAiLmwTvFwp6qKCfZ62Lhm4OF/xXg6E
+ewXwP3FZSdvN7AbHHBExBpgQeObyhXknxX+mbNsPR82iBkdTM4i/8k/gl+ppv51v
+J2at/3CPTkG/FYdGmuaTmVjVwhIGq3mquspPWLDp/u67GDCZ+B+HrJFLGXWKiR6p
+HgWbUCf3wNbbdR4X/+lPyOH+SpI83jvKaVDOEtWvgUrT4ugkft5KCnJE0LTa4eMf
+wCHEs6lmqWPZd68mWGd4YKrKUJIWfC5UFaBDEbUN3D3qR1ae0/xjAz4nUcPHIGyl
+nhfpdSTICpBGHNS13gRkLkTSJaugc7lkUZjPrzMoRyXTxHL3CQE2BYd5mRP695hh
+Ig4eGX7+0B4Z20o5YYsUtD0e9T6t83IFQhZ2PV0+60hISY03UkKqJyJ1PbDee4KF
+R/I8O08DVYkGsApbEHUs99t0DLdIyXnczwnNBNPLeBmzsheLfvI=
+=kBEI
+-END PGP SIGNATURE-

Added: release/camel/camel-karavan/4.3.0/camel-karavan-4.3.0.zip.sha512
==
--- release/camel/camel-karavan/4.3.0/camel-karavan-4.3.0.zip.sha512 (added)
+++ release/camel/camel-karavan/4.3.0/camel-karavan-4.3.0.zip.sha512 Thu Jan  4 
17:25:50 2024
@@ -0,0 +1,3 @@
+camel-karavan-4.3.0.zip: 1BC26B67 0391359F DEE1B13F C546B47B 110A873C F3396191
+ C641E0FE 89370E83 51BA9A2A 1B459687 9A4E4D6C 75B6B6A8
+ F7C751CA 82DC1C5E A58824CC ED98F20C




(camel) branch regen_bot updated (a8917e8920c -> b42242051ab)

2024-01-04 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 a8917e8920c (chores) Avoid unnecessary hits to the exchange UUID 
Generator
 add 6ddeeafd2a5 CAMEL-20296: component-test - Exclude IT folders (#12660)
 add b42242051ab Bump huaweicloud-sdk-version from 3.1.75-patch to 3.1.76

No new revisions were added by this update.

Summary of changes:
 .github/actions/component-test/component-test.sh | 4 ++--
 parent/pom.xml   | 2 +-
 2 files changed, 3 insertions(+), 3 deletions(-)



Re: [PR] Bump org.jgroups:jgroups from 5.3.0.Final to 5.3.1.Final [camel]

2024-01-04 Thread via GitHub


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

   :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 io.nats:jnats from 2.17.1 to 2.17.2 [camel]

2024-01-04 Thread via GitHub


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

   :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 io.nats:jnats from 2.17.1 to 2.17.2 [camel]

2024-01-04 Thread via GitHub


apupier commented on PR #12665:
URL: https://github.com/apache/camel/pull/12665#issuecomment-1877421716

   /component-test nats


-- 
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.jgroups:jgroups from 5.3.0.Final to 5.3.1.Final [camel]

2024-01-04 Thread via GitHub


apupier commented on PR #12664:
URL: https://github.com/apache/camel/pull/12664#issuecomment-1877420687

   /component-test jgroups jgroups-raft


-- 
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/google-auth-library-oauth2-http-version-1.21.0 deleted (was da9e66e1e7d)

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

github-bot pushed a change to branch 
dependabot/maven/google-auth-library-oauth2-http-version-1.21.0
in repository https://gitbox.apache.org/repos/asf/camel.git


 was da9e66e1e7d Bump google-auth-library-oauth2-http-version from 1.20.0 
to 1.21.0

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 (b42242051ab -> 2633371885a)

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

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


from b42242051ab Bump huaweicloud-sdk-version from 3.1.75-patch to 3.1.76
 add 2633371885a Bump google-auth-library-oauth2-http-version from 1.20.0 
to 1.21.0

No new revisions were added by this update.

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



Re: [PR] Bump google-auth-library-oauth2-http-version from 1.20.0 to 1.21.0 [camel]

2024-01-04 Thread via GitHub


apupier merged PR #12662:
URL: https://github.com/apache/camel/pull/12662


-- 
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/huaweicloud-sdk-version-3.1.76 deleted (was 92a95fba975)

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

apupier pushed a change to branch 
dependabot/maven/huaweicloud-sdk-version-3.1.76
in repository https://gitbox.apache.org/repos/asf/camel.git


 was 92a95fba975 Bump huaweicloud-sdk-version from 3.1.75-patch to 3.1.76

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 (6ddeeafd2a5 -> b42242051ab)

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

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


from 6ddeeafd2a5 CAMEL-20296: component-test - Exclude IT folders (#12660)
 add b42242051ab Bump huaweicloud-sdk-version from 3.1.75-patch to 3.1.76

No new revisions were added by this update.

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



Re: [PR] Bump huaweicloud-sdk-version from 3.1.75-patch to 3.1.76 [camel]

2024-01-04 Thread via GitHub


apupier merged PR #12661:
URL: https://github.com/apache/camel/pull/12661


-- 
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 io.nats:jnats from 2.17.1 to 2.17.2 [camel]

2024-01-04 Thread via GitHub


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

   :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/io.nats-jnats-2.17.2 created (now 69fb48c47ed)

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

github-bot pushed a change to branch dependabot/maven/io.nats-jnats-2.17.2
in repository https://gitbox.apache.org/repos/asf/camel.git


  at 69fb48c47ed Bump io.nats:jnats from 2.17.1 to 2.17.2

No new revisions were added by this update.



[PR] Bump io.nats:jnats from 2.17.1 to 2.17.2 [camel]

2024-01-04 Thread via GitHub


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

   Bumps [io.nats:jnats](https://github.com/nats-io/nats.java) from 2.17.1 to 
2.17.2.
   
   Release notes
   Sourced from https://github.com/nats-io/nats.java/releases;>io.nats:jnats's 
releases.
   
   2.17.2 Robustness and recovery
   Core
   
   Support StreamConfiguration creation from JSON https://redirect.github.com/nats-io/nats.java/issues/1023;>#1023 https://github.com/senior;>@​senior
   TimeoutException instead of CancellationException on timeout https://redirect.github.com/nats-io/nats.java/issues/1031;>#1031 https://github.com/maximbreitman;>@​maximbreitman
   Message Headers Improvement https://redirect.github.com/nats-io/nats.java/issues/1054;>#1054 https://github.com/scottf;>@​scottf
   
   JetStream
   
   Pull Request Validate Idle Heartbeat Against Expiration https://redirect.github.com/nats-io/nats.java/issues/1036;>#1036 https://github.com/scottf;>@​scottf
   Client side consumer recovery https://redirect.github.com/nats-io/nats.java/issues/1043;>#1043 https://github.com/scottf;>@​scottf
   Ensure robustness b/w compatible with server 2.8.4 https://redirect.github.com/nats-io/nats.java/issues/1046;>#1046 https://github.com/scottf;>@​scottf
   Chaos Testing Tuning https://redirect.github.com/nats-io/nats.java/issues/1055;>#1055 https://github.com/scottf;>@​scottf
   
   Extensions (KV / OS / Service)
   
   KV and OS Compression and Metadata https://redirect.github.com/nats-io/nats.java/issues/1034;>#1034 https://github.com/scottf;>@​scottf
   
   Docs / Testing / Examples / Etc.
   
   Initialize SocketDataPort directly https://redirect.github.com/nats-io/nats.java/issues/1022;>#1022 https://github.com/scottf;>@​scottf
   Add dockerfile for compatibility tests https://redirect.github.com/nats-io/nats.java/issues/1024;>#1024 https://github.com/piotrpio;>@​piotrpio
   Update jnats-server-runner to 1.2.6 https://redirect.github.com/nats-io/nats.java/issues/1027;>#1027 https://github.com/scottf;>@​scottf
   Auth Test Improvement https://redirect.github.com/nats-io/nats.java/issues/1028;>#1028 https://github.com/scottf;>@​scottf
   Test Base Tuning https://redirect.github.com/nats-io/nats.java/issues/1030;>#1030 https://github.com/scottf;>@​scottf
   Publish Expectations Test for JetStream API Code https://redirect.github.com/nats-io/nats.java/issues/1032;>#1032 https://github.com/scottf;>@​scottf
   More Tests for recent NatsRequestCompletableFuture enhancement https://redirect.github.com/nats-io/nats.java/issues/1035;>#1035 https://github.com/scottf;>@​scottf
   Add nats by example link https://redirect.github.com/nats-io/nats.java/issues/1037;>#1037 https://github.com/Jarema;>@​Jarema
   Improve test for real user authentication expired https://redirect.github.com/nats-io/nats.java/issues/1040;>#1040 https://github.com/scottf;>@​scottf
   Update readme / better subject validation notes https://redirect.github.com/nats-io/nats.java/issues/1047;>#1047 https://github.com/scottf;>@​scottf
   Fetch Resilient Example https://redirect.github.com/nats-io/nats.java/issues/1048;>#1048 https://github.com/scottf;>@​scottf
   Refactoring and improving example code. https://redirect.github.com/nats-io/nats.java/issues/1049;>#1049 https://github.com/scottf;>@​scottf
   
   
   
   
   Changelog
   Sourced from https://github.com/nats-io/nats.java/blob/main/CHANGELOG.md;>io.nats:jnats's
 changelog.
   
   2.17.2
   Robustness and recovery
   Core
   
   Support StreamConfiguration creation from JSON https://redirect.github.com/nats-io/nats.java/issues/1023;>#1023 https://github.com/senior;>@​senior
   TimeoutException instead of CancellationException on timeout https://redirect.github.com/nats-io/nats.java/issues/1031;>#1031 https://github.com/maximbreitman;>@​maximbreitman
   Message Headers Improvement https://redirect.github.com/nats-io/nats.java/issues/1054;>#1054 https://github.com/scottf;>@​scottf
   
   JetStream
   
   Pull Request Validate Idle Heartbeat Against Expiration https://redirect.github.com/nats-io/nats.java/issues/1036;>#1036 https://github.com/scottf;>@​scottf
   Client side consumer recovery https://redirect.github.com/nats-io/nats.java/issues/1043;>#1043 https://github.com/scottf;>@​scottf
   Ensure robustness b/w compatible with server 2.8.4 https://redirect.github.com/nats-io/nats.java/issues/1046;>#1046 https://github.com/scottf;>@​scottf
   Chaos Testing Tuning https://redirect.github.com/nats-io/nats.java/issues/1055;>#1055 https://github.com/scottf;>@​scottf
   
   Extensions (KV / OS / Service)
   
   KV and OS Compression and Metadata https://redirect.github.com/nats-io/nats.java/issues/1034;>#1034 https://github.com/scottf;>@​scottf
   
   Docs / Testing / Examples / Etc.
   
   Initialize SocketDataPort directly https://redirect.github.com/nats-io/nats.java/issues/1022;>#1022 https://github.com/scottf;>@​scottf
   Add dockerfile for compatibility tests 

(camel) branch dependabot/maven/org.jgroups-jgroups-5.3.1.Final created (now ee6c1d9cd3c)

2024-01-04 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.jgroups-jgroups-5.3.1.Final
in repository https://gitbox.apache.org/repos/asf/camel.git


  at ee6c1d9cd3c Bump org.jgroups:jgroups from 5.3.0.Final to 5.3.1.Final

No new revisions were added by this update.



Re: [PR] Bump org.jgroups:jgroups from 5.3.0.Final to 5.3.1.Final [camel]

2024-01-04 Thread via GitHub


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

   :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



[PR] Bump org.jgroups:jgroups from 5.3.0.Final to 5.3.1.Final [camel]

2024-01-04 Thread via GitHub


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

   Bumps [org.jgroups:jgroups](https://github.com/belaban/JGroups) from 
5.3.0.Final to 5.3.1.Final.
   
   Commits
   
   https://github.com/belaban/JGroups/commit/74576de89427cc33eac5f212300990d50e3948b3;>74576de
 [maven-release-plugin] prepare release jgroups-5.3.1.Final
   https://github.com/belaban/JGroups/commit/1a535a4596506dc82e85b43659b66e46a94b05c8;>1a535a4
 - RelayTest: timeout 200'000 - 2'000
   https://github.com/belaban/JGroups/commit/3e8ce613ea7bd05ed261f73d5b6ca46e73b45a11;>3e8ce61
 ns
   https://github.com/belaban/JGroups/commit/3c1dc5cc620d3b2a662322fa1821ae7d6fa6e82e;>3c1dc5c
 Merge pull request https://redirect.github.com/belaban/JGroups/issues/758;>#758 from 
rhusar/maven-build
   https://github.com/belaban/JGroups/commit/cc719c121fb996470aaebe01ac4e2ede660ab300;>cc719c1
 Caching interfaces and addresses (https://issues.redhat.com/browse/JGRP-2739;>https://issues.redhat.com/browse/JGRP-2739)
   https://github.com/belaban/JGroups/commit/85e203921cf05eb270338bb7b4a68aa7a73d9400;>85e2039
 Fixed NPE in https://issues.redhat.com/browse/JGRP-2732;>https://issues.redhat.com/browse/JGRP-2732
   https://github.com/belaban/JGroups/commit/bfbe37a9ab598b7528c1d89a01e60f0ffb8c9359;>bfbe37a
 ns
   https://github.com/belaban/JGroups/commit/254cfefe133eefeda2f511cb6eb82574bdfddbf4;>254cfef
 - Store headers in RelayHeader before routing and restore on reception 
(RELAY...
   https://github.com/belaban/JGroups/commit/df1ee90501b30cfdf8852a8f09d7e621c154b405;>df1ee90
 Merge pull request https://redirect.github.com/belaban/JGroups/issues/757;>#757 from 
belaban/dependabot/maven/org.apache.logging.log4...
   https://github.com/belaban/JGroups/commit/7bb6ed70aaea5068bbe12b22fde743abe54a082f;>7bb6ed7
 Bump org.apache.logging.log4j:log4j-core from 2.22.0 to 2.22.1
   Additional commits viewable in https://github.com/belaban/JGroups/compare/jgroups-5.3.0.Final...jgroups-5.3.1.Final;>compare
 view
   
   
   
   
   
   [![Dependabot compatibility 
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=org.jgroups:jgroups=maven=5.3.0.Final=5.3.1.Final)](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



[PR] (chores) camel-core: use a lambda for better readability in AbstractCamelContext [camel]

2024-01-04 Thread via GitHub


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

   (no comment)


-- 
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] (chores) camel-core: use a lambda for better readability in AbstractCamelContext [camel]

2024-01-04 Thread via GitHub


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

   :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



Re: [PR] Bump google-auth-library-oauth2-http-version from 1.20.0 to 1.21.0 [camel]

2024-01-04 Thread via GitHub


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

   :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 huaweicloud-sdk-version from 3.1.75-patch to 3.1.76 [camel]

2024-01-04 Thread via GitHub


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

   :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 google-auth-library-oauth2-http-version from 1.20.0 to 1.21.0 [camel]

2024-01-04 Thread via GitHub


apupier commented on PR #12662:
URL: https://github.com/apache/camel/pull/12662#issuecomment-1877367135

   /component-test google grpc


-- 
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 huaweicloud-sdk-version from 3.1.75-patch to 3.1.76 [camel]

2024-01-04 Thread via GitHub


apupier commented on PR #12661:
URL: https://github.com/apache/camel/pull/12661#issuecomment-1877366292

   /component-test huawei


-- 
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



  1   2   3   >