(camel-quarkus) branch quarkus-main updated (b65d60be1f -> ad4fa50acc)

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

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


 discard b65d60be1f Disable MyBatis integration tests due to #5656
 discard 7825f614db Upgrade Quarkus to 3.9.0.CR1
 add 173d909631 Adding a rebase step into github action 
integration-tests-alternative-jdk
 add e7ea089a8a Upgrade to Quarkus CXF 2.7.0.CR2
 new 41c96c9a24 Upgrade Quarkus to 3.9.0.CR1
 new ad4fa50acc Disable MyBatis integration tests due to #5656

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   (b65d60be1f)
\
 N -- N -- N   refs/heads/quarkus-main (ad4fa50acc)

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:
 .github/workflows/camel-master-cron.yaml   |   6 +
 .github/workflows/quarkus-master-cron.yaml |   6 +
 .../jackson-dataformat-xml/deployment/pom.xml  |   4 +
 .../JacksonDataformatXmlSupportProcessor.java  |  27 +-
 .../jackson-dataformat-xml/runtime/pom.xml |   4 +
 pom.xml|   2 +-
 poms/bom/src/main/generated/flattened-full-pom.xml | 521 +++--
 .../src/main/generated/flattened-reduced-pom.xml   |  67 ++-
 .../generated/flattened-reduced-verbose-pom.xml| 521 +++--
 9 files changed, 611 insertions(+), 547 deletions(-)



(camel-quarkus) 02/02: Disable MyBatis integration tests due to #5656

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

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

commit ad4fa50acc27b3e997bd46e62a0da89d1b32fb8c
Author: James Netherton 
AuthorDate: Fri Jan 19 07:24:18 2024 +

Disable MyBatis integration tests due to #5656
---
 .../apache/camel/quarkus/component/mybatis/it/MyBatisConsumerTest.java  | 2 ++
 .../java/org/apache/camel/quarkus/component/mybatis/it/MyBatisIT.java   | 2 ++
 .../java/org/apache/camel/quarkus/component/mybatis/it/MyBatisTest.java | 2 ++
 3 files changed, 6 insertions(+)

diff --git 
a/integration-tests/mybatis/src/test/java/org/apache/camel/quarkus/component/mybatis/it/MyBatisConsumerTest.java
 
b/integration-tests/mybatis/src/test/java/org/apache/camel/quarkus/component/mybatis/it/MyBatisConsumerTest.java
index f1e8f4673b..17bd941adf 100644
--- 
a/integration-tests/mybatis/src/test/java/org/apache/camel/quarkus/component/mybatis/it/MyBatisConsumerTest.java
+++ 
b/integration-tests/mybatis/src/test/java/org/apache/camel/quarkus/component/mybatis/it/MyBatisConsumerTest.java
@@ -27,11 +27,13 @@ import io.restassured.RestAssured;
 import io.restassured.path.json.JsonPath;
 import org.apache.camel.quarkus.component.mybatis.it.entity.Account;
 import org.awaitility.Awaitility;
+import org.junit.jupiter.api.Disabled;
 import org.junit.jupiter.api.Test;
 
 import static io.restassured.RestAssured.given;
 import static org.hamcrest.Matchers.is;
 
+@Disabled("https://github.com/apache/camel-quarkus/issues/5656;)
 @QuarkusTest
 @QuarkusTestResource(H2DatabaseTestResource.class)
 public class MyBatisConsumerTest {
diff --git 
a/integration-tests/mybatis/src/test/java/org/apache/camel/quarkus/component/mybatis/it/MyBatisIT.java
 
b/integration-tests/mybatis/src/test/java/org/apache/camel/quarkus/component/mybatis/it/MyBatisIT.java
index 5fe3170c5b..fbcc61ce49 100644
--- 
a/integration-tests/mybatis/src/test/java/org/apache/camel/quarkus/component/mybatis/it/MyBatisIT.java
+++ 
b/integration-tests/mybatis/src/test/java/org/apache/camel/quarkus/component/mybatis/it/MyBatisIT.java
@@ -17,7 +17,9 @@
 package org.apache.camel.quarkus.component.mybatis.it;
 
 import io.quarkus.test.junit.QuarkusIntegrationTest;
+import org.junit.jupiter.api.Disabled;
 
+@Disabled("https://github.com/apache/camel-quarkus/issues/5656;)
 @QuarkusIntegrationTest
 public class MyBatisIT extends MyBatisTest {
 }
diff --git 
a/integration-tests/mybatis/src/test/java/org/apache/camel/quarkus/component/mybatis/it/MyBatisTest.java
 
b/integration-tests/mybatis/src/test/java/org/apache/camel/quarkus/component/mybatis/it/MyBatisTest.java
index e9f9bcc457..2cb6a7ee90 100644
--- 
a/integration-tests/mybatis/src/test/java/org/apache/camel/quarkus/component/mybatis/it/MyBatisTest.java
+++ 
b/integration-tests/mybatis/src/test/java/org/apache/camel/quarkus/component/mybatis/it/MyBatisTest.java
@@ -28,10 +28,12 @@ import io.quarkus.test.junit.QuarkusTest;
 import io.restassured.RestAssured;
 import io.restassured.http.ContentType;
 import org.apache.camel.quarkus.component.mybatis.it.entity.Account;
+import org.junit.jupiter.api.Disabled;
 import org.junit.jupiter.api.Test;
 
 import static org.hamcrest.Matchers.equalTo;
 
+@Disabled("https://github.com/apache/camel-quarkus/issues/5656;)
 @QuarkusTest
 @QuarkusTestResource(H2DatabaseTestResource.class)
 public class MyBatisTest {



(camel-quarkus) 01/02: Upgrade Quarkus to 3.9.0.CR1

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

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

commit 41c96c9a248e9af02c43b36cef425a7289452a1c
Author: James Netherton 
AuthorDate: Thu Jan 18 07:33:21 2024 +

Upgrade Quarkus to 3.9.0.CR1
---
 docs/antora.yml | 2 +-
 pom.xml | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/docs/antora.yml b/docs/antora.yml
index d61d512f4c..9b4afeb1a5 100644
--- a/docs/antora.yml
+++ b/docs/antora.yml
@@ -31,7 +31,7 @@ asciidoc:
 camel-version: 4.3.0 # replace ${camel.version}
 camel-docs-version: next
 camel-quarkus-version: 3.7.0 # replace ${camel-quarkus.version}
-quarkus-version: 3.7.0.CR1 # 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 a498de00ab..03b41849ed 100644
--- a/pom.xml
+++ b/pom.xml
@@ -61,7 +61,7 @@
 2.2.0
 
2.3.0
 2.0.2
-3.7.0.CR1
+999-SNAPSHOT
 
4.0.0
 2.5.0
 



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

2024-01-19 Thread via GitHub


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

   Build fixed with:
   
   * Camel Quarkus Commit: ad4fa50acc27b3e997bd46e62a0da89d1b32fb8c
   
   * Quarkus Main Commit: e7ea089a8a1e49ceb559f6ba1d68194082bca937
   * Link to build: 
https://github.com/apache/camel-quarkus/actions/runs/7591484700


-- 
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-19 Thread via GitHub


github-actions[bot] closed issue #2926: [CI] - Quarkus Main Branch Build Failure
URL: https://github.com/apache/camel-quarkus/issues/2926


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

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

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



(camel-kamelets) branch main updated: Updated CHANGELOG.md

2024-01-19 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-kamelets.git


The following commit(s) were added to refs/heads/main by this push:
 new e56aeb40 Updated CHANGELOG.md
e56aeb40 is described below

commit e56aeb40ac603a9a0ff67375427b447c60b88030
Author: github-actions[bot] 
<41898282+github-actions[bot]@users.noreply.github.com>
AuthorDate: Sat Jan 20 03:09:29 2024 +

Updated CHANGELOG.md
---
 CHANGELOG.md | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/CHANGELOG.md b/CHANGELOG.md
index 0f6b8100..6c7dff83 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -8,6 +8,8 @@
 
 - Artemis JMS kamelet should use artemis dependency 
[\#1836](https://github.com/apache/camel-kamelets/issues/1836)
 - Upgrade 4.0.x to Camel 4.0.3 
[\#1831](https://github.com/apache/camel-kamelets/issues/1831)
+- Kamelet with id aws-s3-source not found in locations: 
file:/etc/camel/kamelets/kamelets-bundle-aws-s3-source-pipe-001,classpath:/kamelets
 [\#1785](https://github.com/apache/camel-kamelets/issues/1785)
+- Missing data type transformer from null to type 
camel:azure-storage-blob:application-cloudevents on the exchange 
[\#1777](https://github.com/apache/camel-kamelets/issues/1777)
 
 ## [v4.0.3](https://github.com/apache/camel-kamelets/tree/v4.0.3) (2024-01-17)
 



(camel-k) branch release-2.2.x updated: chore: changelog automatic update

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


The following commit(s) were added to refs/heads/release-2.2.x by this push:
 new 7610b06e8 chore: changelog automatic update
7610b06e8 is described below

commit 7610b06e897be356c875a2885859573175cfe429
Author: github-actions[bot] 
<41898282+github-actions[bot]@users.noreply.github.com>
AuthorDate: Sat Jan 20 01:12:36 2024 +

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

diff --git a/CHANGELOG.md b/CHANGELOG.md
index 137103944..fd57abd00 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -9,6 +9,7 @@
 - Ability to set different resources for jvm and native containers when both 
are used in the same Integration 
[\#5065](https://github.com/apache/camel-k/issues/5065)
 - Don't run dependabot on forked repos 
[\#5063](https://github.com/apache/camel-k/issues/5063)
 - Operator 2.2.0 does not spawn builder pod with strategy: pod 
[\#5060](https://github.com/apache/camel-k/issues/5060)
+- Run a different set of checks for java dependencies 
[\#5054](https://github.com/apache/camel-k/issues/5054)
 - Support component scheme prefix in data type references 
[\#5048](https://github.com/apache/camel-k/issues/5048)
 - Need to update CEQ service discovery setting for data type transformer 
[\#5047](https://github.com/apache/camel-k/issues/5047)
 - Nightly check against latest runtime failure 
[\#5042](https://github.com/apache/camel-k/issues/5042)



(camel-k) branch release-2.1.x updated: chore: changelog automatic update

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

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


The following commit(s) were added to refs/heads/release-2.1.x by this push:
 new 4ecb8a953 chore: changelog automatic update
4ecb8a953 is described below

commit 4ecb8a953b2459df541802cd0a68adcb58149a18
Author: github-actions[bot] 
<41898282+github-actions[bot]@users.noreply.github.com>
AuthorDate: Sat Jan 20 00:30:25 2024 +

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

diff --git a/CHANGELOG.md b/CHANGELOG.md
index 137103944..fd57abd00 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -9,6 +9,7 @@
 - Ability to set different resources for jvm and native containers when both 
are used in the same Integration 
[\#5065](https://github.com/apache/camel-k/issues/5065)
 - Don't run dependabot on forked repos 
[\#5063](https://github.com/apache/camel-k/issues/5063)
 - Operator 2.2.0 does not spawn builder pod with strategy: pod 
[\#5060](https://github.com/apache/camel-k/issues/5060)
+- Run a different set of checks for java dependencies 
[\#5054](https://github.com/apache/camel-k/issues/5054)
 - Support component scheme prefix in data type references 
[\#5048](https://github.com/apache/camel-k/issues/5048)
 - Need to update CEQ service discovery setting for data type transformer 
[\#5047](https://github.com/apache/camel-k/issues/5047)
 - Nightly check against latest runtime failure 
[\#5042](https://github.com/apache/camel-k/issues/5042)



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

2024-01-19 Thread via GitHub


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

   The [camel-main](https://github.com/apache/camel-quarkus/tree/camel-main) 
branch build has failed:
   
   * Build ID: 7590655996-1263-92bcfa7e-f829-4e1b-bad2-61fd61d2059a
   * Camel Quarkus Commit: 4c20984ca1914fcc8fe9d79f2e0d77a94956bda4
   
   * Camel Main Commit: e7ea089a8a1e49ceb559f6ba1d68194082bca937
   * Link to build: 
https://github.com/apache/camel-quarkus/actions/runs/7590655996


-- 
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] [Github Actions] Periodic Sync Camel Spring Boot (Camel 4) [camel-spring-boot]

2024-01-19 Thread via GitHub


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

   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) branch main updated: chore: nightly automatic updates

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


The following commit(s) were added to refs/heads/main by this push:
 new 6edaaf8ed chore: nightly automatic updates
6edaaf8ed is described below

commit 6edaaf8ed03eef240a7ad396c61abb182d937360
Author: github-actions[bot] 
<41898282+github-actions[bot]@users.noreply.github.com>
AuthorDate: Fri Jan 19 23:47:41 2024 +

chore: nightly automatic updates
---
 CHANGELOG.md | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/CHANGELOG.md b/CHANGELOG.md
index 8e54114e7..dfd846430 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -9,6 +9,7 @@
 - Ability to set different resources for jvm and native containers when both 
are used in the same Integration 
[\#5065](https://github.com/apache/camel-k/issues/5065)
 - Don't run dependabot on forked repos 
[\#5063](https://github.com/apache/camel-k/issues/5063)
 - Operator 2.2.0 does not spawn builder pod with strategy: pod 
[\#5060](https://github.com/apache/camel-k/issues/5060)
+- Run a different set of checks for java dependencies 
[\#5054](https://github.com/apache/camel-k/issues/5054)
 - Support component scheme prefix in data type references 
[\#5048](https://github.com/apache/camel-k/issues/5048)
 - Need to update CEQ service discovery setting for data type transformer 
[\#5047](https://github.com/apache/camel-k/issues/5047)
 - Nightly check against latest runtime failure 
[\#5042](https://github.com/apache/camel-k/issues/5042)
@@ -26,6 +27,8 @@
 
 **Merged pull requests:**
 
+- feat\(ci\): Run specific action for java code 
[\#5083](https://github.com/apache/camel-k/pull/5083) 
([gansheer](https://github.com/gansheer))
+- chore\(deps\): bump k8s.io/klog/v2 from 2.120.0 to 2.120.1 
[\#5082](https://github.com/apache/camel-k/pull/5082) 
([dependabot[bot]](https://github.com/apps/dependabot))
 - chore\(ci\): nightly quarkus native only on main branch 
[\#5081](https://github.com/apache/camel-k/pull/5081) 
([squakez](https://github.com/squakez))
 - chore\(deps\): bump github.com/evanphx/json-patch from 5.8.0+incompatible to 
5.8.1+incompatible [\#5079](https://github.com/apache/camel-k/pull/5079) 
([dependabot[bot]](https://github.com/apps/dependabot))
 - chore\(deps\): bump github.com/onsi/gomega from 1.30.0 to 1.31.0 
[\#5078](https://github.com/apache/camel-k/pull/5078) 
([dependabot[bot]](https://github.com/apps/dependabot))



(camel-k-runtime) branch main updated: chore: update changelog

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


The following commit(s) were added to refs/heads/main by this push:
 new 93096160 chore: update changelog
93096160 is described below

commit 9309616079d2a61275fa796a052c86312b2a8f89
Author: github-actions[bot] 
<41898282+github-actions[bot]@users.noreply.github.com>
AuthorDate: Fri Jan 19 23:34:53 2024 +

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

diff --git a/CHANGELOG.md b/CHANGELOG.md
index 0f3757f1..939decdc 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -6,6 +6,7 @@
 
 **Merged pull requests:**
 
+- build\(deps\): bump actions/dependency-review-action from 3 to 4 
[\#1153](https://github.com/apache/camel-k-runtime/pull/1153) 
([dependabot[bot]](https://github.com/apps/dependabot))
 - build\(deps\): bump org.cyclonedx:cyclonedx-maven-plugin from 2.7.10 to 
2.7.11 [\#1152](https://github.com/apache/camel-k-runtime/pull/1152) 
([dependabot[bot]](https://github.com/apps/dependabot))
 - build\(deps\): bump org.apache.maven.plugin-tools:maven-plugin-annotations 
from 3.10.2 to 3.11.0 
[\#1150](https://github.com/apache/camel-k-runtime/pull/1150) 
([dependabot[bot]](https://github.com/apps/dependabot))
 - build\(deps\): bump org.apache.maven.plugins:maven-failsafe-plugin from 
3.2.3 to 3.2.5 [\#1149](https://github.com/apache/camel-k-runtime/pull/1149) 
([dependabot[bot]](https://github.com/apps/dependabot))



(camel-quarkus) branch dependabot/maven/io.quarkiverse.amazonservices-quarkus-amazon-services-bom-2.10.1 updated (77089545e0 -> 2bff9756db)

2024-01-19 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.quarkiverse.amazonservices-quarkus-amazon-services-bom-2.10.1
in repository https://gitbox.apache.org/repos/asf/camel-quarkus.git


from 77089545e0 Bump 
io.quarkiverse.amazonservices:quarkus-amazon-services-bom
 add 2bff9756db Auto generated changes for dependabot commit 
77089545e0c3d945ec328092688fb370d6367aa0

No new revisions were added by this update.

Summary of changes:
 pom.xml|4 +-
 poms/bom/src/main/generated/flattened-full-pom.xml | 2471 ++--
 .../src/main/generated/flattened-reduced-pom.xml   |   98 +-
 .../generated/flattened-reduced-verbose-pom.xml|  282 +--
 4 files changed, 1430 insertions(+), 1425 deletions(-)



Re: [PR] Bump io.quarkiverse.amazonservices:quarkus-amazon-services-bom from 2.7.3 to 2.10.1 [camel-quarkus]

2024-01-19 Thread via GitHub


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

   Branch auto synchronized due to changes in generated files. New workflow run 
triggered:
   
   https://github.com/apache/camel-quarkus/actions/runs/7589743731


-- 
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.quarkiverse.amazonservices:quarkus-amazon-services-bom from 2.7.3 to 2.10.0 [camel-quarkus]

2024-01-19 Thread via GitHub


dependabot[bot] commented on PR #5647:
URL: https://github.com/apache/camel-quarkus/pull/5647#issuecomment-1901194214

   Superseded by #5659.


-- 
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.quarkiverse.amazonservices:quarkus-amazon-services-bom from 2.7.3 to 2.10.0 [camel-quarkus]

2024-01-19 Thread via GitHub


dependabot[bot] closed pull request #5647: Bump 
io.quarkiverse.amazonservices:quarkus-amazon-services-bom from 2.7.3 to 2.10.0
URL: https://github.com/apache/camel-quarkus/pull/5647


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

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

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



(camel-quarkus) branch dependabot/maven/io.quarkiverse.amazonservices-quarkus-amazon-services-bom-2.10.1 created (now 77089545e0)

2024-01-19 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.quarkiverse.amazonservices-quarkus-amazon-services-bom-2.10.1
in repository https://gitbox.apache.org/repos/asf/camel-quarkus.git


  at 77089545e0 Bump 
io.quarkiverse.amazonservices:quarkus-amazon-services-bom

No new revisions were added by this update.



(camel-quarkus) branch dependabot/maven/io.quarkiverse.amazonservices-quarkus-amazon-services-bom-2.10.0 deleted (was d737c03754)

2024-01-19 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.quarkiverse.amazonservices-quarkus-amazon-services-bom-2.10.0
in repository https://gitbox.apache.org/repos/asf/camel-quarkus.git


 was d737c03754 Auto generated changes for dependabot commit 
8cd503f79caf77479040741268072d876f9decae

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



[PR] Bump io.quarkiverse.amazonservices:quarkus-amazon-services-bom from 2.7.3 to 2.10.1 [camel-quarkus]

2024-01-19 Thread via GitHub


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

   Bumps 
[io.quarkiverse.amazonservices:quarkus-amazon-services-bom](https://github.com/quarkiverse/quarkus-amazon-services)
 from 2.7.3 to 2.10.1.
   
   Release notes
   Sourced from https://github.com/quarkiverse/quarkus-amazon-services/releases;>io.quarkiverse.amazonservices:quarkus-amazon-services-bom's
 releases.
   
   2.10.1
   What's Changed
   
   feat: add support for s3 crt client by https://github.com/scrocquesel;>@​scrocquesel in https://redirect.github.com/quarkiverse/quarkus-amazon-services/pull/1068;>quarkiverse/quarkus-amazon-services#1068
   fix: runtime initialized types dependent on CRT by https://github.com/scrocquesel;>@​scrocquesel in https://redirect.github.com/quarkiverse/quarkus-amazon-services/pull/1087;>quarkiverse/quarkus-amazon-services#1087
   chore: release 2.10.1 by https://github.com/scrocquesel;>@​scrocquesel in https://redirect.github.com/quarkiverse/quarkus-amazon-services/pull/1091;>quarkiverse/quarkus-amazon-services#1091
   
   Full Changelog: https://github.com/quarkiverse/quarkus-amazon-services/compare/2.10.0...2.10.1;>https://github.com/quarkiverse/quarkus-amazon-services/compare/2.10.0...2.10.1
   2.10.0
   Major changes
   Introduce support for aws crt-based sync clients.
   What's Changed
   
   build(deps): bump quarkus.version from 3.6.4 to 3.6.5 by https://github.com/dependabot;>@​dependabot in https://redirect.github.com/quarkiverse/quarkus-amazon-services/pull/1077;>quarkiverse/quarkus-amazon-services#1077
   feat: add support for aws crt-based sync client by https://github.com/scrocquesel;>@​scrocquesel in https://redirect.github.com/quarkiverse/quarkus-amazon-services/pull/1075;>quarkiverse/quarkus-amazon-services#1075
   chore: release 2.10.0 by https://github.com/scrocquesel;>@​scrocquesel in https://redirect.github.com/quarkiverse/quarkus-amazon-services/pull/1080;>quarkiverse/quarkus-amazon-services#1080
   
   Full Changelog: https://github.com/quarkiverse/quarkus-amazon-services/compare/2.9.1...2.10.0;>https://github.com/quarkiverse/quarkus-amazon-services/compare/2.9.1...2.10.0
   2.9.1
   What's Changed
   
   fix: declare dynamically resolved CrtRuntimeException ctor by https://github.com/scrocquesel;>@​scrocquesel in https://redirect.github.com/quarkiverse/quarkus-amazon-services/pull/1076;>quarkiverse/quarkus-amazon-services#1076
   build(deps): bump software.amazon.awssdk.crt:aws-crt from 0.29.4 to 
0.29.6 by https://github.com/dependabot;>@​dependabot 
in https://redirect.github.com/quarkiverse/quarkus-amazon-services/pull/1071;>quarkiverse/quarkus-amazon-services#1071
   build(deps): bump software.amazon.awssdk:bom from 2.22.9 to 2.22.13 by 
https://github.com/dependabot;>@​dependabot in https://redirect.github.com/quarkiverse/quarkus-amazon-services/pull/1073;>quarkiverse/quarkus-amazon-services#1073
   build(deps): bump software.amazon.awssdk:bom from 2.22.13 to 2.23.0 by 
https://github.com/dependabot;>@​dependabot in https://redirect.github.com/quarkiverse/quarkus-amazon-services/pull/1078;>quarkiverse/quarkus-amazon-services#1078
   chore: release 2.9.1 by https://github.com/scrocquesel;>@​scrocquesel in https://redirect.github.com/quarkiverse/quarkus-amazon-services/pull/1079;>quarkiverse/quarkus-amazon-services#1079
   
   Full Changelog: https://github.com/quarkiverse/quarkus-amazon-services/compare/2.9.0...2.9.1;>https://github.com/quarkiverse/quarkus-amazon-services/compare/2.9.0...2.9.1
   2.9.0
   Major changes
   
   Add new extensions: SFN (Step Functions), Kinesis, EventBridge
   
   What's Changed
   
   docs: add ryandens as a contributor for ideas by https://github.com/allcontributors;>@​allcontributors in 
https://redirect.github.com/quarkiverse/quarkus-amazon-services/pull/1053;>quarkiverse/quarkus-amazon-services#1053
   Added support for SFN (Step Functions) by https://github.com/bwhove;>@​bwhove in https://redirect.github.com/quarkiverse/quarkus-amazon-services/pull/1058;>quarkiverse/quarkus-amazon-services#1058
   feat: add support for kinesis client by https://github.com/scrocquesel;>@​scrocquesel in https://redirect.github.com/quarkiverse/quarkus-amazon-services/pull/1063;>quarkiverse/quarkus-amazon-services#1063
   feat: add support for eventbridge client by https://github.com/scrocquesel;>@​scrocquesel in https://redirect.github.com/quarkiverse/quarkus-amazon-services/pull/1064;>quarkiverse/quarkus-amazon-services#1064
   build(deps): bump software.amazon.awssdk.crt:aws-crt from 0.29.2 to 
0.29.4 by https://github.com/dependabot;>@​dependabot 
in https://redirect.github.com/quarkiverse/quarkus-amazon-services/pull/1060;>quarkiverse/quarkus-amazon-services#1060
   build(deps): bump software.amazon.awssdk:bom from 2.22.4 to 2.22.9 by https://github.com/dependabot;>@​dependabot in https://redirect.github.com/quarkiverse/quarkus-amazon-services/pull/1061;>quarkiverse/quarkus-amazon-services#1061
   chore: 

[PR] build(deps): bump groovy-version from 4.0.17 to 4.0.18 [camel-k-runtime]

2024-01-19 Thread via GitHub


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

   Bumps `groovy-version` from 4.0.17 to 4.0.18.
   Updates `org.apache.groovy:groovy` from 4.0.17 to 4.0.18
   
   Commits
   
   See full diff in https://github.com/apache/groovy/commits;>compare view
   
   
   
   
   Updates `org.apache.groovy:groovy-xml` from 4.0.17 to 4.0.18
   
   Commits
   
   See full diff in https://github.com/apache/groovy/commits;>compare view
   
   
   
   
   Updates `org.apache.groovy:groovy-json` from 4.0.17 to 4.0.18
   
   Commits
   
   See full diff in https://github.com/apache/groovy/commits;>compare view
   
   
   
   
   Updates `org.apache.groovy:groovy-yaml` from 4.0.17 to 4.0.18
   
   Commits
   
   See full diff in https://github.com/apache/groovy/commits;>compare view
   
   
   
   
   Updates `org.apache.groovy:groovy-test` from 4.0.17 to 4.0.18
   
   Commits
   
   See full diff in https://github.com/apache/groovy/commits;>compare view
   
   
   
   
   
   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-runtime) branch dependabot/maven/groovy-version-4.0.18 created (now 2eecedda)

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

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


  at 2eecedda build(deps): bump groovy-version from 4.0.17 to 4.0.18

No new revisions were added by this update.



[I] high times (20s) in 150 concurrent calls from RestRoute [camel-quarkus]

2024-01-19 Thread via GitHub


brianmolinaspring opened a new issue, #5658:
URL: https://github.com/apache/camel-quarkus/issues/5658

   ### Bug description
   
   I'm using apache camel to call from my main RestRoute class to .process(new 
GetBoltonUnitProcessorReq()) inside this to run a loop to make multiple calls 
to a rest service with producerTemplate (It can be 5 iterations which is 
equivalent to 5 calls to the rest service) when I put it under stress with 150 
requests it takes more than 20 seconds, but I took out everything that the 
GetBoltonUnitProcessorReq class does and put it in the main RestRoute class 
within a .process(exchange -> {}) everything exactly the same, but when I 
stressed with 150 requests the times improved drastically, meaning that now it 
takes less than 1 second to Answer: Do you know why this scenario occurs? Is it 
because of the issue of the New instance that cannot handle the concurrency?


-- 
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.apache.org

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



[PR] fix(#4776): Fix catalog loading in camel trait [camel-k]

2024-01-19 Thread via GitHub


christophd opened a new pull request, #5086:
URL: https://github.com/apache/camel-k/pull/5086

   - When new runtime version is used on integration the camel trait creates 
the catalog if it does not exist already
   - Use proper catalog namespace to verify that the catalog resource has been 
created during the camel trait execution
   
   Fixes #4776 
   
   **Release Note**
   ```release-note
   NONE
   ```
   


-- 
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] org.json package not found [camel-karavan]

2024-01-19 Thread via GitHub


samar-elsayed closed issue #1037: org.json package not found
URL: https://github.com/apache/camel-karavan/issues/1037


-- 
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] org.json package not found [camel-karavan]

2024-01-19 Thread via GitHub


samar-elsayed commented on issue #1037:
URL: https://github.com/apache/camel-karavan/issues/1037#issuecomment-1900930673

   Thanks! this has solved it


-- 
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] github links are handled later on [camel]

2024-01-19 Thread via GitHub


davsclaus commented on code in PR #12847:
URL: https://github.com/apache/camel/pull/12847#discussion_r1459543642


##
dsl/camel-jbang/camel-jbang-core/src/main/java/org/apache/camel/dsl/jbang/core/commands/Run.java:
##
@@ -1294,6 +1294,11 @@ private boolean knownFile(String file) throws Exception {
 }
 
 private boolean skipFile(String name) {
+if(name.startsWith("github:") || name.startsWith("https://github.com/;)

Review Comment:
   there should be space after if 



-- 
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] CAMEL-20253: camel-jbang - Add support for jolokia 2.x [camel]

2024-01-19 Thread via GitHub


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

   :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] CAMEL-20253: camel-jbang - Add support for jolokia 2.x [camel]

2024-01-19 Thread via GitHub


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

   /component-test camel-platform-http-main


-- 
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] [CAMEL-19620] - upgrade californium-scandium [camel]

2024-01-19 Thread via GitHub


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

   There are uncommitted changes. The branch needs to be rebuilt.


-- 
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] CAMEL-20225: camel-jbang - Add support for jolokia 2.x [camel]

2024-01-19 Thread via GitHub


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

   :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] [CAMEL-19620] - upgrade californium-scandium [camel]

2024-01-19 Thread via GitHub


boaks commented on PR #12769:
URL: https://github.com/apache/camel/pull/12769#issuecomment-1900827606

   I simply don't see in the logs, what's failing. 
   Does someone have more insights?


-- 
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] Upgrade to Quarkus CXF 2.7.0.CR2 [camel-quarkus]

2024-01-19 Thread via GitHub


ppalaga merged PR #5657:
URL: https://github.com/apache/camel-quarkus/pull/5657


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

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

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



(camel-quarkus) branch main updated: Upgrade to Quarkus CXF 2.7.0.CR2

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

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


The following commit(s) were added to refs/heads/main by this push:
 new e7ea089a8a Upgrade to Quarkus CXF 2.7.0.CR2
e7ea089a8a is described below

commit e7ea089a8a1e49ceb559f6ba1d68194082bca937
Author: Peter Palaga 
AuthorDate: Fri Jan 19 16:23:58 2024 +0100

Upgrade to Quarkus CXF 2.7.0.CR2
---
 .../jackson-dataformat-xml/deployment/pom.xml  |   4 +
 .../JacksonDataformatXmlSupportProcessor.java  |  27 +-
 .../jackson-dataformat-xml/runtime/pom.xml |   4 +
 pom.xml|   2 +-
 poms/bom/src/main/generated/flattened-full-pom.xml | 521 +++--
 .../src/main/generated/flattened-reduced-pom.xml   |  67 ++-
 .../generated/flattened-reduced-verbose-pom.xml| 521 +++--
 7 files changed, 599 insertions(+), 547 deletions(-)

diff --git a/extensions-support/jackson-dataformat-xml/deployment/pom.xml 
b/extensions-support/jackson-dataformat-xml/deployment/pom.xml
index 1fb7eb13f4..a84462e0af 100644
--- a/extensions-support/jackson-dataformat-xml/deployment/pom.xml
+++ b/extensions-support/jackson-dataformat-xml/deployment/pom.xml
@@ -41,6 +41,10 @@
 org.apache.camel.quarkus
 
camel-quarkus-support-jackson-dataformat-xml
 
+
+io.quarkiverse.cxf
+quarkus-cxf-woodstox-deployment
+
 
 
 
diff --git 
a/extensions-support/jackson-dataformat-xml/deployment/src/main/java/org/apache/camel/quarkus/support/jackson/datafromat/xml/deployment/JacksonDataformatXmlSupportProcessor.java
 
b/extensions-support/jackson-dataformat-xml/deployment/src/main/java/org/apache/camel/quarkus/support/jackson/datafromat/xml/deployment/JacksonDataformatXmlSupportProcessor.java
index 26b68def72..b44beedc66 100644
--- 
a/extensions-support/jackson-dataformat-xml/deployment/src/main/java/org/apache/camel/quarkus/support/jackson/datafromat/xml/deployment/JacksonDataformatXmlSupportProcessor.java
+++ 
b/extensions-support/jackson-dataformat-xml/deployment/src/main/java/org/apache/camel/quarkus/support/jackson/datafromat/xml/deployment/JacksonDataformatXmlSupportProcessor.java
@@ -21,19 +21,12 @@ import java.util.ArrayList;
 import java.util.Set;
 import java.util.stream.Stream;
 
-import javax.xml.stream.XMLEventFactory;
-import javax.xml.stream.XMLInputFactory;
-import javax.xml.stream.XMLOutputFactory;
-
-import com.ctc.wstx.shaded.msv.org_isorelax.verifier.VerifierFactoryLoader;
-import com.ctc.wstx.shaded.msv.relaxng_datatype.DatatypeLibraryFactory;
 import com.fasterxml.jackson.core.JsonFactory;
 import com.fasterxml.jackson.core.ObjectCodec;
 import io.quarkus.deployment.annotations.BuildProducer;
 import io.quarkus.deployment.annotations.BuildStep;
 import io.quarkus.deployment.builditem.nativeimage.ServiceProviderBuildItem;
 import io.quarkus.deployment.util.ServiceUtil;
-import org.codehaus.stax2.validation.XMLValidationSchemaFactory;
 
 public class JacksonDataformatXmlSupportProcessor {
 
@@ -41,22 +34,10 @@ public class JacksonDataformatXmlSupportProcessor {
 
 @BuildStep
 void serviceProviders(BuildProducer 
serviceProviders) {
-Stream.concat(
-Stream.of(
-JsonFactory.class,
-ObjectCodec.class,
-VerifierFactoryLoader.class,
-DatatypeLibraryFactory.class,
-XMLEventFactory.class,
-XMLInputFactory.class,
-XMLOutputFactory.class)
-.map(Class::getName),
-Stream.of(
-XMLValidationSchemaFactory.INTERNAL_ID_SCHEMA_DTD,
-XMLValidationSchemaFactory.INTERNAL_ID_SCHEMA_RELAXNG,
-XMLValidationSchemaFactory.INTERNAL_ID_SCHEMA_W3C,
-XMLValidationSchemaFactory.INTERNAL_ID_SCHEMA_TREX)
-.map(schemaId -> 
XMLValidationSchemaFactory.class.getName() + "." + schemaId))
+Stream.of(
+JsonFactory.class,
+ObjectCodec.class)
+.map(Class::getName)
 .forEach(serviceName -> {
 try {
 final Set names = 
ServiceUtil.classNamesNamedIn(Thread.currentThread().getContextClassLoader(),
diff --git a/extensions-support/jackson-dataformat-xml/runtime/pom.xml 
b/extensions-support/jackson-dataformat-xml/runtime/pom.xml
index 103e560fbc..426c44a212 100644
--- a/extensions-support/jackson-dataformat-xml/runtime/pom.xml
+++ b/extensions-support/jackson-dataformat-xml/runtime/pom.xml
@@ -41,6 +41,10 @@
 com.fasterxml.jackson.dataformat
 jackson-dataformat-xml
 
+
+io.quarkiverse.cxf
+

Re: [PR] [CAMEL-19620] - upgrade californium-scandium [camel]

2024-01-19 Thread via GitHub


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

   /componet-test coap


-- 
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] CAMEL-19519 - camel-file: replace Thread.sleep in tests. [camel]

2024-01-19 Thread via GitHub


VaishnaviR18 commented on PR #12844:
URL: https://github.com/apache/camel/pull/12844#issuecomment-1900767232

   Thanks a lot! @orpiske and @oscerd 
   I have reverted the changes, can you please review it? 


-- 
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] CAMEL-19519 - camel-file: replace Thread.sleep in tests. [camel]

2024-01-19 Thread via GitHub


VaishnaviR18 commented on code in PR #12844:
URL: https://github.com/apache/camel/pull/12844#discussion_r1459346299


##
core/camel-core/src/test/java/org/apache/camel/component/file/FileExclusiveReadNoneStrategyTest.java:
##
@@ -73,7 +77,7 @@ public void process(Exchange exchange) throws Exception {
 try (OutputStream fos = 
Files.newOutputStream(testFile("slowfile/hello.txt"))) {
 fos.write("Hello World".getBytes());
 for (int i = 0; i < 3; i++) {
-Thread.sleep(100);
+latch.await(100, TimeUnit.MILLISECONDS);

Review Comment:
   Thanks! 
   I have reverted the 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



Re: [PR] CAMEL-19519 - camel-file: replace Thread.sleep in tests. [camel]

2024-01-19 Thread via GitHub


VaishnaviR18 commented on code in PR #12844:
URL: https://github.com/apache/camel/pull/12844#discussion_r1459345884


##
core/camel-core/src/test/java/org/apache/camel/component/file/stress/FileAsyncStressReadLockNoneManualManualTest.java:
##
@@ -17,15 +17,18 @@
 package org.apache.camel.component.file.stress;
 
 import java.util.Random;
+import java.util.concurrent.CountDownLatch;
 
-import org.apache.camel.Exchange;
-import org.apache.camel.Processor;
 import org.apache.camel.builder.RouteBuilder;
 import org.junit.jupiter.api.Disabled;
 
 @Disabled("Manual test")
 public class FileAsyncStressReadLockNoneManualManualTest extends 
FileAsyncStressManualTest {

Review Comment:
   Thanks! 
   I have reverted the changes. 



##
core/camel-core/src/test/java/org/apache/camel/component/file/stress/FileAsyncStressReadLockLockFileTestManualManualTest.java:
##
@@ -17,15 +17,18 @@
 package org.apache.camel.component.file.stress;
 
 import java.util.Random;
+import java.util.concurrent.CountDownLatch;
 
-import org.apache.camel.Exchange;
-import org.apache.camel.Processor;
 import org.apache.camel.builder.RouteBuilder;
 import org.junit.jupiter.api.Disabled;
 
 @Disabled("Manual test")
 public class FileAsyncStressReadLockLockFileTestManualManualTest extends 
FileAsyncStressManualTest {

Review Comment:
   Thanks! 
   I have reverted the changes. 



##
core/camel-core/src/test/java/org/apache/camel/component/file/stress/FileAsyncStressReadLockRenameManualManualTest.java:
##
@@ -17,15 +17,18 @@
 package org.apache.camel.component.file.stress;
 
 import java.util.Random;
+import java.util.concurrent.CountDownLatch;
 
-import org.apache.camel.Exchange;
-import org.apache.camel.Processor;
 import org.apache.camel.builder.RouteBuilder;
 import org.junit.jupiter.api.Disabled;
 
 @Disabled("Manual test")
 public class FileAsyncStressReadLockRenameManualManualTest extends 
FileAsyncStressManualTest {

Review Comment:
   Thanks! 
   I have reverted the 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



Re: [PR] CAMEL-19519 - camel-file: replace Thread.sleep in tests. [camel]

2024-01-19 Thread via GitHub


VaishnaviR18 commented on code in PR #12844:
URL: https://github.com/apache/camel/pull/12844#discussion_r1459345282


##
core/camel-core/src/test/java/org/apache/camel/component/file/stress/FileAsyncStressManuallyManualTest.java:
##
@@ -32,6 +31,10 @@
 @DisabledOnOs(OS.WINDOWS)
 public class FileAsyncStressManuallyManualTest extends ContextTestSupport {

Review Comment:
   Thanks! 
   I have reverted the 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



Re: [PR] CAMEL-19519 - camel-file: replace Thread.sleep in tests. [camel]

2024-01-19 Thread via GitHub


VaishnaviR18 commented on code in PR #12844:
URL: https://github.com/apache/camel/pull/12844#discussion_r1459343894


##
core/camel-core/src/test/java/org/apache/camel/component/file/FileBatchConsumerMemoryLeakManualTest.java:
##
@@ -64,7 +69,7 @@ public void process(Exchange exchange) throws Exception {
 });
 context.start();
 
-Thread.sleep(30 * 1000L);
+latch.await(30, TimeUnit.SECONDS);

Review Comment:
   Thanks! 
   I have reverted the 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



Re: [PR] CAMEL-19519 - camel-file: replace Thread.sleep in tests. [camel]

2024-01-19 Thread via GitHub


VaishnaviR18 commented on code in PR #12844:
URL: https://github.com/apache/camel/pull/12844#discussion_r1459344575


##
core/camel-core/src/test/java/org/apache/camel/component/file/strategy/FileChangedReadLockTest.java:
##
@@ -68,7 +72,7 @@ private void writeSlowFile() throws Exception {
 for (int i = 0; i < 20; i++) {
 fos.write(("Line " + i + LS).getBytes());
 LOG.debug("Writing line {}", i);
-Thread.sleep(50);
+latch.await(50, TimeUnit.MILLISECONDS);

Review Comment:
   Thanks! 
   I have reverted the 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



Re: [I] Operator is stuck in a "deploying" phase loop when internal deployment fails indefinitely [camel-k]

2024-01-19 Thread via GitHub


claudio4j commented on issue #5084:
URL: https://github.com/apache/camel-k/issues/5084#issuecomment-1900754588

   As a workaround, can you use the integration with health disabled ?


-- 
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 (0b36287df94 -> 372ec8c5372)

2024-01-19 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 0b36287df94 CAMEL-20297 camel-facebook: update documentation
 add 9771c705a89 CAMEL-16044: fixed integration tests
 add d8978186f54 CAMEL-16044: added documentation
 add 372ec8c5372 CAMEL-16044: do not enable auto-commit when using batching 
mode

No new revisions were added by this update.

Summary of changes:
 .../camel-kafka/src/main/docs/kafka-component.adoc | 40 +
 .../camel/component/kafka/KafkaConfiguration.java  |  6 +-
 .../batching/BatchingProcessingITSupport.java  | 62 +++-
 .../batching/KafkaBatchingProcessingIT.java| 67 +++---
 .../ROOT/pages/camel-4x-upgrade-guide-4_4.adoc |  4 ++
 5 files changed, 140 insertions(+), 39 deletions(-)



[PR] github links are handled later on [camel]

2024-01-19 Thread via GitHub


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

   avoid file name analysis if the name is a github link, there are some 
duplicated lines for github links checks.


-- 
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/03: CAMEL-16044: fixed integration tests

2024-01-19 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 9771c705a89ff3e016fe51183310dd66fb863453
Author: Otavio Rodolfo Piske 
AuthorDate: Fri Jan 19 15:55:29 2024 +0100

CAMEL-16044: fixed integration tests
---
 .../batching/BatchingProcessingITSupport.java  | 62 +++-
 .../batching/KafkaBatchingProcessingIT.java| 67 +++---
 2 files changed, 91 insertions(+), 38 deletions(-)

diff --git 
a/components/camel-kafka/src/test/java/org/apache/camel/component/kafka/integration/batching/BatchingProcessingITSupport.java
 
b/components/camel-kafka/src/test/java/org/apache/camel/component/kafka/integration/batching/BatchingProcessingITSupport.java
index ccadf3bc114..363efb0f1ea 100644
--- 
a/components/camel-kafka/src/test/java/org/apache/camel/component/kafka/integration/batching/BatchingProcessingITSupport.java
+++ 
b/components/camel-kafka/src/test/java/org/apache/camel/component/kafka/integration/batching/BatchingProcessingITSupport.java
@@ -18,15 +18,26 @@
 package org.apache.camel.component.kafka.integration.batching;
 
 import java.util.Collections;
+import java.util.List;
 import java.util.Properties;
 
 import org.apache.camel.EndpointInject;
+import org.apache.camel.Exchange;
+import org.apache.camel.Message;
+import org.apache.camel.component.kafka.KafkaConstants;
 import 
org.apache.camel.component.kafka.integration.BaseEmbeddedKafkaTestSupport;
 import org.apache.camel.component.mock.MockEndpoint;
 import org.apache.kafka.clients.producer.ProducerRecord;
 import org.junit.jupiter.api.BeforeEach;
+import org.slf4j.Logger;
+import org.slf4j.LoggerFactory;
+
+import static org.junit.jupiter.api.Assertions.assertInstanceOf;
+import static org.junit.jupiter.api.Assertions.assertNotNull;
+import static org.junit.jupiter.api.Assertions.assertTrue;
 
 abstract class BatchingProcessingITSupport extends 
BaseEmbeddedKafkaTestSupport {
+private static final Logger LOG = 
LoggerFactory.getLogger(BatchingProcessingITSupport.class);
 
 @EndpointInject("mock:result")
 protected MockEndpoint to;
@@ -53,17 +64,25 @@ abstract class BatchingProcessingITSupport extends 
BaseEmbeddedKafkaTestSupport
 public void kafkaManualCommitTest(String topic) throws Exception {
 setupPreExecutionExpectations();
 
+LOG.debug("Starting the first step");
 sendRecords(0, 5, topic);
 
 to.assertIsSatisfied(3000);
+to.expectedMessageCount(1);
+
+final List firstExchangeBatch = to.getExchanges();
+
+validateReceivedExchanges(5, firstExchangeBatch);
 
 to.reset();
 
+LOG.debug("Starting the second step");
 // Second step: We shut down our route, we expect nothing will be 
recovered by our route
-contextExtension.getContext().getRouteController().stopRoute("foo");
-to.expectedMessageCount(0);
+
contextExtension.getContext().getRouteController().stopRoute("batching");
 
 // Third step: While our route is stopped, we send 3 records more to a 
Kafka test topic
+LOG.debug("Starting the third step");
+to.expectedMessageCount(1);
 sendRecords(5, 8, topic);
 
 to.assertIsSatisfied(3000);
@@ -72,10 +91,47 @@ abstract class BatchingProcessingITSupport extends 
BaseEmbeddedKafkaTestSupport
 
 // Fourth step: We start again our route, since we have been 
committing the offsets from the first step,
 // we will expect to consume from the latest committed offset (e.g.: 
from offset 5()
-contextExtension.getContext().getRouteController().startRoute("foo");
+
contextExtension.getContext().getRouteController().startRoute("batching");
 setupPostExecutionExpectations();
 
 to.assertIsSatisfied(3000);
+
+final List secondExchangeBatch = to.getExchanges();
+validateReceivedExchanges(3, secondExchangeBatch);
+}
+
+private static void validateReceivedExchanges(int expectedCount, 
List exchanges) {
+assertNotNull(exchanges, "The exchange should not be null");
+
+final Exchange parentExchange = exchanges.get(0);
+final Message message = parentExchange.getMessage();
+
+assertNotNull(message, "The message body should not be null");
+
+final Object body = message.getBody();
+final List list = assertInstanceOf(List.class, body, "The body 
should be a list");
+
+//assertEquals(expectedCount, list.size(), "The should be 5 
messages on the list");
+
+for (var object : list) {
+final Exchange exchange = assertInstanceOf(Exchange.class, object, 
"The list content should be an exchange");
+
+final Message messageInList = exchange.getMessage();
+LOG.info("Received message {}", messageInList);
+
+final Object bodyInMessage = messageInList.getBody();
+

(camel) 03/03: CAMEL-16044: do not enable auto-commit when using batching mode

2024-01-19 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 372ec8c5372c8fc6637d3f7e2bcb21fff11d821e
Author: Otavio Rodolfo Piske 
AuthorDate: Fri Jan 19 17:02:03 2024 +0100

CAMEL-16044: do not enable auto-commit when using batching mode
---
 .../java/org/apache/camel/component/kafka/KafkaConfiguration.java   | 6 +-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git 
a/components/camel-kafka/src/main/java/org/apache/camel/component/kafka/KafkaConfiguration.java
 
b/components/camel-kafka/src/main/java/org/apache/camel/component/kafka/KafkaConfiguration.java
index 29e39132146..3cd48f37d4f 100755
--- 
a/components/camel-kafka/src/main/java/org/apache/camel/component/kafka/KafkaConfiguration.java
+++ 
b/components/camel-kafka/src/main/java/org/apache/camel/component/kafka/KafkaConfiguration.java
@@ -740,7 +740,11 @@ public class KafkaConfiguration implements Cloneable, 
HeaderFilterStrategyAware
 }
 
 public boolean getAutoCommitEnable() {
-return autoCommitEnable;
+if (!batching) {
+return autoCommitEnable;
+}
+
+return false;
 }
 
 /**



Re: [PR] CAMEL-29297: do not swallow interrupted exceptions [camel]

2024-01-19 Thread via GitHub


orpiske commented on PR #12841:
URL: https://github.com/apache/camel/pull/12841#issuecomment-1900733152

   Marking as a draft. I need to review test results on my CI. 


-- 
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) 02/03: CAMEL-16044: added documentation

2024-01-19 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 d8978186f54dbd380a28690ec7df7ced5c5c98c4
Author: Otavio Rodolfo Piske 
AuthorDate: Fri Jan 19 16:08:48 2024 +0100

CAMEL-16044: added documentation
---
 .../camel-kafka/src/main/docs/kafka-component.adoc | 40 ++
 .../ROOT/pages/camel-4x-upgrade-guide-4_4.adoc |  4 +++
 2 files changed, 44 insertions(+)

diff --git a/components/camel-kafka/src/main/docs/kafka-component.adoc 
b/components/camel-kafka/src/main/docs/kafka-component.adoc
index 2f44d00f73a..d8d8879bb4a 100644
--- a/components/camel-kafka/src/main/docs/kafka-component.adoc
+++ b/components/camel-kafka/src/main/docs/kafka-component.adoc
@@ -493,4 +493,44 @@ static {
 KafkaComponent.setKerberosConfigLocation("path/to/config/file");
 }
 
+
+=== Batching Consumer
+
+To use a Kafka batching consumer with Camel, an application has to set the 
configuration `batching` to `true` and use manual commits.
+
+The received records are stored in a list in the exchange used in the 
pipeline. As such, it is possible to commit individually
+every record or the whole batch at once by committing the last exchange on the 
list.
+
+When working with batch processing, it's up to the application to commit the 
records, and handle the outcome of potentially invalid records.
+
+The size of the batch is controlled by the option `maxPollRecords`.
+
+In order to avoid blocking for too long, waiting for the a whole set of 
records to fill the batch, it is is possible to use the `pollTimeoutMs` option 
to set a timeout for the polling. In this case, the batch may contain less 
messages than set in the `maxPollRecords`.
+
+[source,java]
+
+
from("kafka:topic?batching=true=100=#class:org.apache.camel.component.kafka.consumer.DefaultKafkaManualCommitFactory")
+.process(e -> {
+// The received records are stored as exchanges in a list. This gets 
the list of those exchanges
+final List exchanges = e.getMessage().getBody(List.class);
+
+// Ensure we are actually receiving what we are asking for
+if (exchanges == null || exchanges.isEmpty()) {
+return;
+}
+
+/*
+Every exchange in that list should contain a reference to the manual 
commit object. We use the reference
+for the last exchange in the list to commit the whole batch
+ */
+final Object tmp = exchanges.getLast();
+if (tmp instanceof Exchange exchange) {
+KafkaManualCommit manual =
+
exchange.getMessage().getHeader(KafkaConstants.MANUAL_COMMIT, 
KafkaManualCommit.class);
+LOG.debug("Performing manual commit");
+manual.commit();
+LOG.debug("Done performing manual commit");
+}
+});
+
 include::spring-boot:partial$starter.adoc[]
diff --git 
a/docs/user-manual/modules/ROOT/pages/camel-4x-upgrade-guide-4_4.adoc 
b/docs/user-manual/modules/ROOT/pages/camel-4x-upgrade-guide-4_4.adoc
index 2384b73e98b..9bbb3a90cbe 100644
--- a/docs/user-manual/modules/ROOT/pages/camel-4x-upgrade-guide-4_4.adoc
+++ b/docs/user-manual/modules/ROOT/pages/camel-4x-upgrade-guide-4_4.adoc
@@ -134,6 +134,10 @@ The JdbcAggregationRepository now provides a 
deserializationFilter parameter. Th
 
 The component was removed without deprecation. The library supporting this 
component has been unmaintained for a long time. We found no indications that 
the library itself nor the component are working with modern Facebook, along 
with the absence of community interest, which lead us to decide to remove this 
component without deprecation.
 
+=== camel-kafka
+
+The component now has support for batch processing.
+
 == Camel Spring Boot
 
 === Auto Configuration



(camel) branch main updated (0b36287df94 -> 372ec8c5372)

2024-01-19 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 0b36287df94 CAMEL-20297 camel-facebook: update documentation
 new 9771c705a89 CAMEL-16044: fixed integration tests
 new d8978186f54 CAMEL-16044: added documentation
 new 372ec8c5372 CAMEL-16044: do not enable auto-commit when using batching 
mode

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:
 .../camel-kafka/src/main/docs/kafka-component.adoc | 40 +
 .../camel/component/kafka/KafkaConfiguration.java  |  6 +-
 .../batching/BatchingProcessingITSupport.java  | 62 +++-
 .../batching/KafkaBatchingProcessingIT.java| 67 +++---
 .../ROOT/pages/camel-4x-upgrade-guide-4_4.adoc |  4 ++
 5 files changed, 140 insertions(+), 39 deletions(-)



Re: [PR] CAMEL-16046: fixed tests + added documentation [camel]

2024-01-19 Thread via GitHub


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


-- 
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] Operator is stuck in a "deploying" phase loop when internal deployment fails indefinitely [camel-k]

2024-01-19 Thread via GitHub


claudio4j commented on issue #5084:
URL: https://github.com/apache/camel-k/issues/5084#issuecomment-1900730439

   Thanks for reporting, I can confirm this behavior. We will have a look at 
this.


-- 
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-kafka: stop skipping some tests on aarch64 [camel]

2024-01-19 Thread via GitHub


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

   :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] (chores) camel-kafka: stop skipping some tests on aarch64 [camel]

2024-01-19 Thread via GitHub


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

   (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: [I] Bad revision when running jvm and native builds with knative [camel-k]

2024-01-19 Thread via GitHub


lsergio commented on issue #5069:
URL: https://github.com/apache/camel-k/issues/5069#issuecomment-1900711844

   During more experimentation, I ended up with a scenario that might have the 
same root cause:
   
   I created an Integration and provided less resources than it needs in the 
Container trait (only 20MB for a jvm integration):
   ```
   apiVersion: camel.apache.org/v1
   kind: Integration
   metadata:
 name: test
   spec:
 sources:
 - name: main.groovy
   content: |-
 from('rest://GET:/test')
 .to("direct:start")
   
 from("direct:start")
   .to("https://httpbin.org/delay/2?bridgeEndpoint=true;)
   .to("log:info")
 traits:
   container:
 requestCPU: "200m"
 requestMemory: 20Mi
 limitMemory: 20Mi
   quarkus:
 buildMode:
 - jvm
   affinity:
 enabled: true
 nodeAffinityLabels:
   - "karpenter=false"
   knative-service:
 minScale: 1
   ```
   After applying it, I see the pod in a CrashLookBackoff due to OOM error and 
the Integration is in error status:
   ```
   k get pod
   NAME READY   STATUS RESTARTS 
 AGE
   camel-k-operator-6cbc656bbd-bmmwp1/1 Running0
 156m
   test-1-deployment-8456cb79f9-9pxbl   0/2 CrashLoopBackOff   1 (14s 
ago)   16s
   k get it
   NAME   PHASE   RUNTIME PROVIDER   RUNTIME VERSION   KIT  
  REPLICAS
   test   Error   quarkus3.2.3 kit-cml7drk14nurfir6ingg 
  1
   ```
   Then I fixed the amount of memory in the Container trait and updated the 
Integration.
   Now I see 2 pods for my Integration:
   ```
   k get pod
   NAME READY   STATUS RESTARTS 
 AGE
   camel-k-operator-6cbc656bbd-bmmwp1/1 Running0
 158m
   test-1-deployment-8456cb79f9-9pxbl   0/2 CrashLoopBackOff   4 (55s 
ago)   2m25s
   test-2-deployment-656fb5-r9wqc   1/2 Running0
 7s
   ```
   where the second one is running correctly.
   But the Integration is still in Error status:
   ```
   NAME   PHASE   RUNTIME PROVIDER   RUNTIME VERSION   KIT  
  REPLICAS
   test   Error   quarkus3.2.3 kit-cml7drk14nurfir6ingg 
  2
   ```
   As it shows 2 replicas, I assume it's considering both pods for determining 
that it is failing.
   At this point, the ksvc state is:
   ```
   k get ksvc
   NAME   URL  LATESTCREATED   
LATESTREADY   READY   REASON
   test   http://test.sensedia.poc-luis.sensedia-eng.com   test-2  
test-2True
   ```
   And there are 2 knative revisions:
   ```
   k get revision
   NAME CONFIG NAME   K8S SERVICE NAME   GENERATION   READY   REASON
ACTUAL REPLICAS   DESIRED REPLICAS
   test-1   test 1False   
ExitCode137   0 
   test-2   test 2True  
1 1
   ```
   After around ~10 minutes, the old pod disappeated and the Integration moved 
to a success state.
   And the revision list shows me:
   ```
   NAME CONFIG NAME   K8S SERVICE NAME   GENERATION   READY   REASON
 ACTUAL REPLICAS   DESIRED REPLICAS
   test-1   test 1False   
ProgressDeadlineExceeded   0 
   test-2   test 2True  
 1 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



[PR] Upgrade to Quarkus CXF 2.7.0.CR2 [camel-quarkus]

2024-01-19 Thread via GitHub


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

   (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: [I] Support SSH Keys for Git Authentication [camel-karavan]

2024-01-19 Thread via GitHub


mgubaidullin closed issue #1073: Support SSH Keys for Git Authentication
URL: https://github.com/apache/camel-karavan/issues/1073


-- 
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-karavan) branch main updated: Fix #1073

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

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


The following commit(s) were added to refs/heads/main by this push:
 new 88f840dc Fix #1073
88f840dc is described below

commit 88f840dc88bb9b30a71fceff02ab11841757b8a6
Author: Marat Gubaidullin 
AuthorDate: Fri Jan 19 10:17:05 2024 -0500

Fix #1073
---
 .../org/apache/camel/karavan/code/CodeService.java |   4 +
 .../camel/karavan/docker/DockerForKaravan.java |   5 +-
 .../org/apache/camel/karavan/git/GitService.java   | 172 -
 .../apache/camel/karavan/git/model/GitConfig.java  |  12 +-
 .../karavan/kubernetes/KubernetesService.java  |  17 ++
 .../camel/karavan/service/ProjectService.java  |  16 +-
 .../org/apache/camel/karavan/shared/Constants.java |   2 +
 .../src/main/resources/application.properties  |   3 +
 8 files changed, 153 insertions(+), 78 deletions(-)

diff --git 
a/karavan-web/karavan-app/src/main/java/org/apache/camel/karavan/code/CodeService.java
 
b/karavan-web/karavan-app/src/main/java/org/apache/camel/karavan/code/CodeService.java
index 6bd42fec..ea3eef7b 100644
--- 
a/karavan-web/karavan-app/src/main/java/org/apache/camel/karavan/code/CodeService.java
+++ 
b/karavan-web/karavan-app/src/main/java/org/apache/camel/karavan/code/CodeService.java
@@ -360,4 +360,8 @@ public class CodeService {
 return vertx.fileSystem().readFileBlocking(fileName).toString();
 }
 
+public String getFileString(String fullName) {
+return vertx.fileSystem().readFileBlocking(fullName).toString();
+}
+
 }
diff --git 
a/karavan-web/karavan-app/src/main/java/org/apache/camel/karavan/docker/DockerForKaravan.java
 
b/karavan-web/karavan-app/src/main/java/org/apache/camel/karavan/docker/DockerForKaravan.java
index 9c757097..68269ecf 100644
--- 
a/karavan-web/karavan-app/src/main/java/org/apache/camel/karavan/docker/DockerForKaravan.java
+++ 
b/karavan-web/karavan-app/src/main/java/org/apache/camel/karavan/docker/DockerForKaravan.java
@@ -74,12 +74,15 @@ public class DockerForKaravan {
 
 }
 
-public void runBuildProject(Project project, String script, List 
env, String tag) throws Exception {
+public void runBuildProject(Project project, String script, List 
env, Map sshFiles, String tag) throws Exception {
 String containerName = project.getProjectId() + BUILDER_SUFFIX;
 Map volumes = getMavenVolumes();
 dockerService.deleteContainer(containerName);
 Container c = createBuildContainer(containerName, project, env, 
volumes, tag);
 dockerService.copyExecFile(c.getId(), "/karavan/builder", "build.sh", 
script);
+sshFiles.forEach((name, text) -> {
+dockerService.copyExecFile(c.getId(), "/karavan/.ssh", name, text);
+});
 dockerService.runContainer(c);
 }
 
diff --git 
a/karavan-web/karavan-app/src/main/java/org/apache/camel/karavan/git/GitService.java
 
b/karavan-web/karavan-app/src/main/java/org/apache/camel/karavan/git/GitService.java
index 30b195e7..da93a157 100644
--- 
a/karavan-web/karavan-app/src/main/java/org/apache/camel/karavan/git/GitService.java
+++ 
b/karavan-web/karavan-app/src/main/java/org/apache/camel/karavan/git/GitService.java
@@ -16,7 +16,8 @@
  */
 package org.apache.camel.karavan.git;
 
-import io.fabric8.kubernetes.api.model.Secret;
+import com.jcraft.jsch.JSch;
+import com.jcraft.jsch.JSchException;
 import io.quarkus.oidc.UserInfo;
 import io.quarkus.security.identity.SecurityIdentity;
 import io.smallrye.mutiny.tuples.Tuple2;
@@ -28,7 +29,6 @@ import org.apache.camel.karavan.git.model.GitRepo;
 import org.apache.camel.karavan.git.model.GitRepoFile;
 import org.apache.camel.karavan.infinispan.model.Project;
 import org.apache.camel.karavan.infinispan.model.ProjectFile;
-import org.apache.camel.karavan.kubernetes.KubernetesService;
 import org.apache.camel.karavan.service.ConfigService;
 import org.eclipse.jgit.api.*;
 import org.eclipse.jgit.api.errors.GitAPIException;
@@ -40,9 +40,10 @@ import org.eclipse.jgit.lib.ObjectId;
 import org.eclipse.jgit.lib.PersonIdent;
 import org.eclipse.jgit.revwalk.RevCommit;
 import org.eclipse.jgit.transport.*;
+import org.eclipse.jgit.transport.ssh.jsch.JschConfigSessionFactory;
 import org.eclipse.jgit.treewalk.TreeWalk;
 import org.eclipse.jgit.treewalk.filter.TreeFilter;
-import org.eclipse.microprofile.config.ConfigProvider;
+import org.eclipse.microprofile.config.inject.ConfigProperty;
 import org.eclipse.microprofile.faulttolerance.Retry;
 import org.jboss.logging.Logger;
 
@@ -57,20 +58,40 @@ import java.util.*;
 @ApplicationScoped
 public class GitService {
 
-@Inject
-Vertx vertx;
+@ConfigProperty(name = "karavan.git-repository")
+String repository;
+
+@ConfigProperty(name = "karavan.git-username")
+Optional username;
+
+@ConfigProperty(name = "karavan.git-password")
+Optional password;
+

Re: [PR] CAMEL-16046: fixed tests + added documentation [camel]

2024-01-19 Thread via GitHub


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

   :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] CAMEL-16046: fixed tests + added documentation [camel]

2024-01-19 Thread via GitHub


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

   (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-spring-boot) branch main updated: CAMEL-20294: remove camel-facebook

2024-01-19 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-spring-boot.git


The following commit(s) were added to refs/heads/main by this push:
 new cc0a82fd8f9 CAMEL-20294: remove camel-facebook
cc0a82fd8f9 is described below

commit cc0a82fd8f9a13bf3f4d4fbf7641358963ed568d
Author: Otavio Rodolfo Piske 
AuthorDate: Fri Jan 19 14:21:22 2024 +0100

CAMEL-20294: remove camel-facebook
---
 .../camel/springboot/catalog/components.properties |   1 -
 components-starter/camel-facebook-starter/pom.xml  |  49 ---
 .../src/main/docs/facebook.json| 235 ---
 .../FacebookComponentAutoConfiguration.java|  77 
 .../springboot/FacebookComponentConfiguration.java | 435 -
 .../springboot/FacebookComponentConverter.java |  63 ---
 .../src/main/resources/META-INF/LICENSE.txt| 203 --
 .../src/main/resources/META-INF/NOTICE.txt |  11 -
 ...rk.boot.autoconfigure.AutoConfiguration.imports |  19 -
 components-starter/pom.xml |   1 -
 .../camel/itest/springboot/CamelFacebookTest.java  |  49 ---
 tooling/camel-spring-boot-bom/pom.xml  |   5 -
 tooling/camel-spring-boot-dependencies/pom.xml |  10 -
 13 files changed, 1158 deletions(-)

diff --git 
a/catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/components.properties
 
b/catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/components.properties
index 8cf62ac328d..b8e928cb22c 100644
--- 
a/catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/components.properties
+++ 
b/catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/components.properties
@@ -96,7 +96,6 @@ elasticsearch
 elasticsearch-rest-client
 etcd3
 exec
-facebook
 fhir
 file
 file-watch
diff --git a/components-starter/camel-facebook-starter/pom.xml 
b/components-starter/camel-facebook-starter/pom.xml
deleted file mode 100644
index 85cadafdaaa..000
--- a/components-starter/camel-facebook-starter/pom.xml
+++ /dev/null
@@ -1,49 +0,0 @@
-
-
-http://maven.apache.org/POM/4.0.0; 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance; 
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 
http://maven.apache.org/maven-v4_0_0.xsd;>
-  4.0.0
-  
-org.apache.camel.springboot
-components-starter
-4.4.0-SNAPSHOT
-  
-  camel-facebook-starter
-  jar
-  Camel SB Starters :: Facebook
-  Spring-Boot Starter for Camel Facebook Support
-  
-
-  org.springframework.boot
-  spring-boot-starter
-  ${spring-boot-version}
-
-
-  org.apache.camel
-  camel-facebook
-  ${camel-version}
-
-
-
-  org.apache.camel.springboot
-  camel-core-starter
-
-
-  
-
diff --git 
a/components-starter/camel-facebook-starter/src/main/docs/facebook.json 
b/components-starter/camel-facebook-starter/src/main/docs/facebook.json
deleted file mode 100644
index b719c044c8a..000
--- a/components-starter/camel-facebook-starter/src/main/docs/facebook.json
+++ /dev/null
@@ -1,235 +0,0 @@
-{
-  "groups": [
-{
-  "name": "camel.component.facebook",
-  "type": 
"org.apache.camel.component.facebook.springboot.FacebookComponentConfiguration",
-  "sourceType": 
"org.apache.camel.component.facebook.springboot.FacebookComponentConfiguration"
-},
-{
-  "name": "camel.component.facebook.customizer",
-  "type": 
"org.apache.camel.spring.boot.ComponentConfigurationPropertiesCommon$CustomizerProperties",
-  "sourceType": 
"org.apache.camel.component.facebook.springboot.FacebookComponentConfiguration",
-  "sourceMethod": "getCustomizer()"
-}
-  ],
-  "properties": [
-{
-  "name": "camel.component.facebook.autowired-enabled",
-  "type": "java.lang.Boolean",
-  "description": "Whether autowiring is enabled. This is used for 
automatic autowiring options (the option must be marked as autowired) by 
looking up in the registry to find if there is a single instance of matching 
type, which then gets configured on the component. This can be used for 
automatic configuring JDBC data sources, JMS connection factories, AWS Clients, 
etc.",
-  "sourceType": 
"org.apache.camel.component.facebook.springboot.FacebookComponentConfiguration",
-  "defaultValue": true
-},
-{
-  "name": "camel.component.facebook.bridge-error-handler",
-  "type": "java.lang.Boolean",
-  "description": "Allows for bridging the consumer to the Camel routing 
Error Handler, which mean any exceptions (if possible) occurred while the Camel 
consumer is trying to pickup incoming messages, or the likes, will now be 
processed as a message and handled by the routing Error Handler. Important: 
This is only possible if the 3rd party component 

Re: [PR] CAMEL-20294: remove camel-facebook [camel-spring-boot]

2024-01-19 Thread via GitHub


orpiske merged PR #1068:
URL: https://github.com/apache/camel-spring-boot/pull/1068


-- 
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] Support for POJO, bring it back! [camel-k]

2024-01-19 Thread via GitHub


pai911 commented on issue #1821:
URL: https://github.com/apache/camel-k/issues/1821#issuecomment-1900515915

   > Have a prototype for camel-java-dsl to support POJOs 
https://issues.apache.org/jira/browse/CAMEL-17784
   > 
   > This would in theory could work for camel-k also, if the .java files are 
mounted so the java routes loader can detect all of them in the same scan, and 
make them all compile together.
   
   hi @davsclaus does this mean current camel-k allows run on multiple local 
Java files?
   
   In the first place, I though this issue 
(https://github.com/apache/camel-k/issues/2317) will also be solved.
   
   However, I tried it on v2.1.x, and the same issue still exists, and the Java 
files can't have any references to one another.
   
   


-- 
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] chore(ci): Upgrade github ci actions [camel-k]

2024-01-19 Thread via GitHub


gansheer opened a new pull request, #5085:
URL: https://github.com/apache/camel-k/pull/5085

   
   Global upgrade of following actions:
   * actions/setup-java v3 -> v4
   * actions/setup-go v4 -> v5
   * actions/upload-artifact v2 -> v4
   * actions/github-script v3 -> v7
   * actions/checkout v3 -> v4
   * docker/login-action v2 -> v3
   * docker/setup-qemu-action v2 -> v3
   * actions/stale v3 -> v9
   
   
   **Release Note**
   ```release-note
   chore(ci): Upgrade github ci  actions
   ```
   


-- 
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 (be6f1c0a57a -> 0b36287df94)

2024-01-19 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 be6f1c0a57a CAMEL-20281 - Camel-AWS Components: Make it possible to 
use AwsSessionCredentials to support temporary credentials - AWS SNS (#12840)
 add 1e668299e0b CAMEL-20294: remove camel-facebook
 add 0b36287df94 CAMEL-20297 camel-facebook: update documentation

No new revisions were added by this update.

Summary of changes:
 bom/camel-bom/pom.xml  |   5 -
 .../org/apache/camel/catalog/components.properties |   1 -
 .../apache/camel/catalog/components/facebook.json  | 166 
 .../apache/camel/catalog/main/sensitive-keys.json  |   3 -
 components/camel-facebook/pom.xml  |  61 --
 .../facebook/FacebookComponentConfigurer.java  | 233 -
 .../facebook/FacebookEndpointConfigurer.java   | 621 --
 .../facebook/FacebookEndpointUriFactory.java   | 176 
 .../services/org/apache/camel/component.properties |   7 -
 .../services/org/apache/camel/component/facebook   |   2 -
 .../org/apache/camel/configurer/facebook-component |   2 -
 .../org/apache/camel/configurer/facebook-endpoint  |   2 -
 .../org/apache/camel/urifactory/facebook-endpoint  |   2 -
 .../apache/camel/component/facebook/facebook.json  | 166 
 .../src/main/docs/facebook-component.adoc  | 190 
 .../component/facebook/FacebookComponent.java  |  98 ---
 .../component/facebook/FacebookConstants.java  |  40 -
 .../camel/component/facebook/FacebookConsumer.java | 255 --
 .../camel/component/facebook/FacebookEndpoint.java | 217 -
 .../camel/component/facebook/FacebookProducer.java | 203 -
 .../facebook/config/FacebookConfiguration.java | 524 ---
 .../config/FacebookEndpointConfiguration.java  | 955 -
 .../facebook/config/FacebookNameStyle.java |  29 -
 .../facebook/data/FacebookMethodsType.java | 908 
 .../facebook/data/FacebookMethodsTypeHelper.java   | 378 
 .../facebook/data/FacebookPropertiesHelper.java| 147 
 .../component/facebook/data/ReadingBuilder.java| 129 ---
 .../facebook/CamelFacebookTestSupport.java | 103 ---
 .../facebook/FacebookComponentConsumerIT.java  | 163 
 .../FacebookComponentPageIdProducerIT.java |  69 --
 .../facebook/FacebookComponentProducerIT.java  | 205 -
 .../component/facebook/FacebookEndpointIT.java |  66 --
 .../component/facebook/TestUserMethodsIT.java  | 178 
 .../config/FacebookEndpointConfigurationTest.java  |  48 --
 .../data/FacebookMethodsTypeHelperTest.java| 132 ---
 .../facebook/data/FacebookMethodsTypeTest.java |  48 --
 .../facebook/data/ReadingBuilderTest.java  |  87 --
 .../src/test/resources/log4j2.properties   |  28 -
 .../src/test/resources/test-options.properties |  20 -
 components/pom.xml |   1 -
 .../org/apache/camel/main/components.properties|   1 -
 .../java/org/apache/camel/util/SensitiveUtils.java |   8 +-
 .../ROOT/pages/camel-4x-upgrade-guide-4_4.adoc |   4 +
 .../camel-component-known-dependencies.properties  |   1 -
 parent/pom.xml |   6 -
 45 files changed, 5 insertions(+), 6683 deletions(-)
 delete mode 100644 
catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components/facebook.json
 delete mode 100644 components/camel-facebook/pom.xml
 delete mode 100644 
components/camel-facebook/src/generated/java/org/apache/camel/component/facebook/FacebookComponentConfigurer.java
 delete mode 100644 
components/camel-facebook/src/generated/java/org/apache/camel/component/facebook/FacebookEndpointConfigurer.java
 delete mode 100644 
components/camel-facebook/src/generated/java/org/apache/camel/component/facebook/FacebookEndpointUriFactory.java
 delete mode 100644 
components/camel-facebook/src/generated/resources/META-INF/services/org/apache/camel/component.properties
 delete mode 100644 
components/camel-facebook/src/generated/resources/META-INF/services/org/apache/camel/component/facebook
 delete mode 100644 
components/camel-facebook/src/generated/resources/META-INF/services/org/apache/camel/configurer/facebook-component
 delete mode 100644 
components/camel-facebook/src/generated/resources/META-INF/services/org/apache/camel/configurer/facebook-endpoint
 delete mode 100644 
components/camel-facebook/src/generated/resources/META-INF/services/org/apache/camel/urifactory/facebook-endpoint
 delete mode 100644 
components/camel-facebook/src/generated/resources/org/apache/camel/component/facebook/facebook.json
 delete mode 100644 
components/camel-facebook/src/main/docs/facebook-component.adoc
 delete mode 100644 
components/camel-facebook/src/main/java/org/apache/camel/component/facebook/FacebookComponent.java
 delete mode 100644 

Re: [PR] CAMEL-19519 - camel-file: replace Thread.sleep in tests. [camel]

2024-01-19 Thread via GitHub


orpiske commented on code in PR #12844:
URL: https://github.com/apache/camel/pull/12844#discussion_r1459017045


##
core/camel-core/src/test/java/org/apache/camel/component/file/strategy/FileChangedReadLockTest.java:
##
@@ -68,7 +72,7 @@ private void writeSlowFile() throws Exception {
 for (int i = 0; i < 20; i++) {
 fos.write(("Line " + i + LS).getBytes());
 LOG.debug("Writing line {}", i);
-Thread.sleep(50);
+latch.await(50, TimeUnit.MILLISECONDS);

Review Comment:
   The latch has to wait on something for it to count down. As it is, it's just 
timing out.



-- 
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] CAMEL-19519 - camel-file: replace Thread.sleep in tests. [camel]

2024-01-19 Thread via GitHub


orpiske commented on code in PR #12844:
URL: https://github.com/apache/camel/pull/12844#discussion_r1459016044


##
core/camel-core/src/test/java/org/apache/camel/component/file/stress/FileAsyncStressManuallyManualTest.java:
##
@@ -32,6 +31,10 @@
 @DisabledOnOs(OS.WINDOWS)
 public class FileAsyncStressManuallyManualTest extends ContextTestSupport {

Review Comment:
   Same note about manual tests I wrote for 
`FileAsyncStressReadLockRenameManualManualTest`



##
core/camel-core/src/test/java/org/apache/camel/component/file/stress/FileAsyncStressManualTest.java:
##
@@ -33,6 +33,10 @@
 @DisabledOnOs(OS.WINDOWS)
 public class FileAsyncStressManualTest extends ContextTestSupport {

Review Comment:
   Same note about manual tests I wrote for 
`FileAsyncStressReadLockRenameManualManualTest`



-- 
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] CAMEL-19519 - camel-file: replace Thread.sleep in tests. [camel]

2024-01-19 Thread via GitHub


orpiske commented on code in PR #12844:
URL: https://github.com/apache/camel/pull/12844#discussion_r1459015736


##
core/camel-core/src/test/java/org/apache/camel/component/file/stress/FileAsyncStressReadLockLockFileTestManualManualTest.java:
##
@@ -17,15 +17,18 @@
 package org.apache.camel.component.file.stress;
 
 import java.util.Random;
+import java.util.concurrent.CountDownLatch;
 
-import org.apache.camel.Exchange;
-import org.apache.camel.Processor;
 import org.apache.camel.builder.RouteBuilder;
 import org.junit.jupiter.api.Disabled;
 
 @Disabled("Manual test")
 public class FileAsyncStressReadLockLockFileTestManualManualTest extends 
FileAsyncStressManualTest {

Review Comment:
   Same note about manual tests I wrote for 
`FileAsyncStressReadLockRenameManualManualTest`



-- 
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] CAMEL-19519 - camel-file: replace Thread.sleep in tests. [camel]

2024-01-19 Thread via GitHub


orpiske commented on code in PR #12844:
URL: https://github.com/apache/camel/pull/12844#discussion_r1459015408


##
core/camel-core/src/test/java/org/apache/camel/component/file/stress/FileAsyncStressReadLockNoneManualManualTest.java:
##
@@ -17,15 +17,18 @@
 package org.apache.camel.component.file.stress;
 
 import java.util.Random;
+import java.util.concurrent.CountDownLatch;
 
-import org.apache.camel.Exchange;
-import org.apache.camel.Processor;
 import org.apache.camel.builder.RouteBuilder;
 import org.junit.jupiter.api.Disabled;
 
 @Disabled("Manual test")
 public class FileAsyncStressReadLockNoneManualManualTest extends 
FileAsyncStressManualTest {

Review Comment:
   Same note about manual tests I wrote for 
`FileAsyncStressReadLockRenameManualManualTest`



-- 
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] CAMEL-19519 - camel-file: replace Thread.sleep in tests. [camel]

2024-01-19 Thread via GitHub


orpiske commented on code in PR #12844:
URL: https://github.com/apache/camel/pull/12844#discussion_r1459010708


##
core/camel-core/src/test/java/org/apache/camel/component/file/FileBatchConsumerMemoryLeakManualTest.java:
##
@@ -64,7 +69,7 @@ public void process(Exchange exchange) throws Exception {
 });
 context.start();
 
-Thread.sleep(30 * 1000L);
+latch.await(30, TimeUnit.SECONDS);

Review Comment:
   This is incorrect. There needs to be something to count down the latch. 



##
core/camel-core/src/test/java/org/apache/camel/component/file/FileExclusiveReadNoneStrategyTest.java:
##
@@ -73,7 +77,7 @@ public void process(Exchange exchange) throws Exception {
 try (OutputStream fos = 
Files.newOutputStream(testFile("slowfile/hello.txt"))) {
 fos.write("Hello World".getBytes());
 for (int i = 0; i < 3; i++) {
-Thread.sleep(100);
+latch.await(100, TimeUnit.MILLISECONDS);

Review Comment:
   Same note as above.



-- 
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] CAMEL-19519 - camel-file: replace Thread.sleep in tests. [camel]

2024-01-19 Thread via GitHub


orpiske commented on code in PR #12844:
URL: https://github.com/apache/camel/pull/12844#discussion_r1459014695


##
core/camel-core/src/test/java/org/apache/camel/component/file/stress/FileAsyncStressReadLockRenameManualManualTest.java:
##
@@ -17,15 +17,18 @@
 package org.apache.camel.component.file.stress;
 
 import java.util.Random;
+import java.util.concurrent.CountDownLatch;
 
-import org.apache.camel.Exchange;
-import org.apache.camel.Processor;
 import org.apache.camel.builder.RouteBuilder;
 import org.junit.jupiter.api.Disabled;
 
 @Disabled("Manual test")
 public class FileAsyncStressReadLockRenameManualManualTest extends 
FileAsyncStressManualTest {

Review Comment:
   This test does not need to be changed, as it's a manual one.



-- 
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] CAMEL-20294: remove camel-facebook [camel]

2024-01-19 Thread via GitHub


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


-- 
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 (be6f1c0a57a -> 0b36287df94)

2024-01-19 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 be6f1c0a57a CAMEL-20281 - Camel-AWS Components: Make it possible to 
use AwsSessionCredentials to support temporary credentials - AWS SNS (#12840)
 add 1e668299e0b CAMEL-20294: remove camel-facebook
 add 0b36287df94 CAMEL-20297 camel-facebook: update documentation

No new revisions were added by this update.

Summary of changes:
 bom/camel-bom/pom.xml  |   5 -
 .../org/apache/camel/catalog/components.properties |   1 -
 .../apache/camel/catalog/components/facebook.json  | 166 
 .../apache/camel/catalog/main/sensitive-keys.json  |   3 -
 components/camel-facebook/pom.xml  |  61 --
 .../facebook/FacebookComponentConfigurer.java  | 233 -
 .../facebook/FacebookEndpointConfigurer.java   | 621 --
 .../facebook/FacebookEndpointUriFactory.java   | 176 
 .../services/org/apache/camel/component.properties |   7 -
 .../services/org/apache/camel/component/facebook   |   2 -
 .../org/apache/camel/configurer/facebook-component |   2 -
 .../org/apache/camel/configurer/facebook-endpoint  |   2 -
 .../org/apache/camel/urifactory/facebook-endpoint  |   2 -
 .../apache/camel/component/facebook/facebook.json  | 166 
 .../src/main/docs/facebook-component.adoc  | 190 
 .../component/facebook/FacebookComponent.java  |  98 ---
 .../component/facebook/FacebookConstants.java  |  40 -
 .../camel/component/facebook/FacebookConsumer.java | 255 --
 .../camel/component/facebook/FacebookEndpoint.java | 217 -
 .../camel/component/facebook/FacebookProducer.java | 203 -
 .../facebook/config/FacebookConfiguration.java | 524 ---
 .../config/FacebookEndpointConfiguration.java  | 955 -
 .../facebook/config/FacebookNameStyle.java |  29 -
 .../facebook/data/FacebookMethodsType.java | 908 
 .../facebook/data/FacebookMethodsTypeHelper.java   | 378 
 .../facebook/data/FacebookPropertiesHelper.java| 147 
 .../component/facebook/data/ReadingBuilder.java| 129 ---
 .../facebook/CamelFacebookTestSupport.java | 103 ---
 .../facebook/FacebookComponentConsumerIT.java  | 163 
 .../FacebookComponentPageIdProducerIT.java |  69 --
 .../facebook/FacebookComponentProducerIT.java  | 205 -
 .../component/facebook/FacebookEndpointIT.java |  66 --
 .../component/facebook/TestUserMethodsIT.java  | 178 
 .../config/FacebookEndpointConfigurationTest.java  |  48 --
 .../data/FacebookMethodsTypeHelperTest.java| 132 ---
 .../facebook/data/FacebookMethodsTypeTest.java |  48 --
 .../facebook/data/ReadingBuilderTest.java  |  87 --
 .../src/test/resources/log4j2.properties   |  28 -
 .../src/test/resources/test-options.properties |  20 -
 components/pom.xml |   1 -
 .../org/apache/camel/main/components.properties|   1 -
 .../java/org/apache/camel/util/SensitiveUtils.java |   8 +-
 .../ROOT/pages/camel-4x-upgrade-guide-4_4.adoc |   4 +
 .../camel-component-known-dependencies.properties  |   1 -
 parent/pom.xml |   6 -
 45 files changed, 5 insertions(+), 6683 deletions(-)
 delete mode 100644 
catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components/facebook.json
 delete mode 100644 components/camel-facebook/pom.xml
 delete mode 100644 
components/camel-facebook/src/generated/java/org/apache/camel/component/facebook/FacebookComponentConfigurer.java
 delete mode 100644 
components/camel-facebook/src/generated/java/org/apache/camel/component/facebook/FacebookEndpointConfigurer.java
 delete mode 100644 
components/camel-facebook/src/generated/java/org/apache/camel/component/facebook/FacebookEndpointUriFactory.java
 delete mode 100644 
components/camel-facebook/src/generated/resources/META-INF/services/org/apache/camel/component.properties
 delete mode 100644 
components/camel-facebook/src/generated/resources/META-INF/services/org/apache/camel/component/facebook
 delete mode 100644 
components/camel-facebook/src/generated/resources/META-INF/services/org/apache/camel/configurer/facebook-component
 delete mode 100644 
components/camel-facebook/src/generated/resources/META-INF/services/org/apache/camel/configurer/facebook-endpoint
 delete mode 100644 
components/camel-facebook/src/generated/resources/META-INF/services/org/apache/camel/urifactory/facebook-endpoint
 delete mode 100644 
components/camel-facebook/src/generated/resources/org/apache/camel/component/facebook/facebook.json
 delete mode 100644 
components/camel-facebook/src/main/docs/facebook-component.adoc
 delete mode 100644 
components/camel-facebook/src/main/java/org/apache/camel/component/facebook/FacebookComponent.java
 delete mode 100644 

Re: [PR] CAMEL-20294: remove camel-facebook [camel]

2024-01-19 Thread via GitHub


orpiske commented on PR #12843:
URL: https://github.com/apache/camel/pull/12843#issuecomment-1900418734

   > TODO: also remove the component on Camel Spring Boot.
   
   Done.


-- 
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] CAMEL-20294: remove camel-facebook [camel]

2024-01-19 Thread via GitHub


orpiske commented on code in PR #12843:
URL: https://github.com/apache/camel/pull/12843#discussion_r1458954118


##
docs/user-manual/modules/ROOT/pages/camel-4x-upgrade-guide-4_4.adoc:
##
@@ -130,6 +130,10 @@ Replaced the previous JSONata library with a new one that 
offers complete compat
 
 The JdbcAggregationRepository now provides a deserializationFilter parameter. 
The default value for it is allowing all java packages and subpackages and all 
org.apache.camel packages and subpackages. If you plan to use particular 
classes and you want to expand the filter, you should change the value 
according to your needs. More details in CAMEL-20303.
 
+=== camel-facebook
+
+The component was removed without deprecation. The library supporting this 
component has been unmaintained for a long time. We found no indications that 
the library itself no the component are working with modern Facebook, along 
with the absense of community interest.

Review Comment:
   Good catch. It was missing, indeed. 



-- 
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] CAMEL-20294: remove camel-facebook [camel]

2024-01-19 Thread via GitHub


apupier commented on code in PR #12843:
URL: https://github.com/apache/camel/pull/12843#discussion_r1458948499


##
docs/user-manual/modules/ROOT/pages/camel-4x-upgrade-guide-4_4.adoc:
##
@@ -130,6 +130,10 @@ Replaced the previous JSONata library with a new one that 
offers complete compat
 
 The JdbcAggregationRepository now provides a deserializationFilter parameter. 
The default value for it is allowing all java packages and subpackages and all 
org.apache.camel packages and subpackages. If you plan to use particular 
classes and you want to expand the filter, you should change the value 
according to your needs. More details in CAMEL-20303.
 
+=== camel-facebook
+
+The component was removed without deprecation. The library supporting this 
component has been unmaintained for a long time. We found no indications that 
the library itself no the component are working with modern Facebook, along 
with the absense of community interest.

Review Comment:
   isn't a portion of sentence missing going with `along with the absense of 
community interest`?



-- 
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] CAMEL-20294: remove camel-facebook [camel]

2024-01-19 Thread via GitHub


apupier commented on code in PR #12843:
URL: https://github.com/apache/camel/pull/12843#discussion_r1458946377


##
docs/user-manual/modules/ROOT/pages/camel-4x-upgrade-guide-4_4.adoc:
##
@@ -130,6 +130,10 @@ Replaced the previous JSONata library with a new one that 
offers complete compat
 
 The JdbcAggregationRepository now provides a deserializationFilter parameter. 
The default value for it is allowing all java packages and subpackages and all 
org.apache.camel packages and subpackages. If you plan to use particular 
classes and you want to expand the filter, you should change the value 
according to your needs. More details in CAMEL-20303.
 
+=== camel-facebook
+
+The component was removed without deprecation. The library supporting this 
component has been unmaintained for a long time. We found no indications that 
the library itself no the component are working with modern Facebook, along 
with the absense of community interest.

Review Comment:
   ```suggestion
   The component was removed without deprecation. The library supporting this 
component has been unmaintained for a long time. We found no indications that 
the library itself nor the component are working with modern Facebook, along 
with the absence of community interest.
   ```



-- 
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] CAMEL-19519 - camel-file: replace Thread.sleep in tests. [camel]

2024-01-19 Thread via GitHub


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

   :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] CAMEL-19519 - camel-file: replace Thread.sleep in tests. [camel]

2024-01-19 Thread via GitHub


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

   # Description
   Issue - https://issues.apache.org/jira/browse/CAMEL-19519
   
   
   # 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



Re: [PR] [CAMEL-19620] - upgrade californium-scandium [camel]

2024-01-19 Thread via GitHub


kahboom commented on PR #12769:
URL: https://github.com/apache/camel/pull/12769#issuecomment-1900315974

   Wow thank you @boaks , that's very helpful. Working through your feedback 
now.


-- 
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] UI bundle regen [camel-website]

2024-01-19 Thread via GitHub


zregvart commented on PR #1129:
URL: https://github.com/apache/camel-website/pull/1129#issuecomment-1900291569

   Let's close this, no longer needed with #1130 


-- 
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] UI bundle regen [camel-website]

2024-01-19 Thread via GitHub


zregvart closed pull request #1129: UI bundle regen
URL: https://github.com/apache/camel-website/pull/1129


-- 
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-website) branch kam-4.3.0 deleted (was b609b09b)

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

zregvart pushed a change to branch kam-4.3.0
in repository https://gitbox.apache.org/repos/asf/camel-website.git


 was b609b09b Added Camel Kamelets 4.3.0 release

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-k) branch main updated: feat(ci): Run specific action for java code

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

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


The following commit(s) were added to refs/heads/main by this push:
 new 59149c032 feat(ci): Run specific action for java code
59149c032 is described below

commit 59149c032ed0db064508ca003a865d6193303f78
Author: Gaelle Fournier 
AuthorDate: Thu Jan 18 16:44:19 2024 +0100

feat(ci): Run specific action for java code

* Add java-build workflow on /java and /config
* Remove /java path from other workflows
---
 .github/actions/java-build/action.yml | 45 +
 .github/workflows/build.yml   |  2 ++
 .github/workflows/builder.yml |  2 ++
 .github/workflows/common.yml  |  2 ++
 .github/workflows/install.yml |  2 ++
 .github/workflows/{build.yml => java.yml} | 47 +++
 .github/workflows/knative.yml |  2 ++
 .github/workflows/native.yml  |  1 +
 .github/workflows/telemetry.yml   |  2 ++
 9 files changed, 74 insertions(+), 31 deletions(-)

diff --git a/.github/actions/java-build/action.yml 
b/.github/actions/java-build/action.yml
new file mode 100644
index 0..14743f7ff
--- /dev/null
+++ b/.github/actions/java-build/action.yml
@@ -0,0 +1,45 @@
+# ---
+# 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.
+# ---
+
+name: java-builder
+description: "Build java modules"
+inputs:
+  javaVersion:
+description: "Java version"
+required: true
+  javaDistribution:
+description: "Java distribution"
+required: true
+
+runs:
+  using: "composite"
+  steps:
+- name: Set up JDK ${{ inputs.javaVersion }}
+  uses: actions/setup-java@v3
+  with:
+distribution: ${{ inputs.javaDistribution }}
+java-version: ${{ inputs.javaVersion }}
+- name: Build java/crds
+  working-directory: java/crds
+  shell: bash
+  run: |
+  mvn clean install
+- name: Build java/maven-logging
+  working-directory: java/maven-logging
+  shell: bash
+  run: |
+  mvn clean install
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index eb9872181..0917b2006 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -27,6 +27,7 @@ on:
   - "release-*"
 paths-ignore:
   - 'docs/**'
+  - 'java/**'
   - 'proposals/**'
   - '**.adoc'
   - '**.md'
@@ -39,6 +40,7 @@ on:
   - "release-*"
 paths-ignore:
   - 'docs/**'
+  - 'java/**'
   - 'proposals/**'
   - '**.md'
   - '**.adoc'
diff --git a/.github/workflows/builder.yml b/.github/workflows/builder.yml
index 759873174..e650cf7a4 100644
--- a/.github/workflows/builder.yml
+++ b/.github/workflows/builder.yml
@@ -27,6 +27,7 @@ on:
   - "release-*"
 paths-ignore:
   - 'docs/**'
+  - 'java/**'
   - 'proposals/**'
   - '**.adoc'
   - '**.md'
@@ -39,6 +40,7 @@ on:
   - "release-*"
 paths-ignore:
   - 'docs/**'
+  - 'java/**'
   - 'proposals/**'
   - '**.adoc'
   - '**.md'
diff --git a/.github/workflows/common.yml b/.github/workflows/common.yml
index 627ea36e7..41ede9c0e 100644
--- a/.github/workflows/common.yml
+++ b/.github/workflows/common.yml
@@ -27,6 +27,7 @@ on:
   - "release-*"
 paths-ignore:
   - 'docs/**'
+  - 'java/**'
   - 'proposals/**'
   - '**.adoc'
   - '**.md'
@@ -39,6 +40,7 @@ on:
   - "release-*"
 paths-ignore:
   - 'docs/**'
+  - 'java/**'
   - 'proposals/**'
   - '**.adoc'
   - '**.md'
diff --git a/.github/workflows/install.yml b/.github/workflows/install.yml
index 3575b29da..48858ad36 100644
--- a/.github/workflows/install.yml
+++ b/.github/workflows/install.yml
@@ -27,6 +27,7 @@ on:
   - "release-*"
 paths-ignore:
   - 'docs/**'
+  - 'java/**'
   - 'proposals/**'
   - '**.adoc'
   - '**.md'
@@ -39,6 +40,7 @@ on:
   - "release-*"
 paths-ignore:
   - 'docs/**'
+  - 

Re: [I] Run a different set of checks for java dependencies [camel-k]

2024-01-19 Thread via GitHub


squakez closed issue #5054: Run a different set of checks for java dependencies
URL: https://github.com/apache/camel-k/issues/5054


-- 
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] feat(ci): Run specific action for java code [camel-k]

2024-01-19 Thread via GitHub


squakez merged PR #5083:
URL: https://github.com/apache/camel-k/pull/5083


-- 
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 (810e133ee20 -> be6f1c0a57a)

2024-01-19 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 810e133ee20 CAMEL-19749: Variables should reset stream cache before 
use so they are more easy to use for end users.
 add be6f1c0a57a CAMEL-20281 - Camel-AWS Components: Make it possible to 
use AwsSessionCredentials to support temporary credentials - AWS SNS (#12840)

No new revisions were added by this update.

Summary of changes:
 .../apache/camel/catalog/components/aws2-sns.json  | 16 -
 .../aws2/sns/Sns2ComponentConfigurer.java  | 12 ++
 .../component/aws2/sns/Sns2EndpointConfigurer.java | 12 ++
 .../component/aws2/sns/Sns2EndpointUriFactory.java |  7 --
 .../apache/camel/component/aws2/sns/aws2-sns.json  | 16 -
 .../camel/component/aws2/sns/Sns2Component.java|  3 ++-
 .../component/aws2/sns/Sns2Configuration.java  | 27 ++
 .../aws2/sns/client/Sns2ClientFactory.java |  3 +++
 ...rdImpl.java => Sns2ClientSessionTokenImpl.java} | 11 +
 9 files changed, 87 insertions(+), 20 deletions(-)
 copy 
components/camel-aws/camel-aws2-sns/src/main/java/org/apache/camel/component/aws2/sns/client/impl/{Sns2ClientStandardImpl.java
 => Sns2ClientSessionTokenImpl.java} (91%)



(camel) branch main updated: CAMEL-20281 - Camel-AWS Components: Make it possible to use AwsSessionCredentials to support temporary credentials - AWS SNS (#12840)

2024-01-19 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 be6f1c0a57a CAMEL-20281 - Camel-AWS Components: Make it possible to 
use AwsSessionCredentials to support temporary credentials - AWS SNS (#12840)
be6f1c0a57a is described below

commit be6f1c0a57ad6fdefa2efc4505b2322ea6e15cfd
Author: Andrea Cosentino 
AuthorDate: Fri Jan 19 11:47:47 2024 +0100

CAMEL-20281 - Camel-AWS Components: Make it possible to use 
AwsSessionCredentials to support temporary credentials - AWS SNS (#12840)

* CAMEL-20281 - Camel-AWS Components: Make it possible to use 
AwsSessionCredentials to support temporary credentials - AWS SNS

Signed-off-by: Andrea Cosentino 

* CAMEL-20281 - Camel-AWS Components: Make it possible to use 
AwsSessionCredentials to support temporary credentials - AWS SNS

Signed-off-by: Andrea Cosentino 

-

Signed-off-by: Andrea Cosentino 
---
 .../apache/camel/catalog/components/aws2-sns.json  |  16 +--
 .../aws2/sns/Sns2ComponentConfigurer.java  |  12 +++
 .../component/aws2/sns/Sns2EndpointConfigurer.java |  12 +++
 .../component/aws2/sns/Sns2EndpointUriFactory.java |   7 +-
 .../apache/camel/component/aws2/sns/aws2-sns.json  |  16 +--
 .../camel/component/aws2/sns/Sns2Component.java|   3 +-
 .../component/aws2/sns/Sns2Configuration.java  |  27 +
 .../aws2/sns/client/Sns2ClientFactory.java |   3 +
 .../client/impl/Sns2ClientSessionTokenImpl.java| 110 +
 9 files changed, 191 insertions(+), 15 deletions(-)

diff --git 
a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components/aws2-sns.json
 
b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components/aws2-sns.json
index d82bb2d78ef..3f9d1a809eb 100644
--- 
a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components/aws2-sns.json
+++ 
b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components/aws2-sns.json
@@ -48,9 +48,11 @@
 "accessKey": { "index": 22, "kind": "property", "displayName": "Access 
Key", "group": "security", "label": "security", "required": false, "type": 
"string", "javaType": "java.lang.String", "deprecated": false, "autowired": 
false, "secret": true, "configurationClass": 
"org.apache.camel.component.aws2.sns.Sns2Configuration", "configurationField": 
"configuration", "description": "Amazon AWS Access Key" },
 "profileCredentialsName": { "index": 23, "kind": "property", 
"displayName": "Profile Credentials Name", "group": "security", "label": 
"security", "required": false, "type": "string", "javaType": 
"java.lang.String", "deprecated": false, "autowired": false, "secret": false, 
"configurationClass": "org.apache.camel.component.aws2.sns.Sns2Configuration", 
"configurationField": "configuration", "description": "If using a profile 
credentials provider this parameter will set the profile name" },
 "secretKey": { "index": 24, "kind": "property", "displayName": "Secret 
Key", "group": "security", "label": "security", "required": false, "type": 
"string", "javaType": "java.lang.String", "deprecated": false, "autowired": 
false, "secret": true, "configurationClass": 
"org.apache.camel.component.aws2.sns.Sns2Configuration", "configurationField": 
"configuration", "description": "Amazon AWS Secret Key" },
-"trustAllCertificates": { "index": 25, "kind": "property", "displayName": 
"Trust All Certificates", "group": "security", "label": "security", "required": 
false, "type": "boolean", "javaType": "boolean", "deprecated": false, 
"autowired": false, "secret": false, "defaultValue": false, 
"configurationClass": "org.apache.camel.component.aws2.sns.Sns2Configuration", 
"configurationField": "configuration", "description": "If we want to trust all 
certificates in case of overriding the endpoint" },
-"useDefaultCredentialsProvider": { "index": 26, "kind": "property", 
"displayName": "Use Default Credentials Provider", "group": "security", 
"label": "security", "required": false, "type": "boolean", "javaType": 
"boolean", "deprecated": false, "autowired": false, "secret": false, 
"defaultValue": false, "configurationClass": 
"org.apache.camel.component.aws2.sns.Sns2Configuration", "configurationField": 
"configuration", "description": "Set whether the SNS client should expect to 
load cr [...]
-"useProfileCredentialsProvider": { "index": 27, "kind": "property", 
"displayName": "Use Profile Credentials Provider", "group": "security", 
"label": "security", "required": false, "type": "boolean", "javaType": 
"boolean", "deprecated": false, "autowired": false, "secret": false, 
"defaultValue": false, "configurationClass": 
"org.apache.camel.component.aws2.sns.Sns2Configuration", "configurationField": 
"configuration", 

(camel) branch CAMEL-20281-sns deleted (was 8a4bed5a59c)

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

acosentino pushed a change to branch CAMEL-20281-sns
in repository https://gitbox.apache.org/repos/asf/camel.git


 was 8a4bed5a59c CAMEL-20281 - Camel-AWS Components: Make it possible to 
use AwsSessionCredentials to support temporary credentials - AWS SNS

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] CAMEL-20281 - Camel-AWS Components: Make it possible to use AwsSessionCredentials to support temporary credentials - AWS SNS [camel]

2024-01-19 Thread via GitHub


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


-- 
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] CAMEL-20294: remove camel-facebook [camel]

2024-01-19 Thread via GitHub


orpiske commented on PR #12843:
URL: https://github.com/apache/camel/pull/12843#issuecomment-1900169757

   TODO: also remove the component on Camel Spring Boot. 


-- 
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] CAMEL-20294: remove camel-facebook [camel]

2024-01-19 Thread via GitHub


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

   (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] CAMEL-20294: remove camel-facebook [camel]

2024-01-19 Thread via GitHub


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

   :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] CAMEL-20297 camel-zookeeper: do not swallow interrupted exceptions [camel]

2024-01-19 Thread via GitHub


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

   :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] CAMEL-20297 camel-zookeeper: do not swallow interrupted exceptions [camel]

2024-01-19 Thread via GitHub


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

   (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] CAMEL-29297: do not swallow interrupted exceptions [camel]

2024-01-19 Thread via GitHub


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

   :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] CAMEL-29297: do not swallow interrupted exceptions [camel]

2024-01-19 Thread via GitHub


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

   (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-quarkus) 10/13: rebased + synced + generated files

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

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

commit 1d6998dd35a25c16cfdaffc40fb5c7abf56dc805
Author: JiriOndrusek 
AuthorDate: Fri Jan 12 09:13:24 2024 +0100

rebased + synced + generated files
---
 poms/bom/src/main/generated/flattened-full-pom.xml   | 16 
 poms/bom/src/main/generated/flattened-reduced-pom.xml| 14 +++---
 .../src/main/generated/flattened-reduced-verbose-pom.xml | 14 +++---
 3 files changed, 22 insertions(+), 22 deletions(-)

diff --git a/poms/bom/src/main/generated/flattened-full-pom.xml 
b/poms/bom/src/main/generated/flattened-full-pom.xml
index c7d8870109..10221e859b 100644
--- a/poms/bom/src/main/generated/flattened-full-pom.xml
+++ b/poms/bom/src/main/generated/flattened-full-pom.xml
@@ -2196,7 +2196,7 @@
   
 org.apache.camel
 camel-smb
-4.3.0
+4.4.0-SNAPSHOT
 
   
 junit
@@ -6703,7 +6703,7 @@
   
 org.springframework
 spring-aop
-6.1.2
+6.1.3
 
   
 org.springframework
@@ -6718,7 +6718,7 @@
   
 org.springframework
 spring-expression
-6.1.2
+6.1.3
 
   
 org.springframework
@@ -6729,7 +6729,7 @@
   
 org.springframework
 spring-jdbc
-6.1.2
+6.1.3
 
   
 org.springframework
@@ -6744,7 +6744,7 @@
   
 org.springframework
 spring-jms
-6.1.2
+6.1.3
 
   
 org.springframework
@@ -6759,7 +6759,7 @@
   
 org.springframework
 spring-messaging
-6.1.2
+6.1.3
 
   
 org.springframework
@@ -6774,7 +6774,7 @@
   
 org.springframework
 spring-orm
-6.1.2
+6.1.3
 
   
 org.springframework
@@ -6789,7 +6789,7 @@
   
 org.springframework
 spring-tx
-6.1.2
+6.1.3
 
   
 org.springframework
diff --git a/poms/bom/src/main/generated/flattened-reduced-pom.xml 
b/poms/bom/src/main/generated/flattened-reduced-pom.xml
index 6c04a6a7b0..df05cac76f 100644
--- a/poms/bom/src/main/generated/flattened-reduced-pom.xml
+++ b/poms/bom/src/main/generated/flattened-reduced-pom.xml
@@ -2196,7 +2196,7 @@
   
 org.apache.camel
 camel-smb
-4.3.0
+4.4.0-SNAPSHOT
 
   
 junit
@@ -6618,7 +6618,7 @@
   
 org.springframework
 spring-aop
-6.1.2
+6.1.3
 
   
 org.springframework
@@ -6633,7 +6633,7 @@
   
 org.springframework
 spring-expression
-6.1.2
+6.1.3
 
   
 org.springframework
@@ -6644,7 +6644,7 @@
   
 org.springframework
 spring-jdbc
-6.1.2
+6.1.3
 
   
 org.springframework
@@ -6659,7 +6659,7 @@
   
 org.springframework
 spring-jms
-6.1.2
+6.1.3
 
   
 org.springframework
@@ -6674,7 +6674,7 @@
   
 org.springframework
 spring-messaging
-6.1.2
+6.1.3
 
   
 org.springframework
@@ -6689,7 +6689,7 @@
   
 org.springframework
 spring-tx
-6.1.2
+6.1.3
 
   
 org.springframework
diff --git a/poms/bom/src/main/generated/flattened-reduced-verbose-pom.xml 
b/poms/bom/src/main/generated/flattened-reduced-verbose-pom.xml
index a54d97337f..3696730dc9 100644
--- a/poms/bom/src/main/generated/flattened-reduced-verbose-pom.xml
+++ b/poms/bom/src/main/generated/flattened-reduced-verbose-pom.xml
@@ -2196,7 +2196,7 @@
   
 org.apache.camel
 camel-smb
-4.3.0
+4.4.0-SNAPSHOT
 
   
 junit
@@ -6618,7 +6618,7 @@
   
 org.springframework
 spring-aop
-6.1.2
+6.1.3
 
   
 org.springframework
@@ -6633,7 +6633,7 @@
   
 org.springframework
 spring-expression
-6.1.2
+6.1.3
 
   
 org.springframework
@@ -6644,7 +6644,7 @@
   
 org.springframework
 spring-jdbc
-6.1.2
+6.1.3
 
   
 org.springframework
@@ -6659,7 +6659,7 @@
   
 org.springframework
 spring-jms
-6.1.2
+6.1.3
 
   
 org.springframework
@@ -6674,7 +6674,7 @@
   
 org.springframework
 spring-messaging
-6.1.2
+6.1.3
 
   
 org.springframework
@@ -6689,7 +6689,7 @@
   
 

(camel-quarkus) 05/13: Disabled consul because of #5635

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

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

commit 7f296f7b0f0853c7549334057a0eb5a5a5d63c08
Author: JiriOndrusek 
AuthorDate: Thu Jan 4 14:01:11 2024 +0100

Disabled consul because of #5635
---
 .../deployment/ConsulClientSupportProcessor.java   |  6 ++---
 extensions-support/consul-client/runtime/pom.xml   |  2 +-
 integration-tests/consul/pom.xml   |  2 ++
 .../component/consul/it/ConsulResource.java|  2 +-
 .../quarkus/component/consul/it/ConsulTest.java|  2 ++
 .../component/consul/it/ConsulTestResource.java|  2 +-
 poms/bom/pom.xml   | 30 +++---
 poms/bom/src/main/generated/flattened-full-pom.xml | 30 +++---
 .../src/main/generated/flattened-reduced-pom.xml   | 30 +++---
 .../generated/flattened-reduced-verbose-pom.xml| 30 +++---
 10 files changed, 70 insertions(+), 66 deletions(-)

diff --git 
a/extensions-support/consul-client/deployment/src/main/java/org/apache/camel/quarkus/support/consul/client/deployment/ConsulClientSupportProcessor.java
 
b/extensions-support/consul-client/deployment/src/main/java/org/apache/camel/quarkus/support/consul/client/deployment/ConsulClientSupportProcessor.java
index 4952f3fb2b..2548279528 100644
--- 
a/extensions-support/consul-client/deployment/src/main/java/org/apache/camel/quarkus/support/consul/client/deployment/ConsulClientSupportProcessor.java
+++ 
b/extensions-support/consul-client/deployment/src/main/java/org/apache/camel/quarkus/support/consul/client/deployment/ConsulClientSupportProcessor.java
@@ -41,11 +41,11 @@ class ConsulClientSupportProcessor {
 private static final DotName DOT_NAME_IMMUTABLE_MAP = DotName.createSimple(
 "com.google.common.collect.ImmutableMap");
 
-private static final Pattern CLIENT_API_PATTERN = 
Pattern.compile("com\\.orbitz\\.consul\\..*Client\\$Api");
+private static final Pattern CLIENT_API_PATTERN = 
Pattern.compile("org\\.kiwiproject\\.consul\\..*Client\\$Api");
 
 @BuildStep
 AdditionalApplicationArchiveMarkerBuildItem applicationArchiveMarkers() {
-return new 
AdditionalApplicationArchiveMarkerBuildItem("com/orbitz/consul");
+return new 
AdditionalApplicationArchiveMarkerBuildItem("org/kiwiproject/consul");
 }
 
 @BuildStep
@@ -63,7 +63,7 @@ class ConsulClientSupportProcessor {
 .map(AnnotationInstance::target)
 .filter(item -> item.kind() == AnnotationTarget.Kind.CLASS)
 .map(AnnotationTarget::asClass)
-.filter(item -> 
item.name().prefix().toString().startsWith("com.orbitz.consul.model"))
+.filter(item -> 
item.name().prefix().toString().startsWith("org.kiwiproject.consul.model"))
 .flatMap(item -> 
index.getIndex().getAllKnownSubclasses(item.name()).stream())
 .map(item -> 
ReflectiveClassBuildItem.builder(item.name().toString()).methods().build())
 .forEach(reflectiveClasses::produce);
diff --git a/extensions-support/consul-client/runtime/pom.xml 
b/extensions-support/consul-client/runtime/pom.xml
index 64e7eb2c57..ed2e7a43df 100644
--- a/extensions-support/consul-client/runtime/pom.xml
+++ b/extensions-support/consul-client/runtime/pom.xml
@@ -34,7 +34,7 @@
 quarkus-core
 
 
-com.orbitz.consul
+org.kiwiproject
 consul-client
 
 
diff --git a/integration-tests/consul/pom.xml b/integration-tests/consul/pom.xml
index 1850fb7d38..3cf9368a6a 100644
--- a/integration-tests/consul/pom.xml
+++ b/integration-tests/consul/pom.xml
@@ -75,6 +75,7 @@
 
 
 
+
 
 virtualDependencies
 
diff --git 
a/integration-tests/consul/src/main/java/org/apache/camel/quarkus/component/consul/it/ConsulResource.java
 
b/integration-tests/consul/src/main/java/org/apache/camel/quarkus/component/consul/it/ConsulResource.java
index 180cfd52dc..5d0bf5daff 100644
--- 
a/integration-tests/consul/src/main/java/org/apache/camel/quarkus/component/consul/it/ConsulResource.java
+++ 
b/integration-tests/consul/src/main/java/org/apache/camel/quarkus/component/consul/it/ConsulResource.java
@@ -16,7 +16,6 @@
  */
 package org.apache.camel.quarkus.component.consul.it;
 
-import com.orbitz.consul.model.kv.ImmutableValue;
 import jakarta.enterprise.context.ApplicationScoped;
 import jakarta.inject.Inject;
 import jakarta.ws.rs.Consumes;
@@ -29,6 +28,7 @@ import jakarta.ws.rs.core.MediaType;
 import org.apache.camel.FluentProducerTemplate;
 import org.apache.camel.component.consul.ConsulConstants;
 import org.apache.camel.component.consul.endpoint.ConsulKeyValueActions;
+import org.kiwiproject.consul.model.kv.ImmutableValue;
 
 @Path("/test/kv")
 @ApplicationScoped
diff --git 

(camel-quarkus) 11/13: rebased + synced + generated files

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

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

commit 83d32106e50e6d2a02caf32b8b9efe2212e8a160
Author: JiriOndrusek 
AuthorDate: Mon Jan 15 09:40:49 2024 +0100

rebased + synced + generated files
---
 poms/bom/src/main/generated/flattened-full-pom.xml| 2 +-
 poms/bom/src/main/generated/flattened-reduced-pom.xml | 2 +-
 poms/bom/src/main/generated/flattened-reduced-verbose-pom.xml | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/poms/bom/src/main/generated/flattened-full-pom.xml 
b/poms/bom/src/main/generated/flattened-full-pom.xml
index 10221e859b..563ec0b915 100644
--- a/poms/bom/src/main/generated/flattened-full-pom.xml
+++ b/poms/bom/src/main/generated/flattened-full-pom.xml
@@ -6804,7 +6804,7 @@
   
 org.springframework.data
 spring-data-redis
-3.2.1
+3.2.2
 
   
 org.springframework
diff --git a/poms/bom/src/main/generated/flattened-reduced-pom.xml 
b/poms/bom/src/main/generated/flattened-reduced-pom.xml
index df05cac76f..d160b911ee 100644
--- a/poms/bom/src/main/generated/flattened-reduced-pom.xml
+++ b/poms/bom/src/main/generated/flattened-reduced-pom.xml
@@ -6704,7 +6704,7 @@
   
 org.springframework.data
 spring-data-redis
-3.2.1
+3.2.2
 
   
 org.springframework
diff --git a/poms/bom/src/main/generated/flattened-reduced-verbose-pom.xml 
b/poms/bom/src/main/generated/flattened-reduced-verbose-pom.xml
index 3696730dc9..c7b0745a09 100644
--- a/poms/bom/src/main/generated/flattened-reduced-verbose-pom.xml
+++ b/poms/bom/src/main/generated/flattened-reduced-verbose-pom.xml
@@ -6704,7 +6704,7 @@
   
 org.springframework.data
 spring-data-redis
-3.2.1
+3.2.2
 
   
 org.springframework



(camel-quarkus) 07/13: Rebased + generated files

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

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

commit 15d79834a31275b89113f735834574c115858dd1
Author: JiriOndrusek 
AuthorDate: Mon Jan 8 10:18:30 2024 +0100

Rebased + generated files
---
 poms/bom/src/main/generated/flattened-full-pom.xml| 2 +-
 poms/bom/src/main/generated/flattened-reduced-pom.xml | 2 +-
 poms/bom/src/main/generated/flattened-reduced-verbose-pom.xml | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/poms/bom/src/main/generated/flattened-full-pom.xml 
b/poms/bom/src/main/generated/flattened-full-pom.xml
index ffdef755bf..574981401c 100644
--- a/poms/bom/src/main/generated/flattened-full-pom.xml
+++ b/poms/bom/src/main/generated/flattened-full-pom.xml
@@ -6643,7 +6643,7 @@
   
 org.kiwiproject
 consul-client
-1.2.0
+1.3.0
 
   
 com.google.code.findbugs
diff --git a/poms/bom/src/main/generated/flattened-reduced-pom.xml 
b/poms/bom/src/main/generated/flattened-reduced-pom.xml
index f9de431d02..6fe66bcde8 100644
--- a/poms/bom/src/main/generated/flattened-reduced-pom.xml
+++ b/poms/bom/src/main/generated/flattened-reduced-pom.xml
@@ -6558,7 +6558,7 @@
   
 org.kiwiproject
 consul-client
-1.2.0
+1.3.0
 
   
 com.google.code.findbugs
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 96aed09162..18be03a026 100644
--- a/poms/bom/src/main/generated/flattened-reduced-verbose-pom.xml
+++ b/poms/bom/src/main/generated/flattened-reduced-verbose-pom.xml
@@ -6558,7 +6558,7 @@
   
 org.kiwiproject
 consul-client
-1.2.0
+1.3.0
 
   
 com.google.code.findbugs



(camel-quarkus) 12/13: Rebased + synced + generated files

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

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

commit c3edcd8c921558d7e720ad8dc4325f22b4a39d56
Author: JiriOndrusek 
AuthorDate: Tue Jan 16 09:21:35 2024 +0100

Rebased + synced + generated files
---
 poms/bom/src/main/generated/flattened-full-pom.xml | 14 +++---
 poms/bom/src/main/generated/flattened-reduced-pom.xml  | 12 ++--
 .../src/main/generated/flattened-reduced-verbose-pom.xml   | 12 ++--
 3 files changed, 19 insertions(+), 19 deletions(-)

diff --git a/poms/bom/src/main/generated/flattened-full-pom.xml 
b/poms/bom/src/main/generated/flattened-full-pom.xml
index 563ec0b915..1d74e0e883 100644
--- a/poms/bom/src/main/generated/flattened-full-pom.xml
+++ b/poms/bom/src/main/generated/flattened-full-pom.xml
@@ -6703,7 +6703,7 @@
   
 org.springframework
 spring-aop
-6.1.3
+6.1.2
 
   
 org.springframework
@@ -6718,7 +6718,7 @@
   
 org.springframework
 spring-expression
-6.1.3
+6.1.2
 
   
 org.springframework
@@ -6729,7 +6729,7 @@
   
 org.springframework
 spring-jdbc
-6.1.3
+6.1.2
 
   
 org.springframework
@@ -6744,7 +6744,7 @@
   
 org.springframework
 spring-jms
-6.1.3
+6.1.2
 
   
 org.springframework
@@ -6759,7 +6759,7 @@
   
 org.springframework
 spring-messaging
-6.1.3
+6.1.2
 
   
 org.springframework
@@ -6774,7 +6774,7 @@
   
 org.springframework
 spring-orm
-6.1.3
+6.1.2
 
   
 org.springframework
@@ -6789,7 +6789,7 @@
   
 org.springframework
 spring-tx
-6.1.3
+6.1.2
 
   
 org.springframework
diff --git a/poms/bom/src/main/generated/flattened-reduced-pom.xml 
b/poms/bom/src/main/generated/flattened-reduced-pom.xml
index d160b911ee..62592bc9dc 100644
--- a/poms/bom/src/main/generated/flattened-reduced-pom.xml
+++ b/poms/bom/src/main/generated/flattened-reduced-pom.xml
@@ -6618,7 +6618,7 @@
   
 org.springframework
 spring-aop
-6.1.3
+6.1.2
 
   
 org.springframework
@@ -6633,7 +6633,7 @@
   
 org.springframework
 spring-expression
-6.1.3
+6.1.2
 
   
 org.springframework
@@ -6644,7 +6644,7 @@
   
 org.springframework
 spring-jdbc
-6.1.3
+6.1.2
 
   
 org.springframework
@@ -6659,7 +6659,7 @@
   
 org.springframework
 spring-jms
-6.1.3
+6.1.2
 
   
 org.springframework
@@ -6674,7 +6674,7 @@
   
 org.springframework
 spring-messaging
-6.1.3
+6.1.2
 
   
 org.springframework
@@ -6689,7 +6689,7 @@
   
 org.springframework
 spring-tx
-6.1.3
+6.1.2
 
   
 org.springframework
diff --git a/poms/bom/src/main/generated/flattened-reduced-verbose-pom.xml 
b/poms/bom/src/main/generated/flattened-reduced-verbose-pom.xml
index c7b0745a09..26ad26c809 100644
--- a/poms/bom/src/main/generated/flattened-reduced-verbose-pom.xml
+++ b/poms/bom/src/main/generated/flattened-reduced-verbose-pom.xml
@@ -6618,7 +6618,7 @@
   
 org.springframework
 spring-aop
-6.1.3
+6.1.2
 
   
 org.springframework
@@ -6633,7 +6633,7 @@
   
 org.springframework
 spring-expression
-6.1.3
+6.1.2
 
   
 org.springframework
@@ -6644,7 +6644,7 @@
   
 org.springframework
 spring-jdbc
-6.1.3
+6.1.2
 
   
 org.springframework
@@ -6659,7 +6659,7 @@
   
 org.springframework
 spring-jms
-6.1.3
+6.1.2
 
   
 org.springframework
@@ -6674,7 +6674,7 @@
   
 org.springframework
 spring-messaging
-6.1.3
+6.1.2
 
   
 org.springframework
@@ -6689,7 +6689,7 @@
   
 org.springframework
 spring-tx
-6.1.3
+6.1.2
 
   
 org.springframework



  1   2   >