[GitHub] [camel-k] tadayosi commented on issue #3865: Deprecate `kamel install` and promote Kustomize-based installation to primary method

2022-12-07 Thread GitBox


tadayosi commented on issue #3865:
URL: https://github.com/apache/camel-k/issues/3865#issuecomment-1342228577

   Hi @phantomjinx,
   
   To complete the features of Kustomize installation, I'm trying to add 
`ENV_VARS` and `SKIP_DEFAULT_KAMELETS_SETUP` parameters to `make operator` as a 
starter. However, I found that implementing these in Makefile can be tricky, 
probably requiring a lot of bash,Makefile,sed,awk magic. Now I wonder if it's 
really the right direction to try to replicate every feature provided by `kamel 
install` in the `Makefile` for the Kustomize installation, as it doesn't seem 
like a good idea to use Makefile as a general programming language.
   
   It seems that the Kustomize way is for users to directly create and 
customise their own patches either by hand or through `kustomize` command, 
rather than the tool to provide convenient parameters to customise everything 
for them.
   
   What do you think about it?  Is it your original intention to provide every 
installation feature through the `Makefile`?


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



[GitHub] [camel-k] tadayosi commented on issue #3868: Automatically `make generate` every night

2022-12-07 Thread GitBox


tadayosi commented on issue #3868:
URL: https://github.com/apache/camel-k/issues/3868#issuecomment-1342193040

   @squakez Good point. `resources.go` is generated every time we build so it 
seems to be possible to ignore it from git. I'm not sure if it's 100% ok to 
remove it from the repo, either, though.
   
   A while ago I filed another idea to remove `resources.go` from the repo. 
`go:embed` is another way to embed resources in the code without need for 
regeneration each time.
   * #3384 


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



[GitHub] [camel-spring-boot] bmk15897 commented on pull request #681: Fixed Flaky Tests Caused by JSON permutations

2022-12-07 Thread GitBox


bmk15897 commented on PR #681:
URL: 
https://github.com/apache/camel-spring-boot/pull/681#issuecomment-1342119528

   Yes @davsclaus I will work on them too!  :) Thank you!


-- 
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 (e305dca9239 -> 25a31a809b6)

2022-12-07 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 e305dca9239 Regen for commit d3539ec79139d7c401ca7c86d6353f0f07308728 
(#8865)
 add 25a31a809b6 CAMEL-18131 -  aws2 sns health (#8867)

No new revisions were added by this update.

Summary of changes:
 catalog/camel-allcomponents/pom.xml|  2 +-
 components/camel-aws/camel-aws2-sns/pom.xml|  9 +++
 .../camel/component/aws2/sns/Sns2Component.java|  1 -
 .../aws2/sns/Sns2ComponentVerifierExtension.java   | 94 --
 .../camel/component/aws2/sns/Sns2Endpoint.java | 19 +
 .../camel/component/aws2/sns/Sns2HealthCheck.java} | 33 
 .../aws2/sns/Sns2HealthCheckProfileCredsTest.java} | 17 ++--
 .../aws2/sns/Sns2HealthCheckStaticCredsTest.java}  | 17 ++--
 .../sns/SnsComponentVerifierExtensionTest.java | 90 -
 parent/pom.xml |  2 +-
 10 files changed, 64 insertions(+), 220 deletions(-)
 delete mode 100644 
components/camel-aws/camel-aws2-sns/src/main/java/org/apache/camel/component/aws2/sns/Sns2ComponentVerifierExtension.java
 copy 
components/camel-aws/{camel-aws2-iam/src/main/java/org/apache/camel/component/aws2/iam/client/IAM2HealthCheck.java
 => 
camel-aws2-sns/src/main/java/org/apache/camel/component/aws2/sns/Sns2HealthCheck.java}
 (67%)
 copy 
components/camel-aws/{camel-aws2-eks/src/test/java/org/apache/camel/component/aws2/eks/EKS2CliientHealthCheckStaticCredsTest.java
 => 
camel-aws2-sns/src/test/java/org/apache/camel/component/aws2/sns/Sns2HealthCheckProfileCredsTest.java}
 (87%)
 copy 
components/camel-aws/{camel-aws2-eks/src/test/java/org/apache/camel/component/aws2/eks/EKS2CliientHealthCheckStaticCredsTest.java
 => 
camel-aws2-sns/src/test/java/org/apache/camel/component/aws2/sns/Sns2HealthCheckStaticCredsTest.java}
 (87%)
 delete mode 100644 
components/camel-aws/camel-aws2-sns/src/test/java/org/apache/camel/component/aws2/sns/SnsComponentVerifierExtensionTest.java



[GitHub] [camel] github-actions[bot] commented on pull request #8795: CAMEL-18739 fix by handing over the completion to the original exchange

2022-12-07 Thread GitBox


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

   :leftwards_arrow_with_hook: There are either **too many** changes to be 
tested in this PR or the code **needs be rebased**: (42 components likely to be 
affected)


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



[GitHub] [camel-spring-boot] davsclaus commented on pull request #681: Fixed Flaky Tests Caused by JSON permutations

2022-12-07 Thread GitBox


davsclaus commented on PR #681:
URL: 
https://github.com/apache/camel-spring-boot/pull/681#issuecomment-1342083503

   You are welcome to check the tests in https://github.com/apache/camel as we 
have tests for gson/json there too under components


-- 
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: Fixed Flaky Tests Caused by JSON permutations (#681)

2022-12-07 Thread davsclaus
This is an automated email from the ASF dual-hosted git repository.

davsclaus 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 fcd90533408 Fixed Flaky Tests Caused by JSON permutations (#681)
fcd90533408 is described below

commit fcd905334084f4341a7f65ce89e5b4e9b831f245
Author: Bharati Kulkarni <31247303+bmk15...@users.noreply.github.com>
AuthorDate: Wed Dec 7 23:32:38 2022 -0600

Fixed Flaky Tests Caused by JSON permutations (#681)

* Fix Flaky Test

* Updated Imports
---
 .../camel/component/gson/springboot/GsonFieldNamePolicyTest.java| 6 --
 .../camel/component/gson/springboot/GsonMarshalExclusionTest.java   | 6 +-
 .../component/gson/springboot/SpringGsonFieldNamePolicyTest.java| 6 --
 3 files changed, 13 insertions(+), 5 deletions(-)

diff --git 
a/components-starter/camel-gson-starter/src/test/java/org/apache/camel/component/gson/springboot/GsonFieldNamePolicyTest.java
 
b/components-starter/camel-gson-starter/src/test/java/org/apache/camel/component/gson/springboot/GsonFieldNamePolicyTest.java
index 64a0cc5b148..4d031399f0b 100644
--- 
a/components-starter/camel-gson-starter/src/test/java/org/apache/camel/component/gson/springboot/GsonFieldNamePolicyTest.java
+++ 
b/components-starter/camel-gson-starter/src/test/java/org/apache/camel/component/gson/springboot/GsonFieldNamePolicyTest.java
@@ -28,6 +28,7 @@ import org.junit.jupiter.api.Test;
 
 import static org.junit.jupiter.api.Assertions.assertEquals;
 import static org.junit.jupiter.api.Assertions.assertNotNull;
+import static org.junit.jupiter.api.Assertions.assertTrue;
 
 import org.springframework.beans.factory.annotation.Autowired;
 import org.springframework.boot.test.context.SpringBootTest;
@@ -72,9 +73,10 @@ public class GsonFieldNamePolicyTest {
 pojo.setFirstName("Donald");
 pojo.setLastName("Duck");
 
-String expected = 
"{\"id\":123,\"first_name\":\"Donald\",\"last_name\":\"Duck\"}";
 String json = template.requestBody("direct:inPojo", pojo, 
String.class);
-assertEquals(expected, json);
+assertTrue(json.contains("\"id\":123"));
+assertTrue(json.contains("\"first_name\":\"Donald\""));
+assertTrue(json.contains("\"last_name\":\"Duck\""));
 }
 
 // *
diff --git 
a/components-starter/camel-gson-starter/src/test/java/org/apache/camel/component/gson/springboot/GsonMarshalExclusionTest.java
 
b/components-starter/camel-gson-starter/src/test/java/org/apache/camel/component/gson/springboot/GsonMarshalExclusionTest.java
index 210c86786ac..9cffc3ec06f 100644
--- 
a/components-starter/camel-gson-starter/src/test/java/org/apache/camel/component/gson/springboot/GsonMarshalExclusionTest.java
+++ 
b/components-starter/camel-gson-starter/src/test/java/org/apache/camel/component/gson/springboot/GsonMarshalExclusionTest.java
@@ -32,6 +32,8 @@ import org.apache.camel.spring.boot.CamelAutoConfiguration;
 import org.junit.jupiter.api.Test;
 
 import static org.junit.jupiter.api.Assertions.assertEquals;
+import static org.junit.jupiter.api.Assertions.assertFalse;
+import static org.junit.jupiter.api.Assertions.assertTrue;
 
 import org.springframework.beans.factory.annotation.Autowired;
 import org.springframework.boot.test.context.SpringBootTest;
@@ -95,7 +97,9 @@ public class GsonMarshalExclusionTest {
 
 Object marshalled = template.requestBody("direct:inPojoExcludeAge", 
in);
 String marshalledAsString = 
context.getTypeConverter().convertTo(String.class, marshalled);
-assertEquals("{\"height\":190,\"weight\":70}", marshalledAsString);
+assertTrue(marshalledAsString.contains("\"height\":190"));
+assertTrue(marshalledAsString.contains("\"weight\":70"));
+assertFalse(marshalledAsString.contains("\"age\":30"));
 
 template.sendBody("direct:backPojoExcludeAge", marshalled);
 
diff --git 
a/components-starter/camel-gson-starter/src/test/java/org/apache/camel/component/gson/springboot/SpringGsonFieldNamePolicyTest.java
 
b/components-starter/camel-gson-starter/src/test/java/org/apache/camel/component/gson/springboot/SpringGsonFieldNamePolicyTest.java
index 901175ac57e..e4e56d6eaed 100644
--- 
a/components-starter/camel-gson-starter/src/test/java/org/apache/camel/component/gson/springboot/SpringGsonFieldNamePolicyTest.java
+++ 
b/components-starter/camel-gson-starter/src/test/java/org/apache/camel/component/gson/springboot/SpringGsonFieldNamePolicyTest.java
@@ -26,6 +26,7 @@ import org.junit.jupiter.api.Test;
 
 import static org.junit.jupiter.api.Assertions.assertEquals;
 import static org.junit.jupiter.api.Assertions.assertNotNull;
+import static org.junit.jupiter.api.Assertions.assertTrue;
 
 import org.springframework.beans.factory.annotation.Autowired;
 import org.springframework.boot.test.context.SpringBootTest;
@@ -82,8 

[GitHub] [camel-spring-boot] davsclaus merged pull request #681: Fixed Flaky Tests Caused by JSON permutations

2022-12-07 Thread GitBox


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


-- 
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: CAMEL-18131 - aws2 sns health (#8867)

2022-12-07 Thread davsclaus
This is an automated email from the ASF dual-hosted git repository.

davsclaus 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 25a31a809b6 CAMEL-18131 -  aws2 sns health (#8867)
25a31a809b6 is described below

commit 25a31a809b6abf001f74e41e9fa8f56b6125fa70
Author: Rhuan Rocha 
AuthorDate: Thu Dec 8 02:22:00 2022 -0300

CAMEL-18131 -  aws2 sns health (#8867)

* CAMEL-18131 - Adding health check to test conectivity

Signed-off-by: Rhuan Rocha 

* CAMEL-18131 - Adding health check to test conectivity

Signed-off-by: Rhuan Rocha 

* CAMEL-18131 - Adding health check to test conectivity

Signed-off-by: Rhuan Rocha 

Signed-off-by: Rhuan Rocha 
---
 catalog/camel-allcomponents/pom.xml|  2 +-
 components/camel-aws/camel-aws2-sns/pom.xml|  9 ++
 .../camel/component/aws2/sns/Sns2Component.java|  1 -
 .../aws2/sns/Sns2ComponentVerifierExtension.java   | 94 -
 .../camel/component/aws2/sns/Sns2Endpoint.java | 19 +
 .../camel/component/aws2/sns/Sns2HealthCheck.java  | 71 
 .../aws2/sns/Sns2HealthCheckProfileCredsTest.java  | 96 ++
 .../aws2/sns/Sns2HealthCheckStaticCredsTest.java   | 96 ++
 .../sns/SnsComponentVerifierExtensionTest.java | 90 
 parent/pom.xml |  2 +-
 10 files changed, 293 insertions(+), 187 deletions(-)

diff --git a/catalog/camel-allcomponents/pom.xml 
b/catalog/camel-allcomponents/pom.xml
index da2229d144d..40e2c4092fa 100644
--- a/catalog/camel-allcomponents/pom.xml
+++ b/catalog/camel-allcomponents/pom.xml
@@ -1990,4 +1990,4 @@
 
 
 
-
+
\ No newline at end of file
diff --git a/components/camel-aws/camel-aws2-sns/pom.xml 
b/components/camel-aws/camel-aws2-sns/pom.xml
index d53b82db70a..0ad0008e8fe 100644
--- a/components/camel-aws/camel-aws2-sns/pom.xml
+++ b/components/camel-aws/camel-aws2-sns/pom.xml
@@ -61,6 +61,10 @@
 commons-io
 commons-io
 
+
+org.apache.camel
+camel-health
+
 
 
 
@@ -77,6 +81,11 @@
 camel-test-spring-junit5
 test
 
+
+org.awaitility
+awaitility
+test
+
 
 org.apache.camel
 camel-core-catalog
diff --git 
a/components/camel-aws/camel-aws2-sns/src/main/java/org/apache/camel/component/aws2/sns/Sns2Component.java
 
b/components/camel-aws/camel-aws2-sns/src/main/java/org/apache/camel/component/aws2/sns/Sns2Component.java
index 7b5d31dbc7a..944ecb1ac66 100644
--- 
a/components/camel-aws/camel-aws2-sns/src/main/java/org/apache/camel/component/aws2/sns/Sns2Component.java
+++ 
b/components/camel-aws/camel-aws2-sns/src/main/java/org/apache/camel/component/aws2/sns/Sns2Component.java
@@ -43,7 +43,6 @@ public class Sns2Component extends DefaultComponent {
 public Sns2Component(CamelContext context) {
 super(context);
 
-registerExtension(new Sns2ComponentVerifierExtension());
 }
 
 @Override
diff --git 
a/components/camel-aws/camel-aws2-sns/src/main/java/org/apache/camel/component/aws2/sns/Sns2ComponentVerifierExtension.java
 
b/components/camel-aws/camel-aws2-sns/src/main/java/org/apache/camel/component/aws2/sns/Sns2ComponentVerifierExtension.java
deleted file mode 100644
index f0b396a20ba..000
--- 
a/components/camel-aws/camel-aws2-sns/src/main/java/org/apache/camel/component/aws2/sns/Sns2ComponentVerifierExtension.java
+++ /dev/null
@@ -1,94 +0,0 @@
-/*
- * Licensed to the Apache Software Foundation (ASF) under one or more
- * contributor license agreements.  See the NOTICE file distributed with
- * this work for additional information regarding copyright ownership.
- * The ASF licenses this file to You under the Apache License, Version 2.0
- * (the "License"); you may not use this file except in compliance with
- * the License.  You may obtain a copy of the License at
- *
- *  http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-package org.apache.camel.component.aws2.sns;
-
-import java.util.Map;
-
-import 
org.apache.camel.component.extension.verifier.DefaultComponentVerifierExtension;
-import org.apache.camel.component.extension.verifier.ResultBuilder;
-import org.apache.camel.component.extension.verifier.ResultErrorBuilder;
-import org.apache.camel.component.extension.verifier.ResultErrorHelper;
-import 

[GitHub] [camel] davsclaus merged pull request #8867: CAMEL-18131 - aws2 sns health

2022-12-07 Thread GitBox


davsclaus merged PR #8867:
URL: https://github.com/apache/camel/pull/8867


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



[GitHub] [camel-quarkus] github-actions[bot] commented on issue #2926: [CI] - Quarkus Main Branch Build Failure

2022-12-07 Thread GitBox


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

   The 
[quarkus-main](https://github.com/apache/camel-quarkus/tree/quarkus-main) 
branch build has failed:
   
   * Build ID: 3644667936-959-c25906a5-b959-41c9-956b-3a8636a18312
   * Camel Quarkus Commit: 39d5cb34356304bcf7615d88feecad2ede37cbdf
   
   * Quarkus Main Commit: 761295da13f56a5b5c7ab616ec84f71addb2929c
   * Link to build: 
https://github.com/apache/camel-quarkus/actions/runs/3644667936


-- 
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 camel-main updated (d40fd33d96 -> a694606be7)

2022-12-07 Thread github-bot
This is an automated email from the ASF dual-hosted git repository.

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


 discard d40fd33d96 Upgrade Camel to 3.20.0
 discard ca894e75be Adding  into CI build of investigation purposes
 discard 65ce465bb3 Disabled FaultTolerance test because of issues 4298
 discard 300a652d31 Fix #4216 to make xml integration tests working in native 
build (#4217)
 add 30c9dd1cdf Updated CHANGELOG.md
 add 2e8a7f82a1 Fix Opentelemetry port number in the documentation
 add 761295da13 Fix #4317 to update jms documentation for pooling and XA 
support (#4323)
 new 3f120d9bf2 Fix #4216 to make xml integration tests working in native 
build (#4217)
 new c9d37ef56b Disabled FaultTolerance test because of issues 4298
 new 6add742244 Adding  into CI build of investigation purposes
 new a694606be7 Upgrade Camel to 3.20.0

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   (d40fd33d96)
\
 N -- N -- N   refs/heads/camel-main (a694606be7)

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 4 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 CHANGELOG.md   |  2 ++
 .../ROOT/pages/reference/extensions/jms.adoc   | 27 ++
 .../pages/reference/extensions/opentelemetry.adoc  |  2 +-
 extensions/jms/runtime/src/main/doc/usage.adoc | 26 +
 .../opentelemetry/runtime/src/main/doc/usage.adoc  |  2 +-
 5 files changed, 57 insertions(+), 2 deletions(-)



[camel-quarkus] 03/04: Adding into CI build of investigation purposes

2022-12-07 Thread github-bot
This is an automated email from the ASF dual-hosted git repository.

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

commit 6add742244456c9acbe068b36c03de22d92d6cc4
Author: JiriOndrusek 
AuthorDate: Fri Nov 25 16:11:47 2022 +0100

Adding  into CI build of investigation purposes
---
 .github/workflows/ci-build.yaml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/.github/workflows/ci-build.yaml b/.github/workflows/ci-build.yaml
index abe2ef3492..fe113a0e47 100644
--- a/.github/workflows/ci-build.yaml
+++ b/.github/workflows/ci-build.yaml
@@ -98,7 +98,7 @@ jobs:
   - name: Fail if there are uncommitted changes
 shell: bash
 run: |
-  [[ -z $(git status --porcelain | grep -v antora.yml) ]] || { echo 
'There are uncommitted changes'; git status; exit 1; }
+  [[ -z $(git status --porcelain | grep -v antora.yml) ]] || { git 
--no-pager diff; echo 'There are uncommitted changes'; git status; exit 1; }
   - name: Tar Maven Repo
 shell: bash
 run: |



[camel-quarkus] 01/04: Fix #4216 to make xml integration tests working in native build (#4217)

2022-12-07 Thread github-bot
This is an automated email from the ASF dual-hosted git repository.

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

commit 3f120d9bf22177987a14799cc292da4abcc3069c
Author: Zheng Feng 
AuthorDate: Fri Oct 28 00:18:16 2022 +0800

Fix #4216 to make xml integration tests working in native build (#4217)
---
 .../camel/quarkus/component/xslt/deployment/XsltProcessor.java | 7 +++
 .../org/apache/camel/quarkus/component/xml/it/XmlRouteBuilder.java | 1 +
 2 files changed, 8 insertions(+)

diff --git 
a/extensions/xslt/deployment/src/main/java/org/apache/camel/quarkus/component/xslt/deployment/XsltProcessor.java
 
b/extensions/xslt/deployment/src/main/java/org/apache/camel/quarkus/component/xslt/deployment/XsltProcessor.java
index b0ef7fe3b8..02afa701e4 100644
--- 
a/extensions/xslt/deployment/src/main/java/org/apache/camel/quarkus/component/xslt/deployment/XsltProcessor.java
+++ 
b/extensions/xslt/deployment/src/main/java/org/apache/camel/quarkus/component/xslt/deployment/XsltProcessor.java
@@ -36,6 +36,7 @@ import io.quarkus.deployment.annotations.BuildStep;
 import io.quarkus.deployment.annotations.ExecutionTime;
 import io.quarkus.deployment.annotations.Record;
 import io.quarkus.deployment.builditem.GeneratedClassBuildItem;
+import 
io.quarkus.deployment.builditem.nativeimage.RuntimeInitializedClassBuildItem;
 import io.quarkus.runtime.RuntimeValue;
 import org.apache.camel.component.xslt.XsltComponent;
 import org.apache.camel.quarkus.component.xslt.CamelXsltConfig;
@@ -149,4 +150,10 @@ class XsltProcessor {
 }
 }
 
+//It should be removed with fixing 
https://github.com/apache/camel-quarkus/issues/1615
+@BuildStep
+RuntimeInitializedClassBuildItem runtimeInit() {
+return new 
RuntimeInitializedClassBuildItem("org.apache.hc.client5.http.impl.auth.NTLMEngineImpl");
+}
+
 }
diff --git 
a/integration-tests/xml/src/main/java/org/apache/camel/quarkus/component/xml/it/XmlRouteBuilder.java
 
b/integration-tests/xml/src/main/java/org/apache/camel/quarkus/component/xml/it/XmlRouteBuilder.java
index b018598291..1383f2172e 100644
--- 
a/integration-tests/xml/src/main/java/org/apache/camel/quarkus/component/xml/it/XmlRouteBuilder.java
+++ 
b/integration-tests/xml/src/main/java/org/apache/camel/quarkus/component/xml/it/XmlRouteBuilder.java
@@ -29,6 +29,7 @@ import org.apache.camel.support.builder.Namespaces;
 "net.sf.saxon.functions.String_1",
 "net.sf.saxon.functions.Tokenize_1",
 "net.sf.saxon.functions.StringJoin",
+"org.xmlresolver.loaders.XmlLoader",
 "org.apache.camel.component.xslt.saxon.XsltSaxonBuilder" })
 public class XmlRouteBuilder extends RouteBuilder {
 public static final String DIRECT_HTML_TRANSFORM = "direct:html-transform";



[camel-quarkus] 02/04: Disabled FaultTolerance test because of issues 4298

2022-12-07 Thread github-bot
This is an automated email from the ASF dual-hosted git repository.

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

commit c9d37ef56b5f8bbaac26bd6ca1a814d0dd884653
Author: JiriOndrusek 
AuthorDate: Fri Nov 25 16:07:08 2022 +0100

Disabled FaultTolerance test because of issues 4298
---
 .../foundation/core-fault-tolerance/pom.xml|  16 +--
 .../it/CoreFaultToleranceProducers.java| 116 +
 .../it/CoreFaultToleranceResource.java |  68 ++--
 .../it/CoreFaultToleranceRoutes.java   |   7 +-
 .../faulttolerance/it/CoreFaultToleranceTest.java  |   2 +
 integration-tests/foundation-grouped/pom.xml   |   8 +-
 6 files changed, 99 insertions(+), 118 deletions(-)

diff --git a/integration-test-groups/foundation/core-fault-tolerance/pom.xml 
b/integration-test-groups/foundation/core-fault-tolerance/pom.xml
index 0f9c8c373c..3ef9aacd26 100644
--- a/integration-test-groups/foundation/core-fault-tolerance/pom.xml
+++ b/integration-test-groups/foundation/core-fault-tolerance/pom.xml
@@ -35,10 +35,11 @@
 org.apache.camel.quarkus
 camel-quarkus-direct
 
+
 
 io.quarkus
 quarkus-resteasy-jsonb
@@ -88,11 +89,6 @@
 
 
 virtualDependencies
-
-
-!noVirtualDependencies
-
-
 
 
 
@@ -108,6 +104,7 @@
 
 
 
+
 
+
+
+!noVirtualDependencies
+
+
 
 
 
diff --git 
a/integration-test-groups/foundation/core-fault-tolerance/src/main/java/org/apache/camel/quarkus/core/faulttolerance/it/CoreFaultToleranceProducers.java
 
b/integration-test-groups/foundation/core-fault-tolerance/src/main/java/org/apache/camel/quarkus/core/faulttolerance/it/CoreFaultToleranceProducers.java
index 67f580041d..8a9dc414b3 100644
--- 
a/integration-test-groups/foundation/core-fault-tolerance/src/main/java/org/apache/camel/quarkus/core/faulttolerance/it/CoreFaultToleranceProducers.java
+++ 
b/integration-test-groups/foundation/core-fault-tolerance/src/main/java/org/apache/camel/quarkus/core/faulttolerance/it/CoreFaultToleranceProducers.java
@@ -16,71 +16,57 @@
  */
 package org.apache.camel.quarkus.core.faulttolerance.it;
 
-import java.util.concurrent.ExecutorService;
-import java.util.concurrent.Executors;
-import java.util.concurrent.TimeUnit;
-
-import javax.enterprise.context.ApplicationScoped;
-import javax.enterprise.inject.Disposes;
-import javax.inject.Named;
-
-import io.smallrye.faulttolerance.core.FaultToleranceStrategy;
-import io.smallrye.faulttolerance.core.InvocationContext;
-import io.smallrye.faulttolerance.core.circuit.breaker.CircuitBreaker;
-import io.smallrye.faulttolerance.core.stopwatch.SystemStopwatch;
-import io.smallrye.faulttolerance.core.timer.ThreadTimer;
-import io.smallrye.faulttolerance.core.util.ExceptionDecision;
-
 public class CoreFaultToleranceProducers {
 
-@ApplicationScoped
-@Named("customCircuitBreaker")
-CircuitBreaker produceCustomCircuitBreaker(ThreadTimer 
threadTimer) {
-FaultToleranceStrategy delegate = new 
FaultToleranceStrategy() {
-@Override
-public Integer apply(InvocationContext ctx) {
-return null;
-}
-};
-return new CircuitBreaker<>(delegate, "description", 
ExceptionDecision.ALWAYS_FAILURE, 10, 40, 0.1,
-2, SystemStopwatch.INSTANCE, threadTimer) {
-@Override
-public String toString() {
-return "customCircuitBreaker";
-}
-};
-}
-
-@ApplicationScoped
-@Named("customBulkheadExecutorService")
-ExecutorService produceCustomBulkheadExecutorService() {
-return Executors.newFixedThreadPool(2);
-}
-
-@ApplicationScoped
-@Named("threadTimer")
-ThreadTimer threadTimer(@Named("threadTimerExecutor") ExecutorService 
executorService) {
-return new ThreadTimer(executorService);
-}
-
-@ApplicationScoped
-@Named("threadTimerExecutor")
-ExecutorService threadTimerExecutor() {
-return Executors.newSingleThreadExecutor();
-}
-
-void disposeThreadTimerExecutor(@Disposes @Named("threadTimerExecutor") 
ExecutorService threadTimerExecutor,
-ThreadTimer timer) {
-try {
-timer.shutdown();
-} catch (InterruptedException e) {
-Thread.currentThread().interrupt();
-}
-
-try {
-threadTimerExecutor.awaitTermination(10, TimeUnit.SECONDS);
-} catch (InterruptedException e) {
-Thread.currentThread().interrupt();
-}
-}
+//

[camel-kafka-connector] branch automatic-periodic-sync updated (59484a0d2 -> 6e352610a)

2022-12-07 Thread github-bot
This is an automated email from the ASF dual-hosted git repository.

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


 discard 59484a0d2 [create-pull-request] automated change
 add fa3982c3e Added exlusion of kamelets generation.
 add 6e352610a Updated CHANGELOG.md

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   (59484a0d2)
\
 N -- N -- N   refs/heads/automatic-periodic-sync (6e352610a)

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

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

No new revisions were added by this update.

Summary of changes:
 CHANGELOG.md   |  1 +
 .../CamelAwscloudwatchsinkSinkConnector.java   |  3 ++-
 .../CamelAwscloudwatchsinkSinkConnectorConfig.java |  3 ++-
 .../awscloudwatchsink/CamelAwscloudwatchsinkSinkTask.java  |  3 ++-
 .../awsddbsink/CamelAwsddbsinkSinkConnector.java   |  3 ++-
 .../awsddbsink/CamelAwsddbsinkSinkConnectorConfig.java |  3 ++-
 .../kafkaconnector/awsddbsink/CamelAwsddbsinkSinkTask.java |  3 ++-
 .../CamelAwsddbstreamssourceSourceConnector.java   |  3 ++-
 .../CamelAwsddbstreamssourceSourceConnectorConfig.java |  3 ++-
 .../CamelAwsddbstreamssourceSourceTask.java|  3 ++-
 .../awsec2sink/CamelAwsec2sinkSinkConnector.java   |  3 ++-
 .../awsec2sink/CamelAwsec2sinkSinkConnectorConfig.java |  3 ++-
 .../kafkaconnector/awsec2sink/CamelAwsec2sinkSinkTask.java |  3 ++-
 .../CamelAwseventbridgesinkSinkConnector.java  |  3 ++-
 .../CamelAwseventbridgesinkSinkConnectorConfig.java|  3 ++-
 .../CamelAwseventbridgesinkSinkTask.java   |  3 ++-
 .../CamelAwskinesisfirehosesinkSinkConnector.java  |  3 ++-
 .../CamelAwskinesisfirehosesinkSinkConnectorConfig.java|  3 ++-
 .../CamelAwskinesisfirehosesinkSinkTask.java   |  3 ++-
 .../awskinesissink/CamelAwskinesissinkSinkConnector.java   |  3 ++-
 .../CamelAwskinesissinkSinkConnectorConfig.java|  3 ++-
 .../awskinesissink/CamelAwskinesissinkSinkTask.java|  3 ++-
 .../CamelAwskinesissourceSourceConnector.java  |  3 ++-
 .../CamelAwskinesissourceSourceConnectorConfig.java|  3 ++-
 .../awskinesissource/CamelAwskinesissourceSourceTask.java  |  3 ++-
 .../awslambdasink/CamelAwslambdasinkSinkConnector.java |  3 ++-
 .../CamelAwslambdasinkSinkConnectorConfig.java |  3 ++-
 .../awslambdasink/CamelAwslambdasinkSinkTask.java  |  3 ++-
 .../awsredshiftsink/CamelAwsredshiftsinkSinkConnector.java |  3 ++-
 .../CamelAwsredshiftsinkSinkConnectorConfig.java   |  3 ++-
 .../awsredshiftsink/CamelAwsredshiftsinkSinkTask.java  |  3 ++-
 .../CamelAwsredshiftsourceSourceConnector.java |  3 ++-
 .../CamelAwsredshiftsourceSourceConnectorConfig.java   |  3 ++-
 .../CamelAwsredshiftsourceSourceTask.java  |  3 ++-
 .../awss3sink/CamelAwss3sinkSinkConnector.java |  3 ++-
 .../awss3sink/CamelAwss3sinkSinkConnectorConfig.java   |  3 ++-
 .../kafkaconnector/awss3sink/CamelAwss3sinkSinkTask.java   |  3 ++-
 .../awss3source/CamelAwss3sourceSourceConnector.java   |  3 ++-
 .../awss3source/CamelAwss3sourceSourceConnectorConfig.java |  3 ++-
 .../awss3source/CamelAwss3sourceSourceTask.java|  3 ++-
 .../CamelAwss3streaminguploadsinkSinkConnector.java|  3 ++-
 .../CamelAwss3streaminguploadsinkSinkConnectorConfig.java  |  3 ++-
 .../CamelAwss3streaminguploadsinkSinkTask.java |  3 ++-
 .../CamelAwssecretsmanagersinkSinkConnector.java   |  3 ++-
 .../CamelAwssecretsmanagersinkSinkConnectorConfig.java |  3 ++-
 .../CamelAwssecretsmanagersinkSinkTask.java|  3 ++-
 .../awssessink/CamelAwssessinkSinkConnector.java   |  3 ++-
 .../awssessink/CamelAwssessinkSinkConnectorConfig.java |  3 ++-
 .../kafkaconnector/awssessink/CamelAwssessinkSinkTask.java |  3 ++-
 .../awssnsfifosink/CamelAwssnsfifosinkSinkConnector.java   |  3 ++-
 .../CamelAwssnsfifosinkSinkConnectorConfig.java|  3 ++-
 .../awssnsfifosink/CamelAwssnsfifosinkSinkTask.java|  3 ++-
 .../awssnssink/CamelAwssnssinkSinkConnector.java   |  3 ++-
 .../awssnssink/CamelAwssnssinkSinkConnectorConfig.java |  3 ++-
 .../kafkaconnector/awssnssink/CamelAwssnssinkSinkTask.java |  3 ++-
 .../awssqsbatchsink/CamelAwssqsbatchsinkSinkConnector.java | 

[GitHub] [camel-kafka-connector] github-actions[bot] closed pull request #1480: [Github Actions] Periodic Sync Camel-kafka-connector main Branch

2022-12-07 Thread GitBox


github-actions[bot] closed pull request #1480: [Github Actions] Periodic Sync 
Camel-kafka-connector main Branch
URL: https://github.com/apache/camel-kafka-connector/pull/1480


-- 
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: Updated CHANGELOG.md

2022-12-07 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-quarkus.git


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

commit e57a645b07b104a663497f825b27ce5570eb
Author: github-actions[bot] 
<41898282+github-actions[bot]@users.noreply.github.com>
AuthorDate: Thu Dec 8 03:17:21 2022 +

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

diff --git a/CHANGELOG.md b/CHANGELOG.md
index 822601c3a1..af6d6422a1 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -10,6 +10,7 @@
 
 **Closed issues:**
 
+- Update camel-quarkus-jms doc to add pooling and XA integrate support 
[\#4317](https://github.com/apache/camel-quarkus/issues/4317)
 - Test Java first CXF server endpoint with multiple SEI methods 
[\#4306](https://github.com/apache/camel-quarkus/issues/4306)
 - camel-quarkus-catalog - Make it possible to get the camel version 
[\#4301](https://github.com/apache/camel-quarkus/issues/4301)
 - camel-quarkus-http - ClassNotFoundException - 
javax.servlet.http.HttpServletRequest 
[\#4300](https://github.com/apache/camel-quarkus/issues/4300)
@@ -29,6 +30,8 @@
 
 **Merged pull requests:**
 
+- Fix \#4317 to update jms documentation for pooling and XA support 
[\#4323](https://github.com/apache/camel-quarkus/pull/4323) 
([zhfeng](https://github.com/zhfeng))
+- Fix Opentelemetry port number in the documentation 
[\#4320](https://github.com/apache/camel-quarkus/pull/4320) 
([zbendhiba](https://github.com/zbendhiba))
 - Avoid port clashes with WireMock dynamically allocated port 
[\#4314](https://github.com/apache/camel-quarkus/pull/4314) 
([jamesnetherton](https://github.com/jamesnetherton))
 - Manage jakarta.xml.soap-api and sync jakarta.ws properties with CXF 
[\#4312](https://github.com/apache/camel-quarkus/pull/4312) 
([jamesnetherton](https://github.com/jamesnetherton))
 - Remove superfluous actions heading from controlbus docs 
[\#4311](https://github.com/apache/camel-quarkus/pull/4311) 
([jamesnetherton](https://github.com/jamesnetherton))



[camel-k] branch main updated: Updated CHANGELOG.md

2022-12-07 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 8afbc7d1a Updated CHANGELOG.md
8afbc7d1a is described below

commit 8afbc7d1ae8bf097fa0c0a1d2916619c27dd3d72
Author: github-actions[bot] 
<41898282+github-actions[bot]@users.noreply.github.com>
AuthorDate: Thu Dec 8 03:12:26 2022 +

Updated CHANGELOG.md
---
 CHANGELOG.md | 302 ---
 1 file changed, 162 insertions(+), 140 deletions(-)

diff --git a/CHANGELOG.md b/CHANGELOG.md
index cd604afad..04ad15a73 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -2,16 +2,38 @@
 
 ## [Unreleased](https://github.com/apache/camel-k/tree/HEAD)
 
-[Full 
Changelog](https://github.com/apache/camel-k/compare/1.10.4-nightly...HEAD)
+[Full Changelog](https://github.com/apache/camel-k/compare/v1.11.0...HEAD)
 
 **Closed issues:**
 
+- `kamel uninstall` should also delete leases 
[\#3473](https://github.com/apache/camel-k/issues/3473)
+
+## [v1.11.0](https://github.com/apache/camel-k/tree/v1.11.0) (2022-12-07)
+
+[Full 
Changelog](https://github.com/apache/camel-k/compare/pkg/apis/camel/v1.11.0...v1.11.0)
+
+## 
[pkg/apis/camel/v1.11.0](https://github.com/apache/camel-k/tree/pkg/apis/camel/v1.11.0)
 (2022-12-07)
+
+[Full 
Changelog](https://github.com/apache/camel-k/compare/pkg/kamelet/repository/v1.11.0...pkg/apis/camel/v1.11.0)
+
+## 
[pkg/kamelet/repository/v1.11.0](https://github.com/apache/camel-k/tree/pkg/kamelet/repository/v1.11.0)
 (2022-12-07)
+
+[Full 
Changelog](https://github.com/apache/camel-k/compare/pkg/client/camel/v1.11.0...pkg/kamelet/repository/v1.11.0)
+
+## 
[pkg/client/camel/v1.11.0](https://github.com/apache/camel-k/tree/pkg/client/camel/v1.11.0)
 (2022-12-07)
+
+[Full 
Changelog](https://github.com/apache/camel-k/compare/1.10.4-nightly...pkg/client/camel/v1.11.0)
+
+**Closed issues:**
+
+- E2E - Prometheus trait tests started to fail constantly after \#3875 
[\#3880](https://github.com/apache/camel-k/issues/3880)
 - Recent testing failures 
[\#3861](https://github.com/apache/camel-k/issues/3861)
 - Update dependency versions in the documentation for 1.10.x and Next versions 
[\#3852](https://github.com/apache/camel-k/issues/3852)
 - Remove deprecated Kubernetes API 
[\#3840](https://github.com/apache/camel-k/issues/3840)
 - gc trait fails for: cannot list resource \"endpoints\" in API group 
\"submariner.io\" [\#3833](https://github.com/apache/camel-k/issues/3833)
 - Bundle m2 camel k runtime distribution 
[\#3826](https://github.com/apache/camel-k/issues/3826)
 - E2E - Upgrade tests has become flaky saying 
'"camel-catalog-1.16.0-snapshot-quarkus" already exists' 
[\#3822](https://github.com/apache/camel-k/issues/3822)
+- `make generate` removes `PatchScale` func 
[\#3818](https://github.com/apache/camel-k/issues/3818)
 - E2E - Builder tests are constantly failing due to "Out of date version of 
GraalVM detected: native-image 21.3.0.0-Final" 
[\#3817](https://github.com/apache/camel-k/issues/3817)
 - query regarding using camel k 
[\#3815](https://github.com/apache/camel-k/issues/3815)
 - TestRunAndLog refactoring 
[\#3813](https://github.com/apache/camel-k/issues/3813)
@@ -60,15 +82,15 @@
 
 ## 
[pkg/kamelet/repository/v1.10.3](https://github.com/apache/camel-k/tree/pkg/kamelet/repository/v1.10.3)
 (2022-11-11)
 
-[Full 
Changelog](https://github.com/apache/camel-k/compare/pkg/client/camel/v1.10.3...pkg/kamelet/repository/v1.10.3)
+[Full 
Changelog](https://github.com/apache/camel-k/compare/pkg/apis/camel/v1.10.3...pkg/kamelet/repository/v1.10.3)
 
-## 
[pkg/client/camel/v1.10.3](https://github.com/apache/camel-k/tree/pkg/client/camel/v1.10.3)
 (2022-11-11)
+## 
[pkg/apis/camel/v1.10.3](https://github.com/apache/camel-k/tree/pkg/apis/camel/v1.10.3)
 (2022-11-11)
 
-[Full 
Changelog](https://github.com/apache/camel-k/compare/pkg/apis/camel/v1.10.3...pkg/client/camel/v1.10.3)
+[Full 
Changelog](https://github.com/apache/camel-k/compare/pkg/client/camel/v1.10.3...pkg/apis/camel/v1.10.3)
 
-## 
[pkg/apis/camel/v1.10.3](https://github.com/apache/camel-k/tree/pkg/apis/camel/v1.10.3)
 (2022-11-11)
+## 
[pkg/client/camel/v1.10.3](https://github.com/apache/camel-k/tree/pkg/client/camel/v1.10.3)
 (2022-11-11)
 
-[Full 
Changelog](https://github.com/apache/camel-k/compare/1.10.3-nightly...pkg/apis/camel/v1.10.3)
+[Full 
Changelog](https://github.com/apache/camel-k/compare/1.10.3-nightly...pkg/client/camel/v1.10.3)
 
 **Closed issues:**
 
@@ -117,19 +139,19 @@
 
 ## 
[pkg/client/camel/v1.10.2](https://github.com/apache/camel-k/tree/pkg/client/camel/v1.10.2)
 (2022-10-18)
 
-[Full 
Changelog](https://github.com/apache/camel-k/compare/pkg/apis/camel/v1.10.2...pkg/client/camel/v1.10.2)
+[Full 
Changelog](https://github.com/apache/camel-k/compare/pkg/kamelet/repository/v1.10.2...pkg/client/camel/v1.10.2)
 
-## 

[camel-kamelets] branch main updated: Updated CHANGELOG.md

2022-12-07 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 e16c1b62 Updated CHANGELOG.md
e16c1b62 is described below

commit e16c1b62cddc5337d1cf0e2637673be058deb309
Author: github-actions[bot] 
<41898282+github-actions[bot]@users.noreply.github.com>
AuthorDate: Thu Dec 8 03:09:41 2022 +

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

diff --git a/CHANGELOG.md b/CHANGELOG.md
index 58763a82..ebceffdc 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,13 @@
 # Changelog
 
+## [Unreleased](https://github.com/apache/camel-kamelets/tree/HEAD)
+
+[Full 
Changelog](https://github.com/apache/camel-kamelets/compare/v0.10.0...HEAD)
+
+**Closed issues:**
+
+- Add Camel test for the beans used in some of the Kamelet action 
[\#730](https://github.com/apache/camel-kamelets/issues/730)
+
 ## [v0.10.0](https://github.com/apache/camel-kamelets/tree/v0.10.0) 
(2022-12-05)
 
 [Full 
Changelog](https://github.com/apache/camel-kamelets/compare/v0.9.3...v0.10.0)



[camel-kafka-connector] branch main updated: Updated CHANGELOG.md

2022-12-07 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-kafka-connector.git


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

commit 6e352610a378347727bbb41024a5ad614b9b5fb5
Author: github-actions[bot] 
<41898282+github-actions[bot]@users.noreply.github.com>
AuthorDate: Thu Dec 8 03:07:20 2022 +

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

diff --git a/CHANGELOG.md b/CHANGELOG.md
index 1cf015128..154cf419e 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -17,6 +17,7 @@
 
 **Merged pull requests:**
 
+- Added exlusion of kamelets generation. 
[\#1483](https://github.com/apache/camel-kafka-connector/pull/1483) 
([valdar](https://github.com/valdar))
 - Bump actions/dependency-review-action from 2 to 3 
[\#1468](https://github.com/apache/camel-kafka-connector/pull/1468) 
([dependabot[bot]](https://github.com/apps/dependabot))
 - Doc changes 
[\#1460](https://github.com/apache/camel-kafka-connector/pull/1460) 
([valdar](https://github.com/valdar))
 - Bump peter-evans/create-pull-request from 4.1.3 to 4.2.0 
[\#1459](https://github.com/apache/camel-kafka-connector/pull/1459) 
([dependabot[bot]](https://github.com/apps/dependabot))



[GitHub] [camel-spring-boot] bmk15897 opened a new pull request, #681: Fixed Flaky Tests Caused by JSON permutations

2022-12-07 Thread GitBox


bmk15897 opened a new pull request, #681:
URL: https://github.com/apache/camel-spring-boot/pull/681

   ### Description
   Flaky Tests found using 
[NonDex](https://github.com/TestingResearchIllinois/NonDex) by running the 
commands -
   `
   mvn edu.illinois:nondex-maven-plugin:2.1.1:nondex 
-Dtest=org.apache.camel.component.gson.springboot.GsonFieldNamePolicyTest#testMarshalPojo
   `
   
   `
   mvn edu.illinois:nondex-maven-plugin:2.1.1:nondex 
-Dtest=org.apache.camel.component.gson.springboot.GsonMarshalExclusionTest#testMarshalAndUnmarshalPojoWithAnotherExclusion
   `
   
   `
   mvn edu.illinois:nondex-maven-plugin:2.1.1:nondex 
-Dtest=org.apache.camel.component.gson.springboot.SpringGsonFieldNamePolicyTest#testMarshalPojo
   `
   The logged failures were-
   ```
   [WARNING] Flakes: 
   [WARNING] 
org.apache.camel.component.gson.springboot.GsonFieldNamePolicyTest.testMarshalPojo
   [ERROR]   Run 1: GsonFieldNamePolicyTest.testMarshalPojo:76 expected: 
<{"id":123,"first_name":"Donald","last_name":"Duck"}> but was: 
<{"id":123,"last_name":"Duck","first_name":"Donald"}>
   [INFO]   Run 2: PASS
   ```
   ```
   [ERROR] [WARNING] Flakes: 
   [WARNING] 
org.apache.camel.component.gson.springboot.GsonMarshalExclusionTest.testMarshalAndUnmarshalPojoWithAnotherExclusion
   [ERROR]   Run 1: 
GsonMarshalExclusionTest.testMarshalAndUnmarshalPojoWithAnotherExclusion:98 
expected: <{"height":190,"weight":70}> but was: <{"weight":70,"height":190}>
   [INFO]   Run 2: PASS
   ```
   ```
   [WARNING] Flakes: 
   [WARNING] 
org.apache.camel.component.gson.springboot.SpringGsonFieldNamePolicyTest.testMarshalPojo
   [ERROR]   Run 1: SpringGsonFieldNamePolicyTest.testMarshalPojo:87 expected: 
<{"id":123,"first_name":"Donald","last_name":"Duck"}> but was: 
<{"last_name":"Duck","id":123,"first_name":"Donald"}>
   [INFO]   Run 2: PASS
   ```
   ### Investigation
   The tests  fail with a comparison error while comparing an expected JSON 
String and the result from the value returned by the funtion 
template.requestBody(...). The function of the that converts given Pojo Object 
to String does not guarantee the order of the fields in the Pojos. This makes 
the test outcome non-deterministic, and the test fails whenever the function 
returns a mismatch in order of the elements in the JSON String. To fix this, 
the expected and actual keys should be checked in a more deterministic way so 
that the assertions do not fail.
   
   ### Fix
   Expected and actual arrays can be compared without making assumptions about 
the order of the keys in these JSON Strings. Instead of using assertEquals for 
the complete JSON String, using contains for every subpart of the expected 
String makes the test more deterministic and ensures that the flakiness from 
the test is removed.
   
   The PR does not introduce a breaking change.


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

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

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



[camel-spring-boot] branch automatic-periodic-sync updated (cfca6305aec -> a0c6a4e8e69)

2022-12-07 Thread github-bot
This is an automated email from the ASF dual-hosted git repository.

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


omit cfca6305aec [create-pull-request] automated change
 add bf9c4a99cdd [create-pull-request] automated change
 add 15154df03b7 ⬆️ Bump maven dependency (#678)
 add 40f160c624d CAMEL-14831: Add rocketmq-starter
 add 808a0460d62 [CAMEL-18729]use platform servlet transport for the 
ws-rm|ws-addressing decoupled endpoint at client side, instead of an embeded 
http server(another listening port other than the platform servlet listening 
port)
 add a0c6a4e8e69 Regen

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   (cfca6305aec)
\
 N -- N -- N   refs/heads/automatic-periodic-sync (a0c6a4e8e69)

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

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

No new revisions were added by this update.

Summary of changes:
 .../camel/springboot/catalog/components.properties |   1 +
 .../springboot/catalog/components/rocketmq.json|  82 +
 .../camel/springboot/catalog/components/sftp.json  |   4 +-
 .../cxf/soap/springboot/wsrm/WSRMTest.java |  15 +-
 .../pom.xml|   6 +-
 .../src/main/docs/rocketmq.json| 127 ++
 .../RocketMQComponentAutoConfiguration.java}   |  20 +--
 .../RocketMQComponentConfiguration.java}   | 187 +++--
 .../src/main/resources/META-INF/LICENSE.txt|   0
 .../src/main/resources/META-INF/NOTICE.txt |   0
 .../src/main/resources/META-INF/spring.factories   |   2 +-
 .../src/main/resources/META-INF/spring.provides|   2 +-
 components-starter/pom.xml |   1 +
 tooling/camel-spring-boot-bom/pom.xml  |   5 +
 tooling/camel-spring-boot-dependencies/pom.xml |  10 ++
 .../pom.xml|   2 +-
 .../camel-spring-boot-starter-generator/pom.xml|   2 +-
 17 files changed, 351 insertions(+), 115 deletions(-)
 create mode 100644 
catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/components/rocketmq.json
 copy components-starter/{camel-splunk-hec-starter => 
camel-rocketmq-starter}/pom.xml (93%)
 create mode 100644 
components-starter/camel-rocketmq-starter/src/main/docs/rocketmq.json
 copy 
components-starter/{camel-atom-starter/src/main/java/org/apache/camel/component/atom/springboot/AtomComponentAutoConfiguration.java
 => 
camel-rocketmq-starter/src/main/java/org/apache/camel/component/rocketmq/springboot/RocketMQComponentAutoConfiguration.java}
 (85%)
 copy 
components-starter/{camel-pubnub-starter/src/main/java/org/apache/camel/component/pubnub/springboot/PubNubComponentConfiguration.java
 => 
camel-rocketmq-starter/src/main/java/org/apache/camel/component/rocketmq/springboot/RocketMQComponentConfiguration.java}
 (52%)
 copy {archetypes/camel-archetype-spring-boot => 
components-starter/camel-rocketmq-starter}/src/main/resources/META-INF/LICENSE.txt
 (100%)
 copy {archetypes/camel-archetype-spring-boot => 
components-starter/camel-rocketmq-starter}/src/main/resources/META-INF/NOTICE.txt
 (100%)
 copy components-starter/{camel-language-starter => 
camel-rocketmq-starter}/src/main/resources/META-INF/spring.factories (94%)
 copy components-starter/{camel-arangodb-starter => 
camel-rocketmq-starter}/src/main/resources/META-INF/spring.provides (97%)



[GitHub] [camel-karavan] mkhudyakov opened a new issue, #549: Issue building karavan-app

2022-12-07 Thread GitBox


mkhudyakov opened a new issue, #549:
URL: https://github.com/apache/camel-karavan/issues/549

   Going through the steps in 
https://github.com/apache/camel-karavan/blob/main/DEV.md down to
   ```
   mvn clean package -Dquarkus.container-image.build=true
   ```
   Getting
   ```
   [INFO] Scanning for projects...
   [WARNING] 
   [WARNING] Some problems were encountered while building the effective model 
for org.apache.camel.karavan:karavan:jar:3.18.5
   [WARNING] 'build.plugins.plugin.version' for 
org.apache.maven.plugins:maven-resources-plugin is missing. @ line 232, column 
21
   [WARNING] 
   [WARNING] It is highly recommended to fix these problems because they 
threaten the stability of your build.
   [WARNING] 
   [WARNING] For this reason, future Maven versions might no longer support 
building such malformed projects.
   [WARNING] 
   [INFO] 
   [INFO] --< org.apache.camel.karavan:karavan 
>--
   [INFO] Building karavan 3.18.5
   [INFO] [ jar 
]-
   [INFO] 
   [INFO] --- maven-clean-plugin:2.5:clean (default-clean) @ karavan ---
   [INFO] Deleting /Users/jdoe/Camel/camel-karavan-3.18.5/karavan-app/target
   [INFO] 
   [INFO] --- frontend-maven-plugin:1.11.2:install-node-and-npm (install node 
and npm) @ karavan ---
   [INFO] Installing node version v18.12.0
   [INFO] Unpacking 
/Users/jdoe/.m2/repository/com/github/eirslett/node/18.12.0/node-18.12.0-darwin-x64.tar.gz
 into /Users/jdoe/Camel/camel-karavan-3.18.5/karavan-app/target/node/tmp
   [INFO] Copying node binary from 
/Users/jdoe/Camel/camel-karavan-3.18.5/karavan-app/target/node/tmp/node-v18.12.0-darwin-x64/bin/node
 to /Users/jdoe/Camel/camel-karavan-3.18.5/karavan-app/target/node/node
   [INFO] Installed node locally.
   [INFO] Installing npm version 8.12.2
   [INFO] Unpacking 
/Users/jdoe/.m2/repository/com/github/eirslett/npm/8.12.2/npm-8.12.2.tar.gz 
into /Users/jdoe/Camel/camel-karavan-3.18.5/karavan-app/target/node/node_modules
   [INFO] Installed npm locally.
   [INFO] 
   [INFO] --- frontend-maven-plugin:1.11.2:npm (npm install) @ karavan ---
   [INFO] Running 'npm install' in 
/Users/jdoe/Camel/camel-karavan-3.18.5/karavan-app/src/main/webapp
   [INFO] npm WARN deprecated @types/localforage@0.0.34: This is a stub types 
definition for localforage (https://github.com/localForage/localForage). 
localforage provides its own type definitions, so you don't need 
@types/localforage installed!
   [INFO] npm WARN deprecated stable@0.1.8: Modern JS already guarantees 
Array#sort() is a stable sort, so this library is deprecated. See the 
compatibility table on MDN: 
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/sort#browser_compatibility
   [INFO] npm WARN deprecated rollup-plugin-terser@7.0.2: This package has been 
deprecated and is no longer maintained. Please use @rollup/plugin-terser
   [INFO] npm WARN deprecated w3c-hr-time@1.0.2: Use your platform's native 
performance.now() and performance.timeOrigin.
   [INFO] npm WARN deprecated sourcemap-codec@1.4.8: Please use 
@jridgewell/sourcemap-codec instead
   [INFO] npm WARN deprecated svgo@1.3.2: This SVGO version is no longer 
supported. Upgrade to v2.x.x.
   [INFO] npm WARN deprecated popper.js@1.16.1: You can find the new Popper v2 
at @popperjs/core, this package is dedicated to the legacy v1
   [INFO] npm WARN deprecated core-js@2.6.12: core-js@<3.23.3 is no longer 
maintained and not recommended for usage due to the number of issues. Because 
of the V8 engine whims, feature detection in old core-js versions could cause a 
slowdown up to 100x even if nothing is polyfilled. Some versions have web 
compatibility issues. Please, upgrade your dependencies to the actual version 
of core-js.
   [INFO] npm ERR! code 2
   [INFO] npm ERR! path /Users/jdoe/Camel/camel-karavan-3.18.5/karavan-core
   [INFO] npm ERR! command failed
   [INFO] npm ERR! command sh -c npm run build && npm run test
   [INFO] npm ERR! > karavan-core@3.18.5 build
   [INFO] npm ERR! > tsc
   [INFO] npm ERR! 
   [INFO] npm ERR! src/core/api/CamelDefinitionYaml.ts(17,23): error TS2307: 
Cannot find module 'js-yaml' or its corresponding type declarations.
   [INFO] npm ERR! src/core/api/CamelDefinitionYaml.ts(109,28): error TS7006: 
Parameter 'key' implicitly has an 'any' type.
   [INFO] npm ERR! src/core/api/CamelDefinitionYaml.ts(109,33): error TS7006: 
Parameter 'value' implicitly has an 'any' type.
   [INFO] npm ERR! src/core/api/KameletApi.ts(18,23): error TS2307: Cannot find 
module 'js-yaml' or its corresponding type declarations.
   [INFO] npm ERR! src/core/model/IntegrationDefinition.ts(17,28): error 
TS2307: Cannot find module 'uuid' or its corresponding type declarations.
   [INFO] npm ERR! src/core/model/ProjectModel.ts(17,28): error TS2307: Cannot 
find module 'uuid' or its corresponding type declarations.
   [INFO] 
   [INFO] npm ERR! A complete log of this run can be 

[GitHub] [camel-kafka-connector] valdar commented on pull request #1482: Upgrade Camel to version 3.19.0 and Kameles 0.10.0

2022-12-07 Thread GitBox


valdar commented on PR #1482:
URL: 
https://github.com/apache/camel-kafka-connector/pull/1482#issuecomment-1341751033

   @oscerd check if is all good 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



[camel-kafka-connector] branch camel-kamelets-0.10.0 updated (13f33af1e -> 3d7705408)

2022-12-07 Thread valdar
This is an automated email from the ASF dual-hosted git repository.

valdar pushed a change to branch camel-kamelets-0.10.0
in repository https://gitbox.apache.org/repos/asf/camel-kafka-connector.git


omit 13f33af1e Aligned CKC to Camel-Kamelets 0.10.0
omit eac1a0577 Point Camel Kamelets 0.10.0
 add a7f65cf3a Updated CHANGELOG.md
 add fa3982c3e Added exlusion of kamelets generation.
 add 8d9a04e9b Point Camel Kamelets 0.10.0
 add e1443668c Aligned CKC to Camel-Kamelets 0.10.0
 add d5899377f Fixed tests and dependencies for camel 3.19 and kamelets 
catalog 0.10.0
 add 3d7705408 chore: regen.

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   (13f33af1e)
\
 N -- N -- N   refs/heads/camel-kamelets-0.10.0 (3d7705408)

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

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

No new revisions were added by this update.

Summary of changes:
 CHANGELOG.md   |   4 +
 .../camel-aws-cloudtrail-source-source.json|   0
 .../camel-aws-ddb-experimental-sink-sink.json  |   0
 .../camel-aws-s3-cdc-source-source.json|   0
 .../camel-aws-s3-experimental-source-source.json   |   0
 ...camel-azure-storage-blob-cdc-source-source.json |   0
 .../camel-google-storage-cdc-source-source.json|   0
 .../resources/descriptors/connectors.properties|   1 -
 .../pom.xml| 151 ---
 .../descriptors/connector-source.properties|   1 -
 ...s-exchange-online-imap-oauth-source-source.json |  65 ---
 .../src/main/assembly/package.xml  |  56 --
 ...onlineimapoauthsourceSourceConnector.properties |  38 
 ...changeonlineimapoauthsourceSourceConnector.java |  36 
 ...onlineimapoauthsourceSourceConnectorConfig.java |  76 
 ...lMsexchangeonlineimapoauthsourceSourceTask.java |  38 
 .../src/main/resources/META-INF/LICENSE.txt| 203 -
 .../src/main/resources/META-INF/NOTICE.txt |  11 --
 ...-exchange-online-imap-oauth-source.kamelet.yaml | 105 ---
 connectors/pom.xml |   4 +-
 docs/modules/ROOT/nav.adoc |   2 -
 docs/modules/ROOT/pages/reference/index.adoc   |   3 +-
 parent/pom.xml |   2 +-
 tests/itests-aws-v2/pom.xml|   6 +
 tests/itests-azure-storage-queue/pom.xml   |   6 +
 .../maven/GenerateCamelKafkaConnectorsMojo.java|  14 +-
 .../maven_project/pom.xml  |   3 +
 27 files changed, 34 insertions(+), 791 deletions(-)
 copy 
{connectors/camel-aws-cloudtrail-source-kafka-connector/src/generated/resources 
=> 
camel-kafka-connector-catalog/src/generated/resources/connectors}/camel-aws-cloudtrail-source-source.json
 (100%)
 copy 
{connectors/camel-aws-ddb-experimental-sink-kafka-connector/src/generated/resources
 => 
camel-kafka-connector-catalog/src/generated/resources/connectors}/camel-aws-ddb-experimental-sink-sink.json
 (100%)
 copy 
{connectors/camel-aws-s3-cdc-source-kafka-connector/src/generated/resources => 
camel-kafka-connector-catalog/src/generated/resources/connectors}/camel-aws-s3-cdc-source-source.json
 (100%)
 copy 
{connectors/camel-aws-s3-experimental-source-kafka-connector/src/generated/resources
 => 
camel-kafka-connector-catalog/src/generated/resources/connectors}/camel-aws-s3-experimental-source-source.json
 (100%)
 copy 
{connectors/camel-azure-storage-blob-cdc-source-kafka-connector/src/generated/resources
 => 
camel-kafka-connector-catalog/src/generated/resources/connectors}/camel-azure-storage-blob-cdc-source-source.json
 (100%)
 copy 
{connectors/camel-google-storage-cdc-source-kafka-connector/src/generated/resources
 => 
camel-kafka-connector-catalog/src/generated/resources/connectors}/camel-google-storage-cdc-source-source.json
 (100%)
 delete mode 100644 
connectors/camel-ms-exchange-online-imap-oauth-source-kafka-connector/pom.xml
 delete mode 100644 
connectors/camel-ms-exchange-online-imap-oauth-source-kafka-connector/src/generated/descriptors/connector-source.properties
 delete mode 100644 
connectors/camel-ms-exchange-online-imap-oauth-source-kafka-connector/src/generated/resources/camel-ms-exchange-online-imap-oauth-source-source.json
 delete mode 100644 
connectors/camel-ms-exchange-online-imap-oauth-source-kafka-connector/src/main/assembly/package.xml
 delete mode 100644 

[GitHub] [camel-karavan] mgubaidullin commented on issue #548: Kubernetes Config support

2022-12-07 Thread GitBox


mgubaidullin commented on issue #548:
URL: https://github.com/apache/camel-karavan/issues/548#issuecomment-1341663240

   You could overwrite application.properties with Environment variables
   https://quarkus.io/guides/config-reference#environment-variables


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



[GitHub] [camel] github-actions[bot] commented on pull request #8867: CAMEL-18131 - aws2 sns health

2022-12-07 Thread GitBox


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

   ### Components tested:
   
   | Total | Tested | Failed :x: | Passed :white_check_mark: | 
   | --- | --- | --- |  --- |
   | 1 | 1 | 0 | 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



[GitHub] [camel-karavan] mrinalsharma opened a new issue, #548: Kubernetes Config support

2022-12-07 Thread GitBox


mrinalsharma opened a new issue, #548:
URL: https://github.com/apache/camel-karavan/issues/548

   Is there a way to override the properties in  `application.properties ` for 
karavan-app?  I would like to test with remote Infinispan server and need to 
update property `quarkus.infinispan-client.server-list` . If there is no way 
should we integrate [kubernetes 
Config](https://quarkus.io/guides/kubernetes-config)


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



[GitHub] [camel-quarkus] maxandersen commented on issue #4326: Investigate graalvm-reachability-metadata tools

2022-12-07 Thread GitBox


maxandersen commented on issue #4326:
URL: https://github.com/apache/camel-quarkus/issues/4326#issuecomment-1341633222

   We discussed it in past and it is possible to integrate it but the metadata 
we've thus far seen published been very ineffecient and resulting in too High 
RSS and/or faulty execution. 
   Plus they don't work standalone as can't have all metadata published.
   
   Thus we haven't had a good reason to use it as it would mean we get 
inefficient usage of the libraries. 
   
   If you find libraries that has usable metadata that provides value we can 
look again. 


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



[GitHub] [camel] github-actions[bot] commented on pull request #8867: Camel 18131 aws2 sns health

2022-12-07 Thread GitBox


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

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


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

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

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



[GitHub] [camel] rhuan080 opened a new pull request, #8867: Camel 18131 aws2 sns health

2022-12-07 Thread GitBox


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

   
   


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



[GitHub] [camel-karavan] dependabot[bot] opened a new pull request, #547: Bump express from 4.17.2 to 4.18.2 in /karavan-designer

2022-12-07 Thread GitBox


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

   Bumps [express](https://github.com/expressjs/express) from 4.17.2 to 4.18.2.
   
   Release notes
   Sourced from https://github.com/expressjs/express/releases;>express's 
releases.
   
   4.18.2
   
   Fix regression routing a large stack in a single route
   deps: body-parser@1.20.1
   
   deps: qs@6.11.0
   perf: remove unnecessary object clone
   
   
   deps: qs@6.11.0
   
   4.18.1
   
   Fix hanging on large stack of sync routes
   
   4.18.0
   
   Add root option to res.download
   Allow options without filename in 
res.download
   Deprecate string and non-integer arguments to 
res.status
   Fix behavior of null/undefined as 
maxAge in res.cookie
   Fix handling very large stacks of sync middleware
   Ignore Object.prototype values in settings through 
app.set/app.get
   Invoke default with same arguments as types in 
res.format
   Support proper 205 responses using res.send
   Use http-errors for res.format error
   deps: body-parser@1.20.0
   
   Fix error message for json parse whitespace in strict
   Fix internal error when inflated body exceeds limit
   Prevent loss of async hooks context
   Prevent hanging when request already read
   deps: depd@2.0.0
   deps: http-errors@2.0.0
   deps: on-finished@2.4.1
   deps: qs@6.10.3
   deps: raw-body@2.5.1
   
   
   deps: cookie@0.5.0
   
   Add priority option
   Fix expires option to reject invalid dates
   
   
   deps: depd@2.0.0
   
   Replace internal eval usage with Function 
constructor
   Use instance methods on process to check for listeners
   
   
   deps: finalhandler@1.2.0
   
   Remove set content headers that break response
   deps: on-finished@2.4.1
   deps: statuses@2.0.1
   
   
   deps: on-finished@2.4.1
   
   Prevent loss of async hooks context
   
   
   deps: qs@6.10.3
   deps: send@0.18.0
   
   Fix emitted 416 error missing headers property
   Limit the headers removed for 304 response
   deps: depd@2.0.0
   deps: destroy@1.2.0
   deps: http-errors@2.0.0
   deps: on-finished@2.4.1
   
   
   
   
   
   ... (truncated)
   
   
   Changelog
   Sourced from https://github.com/expressjs/express/blob/master/History.md;>express's 
changelog.
   
   4.18.2 / 2022-10-08
   
   Fix regression routing a large stack in a single route
   deps: body-parser@1.20.1
   
   deps: qs@6.11.0
   perf: remove unnecessary object clone
   
   
   deps: qs@6.11.0
   
   4.18.1 / 2022-04-29
   
   Fix hanging on large stack of sync routes
   
   4.18.0 / 2022-04-25
   
   Add root option to res.download
   Allow options without filename in 
res.download
   Deprecate string and non-integer arguments to 
res.status
   Fix behavior of null/undefined as 
maxAge in res.cookie
   Fix handling very large stacks of sync middleware
   Ignore Object.prototype values in settings through 
app.set/app.get
   Invoke default with same arguments as types in 
res.format
   Support proper 205 responses using res.send
   Use http-errors for res.format error
   deps: body-parser@1.20.0
   
   Fix error message for json parse whitespace in strict
   Fix internal error when inflated body exceeds limit
   Prevent loss of async hooks context
   Prevent hanging when request already read
   deps: depd@2.0.0
   deps: http-errors@2.0.0
   deps: on-finished@2.4.1
   deps: qs@6.10.3
   deps: raw-body@2.5.1
   
   
   deps: cookie@0.5.0
   
   Add priority option
   Fix expires option to reject invalid dates
   
   
   deps: depd@2.0.0
   
   Replace internal eval usage with Function 
constructor
   Use instance methods on process to check for listeners
   
   
   deps: finalhandler@1.2.0
   
   Remove set content headers that break response
   deps: on-finished@2.4.1
   deps: statuses@2.0.1
   
   
   deps: on-finished@2.4.1
   
   Prevent loss of async hooks context
   
   
   deps: qs@6.10.3
   deps: send@0.18.0
   
   
   
   ... (truncated)
   
   
   Commits
   
   https://github.com/expressjs/express/commit/8368dc178af16b91b576c4c1d135f701a0007e5d;>8368dc1
 4.18.2
   https://github.com/expressjs/express/commit/61f40491222dbede653b9938e6a4676f187aab44;>61f4049
 docs: replace Freenode with Libera Chat
   https://github.com/expressjs/express/commit/bb7907b932afe3a19236a642f6054b6c8f7349a0;>bb7907b
 build: Node.js@18.10
   https://github.com/expressjs/express/commit/f56ce73186e885a938bfdb3d3d1005a58e6ae12b;>f56ce73
 build: supertest@6.3.0
   https://github.com/expressjs/express/commit/24b3dc551670ac4fb0cd5a2bd5ef643c9525e60f;>24b3dc5
 deps: qs@6.11.0
   https://github.com/expressjs/express/commit/689d175b8b39d8860b81d723233fb83d15201827;>689d175
 deps: body-parser@1.20.1
   https://github.com/expressjs/express/commit/340be0f79afb9b3176afb76235aa7f92acbd5050;>340be0f
 build: eslint@8.24.0
   https://github.com/expressjs/express/commit/33e8dc303af9277f8a7e4f46abfdcb5e72f6797b;>33e8dc3
 docs: use Node.js name style
   

[camel-karavan] branch dependabot/npm_and_yarn/karavan-designer/express-4.18.2 created (now d7ad91e)

2022-12-07 Thread github-bot
This is an automated email from the ASF dual-hosted git repository.

github-bot pushed a change to branch 
dependabot/npm_and_yarn/karavan-designer/express-4.18.2
in repository https://gitbox.apache.org/repos/asf/camel-karavan.git


  at d7ad91e  Bump express from 4.17.2 to 4.18.2 in /karavan-designer

No new revisions were added by this update.



[camel-karavan] branch main updated: Fixed Templates load issue in kubernetes (#546)

2022-12-07 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 7308814  Fixed Templates load issue in kubernetes (#546)
7308814 is described below

commit 730881464b057a2060a4a24449277d81fc56987b
Author: Mrinal Sharma 
AuthorDate: Wed Dec 7 16:13:24 2022 -0500

Fixed Templates load issue in kubernetes (#546)
---
 karavan-app/pom.xml | 1 +
 1 file changed, 1 insertion(+)

diff --git a/karavan-app/pom.xml b/karavan-app/pom.xml
index 2243d48..ace9db2 100644
--- a/karavan-app/pom.xml
+++ b/karavan-app/pom.xml
@@ -159,6 +159,7 @@
 **/application.properties
 components/**
 kamelets/**
+snippets/**
 META-INF/**
 
 



[GitHub] [camel-karavan] mgubaidullin merged pull request #546: Fixed Templates load issue in kubernetes

2022-12-07 Thread GitBox


mgubaidullin merged PR #546:
URL: https://github.com/apache/camel-karavan/pull/546


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



[GitHub] [camel-quarkus] jamesnetherton commented on issue #4313: Micromether Metrics with prometheus not showing Kafka metrics from camel-quarkus-kafka

2022-12-07 Thread GitBox


jamesnetherton commented on issue #4313:
URL: https://github.com/apache/camel-quarkus/issues/4313#issuecomment-1341601884

   > I'm curious as of why it wouldn't work ?
   
   From what I saw of the code, it assumes the Kafka consumer / producer is a 
CDI bean. Which is not the case for `camel-quarkus-kafka`.


-- 
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 (331147b9d67 -> e305dca9239)

2022-12-07 Thread github-bot
This is an automated email from the ASF dual-hosted git repository.

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


omit 331147b9d67 Regen for commit ccf6e22ae4e9c14faafcbc3fc0330fe8e90a14d3
 add e305dca9239 Regen for commit d3539ec79139d7c401ca7c86d6353f0f07308728 
(#8865)

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   (331147b9d67)
\
 N -- N -- N   refs/heads/regen_bot (e305dca9239)

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

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

No new revisions were added by this update.

Summary of changes:



[camel] branch main created (now e305dca9239)

2022-12-07 Thread acosentino
This is an automated email from the ASF dual-hosted git repository.

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


  at e305dca9239 Regen for commit d3539ec79139d7c401ca7c86d6353f0f07308728 
(#8865)

No new revisions were added by this update.



[GitHub] [camel] oscerd merged pull request #8866: Generated sources regen

2022-12-07 Thread GitBox


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


-- 
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 (720ce3f2bad -> 331147b9d67)

2022-12-07 Thread github-bot
This is an automated email from the ASF dual-hosted git repository.

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


omit 720ce3f2bad Regen for commit d3539ec79139d7c401ca7c86d6353f0f07308728
 add 912b608c369 CAMEL-18805: Telegram : Fix unregister webhook API method 
(#8862)
 add ccf6e22ae4e Added test based on user problem
 add 331147b9d67 Regen for commit ccf6e22ae4e9c14faafcbc3fc0330fe8e90a14d3

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   (720ce3f2bad)
\
 N -- N -- N   refs/heads/regen_bot (331147b9d67)

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

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

No new revisions were added by this update.

Summary of changes:
 .../service/TelegramServiceRestBotAPIAdapter.java   |  7 ++-
 .../telegram/TelegramWebhookRegistrationTest.java   |  5 +
 .../apache/camel/component/mock/MockEndpointTest.java   | 17 +
 3 files changed, 28 insertions(+), 1 deletion(-)



[GitHub] [camel] github-actions[bot] opened a new pull request, #8866: Generated sources regen

2022-12-07 Thread GitBox


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

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


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

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

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



[camel-spring-boot] branch main updated: Regen

2022-12-07 Thread davsclaus
This is an automated email from the ASF dual-hosted git repository.

davsclaus 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 a0c6a4e8e69 Regen
a0c6a4e8e69 is described below

commit a0c6a4e8e692d898c140b5d120313e53497fa608
Author: Claus Ibsen 
AuthorDate: Wed Dec 7 20:22:16 2022 +0100

Regen
---
 .../org/apache/camel/springboot/catalog/components/sftp.json  | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git 
a/catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/components/sftp.json
 
b/catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/components/sftp.json
index 5a7f60966d0..ceb07f24e96 100644
--- 
a/catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/components/sftp.json
+++ 
b/catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/components/sftp.json
@@ -160,8 +160,8 @@
 "privateKeyFile": { "kind": "parameter", "displayName": "Private Key 
File", "group": "security", "label": "security", "required": false, "type": 
"string", "javaType": "java.lang.String", "deprecated": false, "autowired": 
false, "secret": true, "configurationClass": 
"org.apache.camel.component.file.remote.SftpConfiguration", 
"configurationField": "configuration", "description": "Set the private key file 
so that the SFTP endpoint can do private key verification." },
 "privateKeyPassphrase": { "kind": "parameter", "displayName": "Private Key 
Passphrase", "group": "security", "label": "security", "required": false, 
"type": "string", "javaType": "java.lang.String", "deprecated": false, 
"autowired": false, "secret": true, "configurationClass": 
"org.apache.camel.component.file.remote.SftpConfiguration", 
"configurationField": "configuration", "description": "Set the private key file 
passphrase so that the SFTP endpoint can do private key verification." },
 "privateKeyUri": { "kind": "parameter", "displayName": "Private Key Uri", 
"group": "security", "label": "security", "required": false, "type": "string", 
"javaType": "java.lang.String", "deprecated": false, "autowired": false, 
"secret": true, "configurationClass": 
"org.apache.camel.component.file.remote.SftpConfiguration", 
"configurationField": "configuration", "description": "Set the private key file 
(loaded from classpath by default) so that the SFTP endpoint can do private key 
veri [...]
-"publicKeyAcceptedAlgorithms": { "kind": "parameter", "displayName": 
"Public Key Accepted Algorithms", "group": "security", "label": "security", 
"required": false, "type": "string", "javaType": "java.lang.String", 
"deprecated": false, "autowired": false, "secret": false, "configurationClass": 
"org.apache.camel.component.file.remote.SftpConfiguration", 
"configurationField": "configuration", "description": "Set a comma separated 
list of public key accepted algorithms. Some examples inc [...]
-"serverHostKeys": { "kind": "parameter", "displayName": "Server Host 
Keys", "group": "security", "label": "security", "required": false, "type": 
"string", "javaType": "java.lang.String", "deprecated": false, "autowired": 
false, "secret": false, "configurationClass": 
"org.apache.camel.component.file.remote.SftpConfiguration", 
"configurationField": "configuration", "description": "Set a comma separated 
list of algorithms supported for the server host key. Some examples include: 
ssh-ed2 [...]
+"publicKeyAcceptedAlgorithms": { "kind": "parameter", "displayName": 
"Public Key Accepted Algorithms", "group": "security", "label": "security", 
"required": false, "type": "string", "javaType": "java.lang.String", 
"deprecated": false, "autowired": false, "secret": false, "configurationClass": 
"org.apache.camel.component.file.remote.SftpConfiguration", 
"configurationField": "configuration", "description": "Set a comma separated 
list of public key accepted algorithms. Some examples inc [...]
+"serverHostKeys": { "kind": "parameter", "displayName": "Server Host 
Keys", "group": "security", "label": "security", "required": false, "type": 
"string", "javaType": "java.lang.String", "deprecated": false, "autowired": 
false, "secret": false, "configurationClass": 
"org.apache.camel.component.file.remote.SftpConfiguration", 
"configurationField": "configuration", "description": "Set a comma separated 
list of algorithms supported for the server host key. Some examples include: 
ssh-dss [...]
 "strictHostKeyChecking": { "kind": "parameter", "displayName": "Strict 
Host Key Checking", "group": "security", "label": "security", "required": 
false, "type": "string", "javaType": "java.lang.String", "enum": [ "no", "yes" 
], "deprecated": false, "autowired": false, "secret": false, "defaultValue": 
"no", "configurationClass": 

[camel] branch main updated: Regen for commit d3539ec79139d7c401ca7c86d6353f0f07308728 (#8865)

2022-12-07 Thread davsclaus
This is an automated email from the ASF dual-hosted git repository.

davsclaus 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 e305dca9239 Regen for commit d3539ec79139d7c401ca7c86d6353f0f07308728 
(#8865)
e305dca9239 is described below

commit e305dca923942084e33a72d5b98702d8c4bc9243
Author: github-actions[bot] 
<41898282+github-actions[bot]@users.noreply.github.com>
AuthorDate: Wed Dec 7 20:21:22 2022 +0100

Regen for commit d3539ec79139d7c401ca7c86d6353f0f07308728 (#8865)

Signed-off-by: GitHub 

Signed-off-by: GitHub 
Co-authored-by: davsclaus 
---
 .../org/apache/camel/component/file/remote/SftpConfiguration.java | 8 
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git 
a/components/camel-ftp/src/main/java/org/apache/camel/component/file/remote/SftpConfiguration.java
 
b/components/camel-ftp/src/main/java/org/apache/camel/component/file/remote/SftpConfiguration.java
index cca314e163c..57fd9c9d969 100644
--- 
a/components/camel-ftp/src/main/java/org/apache/camel/component/file/remote/SftpConfiguration.java
+++ 
b/components/camel-ftp/src/main/java/org/apache/camel/component/file/remote/SftpConfiguration.java
@@ -373,8 +373,8 @@ public class SftpConfiguration extends 
RemoteFileConfiguration {
 
 /**
  * Set a comma separated list of algorithms supported for the server host 
key. Some examples include:
- * 
ssh-dss,ssh-rsa,ecdsa-sha2-nistp256,ecdsa-sha2-nistp384,ecdsa-sha2-nistp521. If 
not
- * specified the default list from JSCH will be used.
+ * 
ssh-dss,ssh-rsa,ecdsa-sha2-nistp256,ecdsa-sha2-nistp384,ecdsa-sha2-nistp521. If 
not specified the default list
+ * from JSCH will be used.
  */
 public void setServerHostKeys(String serverHostKeys) {
 this.serverHostKeys = serverHostKeys;
@@ -386,8 +386,8 @@ public class SftpConfiguration extends 
RemoteFileConfiguration {
 
 /**
  * Set a comma separated list of public key accepted algorithms. Some 
examples include:
- * 
ssh-dss,ssh-rsa,ecdsa-sha2-nistp256,ecdsa-sha2-nistp384,ecdsa-sha2-nistp521.  
If not
- * specified the default list from JSCH will be used.
+ * 
ssh-dss,ssh-rsa,ecdsa-sha2-nistp256,ecdsa-sha2-nistp384,ecdsa-sha2-nistp521. If 
not specified the default list
+ * from JSCH will be used.
  */
 public void setPublicKeyAcceptedAlgorithms(String 
publicKeyAcceptedAlgorithms) {
 this.publicKeyAcceptedAlgorithms = publicKeyAcceptedAlgorithms;



[GitHub] [camel] davsclaus merged pull request #8865: Generated sources regen

2022-12-07 Thread GitBox


davsclaus merged PR #8865:
URL: https://github.com/apache/camel/pull/8865


-- 
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 (91283a8a5c2 -> 720ce3f2bad)

2022-12-07 Thread github-bot
This is an automated email from the ASF dual-hosted git repository.

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


omit 91283a8a5c2 Regen for commit 912b608c3694c499f56f381ae1f301efa0a73dd7
omit 912b608c369 CAMEL-18805: Telegram : Fix unregister webhook API method 
(#8862)
 add 720ce3f2bad Regen for commit d3539ec79139d7c401ca7c86d6353f0f07308728

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   (91283a8a5c2)
\
 N -- N -- N   refs/heads/regen_bot (720ce3f2bad)

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

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

No new revisions were added by this update.

Summary of changes:
 .../telegram/service/TelegramServiceRestBotAPIAdapter.java | 7 +--
 .../camel/component/telegram/TelegramWebhookRegistrationTest.java  | 5 -
 2 files changed, 1 insertion(+), 11 deletions(-)



[camel] branch regen_bot updated (f467c785fa6 -> 91283a8a5c2)

2022-12-07 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 f467c785fa6 Regen for commit 741758ebc4dcbfe868249b7c106f19f13ed92c57
 add ff2a4ece62b CAMEL-18804 update documentation (#8861)
 add d3539ec7913 CAMEL-18804: Regen
 add 912b608c369 CAMEL-18805: Telegram : Fix unregister webhook API method 
(#8862)
 add 91283a8a5c2 Regen for commit 912b608c3694c499f56f381ae1f301efa0a73dd7

No new revisions were added by this update.

Summary of changes:
 .../resources/org/apache/camel/catalog/components/sftp.json  |  4 ++--
 .../org/apache/camel/component/file/remote/sftp.json |  4 ++--
 .../camel/component/file/remote/SftpConfiguration.java   |  8 
 .../telegram/service/TelegramServiceRestBotAPIAdapter.java   |  7 ++-
 .../component/telegram/TelegramWebhookRegistrationTest.java  |  5 +
 .../builder/endpoint/dsl/SftpEndpointBuilderFactory.java | 12 ++--
 6 files changed, 25 insertions(+), 15 deletions(-)



[GitHub] [camel] github-actions[bot] opened a new pull request, #8865: Generated sources regen

2022-12-07 Thread GitBox


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

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


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

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

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



[camel] branch main updated: Added test based on user problem

2022-12-07 Thread davsclaus
This is an automated email from the ASF dual-hosted git repository.

davsclaus 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 ccf6e22ae4e Added test based on user problem
ccf6e22ae4e is described below

commit ccf6e22ae4e9c14faafcbc3fc0330fe8e90a14d3
Author: Claus Ibsen 
AuthorDate: Wed Dec 7 20:08:59 2022 +0100

Added test based on user problem
---
 .../apache/camel/component/mock/MockEndpointTest.java   | 17 +
 1 file changed, 17 insertions(+)

diff --git 
a/core/camel-core/src/test/java/org/apache/camel/component/mock/MockEndpointTest.java
 
b/core/camel-core/src/test/java/org/apache/camel/component/mock/MockEndpointTest.java
index 17b84ffe0cb..df9f60b5230 100644
--- 
a/core/camel-core/src/test/java/org/apache/camel/component/mock/MockEndpointTest.java
+++ 
b/core/camel-core/src/test/java/org/apache/camel/component/mock/MockEndpointTest.java
@@ -30,6 +30,7 @@ import org.apache.camel.Exchange;
 import org.apache.camel.ExchangePattern;
 import org.apache.camel.Processor;
 import org.apache.camel.builder.RouteBuilder;
+import org.apache.camel.spi.Language;
 import org.apache.camel.spi.Registry;
 import org.junit.jupiter.api.Test;
 
@@ -1224,6 +1225,22 @@ public class MockEndpointTest extends ContextTestSupport 
{
 assertEquals("10", 
mock.getReceivedExchanges().get(9).getIn().getBody());
 }
 
+@Test
+public void testExpectedMessagesMatches() throws Exception {
+Language sl = context.resolveLanguage("simple");
+MockEndpoint mock = getMockEndpoint("mock:result");
+
+mock.expectedMessagesMatches(sl.createPredicate("${body} == 'abc'"));
+template.sendBody("direct:a", "abc");
+mock.assertIsSatisfied();
+
+mock.reset();
+
+mock.expectedMessagesMatches(sl.createPredicate("${body} == 'abc'"));
+template.sendBody("direct:a", "def");
+mock.assertIsNotSatisfied();
+}
+
 protected void sendMessages(int... counters) {
 for (int counter : counters) {
 template.sendBodyAndHeader("direct:a", createTestMessage(counter), 
"counter", counter);



[camel] 03/03: CAMEL-18805: Telegram : Fix unregister webhook API method (#8862)

2022-12-07 Thread davsclaus
This is an automated email from the ASF dual-hosted git repository.

davsclaus pushed a commit to branch camel-3.18.x
in repository https://gitbox.apache.org/repos/asf/camel.git

commit cc237b9290137677fa82018247b1e13b7d7cd575
Author: Zineb BENDHIBA 
AuthorDate: Wed Dec 7 19:33:33 2022 +0100

CAMEL-18805: Telegram : Fix unregister webhook API method (#8862)
---
 .../telegram/service/TelegramServiceRestBotAPIAdapter.java | 7 ++-
 .../camel/component/telegram/TelegramWebhookRegistrationTest.java  | 5 +
 2 files changed, 11 insertions(+), 1 deletion(-)

diff --git 
a/components/camel-telegram/src/main/java/org/apache/camel/component/telegram/service/TelegramServiceRestBotAPIAdapter.java
 
b/components/camel-telegram/src/main/java/org/apache/camel/component/telegram/service/TelegramServiceRestBotAPIAdapter.java
index 4a1934e1f3f..a207af7f294 100644
--- 
a/components/camel-telegram/src/main/java/org/apache/camel/component/telegram/service/TelegramServiceRestBotAPIAdapter.java
+++ 
b/components/camel-telegram/src/main/java/org/apache/camel/component/telegram/service/TelegramServiceRestBotAPIAdapter.java
@@ -190,7 +190,12 @@ public class TelegramServiceRestBotAPIAdapter implements 
TelegramService {
 
 @Override
 public boolean removeWebhook() {
-return setWebhook("");
+final String uri = baseUri + "/deleteWebhook";
+
+final HttpRequest.Builder request = 
HttpRequest.newBuilder().uri(URI.create(uri)).GET();
+
+WebhookResult res = sendSyncRequest(request.build(), 
WebhookResult.class);
+return res.isOk() && res.isResult();
 }
 
 @Override
diff --git 
a/components/camel-telegram/src/test/java/org/apache/camel/component/telegram/TelegramWebhookRegistrationTest.java
 
b/components/camel-telegram/src/test/java/org/apache/camel/component/telegram/TelegramWebhookRegistrationTest.java
index 9c4a2a5cbb7..876342dfe3e 100644
--- 
a/components/camel-telegram/src/test/java/org/apache/camel/component/telegram/TelegramWebhookRegistrationTest.java
+++ 
b/components/camel-telegram/src/test/java/org/apache/camel/component/telegram/TelegramWebhookRegistrationTest.java
@@ -136,6 +136,11 @@ public class TelegramWebhookRegistrationTest extends 
TelegramTestSupport {
 "setWebhook?url=http://my-domain.com/my-test;,
 "GET",
 String.class,
+TelegramTestUtil.serialize(result))
+.addEndpoint(
+"deleteWebhook",
+"GET",
+String.class,
 TelegramTestUtil.serialize(result));
 }
 



[camel] 01/03: CAMEL-18804 update documentation (#8861)

2022-12-07 Thread davsclaus
This is an automated email from the ASF dual-hosted git repository.

davsclaus pushed a commit to branch camel-3.18.x
in repository https://gitbox.apache.org/repos/asf/camel.git

commit 5b91e388404bfac48a4fd7a687a22460faab5829
Author: Maarten Donderwinkel 
AuthorDate: Wed Dec 7 19:29:31 2022 +0100

CAMEL-18804 update documentation (#8861)

Update documentation for applicable algorithms supported according to 
http://www.jcraft.com/jsch/README.
Remove ed25519
---
 .../org/apache/camel/component/file/remote/SftpConfiguration.java | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git 
a/components/camel-ftp/src/main/java/org/apache/camel/component/file/remote/SftpConfiguration.java
 
b/components/camel-ftp/src/main/java/org/apache/camel/component/file/remote/SftpConfiguration.java
index 5c34df7e8e4..cca314e163c 100644
--- 
a/components/camel-ftp/src/main/java/org/apache/camel/component/file/remote/SftpConfiguration.java
+++ 
b/components/camel-ftp/src/main/java/org/apache/camel/component/file/remote/SftpConfiguration.java
@@ -373,7 +373,7 @@ public class SftpConfiguration extends 
RemoteFileConfiguration {
 
 /**
  * Set a comma separated list of algorithms supported for the server host 
key. Some examples include:
- * 
ssh-ed25519,ecdsa-sha2-nistp256,ecdsa-sha2-nistp384,ecdsa-sha2-nistp521,rsa-sha2-512,rsa-sha2-256
 If not
+ * 
ssh-dss,ssh-rsa,ecdsa-sha2-nistp256,ecdsa-sha2-nistp384,ecdsa-sha2-nistp521. If 
not
  * specified the default list from JSCH will be used.
  */
 public void setServerHostKeys(String serverHostKeys) {
@@ -386,7 +386,7 @@ public class SftpConfiguration extends 
RemoteFileConfiguration {
 
 /**
  * Set a comma separated list of public key accepted algorithms. Some 
examples include:
- * 
ssh-ed25519,ecdsa-sha2-nistp256,ecdsa-sha2-nistp384,ecdsa-sha2-nistp521,rsa-sha2-512,rsa-sha2-256
 If not
+ * 
ssh-dss,ssh-rsa,ecdsa-sha2-nistp256,ecdsa-sha2-nistp384,ecdsa-sha2-nistp521.  
If not
  * specified the default list from JSCH will be used.
  */
 public void setPublicKeyAcceptedAlgorithms(String 
publicKeyAcceptedAlgorithms) {



[camel] branch camel-3.18.x updated (64a3ce792ce -> cc237b92901)

2022-12-07 Thread davsclaus
This is an automated email from the ASF dual-hosted git repository.

davsclaus pushed a change to branch camel-3.18.x
in repository https://gitbox.apache.org/repos/asf/camel.git


from 64a3ce792ce CAMEL-18800 - Support Camel K integration in JBang run 
command
 new 5b91e388404 CAMEL-18804 update documentation (#8861)
 new 2d0f965d5b0 CAMEL-18804: Regen
 new cc237b92901 CAMEL-18805: Telegram : Fix unregister webhook API method 
(#8862)

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:
 .../resources/org/apache/camel/catalog/components/sftp.json  |  4 ++--
 .../org/apache/camel/component/file/remote/sftp.json |  4 ++--
 .../camel/component/file/remote/SftpConfiguration.java   |  4 ++--
 .../telegram/service/TelegramServiceRestBotAPIAdapter.java   |  7 ++-
 .../component/telegram/TelegramWebhookRegistrationTest.java  |  5 +
 .../builder/endpoint/dsl/SftpEndpointBuilderFactory.java | 12 ++--
 6 files changed, 23 insertions(+), 13 deletions(-)



[camel] 02/03: CAMEL-18804: Regen

2022-12-07 Thread davsclaus
This is an automated email from the ASF dual-hosted git repository.

davsclaus pushed a commit to branch camel-3.18.x
in repository https://gitbox.apache.org/repos/asf/camel.git

commit 2d0f965d5b070f8370da5359d13d7d4ad96f996a
Author: Claus Ibsen 
AuthorDate: Wed Dec 7 19:33:14 2022 +0100

CAMEL-18804: Regen
---
 .../resources/org/apache/camel/catalog/components/sftp.json  |  4 ++--
 .../org/apache/camel/component/file/remote/sftp.json |  4 ++--
 .../builder/endpoint/dsl/SftpEndpointBuilderFactory.java | 12 ++--
 3 files changed, 10 insertions(+), 10 deletions(-)

diff --git 
a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components/sftp.json
 
b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components/sftp.json
index 7c474f8c925..a25bd1baa2f 100644
--- 
a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components/sftp.json
+++ 
b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components/sftp.json
@@ -160,8 +160,8 @@
 "privateKeyFile": { "kind": "parameter", "displayName": "Private Key 
File", "group": "security", "label": "security", "required": false, "type": 
"string", "javaType": "java.lang.String", "deprecated": false, "autowired": 
false, "secret": true, "configurationClass": 
"org.apache.camel.component.file.remote.SftpConfiguration", 
"configurationField": "configuration", "description": "Set the private key file 
so that the SFTP endpoint can do private key verification." },
 "privateKeyPassphrase": { "kind": "parameter", "displayName": "Private Key 
Passphrase", "group": "security", "label": "security", "required": false, 
"type": "string", "javaType": "java.lang.String", "deprecated": false, 
"autowired": false, "secret": true, "configurationClass": 
"org.apache.camel.component.file.remote.SftpConfiguration", 
"configurationField": "configuration", "description": "Set the private key file 
passphrase so that the SFTP endpoint can do private key verification." },
 "privateKeyUri": { "kind": "parameter", "displayName": "Private Key Uri", 
"group": "security", "label": "security", "required": false, "type": "string", 
"javaType": "java.lang.String", "deprecated": false, "autowired": false, 
"secret": true, "configurationClass": 
"org.apache.camel.component.file.remote.SftpConfiguration", 
"configurationField": "configuration", "description": "Set the private key file 
(loaded from classpath by default) so that the SFTP endpoint can do private key 
veri [...]
-"publicKeyAcceptedAlgorithms": { "kind": "parameter", "displayName": 
"Public Key Accepted Algorithms", "group": "security", "label": "security", 
"required": false, "type": "string", "javaType": "java.lang.String", 
"deprecated": false, "autowired": false, "secret": false, "configurationClass": 
"org.apache.camel.component.file.remote.SftpConfiguration", 
"configurationField": "configuration", "description": "Set a comma separated 
list of public key accepted algorithms. Some examples inc [...]
-"serverHostKeys": { "kind": "parameter", "displayName": "Server Host 
Keys", "group": "security", "label": "security", "required": false, "type": 
"string", "javaType": "java.lang.String", "deprecated": false, "autowired": 
false, "secret": false, "configurationClass": 
"org.apache.camel.component.file.remote.SftpConfiguration", 
"configurationField": "configuration", "description": "Set a comma separated 
list of algorithms supported for the server host key. Some examples include: 
ssh-ed2 [...]
+"publicKeyAcceptedAlgorithms": { "kind": "parameter", "displayName": 
"Public Key Accepted Algorithms", "group": "security", "label": "security", 
"required": false, "type": "string", "javaType": "java.lang.String", 
"deprecated": false, "autowired": false, "secret": false, "configurationClass": 
"org.apache.camel.component.file.remote.SftpConfiguration", 
"configurationField": "configuration", "description": "Set a comma separated 
list of public key accepted algorithms. Some examples inc [...]
+"serverHostKeys": { "kind": "parameter", "displayName": "Server Host 
Keys", "group": "security", "label": "security", "required": false, "type": 
"string", "javaType": "java.lang.String", "deprecated": false, "autowired": 
false, "secret": false, "configurationClass": 
"org.apache.camel.component.file.remote.SftpConfiguration", 
"configurationField": "configuration", "description": "Set a comma separated 
list of algorithms supported for the server host key. Some examples include: 
ssh-dss [...]
 "strictHostKeyChecking": { "kind": "parameter", "displayName": "Strict 
Host Key Checking", "group": "security", "label": "security", "required": 
false, "type": "string", "javaType": "java.lang.String", "enum": [ "no", "yes" 
], "deprecated": false, "autowired": false, "secret": false, "defaultValue": 
"no", "configurationClass": 
"org.apache.camel.component.file.remote.SftpConfiguration", 
"configurationField": 

[camel] branch main updated: CAMEL-18805: Telegram : Fix unregister webhook API method (#8862)

2022-12-07 Thread davsclaus
This is an automated email from the ASF dual-hosted git repository.

davsclaus 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 912b608c369 CAMEL-18805: Telegram : Fix unregister webhook API method 
(#8862)
912b608c369 is described below

commit 912b608c3694c499f56f381ae1f301efa0a73dd7
Author: Zineb BENDHIBA 
AuthorDate: Wed Dec 7 19:33:33 2022 +0100

CAMEL-18805: Telegram : Fix unregister webhook API method (#8862)
---
 .../telegram/service/TelegramServiceRestBotAPIAdapter.java | 7 ++-
 .../camel/component/telegram/TelegramWebhookRegistrationTest.java  | 5 +
 2 files changed, 11 insertions(+), 1 deletion(-)

diff --git 
a/components/camel-telegram/src/main/java/org/apache/camel/component/telegram/service/TelegramServiceRestBotAPIAdapter.java
 
b/components/camel-telegram/src/main/java/org/apache/camel/component/telegram/service/TelegramServiceRestBotAPIAdapter.java
index 2436b59f67a..dcbcfed05ff 100644
--- 
a/components/camel-telegram/src/main/java/org/apache/camel/component/telegram/service/TelegramServiceRestBotAPIAdapter.java
+++ 
b/components/camel-telegram/src/main/java/org/apache/camel/component/telegram/service/TelegramServiceRestBotAPIAdapter.java
@@ -185,7 +185,12 @@ public class TelegramServiceRestBotAPIAdapter implements 
TelegramService {
 
 @Override
 public boolean removeWebhook() {
-return setWebhook("");
+final String uri = baseUri + "/deleteWebhook";
+
+final HttpRequest.Builder request = 
HttpRequest.newBuilder().uri(URI.create(uri)).GET();
+
+WebhookResult res = sendSyncRequest(request.build(), 
WebhookResult.class);
+return res.isOk() && res.isResult();
 }
 
 @Override
diff --git 
a/components/camel-telegram/src/test/java/org/apache/camel/component/telegram/TelegramWebhookRegistrationTest.java
 
b/components/camel-telegram/src/test/java/org/apache/camel/component/telegram/TelegramWebhookRegistrationTest.java
index 41da912f2d7..d39a0ef8e33 100644
--- 
a/components/camel-telegram/src/test/java/org/apache/camel/component/telegram/TelegramWebhookRegistrationTest.java
+++ 
b/components/camel-telegram/src/test/java/org/apache/camel/component/telegram/TelegramWebhookRegistrationTest.java
@@ -142,6 +142,11 @@ public class TelegramWebhookRegistrationTest extends 
TelegramTestSupport {
 "setWebhook?url=http://my-domain.com/my-test;,
 "GET",
 String.class,
+TelegramTestUtil.serialize(result))
+.addEndpoint(
+"deleteWebhook",
+"GET",
+String.class,
 TelegramTestUtil.serialize(result));
 }
 



[GitHub] [camel] davsclaus merged pull request #8862: CAMEL-18805: Telegram : Fix unregister webhook API method

2022-12-07 Thread GitBox


davsclaus merged PR #8862:
URL: https://github.com/apache/camel/pull/8862


-- 
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: CAMEL-18804: Regen

2022-12-07 Thread davsclaus
This is an automated email from the ASF dual-hosted git repository.

davsclaus 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 d3539ec7913 CAMEL-18804: Regen
d3539ec7913 is described below

commit d3539ec79139d7c401ca7c86d6353f0f07308728
Author: Claus Ibsen 
AuthorDate: Wed Dec 7 19:33:14 2022 +0100

CAMEL-18804: Regen
---
 .../resources/org/apache/camel/catalog/components/sftp.json  |  4 ++--
 .../org/apache/camel/component/file/remote/sftp.json |  4 ++--
 .../builder/endpoint/dsl/SftpEndpointBuilderFactory.java | 12 ++--
 3 files changed, 10 insertions(+), 10 deletions(-)

diff --git 
a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components/sftp.json
 
b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components/sftp.json
index 9eec345c16b..012405bb5ed 100644
--- 
a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components/sftp.json
+++ 
b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components/sftp.json
@@ -160,8 +160,8 @@
 "privateKeyFile": { "kind": "parameter", "displayName": "Private Key 
File", "group": "security", "label": "security", "required": false, "type": 
"string", "javaType": "java.lang.String", "deprecated": false, "autowired": 
false, "secret": true, "configurationClass": 
"org.apache.camel.component.file.remote.SftpConfiguration", 
"configurationField": "configuration", "description": "Set the private key file 
so that the SFTP endpoint can do private key verification." },
 "privateKeyPassphrase": { "kind": "parameter", "displayName": "Private Key 
Passphrase", "group": "security", "label": "security", "required": false, 
"type": "string", "javaType": "java.lang.String", "deprecated": false, 
"autowired": false, "secret": true, "configurationClass": 
"org.apache.camel.component.file.remote.SftpConfiguration", 
"configurationField": "configuration", "description": "Set the private key file 
passphrase so that the SFTP endpoint can do private key verification." },
 "privateKeyUri": { "kind": "parameter", "displayName": "Private Key Uri", 
"group": "security", "label": "security", "required": false, "type": "string", 
"javaType": "java.lang.String", "deprecated": false, "autowired": false, 
"secret": true, "configurationClass": 
"org.apache.camel.component.file.remote.SftpConfiguration", 
"configurationField": "configuration", "description": "Set the private key file 
(loaded from classpath by default) so that the SFTP endpoint can do private key 
veri [...]
-"publicKeyAcceptedAlgorithms": { "kind": "parameter", "displayName": 
"Public Key Accepted Algorithms", "group": "security", "label": "security", 
"required": false, "type": "string", "javaType": "java.lang.String", 
"deprecated": false, "autowired": false, "secret": false, "configurationClass": 
"org.apache.camel.component.file.remote.SftpConfiguration", 
"configurationField": "configuration", "description": "Set a comma separated 
list of public key accepted algorithms. Some examples inc [...]
-"serverHostKeys": { "kind": "parameter", "displayName": "Server Host 
Keys", "group": "security", "label": "security", "required": false, "type": 
"string", "javaType": "java.lang.String", "deprecated": false, "autowired": 
false, "secret": false, "configurationClass": 
"org.apache.camel.component.file.remote.SftpConfiguration", 
"configurationField": "configuration", "description": "Set a comma separated 
list of algorithms supported for the server host key. Some examples include: 
ssh-ed2 [...]
+"publicKeyAcceptedAlgorithms": { "kind": "parameter", "displayName": 
"Public Key Accepted Algorithms", "group": "security", "label": "security", 
"required": false, "type": "string", "javaType": "java.lang.String", 
"deprecated": false, "autowired": false, "secret": false, "configurationClass": 
"org.apache.camel.component.file.remote.SftpConfiguration", 
"configurationField": "configuration", "description": "Set a comma separated 
list of public key accepted algorithms. Some examples inc [...]
+"serverHostKeys": { "kind": "parameter", "displayName": "Server Host 
Keys", "group": "security", "label": "security", "required": false, "type": 
"string", "javaType": "java.lang.String", "deprecated": false, "autowired": 
false, "secret": false, "configurationClass": 
"org.apache.camel.component.file.remote.SftpConfiguration", 
"configurationField": "configuration", "description": "Set a comma separated 
list of algorithms supported for the server host key. Some examples include: 
ssh-dss [...]
 "strictHostKeyChecking": { "kind": "parameter", "displayName": "Strict 
Host Key Checking", "group": "security", "label": "security", "required": 
false, "type": "string", "javaType": "java.lang.String", "enum": [ "no", "yes" 
], "deprecated": false, "autowired": false, "secret": false, 

[camel] branch main updated: CAMEL-18804 update documentation (#8861)

2022-12-07 Thread davsclaus
This is an automated email from the ASF dual-hosted git repository.

davsclaus 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 ff2a4ece62b CAMEL-18804 update documentation (#8861)
ff2a4ece62b is described below

commit ff2a4ece62bedafbc5d4ff7067a9895abebcc2c7
Author: Maarten Donderwinkel 
AuthorDate: Wed Dec 7 19:29:31 2022 +0100

CAMEL-18804 update documentation (#8861)

Update documentation for applicable algorithms supported according to 
http://www.jcraft.com/jsch/README.
Remove ed25519
---
 .../org/apache/camel/component/file/remote/SftpConfiguration.java | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git 
a/components/camel-ftp/src/main/java/org/apache/camel/component/file/remote/SftpConfiguration.java
 
b/components/camel-ftp/src/main/java/org/apache/camel/component/file/remote/SftpConfiguration.java
index 5c34df7e8e4..cca314e163c 100644
--- 
a/components/camel-ftp/src/main/java/org/apache/camel/component/file/remote/SftpConfiguration.java
+++ 
b/components/camel-ftp/src/main/java/org/apache/camel/component/file/remote/SftpConfiguration.java
@@ -373,7 +373,7 @@ public class SftpConfiguration extends 
RemoteFileConfiguration {
 
 /**
  * Set a comma separated list of algorithms supported for the server host 
key. Some examples include:
- * 
ssh-ed25519,ecdsa-sha2-nistp256,ecdsa-sha2-nistp384,ecdsa-sha2-nistp521,rsa-sha2-512,rsa-sha2-256
 If not
+ * 
ssh-dss,ssh-rsa,ecdsa-sha2-nistp256,ecdsa-sha2-nistp384,ecdsa-sha2-nistp521. If 
not
  * specified the default list from JSCH will be used.
  */
 public void setServerHostKeys(String serverHostKeys) {
@@ -386,7 +386,7 @@ public class SftpConfiguration extends 
RemoteFileConfiguration {
 
 /**
  * Set a comma separated list of public key accepted algorithms. Some 
examples include:
- * 
ssh-ed25519,ecdsa-sha2-nistp256,ecdsa-sha2-nistp384,ecdsa-sha2-nistp521,rsa-sha2-512,rsa-sha2-256
 If not
+ * 
ssh-dss,ssh-rsa,ecdsa-sha2-nistp256,ecdsa-sha2-nistp384,ecdsa-sha2-nistp521.  
If not
  * specified the default list from JSCH will be used.
  */
 public void setPublicKeyAcceptedAlgorithms(String 
publicKeyAcceptedAlgorithms) {



[GitHub] [camel] davsclaus merged pull request #8861: CAMEL-18804 update documentation camel-sftp component

2022-12-07 Thread GitBox


davsclaus merged PR #8861:
URL: https://github.com/apache/camel/pull/8861


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



[GitHub] [camel] github-actions[bot] commented on pull request #8863: (chores) camel-kafka: added tests for handling invalid authentication

2022-12-07 Thread GitBox


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

   ### Components tested:
   
   | Total | Tested | Failed :x: | Passed :white_check_mark: | 
   | --- | --- | --- |  --- |
   | 1 | 1 | 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



[GitHub] [camel-kamelets] oscerd commented on issue #558: Detect Vulnerabilities in Kamelets / Containers

2022-12-07 Thread GitBox


oscerd commented on issue #558:
URL: https://github.com/apache/camel-kamelets/issues/558#issuecomment-1341343140

   I would like to have some discussion on this: @christophd @squakez 
@davsclaus @lburgazzoli 
   
   I think this is something more general now: it's not only within containers, 
but in multiple runtimes.
   
   We have camel-jbang and we could have some kind of subcommand to check the 
safety?


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



[GitHub] [camel-kamelets] oscerd closed issue #730: Add Camel test for the beans used in some of the Kamelet action

2022-12-07 Thread GitBox


oscerd closed issue #730: Add Camel test for the beans used in some of the 
Kamelet action
URL: https://github.com/apache/camel-kamelets/issues/730


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



[GitHub] [camel-kamelets] oscerd commented on issue #1203: google-storage-sink serviceAccountKey is not required

2022-12-07 Thread GitBox


oscerd commented on issue #1203:
URL: 
https://github.com/apache/camel-kamelets/issues/1203#issuecomment-1341339505

   By the way, thanks for reporting problems and improvements. This is highly 
appreciated. I hope we could have a fix for the next camel-kamelets release.


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



[GitHub] [camel-kamelets] oscerd commented on issue #1203: google-storage-sink serviceAccountKey is not required

2022-12-07 Thread GitBox


oscerd commented on issue #1203:
URL: 
https://github.com/apache/camel-kamelets/issues/1203#issuecomment-1341329951

   The old connector was based on the pure component, the new ones have been 
based on Kamelet, a different concept.


-- 
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 (e7cb591068f -> f467c785fa6)

2022-12-07 Thread github-bot
This is an automated email from the ASF dual-hosted git repository.

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


omit e7cb591068f Regen for commit 741758ebc4dcbfe868249b7c106f19f13ed92c57
 add f467c785fa6 Regen for commit 741758ebc4dcbfe868249b7c106f19f13ed92c57

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   (e7cb591068f)
\
 N -- N -- N   refs/heads/regen_bot (f467c785fa6)

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

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

No new revisions were added by this update.

Summary of changes:



[GitHub] [camel-kamelets] oscerd commented on issue #1203: google-storage-sink serviceAccountKey is not required

2022-12-07 Thread GitBox


oscerd commented on issue #1203:
URL: 
https://github.com/apache/camel-kamelets/issues/1203#issuecomment-1341327564

   I created this on Camel core side to make it optional. 
https://issues.apache.org/jira/projects/CAMEL/issues/CAMEL-18802


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



[GitHub] [camel] github-actions[bot] commented on pull request #8863: (chores) camel-kafka: added tests for handling invalid authentication

2022-12-07 Thread GitBox


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

   ### Components tested:
   
   | Total | Tested | Failed :x: | Passed :white_check_mark: | 
   | --- | --- | --- |  --- |
   | 1 | 1 | 1 | 0 |


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



[GitHub] [camel-kamelets] brokenjacobs commented on issue #1203: google-storage-sink serviceAccountKey is not required

2022-12-07 Thread GitBox


brokenjacobs commented on issue #1203:
URL: 
https://github.com/apache/camel-kamelets/issues/1203#issuecomment-1341320098

   This greatly complicates deployment on GCP and requires keeping keyfiles 
around. The ADC process allows for keyfiles as well, it sounds like this 
implementation isn't compliant because of how the configuration is being fed 
in. 
   
   FWIW the old connector appears to work and have the setting as optional.


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



[GitHub] [camel] github-actions[bot] commented on pull request #8863: (chores) camel-kafka: added tests for handling invalid authentication

2022-12-07 Thread GitBox


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

   ### Components tested:
   
   | Total | Tested | Failed :x: | Passed :white_check_mark: | 
   | --- | --- | --- |  --- |
   | 1 | 1 | 1 | 0 |


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



[GitHub] [camel] github-actions[bot] commented on pull request #8862: CAMEL-18805: Telegram : Fix unregister webhook API method

2022-12-07 Thread GitBox


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

   ### Components tested:
   
   | Total | Tested | Failed :x: | Passed :white_check_mark: | 
   | --- | --- | --- |  --- |
   | 1 | 1 | 0 | 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



[camel] branch main updated: Regen for commit 741758ebc4dcbfe868249b7c106f19f13ed92c57

2022-12-07 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 f467c785fa6 Regen for commit 741758ebc4dcbfe868249b7c106f19f13ed92c57
f467c785fa6 is described below

commit f467c785fa6d267db810b55139adf00460ba64e8
Author: gnodet 
AuthorDate: Wed Dec 7 16:48:08 2022 +

Regen for commit 741758ebc4dcbfe868249b7c106f19f13ed92c57

Signed-off-by: GitHub 
---
 .../main/java/org/apache/camel/support/PropertyBindingListener.java | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git 
a/core/camel-support/src/main/java/org/apache/camel/support/PropertyBindingListener.java
 
b/core/camel-support/src/main/java/org/apache/camel/support/PropertyBindingListener.java
index ecbf413bc97..ff9b4723cfd 100644
--- 
a/core/camel-support/src/main/java/org/apache/camel/support/PropertyBindingListener.java
+++ 
b/core/camel-support/src/main/java/org/apache/camel/support/PropertyBindingListener.java
@@ -25,9 +25,9 @@ public interface PropertyBindingListener {
 /**
  * Triggered before binding the value on the target
  *
- * @param target  the target
- * @param key they key
- * @param value   the value
+ * @param target the target
+ * @param keythey key
+ * @param value  the value
  */
 void bindProperty(Object target, String key, Object value);
 }



[GitHub] [camel] oscerd merged pull request #8864: Generated sources regen

2022-12-07 Thread GitBox


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


-- 
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 (611f277fa6d -> e7cb591068f)

2022-12-07 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 611f277fa6d Regen for commit 3bcc047dcb54b064df5de3beacc4af57971a47f6
 add 741758ebc4d Move non generated class out of the generated directory
 add e7cb591068f Regen for commit 741758ebc4dcbfe868249b7c106f19f13ed92c57

No new revisions were added by this update.

Summary of changes:
 .../java/org/apache/camel/support/PropertyBindingListener.java  | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
 rename core/camel-support/src/{generated => 
main}/java/org/apache/camel/support/PropertyBindingListener.java (92%)



[GitHub] [camel] github-actions[bot] opened a new pull request, #8864: Generated sources regen

2022-12-07 Thread GitBox


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

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


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

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

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



[GitHub] [camel] github-actions[bot] commented on pull request #8863: (chores) camel-kafka: added tests for handling invalid authentication

2022-12-07 Thread GitBox


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

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


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

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

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



[GitHub] [camel] github-actions[bot] commented on pull request #8862: CAMEL-18805: Telegram : Fix unregister webhook API method

2022-12-07 Thread GitBox


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

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


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

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

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



[GitHub] [camel] zbendhiba opened a new pull request, #8862: CAMEL-18805: Telegram : Fix unregister webhook API method

2022-12-07 Thread GitBox


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

   
   


-- 
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: Move non generated class out of the generated directory

2022-12-07 Thread gnodet
This is an automated email from the ASF dual-hosted git repository.

gnodet 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 741758ebc4d Move non generated class out of the generated directory
741758ebc4d is described below

commit 741758ebc4dcbfe868249b7c106f19f13ed92c57
Author: Guillaume Nodet 
AuthorDate: Wed Dec 7 17:01:34 2022 +0100

Move non generated class out of the generated directory
---
 .../java/org/apache/camel/support/PropertyBindingListener.java| 0
 1 file changed, 0 insertions(+), 0 deletions(-)

diff --git 
a/core/camel-support/src/generated/java/org/apache/camel/support/PropertyBindingListener.java
 
b/core/camel-support/src/main/java/org/apache/camel/support/PropertyBindingListener.java
similarity index 100%
rename from 
core/camel-support/src/generated/java/org/apache/camel/support/PropertyBindingListener.java
rename to 
core/camel-support/src/main/java/org/apache/camel/support/PropertyBindingListener.java



[camel-spring-boot] branch main updated: [CAMEL-18729]use platform servlet transport for the ws-rm|ws-addressing decoupled endpoint at client side, instead of an embeded http server(another listening

2022-12-07 Thread ffang
This is an automated email from the ASF dual-hosted git repository.

ffang 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 808a0460d62 [CAMEL-18729]use platform servlet transport for the 
ws-rm|ws-addressing decoupled endpoint at client side, instead of an embeded 
http server(another listening port other than the platform servlet listening 
port)
808a0460d62 is described below

commit 808a0460d62b7b978619e601d6f4f825db35b374
Author: Freeman Fang 
AuthorDate: Wed Dec 7 10:56:44 2022 -0500

[CAMEL-18729]use platform servlet transport for the ws-rm|ws-addressing 
decoupled endpoint at client side, instead of an embeded http server(another 
listening port other than the platform servlet listening port)
---
 .../component/cxf/soap/springboot/wsrm/WSRMTest.java  | 15 ---
 1 file changed, 8 insertions(+), 7 deletions(-)

diff --git 
a/components-starter/camel-cxf-soap-starter/src/test/java/org/apache/camel/component/cxf/soap/springboot/wsrm/WSRMTest.java
 
b/components-starter/camel-cxf-soap-starter/src/test/java/org/apache/camel/component/cxf/soap/springboot/wsrm/WSRMTest.java
index f6cfbdc7316..2c11e7a6632 100644
--- 
a/components-starter/camel-cxf-soap-starter/src/test/java/org/apache/camel/component/cxf/soap/springboot/wsrm/WSRMTest.java
+++ 
b/components-starter/camel-cxf-soap-starter/src/test/java/org/apache/camel/component/cxf/soap/springboot/wsrm/WSRMTest.java
@@ -55,6 +55,7 @@ import 
org.apache.cxf.spring.boot.autoconfigure.CxfAutoConfiguration;
 import org.apache.cxf.testutil.common.TestUtil;
 import org.apache.cxf.transport.http.HTTPConduit;
 import org.apache.cxf.transports.http.configuration.HTTPClientPolicy;
+import org.apache.cxf.ws.addressing.WSAContextUtils;
 import org.apache.cxf.ws.rm.manager.AcksPolicyType;
 import org.apache.cxf.ws.rm.manager.DestinationPolicyType;
 import org.apache.cxf.ws.rmp.v200502.RMAssertion;
@@ -112,16 +113,16 @@ public class WSRMTest {
 proxyFactory.getOutInterceptors().add(new MessageLossSimulator());
 HelloWorld helloWorld = (HelloWorld) proxyFactory.create();
 Client client = ClientProxy.getClient(helloWorld);
-String decoupledEndpoint = "http://localhost:;
-+ TestUtil.getPortNumber("decoupled") + "/wsrm/decoupled_endpoint";
-
+String decoupledEndpoint = "/wsrm/decoupled_endpoint";
+
client.getBus().setProperty(WSAContextUtils.DECOUPLED_ENDPOINT_BASE_PROPERTY, 
+   "http://localhost:; + port + 
"/services/wsrm/decoupled_endpoint");
 HTTPConduit hc = (HTTPConduit)(client.getConduit());
 HTTPClientPolicy cp = hc.getClient();
 cp.setDecoupledEndpoint(decoupledEndpoint);
-String result = helloWorld.sayHi("world!");
-assertEquals("Hello world!", result, "Get a wrong response");
-result = helloWorld.sayHi("world!");//second call will trigger 
MessageLoss and resend
-assertEquals("Hello world!", result, "Get a wrong response");
+String result = helloWorld.sayHi("world1!");
+assertEquals("Hello world1!", result, "Get a wrong response");
+result = helloWorld.sayHi("world2!");//second call will trigger 
MessageLoss and resend
+assertEquals("Hello world2!", result, "Get a wrong response");
 }
 
 // *



[GitHub] [camel] github-actions[bot] commented on pull request #8861: CAMEL-18804 update documentation camel-sftp component

2022-12-07 Thread GitBox


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

   ### Components tested:
   
   | Total | Tested | Failed :x: | Passed :white_check_mark: | 
   | --- | --- | --- |  --- |
   | 1 | 1 | 1 | 0 |


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



[GitHub] [camel-quarkus] zbendhiba commented on pull request #4314: Avoid port clashes with WireMock dynamically allocated port

2022-12-07 Thread GitBox


zbendhiba commented on PR #4314:
URL: https://github.com/apache/camel-quarkus/pull/4314#issuecomment-1341110368

   Nice catch 


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



[GitHub] [camel-k] MotaOcimar commented on issue #3869: Saga example failing with version > 1.10

2022-12-07 Thread GitBox


MotaOcimar commented on issue #3869:
URL: https://github.com/apache/camel-k/issues/3869#issuecomment-1341098127

   Just an additional question. Here I had difficulties with the logs.
   Sometimes it takes a long time to update the logs in the terminal.
   
   Both the log with `kamel logs ` and the log with `kubectl logs 
` are not updated as often as expected (every 5 seconds).
   
   Any guidance?


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



[GitHub] [camel-karavan] mrinalsharma opened a new pull request, #546: Fixed Templates load issue in kubernetes

2022-12-07 Thread GitBox


mrinalsharma opened a new pull request, #546:
URL: https://github.com/apache/camel-karavan/pull/546

   By adding `snippets/**` to the resource list, the template file gets loaded 
in Kubernetes environment.


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



[GitHub] [camel] github-actions[bot] commented on pull request #8859: [Hyperledger-Aries] Add support for service=didexchange

2022-12-07 Thread GitBox


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

   ### Components tested:
   
   | Total | Tested | Failed :x: | Passed :white_check_mark: | 
   | --- | --- | --- |  --- |
   | 1 | 1 | 1 | 0 |


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



[GitHub] [camel-k] MotaOcimar commented on issue #3869: Saga example failing with version > 1.10

2022-12-07 Thread GitBox


MotaOcimar commented on issue #3869:
URL: https://github.com/apache/camel-k/issues/3869#issuecomment-1341069564

   Ok, It worked, thanks!
   
   I opened the #3883 PR to fix this issue.


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



[GitHub] [camel-k] heiko-braun commented on pull request #3883: Fix #3869: Update Saga Example

2022-12-07 Thread GitBox


heiko-braun commented on PR #3883:
URL: https://github.com/apache/camel-k/pull/3883#issuecomment-1341068268

   Good catch, thanks for the contribution @MotaOcimar !


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



[GitHub] [camel-k] MotaOcimar opened a new pull request, #3883: Fix #3869: Update Saga Example

2022-12-07 Thread GitBox


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

   Fix for #3869.
   
   Update REST services to no longer use [unsupported embedded 
routes](https://camel.apache.org/manual/camel-3x-upgrade-guide-3_16.html#_removed_support_for_embedded_routes).
   
   Update Readme to to run the Saga route with `-d camel:direct` and include 
the direct component dependency.
   


-- 
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 (4db828e9fc1 -> 611f277fa6d)

2022-12-07 Thread github-bot
This is an automated email from the ASF dual-hosted git repository.

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


omit 4db828e9fc1 Regen for commit 3bcc047dcb54b064df5de3beacc4af57971a47f6
 add 611f277fa6d Regen for commit 3bcc047dcb54b064df5de3beacc4af57971a47f6

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   (4db828e9fc1)
\
 N -- N -- N   refs/heads/regen_bot (611f277fa6d)

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

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

No new revisions were added by this update.

Summary of changes:



[GitHub] [camel] github-actions[bot] commented on pull request #8861: CAMEL-18804 update documentation camel-sftp component

2022-12-07 Thread GitBox


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

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


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

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

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



[GitHub] [camel] maarten-donderwinkel opened a new pull request, #8861: CAMEL-18804 update documentation camel-sftp component

2022-12-07 Thread GitBox


maarten-donderwinkel opened a new pull request, #8861:
URL: https://github.com/apache/camel/pull/8861

   Update documentation for applicable algorithms supported according to 
http://www.jcraft.com/jsch/README.
   Will remove a reference to ed25519 as that's not supported by the used jsch 
library.
   
   - [x] Make sure there is a 
[CAMEL-18804](https://issues.apache.org/jira/browse/CAMEL-18804) filed for the 
change (usually before you start working on it).  Trivial changes like typos do 
not require a JIRA issue.  Your pull request should address just this issue, 
without pulling in other changes.
   - [X] Each commit in the pull request should have a meaningful subject line 
and body.
   - [X] If you're unsure, you can format the pull request title like 
`[CAMEL-XXX] Fixes bug in camel-file component`, where you replace `CAMEL-XXX` 
with the appropriate JIRA issue.
   - [ ] Write a pull request description that is detailed enough to understand 
what the pull request does, how, and why.
   - [ ] Run `mvn clean install -Psourcecheck` in your module with source check 
enabled to make sure basic checks pass and there are no checkstyle violations. 
A more thorough check will be performed on your pull request automatically.
   
   


-- 
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-kafka-connector] branch dependabot/maven/connectors/camel-postgresql-sink-kafka-connector/org.postgresql-postgresql-42.4.3 created (now 81174cbe3)

2022-12-07 Thread github-bot
This is an automated email from the ASF dual-hosted git repository.

github-bot pushed a change to branch 
dependabot/maven/connectors/camel-postgresql-sink-kafka-connector/org.postgresql-postgresql-42.4.3
in repository https://gitbox.apache.org/repos/asf/camel-kafka-connector.git


  at 81174cbe3 Bump postgresql in 
/connectors/camel-postgresql-sink-kafka-connector

No new revisions were added by this update.



[GitHub] [camel-kafka-connector] dependabot[bot] opened a new pull request, #1485: Bump postgresql from 42.4.0 to 42.4.3 in /connectors/camel-postgresql-sink-kafka-connector

2022-12-07 Thread GitBox


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

   Bumps [postgresql](https://github.com/pgjdbc/pgjdbc) from 42.4.0 to 42.4.3.
   
   Changelog
   Sourced from https://github.com/pgjdbc/pgjdbc/blob/master/CHANGELOG.md;>postgresql's 
changelog.
   
   Changelog
   Notable changes since version 42.0.0, read the complete https://jdbc.postgresql.org/documentation/changelog.html;>History of 
Changes.
   The format is based on http://keepachangelog.com/en/1.0.0/;>Keep 
a Changelog.
   [Unreleased]
   Changed
   Added
   Fixed
   [42.5.1] (2022-11-23 10:14:59 -0500)
   Security
   
   security: StreamWrapper spills to disk if setText, or setBytea sends 
very large Strings or arrays to the server. createTempFile creates a file which 
can be read by other users on unix like systems (Not macos).
   This has been fixed in this version fixes CVE-2022-41946 see the https://github.com/pgjdbc/pgjdbc/security/advisories/GHSA-562r-vg33-8x8h;>security
 advisory for more details. Reported by https://github.com/JLLeitschuh;>Jonathan Leitschuh This has been 
fixed in versions 42.5.1, 42.4.3 42.3.8, 42.2.27.jre7. Note there is no fix for 
42.2.26.jre6. See the security advisory for work arounds.
   
   Fixed
   
   fix: make sure we select array_in from pg_catalog to avoid duplicate 
array_in functions fixes https://github-redirect.dependabot.com/pgjdbc/pgjdbc/issues/2548;>#Issue 
2548 [PR https://github-redirect.dependabot.com/pgjdbc/pgjdbc/issues/2552;>#2552](https://github-redirect.dependabot.com/pgjdbc/pgjdbc/issues/2552;>pgjdbc/pgjdbc#2552)
   fix: binary decoding of bool values [PR https://github-redirect.dependabot.com/pgjdbc/pgjdbc/issues/2640;>#2640](https://github-redirect.dependabot.com/pgjdbc/pgjdbc/pull/2640;>pgjdbc/pgjdbc#2640)
   perf: improve performance of PgResultSet getByte/getShort/getInt/getLong 
for float-typed columns [PR https://github-redirect.dependabot.com/pgjdbc/pgjdbc/issues/2634;>#2634](https://github-redirect.dependabot.com/pgjdbc/pgjdbc/pull/2634;>pgjdbc/pgjdbc#2634)
   chore: fix various spelling errors [PR https://github-redirect.dependabot.com/pgjdbc/pgjdbc/issues/2592;>#2592](https://github-redirect.dependabot.com/pgjdbc/pgjdbc/pull/2592;>pgjdbc/pgjdbc#2592)
   chore: Feature/urlparser improve URLParser [PR https://github-redirect.dependabot.com/pgjdbc/pgjdbc/issues/2641;>#2641](https://github-redirect.dependabot.com/pgjdbc/pgjdbc/pull/2592;>pgjdbc/pgjdbc#2592)
   
   [42.5.0] (2022-08-23 11:20:11 -0400)
   Changed
   
   fix: revert change in [PR https://github-redirect.dependabot.com/pgjdbc/pgjdbc/issues/1986;>#1986](https://github-redirect.dependabot.com/pgjdbc/pgjdbc/pull/1986;>pgjdbc/pgjdbc#1986)
 where float was aliased to float4 from float8.
   float now aliases to float8 [PR https://github-redirect.dependabot.com/pgjdbc/pgjdbc/issues/2598;>#2598](https://github-redirect.dependabot.com/pgjdbc/pgjdbc/pull/2598;>pgjdbc/pgjdbc#2598)
 fixes [Issue https://github-redirect.dependabot.com/pgjdbc/pgjdbc/issues/2597;>#2597](https://github-redirect.dependabot.com/pgjdbc/pgjdbc/issues/2597;>pgjdbc/pgjdbc#2597)
   
   [42.4.2] (2022-08-17 10:33:40 -0400)
   Changed
   
   fix: add alias to the generated getUDT() query for clarity (PR https://github-redirect.dependabot.com/pgjdbc/pgjdbc/issues/2553;>#2553)[https://github-redirect.dependabot.com/pgjdbc/pgjdbc/pull/2553]
   
   Added
   
   fix: make setObject accept UUID array [PR https://github-redirect.dependabot.com/pgjdbc/pgjdbc/issues/2587;>#2587](https://github-redirect.dependabot.com/pgjdbc/pgjdbc/pull/2587;>pgjdbc/pgjdbc#2587)
   
   Fixed
   
   fix: regression with GSS. Changes introduced to support building with 
Java 17 caused failures [Issue https://github-redirect.dependabot.com/pgjdbc/pgjdbc/issues/2588;>#2588](https://github-redirect.dependabot.com/pgjdbc/pgjdbc/issues/2588;>pgjdbc/pgjdbc#2588)
   fix: set a timeout to get the return from requesting SSL upgrade. [PR https://github-redirect.dependabot.com/pgjdbc/pgjdbc/issues/2572;>#2572](https://github-redirect.dependabot.com/pgjdbc/pgjdbc/pull/2572;>pgjdbc/pgjdbc#2572)
   feat: synchronize statement executions (e.g. avoid deadlock when 
Connection.isValid is executed from concurrent threads)
   
   [42.4.1] (2022-08-01 16:24:20 -0400)
   Security
   
   fix: CVE-2022-31197 Fixes SQL generated in PgResultSet.refresh() to 
escape column identifiers so as to prevent SQL injection.
   
   Previously, the column names for both key and data columns in the table 
were copied as-is into the generated
   SQL. This allowed a malicious table with column names that include statement 
terminator to be parsed and
   executed as multiple separate commands.
   Also adds a new test class ResultSetRefreshTest to verify this 
change.
   Reported by https://github.com/kato-sho;>Sho Kato
   
   
   
   
   
   ... (truncated)
   
   
   Commits
   
   

[GitHub] [camel-kafka-connector] dependabot[bot] opened a new pull request, #1484: Bump postgresql from 42.4.0 to 42.4.3 in /connectors/camel-postgresql-source-kafka-connector

2022-12-07 Thread GitBox


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

   Bumps [postgresql](https://github.com/pgjdbc/pgjdbc) from 42.4.0 to 42.4.3.
   
   Changelog
   Sourced from https://github.com/pgjdbc/pgjdbc/blob/master/CHANGELOG.md;>postgresql's 
changelog.
   
   Changelog
   Notable changes since version 42.0.0, read the complete https://jdbc.postgresql.org/documentation/changelog.html;>History of 
Changes.
   The format is based on http://keepachangelog.com/en/1.0.0/;>Keep 
a Changelog.
   [Unreleased]
   Changed
   Added
   Fixed
   [42.5.1] (2022-11-23 10:14:59 -0500)
   Security
   
   security: StreamWrapper spills to disk if setText, or setBytea sends 
very large Strings or arrays to the server. createTempFile creates a file which 
can be read by other users on unix like systems (Not macos).
   This has been fixed in this version fixes CVE-2022-41946 see the https://github.com/pgjdbc/pgjdbc/security/advisories/GHSA-562r-vg33-8x8h;>security
 advisory for more details. Reported by https://github.com/JLLeitschuh;>Jonathan Leitschuh This has been 
fixed in versions 42.5.1, 42.4.3 42.3.8, 42.2.27.jre7. Note there is no fix for 
42.2.26.jre6. See the security advisory for work arounds.
   
   Fixed
   
   fix: make sure we select array_in from pg_catalog to avoid duplicate 
array_in functions fixes https://github-redirect.dependabot.com/pgjdbc/pgjdbc/issues/2548;>#Issue 
2548 [PR https://github-redirect.dependabot.com/pgjdbc/pgjdbc/issues/2552;>#2552](https://github-redirect.dependabot.com/pgjdbc/pgjdbc/issues/2552;>pgjdbc/pgjdbc#2552)
   fix: binary decoding of bool values [PR https://github-redirect.dependabot.com/pgjdbc/pgjdbc/issues/2640;>#2640](https://github-redirect.dependabot.com/pgjdbc/pgjdbc/pull/2640;>pgjdbc/pgjdbc#2640)
   perf: improve performance of PgResultSet getByte/getShort/getInt/getLong 
for float-typed columns [PR https://github-redirect.dependabot.com/pgjdbc/pgjdbc/issues/2634;>#2634](https://github-redirect.dependabot.com/pgjdbc/pgjdbc/pull/2634;>pgjdbc/pgjdbc#2634)
   chore: fix various spelling errors [PR https://github-redirect.dependabot.com/pgjdbc/pgjdbc/issues/2592;>#2592](https://github-redirect.dependabot.com/pgjdbc/pgjdbc/pull/2592;>pgjdbc/pgjdbc#2592)
   chore: Feature/urlparser improve URLParser [PR https://github-redirect.dependabot.com/pgjdbc/pgjdbc/issues/2641;>#2641](https://github-redirect.dependabot.com/pgjdbc/pgjdbc/pull/2592;>pgjdbc/pgjdbc#2592)
   
   [42.5.0] (2022-08-23 11:20:11 -0400)
   Changed
   
   fix: revert change in [PR https://github-redirect.dependabot.com/pgjdbc/pgjdbc/issues/1986;>#1986](https://github-redirect.dependabot.com/pgjdbc/pgjdbc/pull/1986;>pgjdbc/pgjdbc#1986)
 where float was aliased to float4 from float8.
   float now aliases to float8 [PR https://github-redirect.dependabot.com/pgjdbc/pgjdbc/issues/2598;>#2598](https://github-redirect.dependabot.com/pgjdbc/pgjdbc/pull/2598;>pgjdbc/pgjdbc#2598)
 fixes [Issue https://github-redirect.dependabot.com/pgjdbc/pgjdbc/issues/2597;>#2597](https://github-redirect.dependabot.com/pgjdbc/pgjdbc/issues/2597;>pgjdbc/pgjdbc#2597)
   
   [42.4.2] (2022-08-17 10:33:40 -0400)
   Changed
   
   fix: add alias to the generated getUDT() query for clarity (PR https://github-redirect.dependabot.com/pgjdbc/pgjdbc/issues/2553;>#2553)[https://github-redirect.dependabot.com/pgjdbc/pgjdbc/pull/2553]
   
   Added
   
   fix: make setObject accept UUID array [PR https://github-redirect.dependabot.com/pgjdbc/pgjdbc/issues/2587;>#2587](https://github-redirect.dependabot.com/pgjdbc/pgjdbc/pull/2587;>pgjdbc/pgjdbc#2587)
   
   Fixed
   
   fix: regression with GSS. Changes introduced to support building with 
Java 17 caused failures [Issue https://github-redirect.dependabot.com/pgjdbc/pgjdbc/issues/2588;>#2588](https://github-redirect.dependabot.com/pgjdbc/pgjdbc/issues/2588;>pgjdbc/pgjdbc#2588)
   fix: set a timeout to get the return from requesting SSL upgrade. [PR https://github-redirect.dependabot.com/pgjdbc/pgjdbc/issues/2572;>#2572](https://github-redirect.dependabot.com/pgjdbc/pgjdbc/pull/2572;>pgjdbc/pgjdbc#2572)
   feat: synchronize statement executions (e.g. avoid deadlock when 
Connection.isValid is executed from concurrent threads)
   
   [42.4.1] (2022-08-01 16:24:20 -0400)
   Security
   
   fix: CVE-2022-31197 Fixes SQL generated in PgResultSet.refresh() to 
escape column identifiers so as to prevent SQL injection.
   
   Previously, the column names for both key and data columns in the table 
were copied as-is into the generated
   SQL. This allowed a malicious table with column names that include statement 
terminator to be parsed and
   executed as multiple separate commands.
   Also adds a new test class ResultSetRefreshTest to verify this 
change.
   Reported by https://github.com/kato-sho;>Sho Kato
   
   
   
   
   
   ... (truncated)
   
   
   Commits
   
   

[camel-kafka-connector] branch dependabot/maven/connectors/camel-postgresql-source-kafka-connector/org.postgresql-postgresql-42.4.3 created (now 696f6a976)

2022-12-07 Thread github-bot
This is an automated email from the ASF dual-hosted git repository.

github-bot pushed a change to branch 
dependabot/maven/connectors/camel-postgresql-source-kafka-connector/org.postgresql-postgresql-42.4.3
in repository https://gitbox.apache.org/repos/asf/camel-kafka-connector.git


  at 696f6a976 Bump postgresql in 
/connectors/camel-postgresql-source-kafka-connector

No new revisions were added by this update.



[camel-kafka-connector] branch main updated: Added exlusion of kamelets generation.

2022-12-07 Thread valdar
This is an automated email from the ASF dual-hosted git repository.

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


The following commit(s) were added to refs/heads/main by this push:
 new fa3982c3e Added exlusion of kamelets generation.
fa3982c3e is described below

commit fa3982c3e6954420ff9f0d8887afd91903bfdc61
Author: Andrea Tarocchi 
AuthorDate: Wed Dec 7 14:02:01 2022 +0100

Added exlusion of kamelets generation.
---
 connectors/pom.xml |  3 +++
 .../maven/GenerateCamelKafkaConnectorsMojo.java| 14 ++
 .../maven_project/pom.xml  |  3 +++
 3 files changed, 16 insertions(+), 4 deletions(-)

diff --git a/connectors/pom.xml b/connectors/pom.xml
index 839b88516..091bcd414 100644
--- a/connectors/pom.xml
+++ b/connectors/pom.xml
@@ -104,6 +104,9 @@
 
${project.basedir}/camel-kafka-connector-template-example-sink-properties.template
 
 true
+
+ms-exchange-online-imap-oauth-source
+
 
 bonita
 bean-validator
diff --git 
a/tooling/camel-kafka-connector-generator-maven-plugin/src/main/java/org/apache/camel/kafkaconnector/maven/GenerateCamelKafkaConnectorsMojo.java
 
b/tooling/camel-kafka-connector-generator-maven-plugin/src/main/java/org/apache/camel/kafkaconnector/maven/GenerateCamelKafkaConnectorsMojo.java
index 275469dc6..efbe5d900 100644
--- 
a/tooling/camel-kafka-connector-generator-maven-plugin/src/main/java/org/apache/camel/kafkaconnector/maven/GenerateCamelKafkaConnectorsMojo.java
+++ 
b/tooling/camel-kafka-connector-generator-maven-plugin/src/main/java/org/apache/camel/kafkaconnector/maven/GenerateCamelKafkaConnectorsMojo.java
@@ -148,6 +148,12 @@ public class GenerateCamelKafkaConnectorsMojo extends 
AbstractCamelKafkaConnecto
 @Parameter(defaultValue = "", readonly = true)
 private List excludedComponents = Collections.EMPTY_LIST;
 
+/**
+ * The Camel Kamelets Exclusion List to select for which kamelet must be 
skipped while generating kafka connector.
+ */
+@Parameter(defaultValue = "", readonly = true)
+private List excludedKamelets = Collections.EMPTY_LIST;
+
 /**
  * The Exclusion List of connectors that must be skipped while deleting 
kafka connector.
  */
@@ -187,8 +193,8 @@ public class GenerateCamelKafkaConnectorsMojo extends 
AbstractCamelKafkaConnecto
 .collect(Collectors.joining("\n"));
 KameletModel kameletModel = 
YamlKameletMapper.parseKameletYaml(kamelet);
 
-// filter all kamelets with type not in {source,sink}
-if ("source".equals(kameletModel.getType()) || 
"sink".equals(kameletModel.getType())) {
+// filter all kamelets with type not in {source,sink} and not 
excluded
+if (("source".equals(kameletModel.getType()) || 
"sink".equals(kameletModel.getType())) && 
!excludedKamelets.contains(kameletModel.getName())) {
 kameletsResources.put(kameletModel.getName(), kamelet);
 camelComponentsUsedInKamelets.addAll(
 kameletModel.getDependencies().stream()
@@ -197,9 +203,9 @@ public class GenerateCamelKafkaConnectorsMojo extends 
AbstractCamelKafkaConnecto
 .collect(Collectors.toSet())
 );
 }
-//TODO: add include (filter) / exclude mechanism
-getLog().info("Kamelets found to be used to generate/update a 
kafka connector: " + kameletsResources.keySet());
+//TODO: add include (filter)
 }
+getLog().info("Kamelets found to be used to generate/update a kafka 
connector: " + kameletsResources.keySet());
 
 for (String kamelet : kameletsResources.keySet()) {
 executeMojo(
diff --git 
a/tooling/camel-kafka-connector-generator-maven-plugin/src/test/resources-its/org/apache/camel/kafkaconnector/maven/GenerateCamelKafkaConnectorsMojoIT/maven_project/pom.xml
 
b/tooling/camel-kafka-connector-generator-maven-plugin/src/test/resources-its/org/apache/camel/kafkaconnector/maven/GenerateCamelKafkaConnectorsMojoIT/maven_project/pom.xml
index a3816c1bf..e67cf7350 100644
--- 
a/tooling/camel-kafka-connector-generator-maven-plugin/src/test/resources-its/org/apache/camel/kafkaconnector/maven/GenerateCamelKafkaConnectorsMojoIT/maven_project/pom.xml
+++ 
b/tooling/camel-kafka-connector-generator-maven-plugin/src/test/resources-its/org/apache/camel/kafkaconnector/maven/GenerateCamelKafkaConnectorsMojoIT/maven_project/pom.xml
@@ -115,6 +115,9 @@
 
${project.build.testOutputDirectory}/camel-kafka-connector-template-example-sink-properties.template
 
 true
+
+ 

[GitHub] [camel-kafka-connector] valdar merged pull request #1483: Added exlusion of kamelets generation.

2022-12-07 Thread GitBox


valdar merged PR #1483:
URL: https://github.com/apache/camel-kafka-connector/pull/1483


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



[GitHub] [camel-quarkus] ppalaga commented on pull request #4322: Upgrade to Quarkus 2.15.0.Final and Quarkiverse CXF 1.7.0

2022-12-07 Thread GitBox


ppalaga commented on PR #4322:
URL: https://github.com/apache/camel-quarkus/pull/4322#issuecomment-1341033756

   @zbendhiba from my PoV, Camel Quarkus 2.15.0 can be released after merging 
this PR.


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



[GitHub] [camel-quarkus] zbendhiba opened a new issue, #4328: Investigate on upgrading minio quarkiverse version

2022-12-07 Thread GitBox


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

   I tried to upgrade the minio version quickly to 2.10.2 version, but 
integration tests are failing.
   First, minio has now devServices so this configuration needs to be added to 
the  application.properties file : `quarkus.minio.devservices.enabled = false`.
   Second there’s now a mandatory minio.url, which may not be compliant with 
camel-quarkus. Here’s a part of the error :
   ```
   Caused by: io.quarkus.runtime.configuration.ConfigurationException: 
"quarkus.minio.url" is mandatory and must be a valid url
   ```


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



[GitHub] [camel] oscerd merged pull request #8860: Generated sources regen

2022-12-07 Thread GitBox


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


-- 
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: Regen for commit 3bcc047dcb54b064df5de3beacc4af57971a47f6

2022-12-07 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 611f277fa6d Regen for commit 3bcc047dcb54b064df5de3beacc4af57971a47f6
611f277fa6d is described below

commit 611f277fa6df65772e379fbf4cea062b4f29dc2b
Author: davsclaus 
AuthorDate: Wed Dec 7 13:47:01 2022 +

Regen for commit 3bcc047dcb54b064df5de3beacc4af57971a47f6

Signed-off-by: GitHub 
---
 .../main/java/org/apache/camel/CamelContext.java   | 24 +++---
 1 file changed, 12 insertions(+), 12 deletions(-)

diff --git a/core/camel-api/src/main/java/org/apache/camel/CamelContext.java 
b/core/camel-api/src/main/java/org/apache/camel/CamelContext.java
index a09faa5cb4c..90aff10ee92 100644
--- a/core/camel-api/src/main/java/org/apache/camel/CamelContext.java
+++ b/core/camel-api/src/main/java/org/apache/camel/CamelContext.java
@@ -627,12 +627,12 @@ public interface CamelContext extends 
CamelContextLifecycle, RuntimeConfiguratio
  * Camel end users should favour using {@link 
org.apache.camel.builder.TemplatedRouteBuilder} which is a fluent
  * builder with more functionality than this API.
  *
- * @param  routeId the id of the new route to add (optional)
- * @param  routeTemplateId the id of the route template (mandatory)
- * @param  parameters  parameters to use for the route template when 
creating the new route
- * @return the id of the route added (for example when an 
id was auto assigned)
- * @throws Exception   is thrown if error creating and adding the new 
route
- * @deprecated use {@link #addRouteFromTemplate(String, String, String, 
Map)}
+ * @param  routeId the id of the new route to add (optional)
+ * @param  routeTemplateId the id of the route template (mandatory)
+ * @param  parameters  parameters to use for the route template 
when creating the new route
+ * @return the id of the route added (for example when 
an id was auto assigned)
+ * @throws Exception   is thrown if error creating and adding the 
new route
+ * @deprecated use {@link #addRouteFromTemplate(String, 
String, String, Map)}
  */
 @Deprecated
 String addRouteFromTemplate(String routeId, String routeTemplateId, 
Map parameters) throws Exception;
@@ -661,12 +661,12 @@ public interface CamelContext extends 
CamelContextLifecycle, RuntimeConfiguratio
  * Camel end users should favour using {@link 
org.apache.camel.builder.TemplatedRouteBuilder} which is a fluent
  * builder with more functionality than this API.
  *
- * @param  routeId  the id of the new route to add (optional)
- * @param  routeTemplateId  the id of the route template (mandatory)
- * @param  routeTemplateContext the route template context (mandatory)
- * @return  the id of the route added (for example 
when an id was auto assigned)
- * @throws Exceptionis thrown if error creating and adding the 
new route
- * @deprecated use {@link #addRouteFromTemplate(String, String, String, 
RouteTemplateContext)}
+ * @param  routeId  the id of the new route to add 
(optional)
+ * @param  routeTemplateId  the id of the route template 
(mandatory)
+ * @param  routeTemplateContext the route template context (mandatory)
+ * @return  the id of the route added (for example 
when an id was auto assigned)
+ * @throws Exceptionis thrown if error creating and adding 
the new route
+ * @deprecated  use {@link 
#addRouteFromTemplate(String, String, String, RouteTemplateContext)}
  */
 @Deprecated
 String addRouteFromTemplate(String routeId, String routeTemplateId, 
RouteTemplateContext routeTemplateContext)



[camel] branch regen_bot updated (0d22707b4c7 -> 4db828e9fc1)

2022-12-07 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 0d22707b4c7 Sync deps
 add 3bcc047dcb5 Node prefix ID (#8855)
 add 4db828e9fc1 Regen for commit 3bcc047dcb54b064df5de3beacc4af57971a47f6

No new revisions were added by this update.

Summary of changes:
 .../camel/catalog/models/templatedRoute.json   |   1 +
 .../apache/camel/catalog/schemas/camel-spring.xsd  |  12 ++
 .../SpringRouteNodePrefixIdDuplicateTest.java  |  30 +++
 .../processor/SpringRouteNodePrefixIdTest.java |  30 +++
 .../SpringTemplatedRoutePrefixIdTest.java  |  54 ++
 .../SpringRouteNodePrefixIdDuplicateTest.xml   |  40 
 .../processor/SpringRouteNodePrefixIdTest.xml  |  51 +
 .../SpringTemplatedRoutePrefixIdTest.xml   |  53 ++
 .../main/java/org/apache/camel/CamelContext.java   |  43 -
 .../org/apache/camel/RouteTemplateContext.java |   8 +-
 .../camel/impl/engine/SimpleCamelContext.java  |  13 ++
 .../org/apache/camel/impl/DefaultCamelContext.java |  24 ++-
 .../java/org/apache/camel/impl/DefaultModel.java   |  28 ++-
 .../camel/impl/lw/LightweightCamelContext.java |  13 ++
 .../impl/lw/LightweightRuntimeCamelContext.java|  13 ++
 .../org/apache/camel/model/templatedRoute.json |   1 +
 .../camel/builder/TemplatedRouteBuilder.java   |  13 +-
 .../main/java/org/apache/camel/model/Model.java|  30 +++
 .../camel/model/OptionalIdentifiedDefinition.java  |  22 ++-
 .../apache/camel/model/ProcessorDefinition.java|  17 ++
 .../org/apache/camel/model/RouteDefinition.java|  29 +++
 .../apache/camel/model/RouteDefinitionHelper.java  |  15 ++
 .../camel/model/TemplatedRouteDefinition.java  |  20 ++
 .../camel/builder/RouteTemplatePrefixIdTest.java   | 205 +
 .../processor/RouteNodePrefixIdDuplicateTest.java  |  58 ++
 .../camel/processor/RouteNodePrefixIdTest.java |  70 +++
 .../camel/main/MainTemplatedRoutePrefixIdTest.java |  77 
 .../apache/camel/support/LocalBeanRegistry.java|   6 +-
 .../java/org/apache/camel/xml/in/ModelParser.java  |   2 +
 .../modules/ROOT/pages/route-template.adoc |  83 +
 .../deserializers/RouteDefinitionDeserializer.java |   5 +
 .../TemplatedRouteDefinitionDeserializer.java  |   6 +
 .../generated/resources/schema/camel-yaml-dsl.json |   6 +
 .../generated/resources/schema/camelYamlDsl.json   |   6 +
 .../apache/camel/dsl/yaml/RouteTemplateTest.groovy |  40 
 .../org/apache/camel/dsl/yaml/RoutesTest.groovy|  33 
 36 files changed, 1141 insertions(+), 16 deletions(-)
 create mode 100644 
components/camel-spring-xml/src/test/java/org/apache/camel/spring/processor/SpringRouteNodePrefixIdDuplicateTest.java
 create mode 100644 
components/camel-spring-xml/src/test/java/org/apache/camel/spring/processor/SpringRouteNodePrefixIdTest.java
 create mode 100644 
components/camel-spring-xml/src/test/java/org/apache/camel/spring/routebuilder/SpringTemplatedRoutePrefixIdTest.java
 create mode 100644 
components/camel-spring-xml/src/test/resources/org/apache/camel/spring/processor/SpringRouteNodePrefixIdDuplicateTest.xml
 create mode 100644 
components/camel-spring-xml/src/test/resources/org/apache/camel/spring/processor/SpringRouteNodePrefixIdTest.xml
 create mode 100644 
components/camel-spring-xml/src/test/resources/org/apache/camel/spring/routebuilder/SpringTemplatedRoutePrefixIdTest.xml
 create mode 100644 
core/camel-core/src/test/java/org/apache/camel/builder/RouteTemplatePrefixIdTest.java
 create mode 100644 
core/camel-core/src/test/java/org/apache/camel/processor/RouteNodePrefixIdDuplicateTest.java
 create mode 100644 
core/camel-core/src/test/java/org/apache/camel/processor/RouteNodePrefixIdTest.java
 create mode 100644 
core/camel-main/src/test/java/org/apache/camel/main/MainTemplatedRoutePrefixIdTest.java



  1   2   3   >