[GitHub] [camel-k] bouskaJ commented on pull request #2947: [TEST] Global kamelet test - support for openshift

2022-01-27 Thread GitBox


bouskaJ commented on pull request #2947:
URL: https://github.com/apache/camel-k/pull/2947#issuecomment-1022944674


   @astefanutti can you rerun failed workflows? It failed on errors not related 
to 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-k] astefanutti commented on pull request #2947: [TEST] Global kamelet test - support for openshift

2022-01-27 Thread GitBox


astefanutti commented on pull request #2947:
URL: https://github.com/apache/camel-k/pull/2947#issuecomment-1022946784


   @bouskaJ Right, the failures are not related to this PR. I've restarted the 
workflows 🤞🏼.


-- 
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] astefanutti edited a comment on pull request #2947: [TEST] Global kamelet test - support for openshift

2022-01-27 Thread GitBox


astefanutti edited a comment on pull request #2947:
URL: https://github.com/apache/camel-k/pull/2947#issuecomment-1022946784


   @bouskaJ Right, the failures were not related to this PR. I've restarted the 
workflows 🤞🏼.


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

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

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




[camel] 01/05: CAMEL-17398: Include core/dsl in catalog

2022-01-27 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

commit aacbfadc18f7e9d93045efb96f94b75307819dab
Author: Claus Ibsen 
AuthorDate: Wed Jan 26 16:06:05 2022 +0100

CAMEL-17398: Include core/dsl in catalog
---
 .../apache/camel/maven/packaging/PrepareCatalogMojo.java   | 14 +-
 1 file changed, 13 insertions(+), 1 deletion(-)

diff --git 
a/tooling/maven/camel-package-maven-plugin/src/main/java/org/apache/camel/maven/packaging/PrepareCatalogMojo.java
 
b/tooling/maven/camel-package-maven-plugin/src/main/java/org/apache/camel/maven/packaging/PrepareCatalogMojo.java
index 52dbc43..d1b42f2 100644
--- 
a/tooling/maven/camel-package-maven-plugin/src/main/java/org/apache/camel/maven/packaging/PrepareCatalogMojo.java
+++ 
b/tooling/maven/camel-package-maven-plugin/src/main/java/org/apache/camel/maven/packaging/PrepareCatalogMojo.java
@@ -224,7 +224,7 @@ public class PrepareCatalogMojo extends AbstractMojo {
 allPropertiesFiles = new TreeSet<>();
 
 Stream paths
-= Stream.of(list(coreDir.toPath()), 
list(componentsDir.toPath()), list(dslDir.toPath())).flatMap(s -> s);
+= Stream.of(list(coreDir.toPath()), 
list(componentsDir.toPath())).flatMap(s -> s);
 Stream.concat(paths,
 Stream.of(languagesDir.toPath(), springDir.toPath()))
 .filter(dir -> 
!"target".equals(dir.getFileName().toString()))
@@ -241,6 +241,16 @@ public class PrepareCatalogMojo extends AbstractMojo {
 }
 });
 
+// special for dsl-dir as its built after camel-catalog, so we can 
only look inside src/generated
+Stream.of(list(dslDir.toPath())).flatMap(s -> s)
+.filter(dir -> 
Files.isDirectory(dir.resolve("src/generated/resources")))
+.flatMap(PackageHelper::walk).forEach(p -> {
+String f = p.getFileName().toString();
+if (f.endsWith(PackageHelper.JSON_SUFIX)) {
+allJsonFiles.add(p);
+}
+});
+
 for (Path p : allJsonFiles) {
 var m = JsonMapper.generateModel(p);
 if (m != null) {
@@ -583,7 +593,9 @@ public class PrepareCatalogMojo extends AbstractMojo {
 case "camel-xml-jaxb":
 case "camel-xml-jaxp":
 // and some from dsl
+case "dsl-support":
 case "camel-dsl-support":
+case "endpointdsl-support":
 case "camel-endpointdsl-support":
 // and components with middle folders
 case "camel-as2":


[camel] branch main updated (a057534 -> 29f296b)

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

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


from a057534  Upgrade AWS SDK v2 to version 2.17.118
 new aacbfad  CAMEL-17398: Include core/dsl in catalog
 new b0ecd96  correcting documentation and test cases (#6832)
 new 222d2b3  Upgrade consul
 new ecb729d  CAMEL-17398: Include core/dsl in catalog
 new 29f296b  CAMEL-17398: Include core/dsl in catalog

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


Summary of changes:
 .../org/apache/camel/catalog/others.properties | 11 ++
 .../apache/camel/catalog/others}/componentdsl.json |  0
 .../apache/camel/catalog/others}/endpointdsl.json  |  0
 .../apache/camel/catalog/others}/groovy-dsl.json   |  0
 .../camel/catalog/others}/java-joor-dsl.json   |  0
 .../org/apache/camel/catalog/others}/js-dsl.json   |  0
 .../org/apache/camel/catalog/others}/jsh-dsl.json  |  0
 .../apache/camel/catalog/others}/kamelet-main.json |  0
 .../apache/camel/catalog/others}/kotlin-dsl.json   |  0
 .../apache/camel/catalog/others}/xml-io-dsl.json   |  0
 .../apache/camel/catalog/others}/xml-jaxb-dsl.json |  0
 .../org/apache/camel/catalog/others}/yaml-dsl.json |  0
 .../src/main/docs/debezium-mongodb-component.adoc  |  2 +-
 .../debezium/DebeziumMongodbComponentTest.java |  4 +-
 .../src/main/docs/debezium-mysql-component.adoc|  2 +-
 .../debezium/DebeziumMySqlComponentTest.java   |  4 +-
 .../src/main/docs/debezium-postgres-component.adoc |  2 +-
 .../debezium/DebeziumPostgresComponentTest.java|  4 +-
 .../main/docs/debezium-sqlserver-component.adoc|  2 +-
 .../debezium/DebeziumSqlserverComponentTest.java   |  4 +-
 dsl/camel-componentdsl/pom.xml |  1 +
 .../services/org/apache/camel/other.properties |  7 
 .../src/generated/resources/dsl-support.json   | 15 
 .../services/org/apache/camel/other.properties |  7 
 .../generated/resources/endpointdsl-support.json   | 15 
 dsl/camel-endpointdsl/pom.xml  |  1 +
 .../services/org/apache/camel/other.properties |  7 
 .../src/generated/resources/groovy-dsl-common.json | 14 ---
 .../services/org/apache/camel/other.properties |  7 
 .../src/generated/resources/groovy-dsl-test.json   | 14 ---
 dsl/camel-groovy-dsl/camel-groovy-dsl/pom.xml  |  1 +
 dsl/camel-java-joor-dsl/pom.xml|  1 +
 .../services/org/apache/camel/other.properties |  7 
 .../src/generated/resources/jbang-core.json| 15 
 .../services/org/apache/camel/other.properties |  7 
 .../src/generated/resources/jbang-main.json| 15 
 dsl/camel-js-dsl/pom.xml   |  1 +
 dsl/camel-jsh-dsl/pom.xml  |  1 +
 dsl/camel-kamelet-main/pom.xml | 17 +
 dsl/camel-kotlin-dsl/pom.xml   | 13 +++
 dsl/camel-xml-io-dsl/pom.xml   |  1 +
 .../services/org/apache/camel/other.properties |  7 
 .../generated/resources/xml-jaxb-dsl-test-cdi.json | 14 ---
 .../services/org/apache/camel/other.properties |  7 
 .../resources/xml-jaxb-dsl-test-definition.json| 14 ---
 .../services/org/apache/camel/other.properties |  7 
 .../resources/xml-jaxb-dsl-test-jbpm.json  | 14 ---
 .../services/org/apache/camel/other.properties |  7 
 .../resources/xml-jaxb-dsl-test-spring.json| 14 ---
 .../services/org/apache/camel/other.properties |  7 
 .../resources/xml-jaxb-dsl-test-swagger.json   | 14 ---
 dsl/camel-xml-jaxb-dsl/pom.xml |  1 +
 .../services/org/apache/camel/other.properties |  7 
 .../src/generated/resources/yaml-dsl-common.json   | 14 ---
 .../services/org/apache/camel/other.properties |  7 
 .../resources/yaml-dsl-deserializers.json  | 14 ---
 .../services/org/apache/camel/other.properties |  7 
 .../generated/resources/yaml-dsl-maven-plugin.json | 14 ---
 dsl/camel-yaml-dsl/camel-yaml-dsl/pom.xml  |  1 +
 dsl/pom.xml|  1 -
 parent/pom.xml |  2 +-
 .../services/ConsulLocalContainerService.java  |  2 +-
 .../camel/maven/packaging/PrepareCatalogMojo.java  | 43 ++
 63 files changed, 100 insertions(+), 320 deletions(-)
 copy {dsl/camel-componentdsl/src/generated/resources => 
catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/others}/componentdsl.json
 (100%)
 copy {dsl/camel-endpointdsl/src/generated/resources => 
catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/others}/endpointdsl

[camel] 03/05: Upgrade consul

2022-01-27 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

commit 222d2b306f9b54af1ffee511dd3ca18c1b1e8c68
Author: Claus Ibsen 
AuthorDate: Thu Jan 27 06:59:32 2022 +0100

Upgrade consul
---
 parent/pom.xml  | 2 +-
 .../camel/test/infra/consul/services/ConsulLocalContainerService.java   | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/parent/pom.xml b/parent/pom.xml
index 0fbe555..37ebb94 100644
--- a/parent/pom.xml
+++ b/parent/pom.xml
@@ -137,7 +137,7 @@
 1.9
 1.7
 1.0.4
-1.4.2
+1.5.3
 2.7
 4.8
 3.2.0
diff --git 
a/test-infra/camel-test-infra-consul/src/test/java/org/apache/camel/test/infra/consul/services/ConsulLocalContainerService.java
 
b/test-infra/camel-test-infra-consul/src/test/java/org/apache/camel/test/infra/consul/services/ConsulLocalContainerService.java
index 28fd0d9..e696ae3 100644
--- 
a/test-infra/camel-test-infra-consul/src/test/java/org/apache/camel/test/infra/consul/services/ConsulLocalContainerService.java
+++ 
b/test-infra/camel-test-infra-consul/src/test/java/org/apache/camel/test/infra/consul/services/ConsulLocalContainerService.java
@@ -25,7 +25,7 @@ import org.testcontainers.containers.GenericContainer;
 import org.testcontainers.containers.wait.strategy.Wait;
 
 public class ConsulLocalContainerService implements ConsulService, 
ContainerService {
-public static final String CONTAINER_IMAGE = "consul:1.8.3";
+public static final String CONTAINER_IMAGE = "consul:1.11.2";
 public static final String CONTAINER_NAME = "consul";
 
 private static final Logger LOG = 
LoggerFactory.getLogger(ConsulLocalContainerService.class);


[camel] 02/05: correcting documentation and test cases (#6832)

2022-01-27 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

commit b0ecd964e0079b40c67a455fcaa0b1ffbf5d27bc
Author: Chirag 
AuthorDate: Thu Jan 27 00:23:31 2022 -0500

correcting documentation and test cases (#6832)

* correcting documentation and test cases

Updating documentation and test cases to use databaseHistoryFileFilename.

* applying correction to databaseHostname

changed examples to use correct property / parameter databaseHostname

* correcting databaseHostname

Correcting databaseHostname in sample programs.
---
 .../src/main/docs/debezium-mongodb-component.adoc | 2 +-
 .../apache/camel/component/debezium/DebeziumMongodbComponentTest.java | 4 ++--
 .../camel-debezium-mysql/src/main/docs/debezium-mysql-component.adoc  | 2 +-
 .../apache/camel/component/debezium/DebeziumMySqlComponentTest.java   | 4 ++--
 .../src/main/docs/debezium-postgres-component.adoc| 2 +-
 .../camel/component/debezium/DebeziumPostgresComponentTest.java   | 4 ++--
 .../src/main/docs/debezium-sqlserver-component.adoc   | 2 +-
 .../camel/component/debezium/DebeziumSqlserverComponentTest.java  | 4 ++--
 8 files changed, 12 insertions(+), 12 deletions(-)

diff --git 
a/components/camel-debezium/camel-debezium-mongodb/src/main/docs/debezium-mongodb-component.adoc
 
b/components/camel-debezium/camel-debezium-mongodb/src/main/docs/debezium-mongodb-component.adoc
index 4a0c1fc..84e68fc 100644
--- 
a/components/camel-debezium/camel-debezium-mongodb/src/main/docs/debezium-mongodb-component.adoc
+++ 
b/components/camel-debezium/camel-debezium-mongodb/src/main/docs/debezium-mongodb-component.adoc
@@ -90,7 +90,7 @@ Here is a very simple route that you can use in order to 
listen to Debezium even
 
 [source,java]
 
-from("debezium-mongodb:dbz-test-1?offsetStorageFileName=/usr/offset-file-1.dat&mongodbHosts=rs0/localhost:27017&mongodbUser=debezium&mongodbPassword=dbz&mongodbName=dbserver1&databaseHistoryFileName=/usr/history-file-1.dat")
+from("debezium-mongodb:dbz-test-1?offsetStorageFileName=/usr/offset-file-1.dat&mongodbHosts=rs0/localhost:27017&mongodbUser=debezium&mongodbPassword=dbz&mongodbName=dbserver1&databaseHistoryFileFilename=/usr/history-file-1.dat")
 .log("Event received from Debezium : ${body}")
 .log("with this identifier ${headers.CamelDebeziumIdentifier}")
 .log("with these source metadata 
${headers.CamelDebeziumSourceMetadata}")
diff --git 
a/components/camel-debezium/camel-debezium-mongodb/src/test/java/org/apache/camel/component/debezium/DebeziumMongodbComponentTest.java
 
b/components/camel-debezium/camel-debezium-mongodb/src/test/java/org/apache/camel/component/debezium/DebeziumMongodbComponentTest.java
index 3b7cd8d..575d7f6 100644
--- 
a/components/camel-debezium/camel-debezium-mongodb/src/test/java/org/apache/camel/component/debezium/DebeziumMongodbComponentTest.java
+++ 
b/components/camel-debezium/camel-debezium-mongodb/src/test/java/org/apache/camel/component/debezium/DebeziumMongodbComponentTest.java
@@ -41,8 +41,8 @@ public class DebeziumMongodbComponentTest {
 
 final String remaining = "test_name";
 final String uri = 
"debezium?name=test_name&offsetStorageFileName=/test&"
-   + 
"databaseHostName=localhost&databaseServerId=1234&databaseUser=dbz&databasePassword=pwd&"
-   + 
"databaseServerName=test&databaseHistoryFileName=/test";
+   + 
"databaseHostname=localhost&databaseServerId=1234&databaseUser=dbz&databasePassword=pwd&"
+   + 
"databaseServerName=test&databaseHistoryFileFilename=/test";
 
 try (final DebeziumComponent debeziumComponent = new 
DebeziumMongodbComponent(new DefaultCamelContext())) {
 debeziumComponent.start();
diff --git 
a/components/camel-debezium/camel-debezium-mysql/src/main/docs/debezium-mysql-component.adoc
 
b/components/camel-debezium/camel-debezium-mysql/src/main/docs/debezium-mysql-component.adoc
index a02880d..8370094 100644
--- 
a/components/camel-debezium/camel-debezium-mysql/src/main/docs/debezium-mysql-component.adoc
+++ 
b/components/camel-debezium/camel-debezium-mysql/src/main/docs/debezium-mysql-component.adoc
@@ -96,7 +96,7 @@ The message body if is not `null` (in case of tombstones), it 
contains the state
 Here is a very simple route that you can use in order to listen to Debezium 
events from MySQL connector.
 [source,java]
 
-from("debezium-mysql:dbz-test-1?offsetStorageFileName=/usr/offset-file-1.dat&databaseHostName=localhost&databaseUser=debezium&databasePassword=dbz&databaseServerName=my-app-connector&databaseHistoryFileName=/usr/history-file-1.dat")
+from("debezium-mysql:dbz-test-1?offsetStorageFileName=/usr/offset-file-1.dat&databaseHostname=localhost&databaseUser=debezium&dat

[camel] 04/05: CAMEL-17398: Include core/dsl in catalog

2022-01-27 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

commit ecb729dd3018cb278d9fb97cf86e2e4a605e9363
Author: Claus Ibsen 
AuthorDate: Thu Jan 27 09:09:13 2022 +0100

CAMEL-17398: Include core/dsl in catalog
---
 .../org/apache/camel/catalog/others.properties | 11 ++
 dsl/camel-componentdsl/pom.xml |  1 +
 .../services/org/apache/camel/other.properties |  7 
 .../src/generated/resources/dsl-support.json   | 15 
 .../services/org/apache/camel/other.properties |  7 
 .../generated/resources/endpointdsl-support.json   | 15 
 dsl/camel-endpointdsl/pom.xml  |  1 +
 .../services/org/apache/camel/other.properties |  7 
 .../src/generated/resources/groovy-dsl-common.json | 14 ---
 .../services/org/apache/camel/other.properties |  7 
 .../src/generated/resources/groovy-dsl-test.json   | 14 ---
 dsl/camel-groovy-dsl/camel-groovy-dsl/pom.xml  |  1 +
 dsl/camel-java-joor-dsl/pom.xml|  1 +
 .../services/org/apache/camel/other.properties |  7 
 .../src/generated/resources/jbang-core.json| 15 
 .../services/org/apache/camel/other.properties |  7 
 .../src/generated/resources/jbang-main.json| 15 
 dsl/camel-js-dsl/pom.xml   |  1 +
 dsl/camel-jsh-dsl/pom.xml  |  1 +
 dsl/camel-kamelet-main/pom.xml | 17 +
 dsl/camel-kotlin-dsl/pom.xml   | 13 +++
 dsl/camel-xml-io-dsl/pom.xml   |  1 +
 .../services/org/apache/camel/other.properties |  7 
 .../generated/resources/xml-jaxb-dsl-test-cdi.json | 14 ---
 .../services/org/apache/camel/other.properties |  7 
 .../resources/xml-jaxb-dsl-test-definition.json| 14 ---
 .../services/org/apache/camel/other.properties |  7 
 .../resources/xml-jaxb-dsl-test-jbpm.json  | 14 ---
 .../services/org/apache/camel/other.properties |  7 
 .../resources/xml-jaxb-dsl-test-spring.json| 14 ---
 .../services/org/apache/camel/other.properties |  7 
 .../resources/xml-jaxb-dsl-test-swagger.json   | 14 ---
 dsl/camel-xml-jaxb-dsl/pom.xml |  1 +
 .../services/org/apache/camel/other.properties |  7 
 .../src/generated/resources/yaml-dsl-common.json   | 14 ---
 .../services/org/apache/camel/other.properties |  7 
 .../resources/yaml-dsl-deserializers.json  | 14 ---
 .../services/org/apache/camel/other.properties |  7 
 .../generated/resources/yaml-dsl-maven-plugin.json | 14 ---
 dsl/camel-yaml-dsl/camel-yaml-dsl/pom.xml  |  1 +
 dsl/pom.xml|  1 -
 .../camel/maven/packaging/PrepareCatalogMojo.java  | 43 +++---
 42 files changed, 80 insertions(+), 312 deletions(-)

diff --git 
a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/others.properties
 
b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/others.properties
index 589ff33..0fb5b58 100644
--- 
a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/others.properties
+++ 
b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/others.properties
@@ -7,18 +7,26 @@ cdi-main
 cloud
 cloudevents
 cluster
+componentdsl
 console
 csimple-joor
 cxf-transport
 debug
 elytron
+endpointdsl
 etcd3
+groovy-dsl
 headersmap
 health
 hystrix
 jasypt
+java-joor-dsl
 jfr
+js-dsl
+jsh-dsl
 jta
+kamelet-main
+kotlin-dsl
 leveldb
 leveldb-legacy
 lra
@@ -54,4 +62,7 @@ testcontainers-spring-junit5
 threadpoolfactory-vertx
 tracing
 undertow-spring-security
+xml-io-dsl
+xml-jaxb-dsl
+yaml-dsl
 zipkin
diff --git a/dsl/camel-componentdsl/pom.xml b/dsl/camel-componentdsl/pom.xml
index 05acb01..8ee0868 100644
--- a/dsl/camel-componentdsl/pom.xml
+++ b/dsl/camel-componentdsl/pom.xml
@@ -120,6 +120,7 @@
 generate-component-dsl
 
 generate-component-dsl
+generate-others-list
 
 generate-sources
 
diff --git 
a/dsl/camel-dsl-support/src/generated/resources/META-INF/services/org/apache/camel/other.properties
 
b/dsl/camel-dsl-support/src/generated/resources/META-INF/services/org/apache/camel/other.properties
deleted file mode 100644
index 8cb65b1..000
--- 
a/dsl/camel-dsl-support/src/generated/resources/META-INF/services/org/apache/camel/other.properties
+++ /dev/null
@@ -1,7 +0,0 @@
-# Generated by camel build tools - do NOT edit this file!
-name=dsl-support
-groupId=org.apache.camel
-artifactId=camel-dsl-support
-version=3.15.0-SNAPSHOT
-projectName=Camel :: DSL :: Support
-projectDescription=Camel DSL Support
diff -

[camel] 05/05: CAMEL-17398: Include core/dsl in catalog

2022-01-27 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

commit 29f296b444e6c02022c9a0e5349803175e45793f
Author: Claus Ibsen 
AuthorDate: Thu Jan 27 09:09:28 2022 +0100

CAMEL-17398: Include core/dsl in catalog
---
 .../org/apache/camel/catalog/others/componentdsl.json | 15 +++
 .../org/apache/camel/catalog/others/endpointdsl.json  | 15 +++
 .../org/apache/camel/catalog/others/groovy-dsl.json   | 15 +++
 .../org/apache/camel/catalog/others/java-joor-dsl.json| 15 +++
 .../resources/org/apache/camel/catalog/others/js-dsl.json | 15 +++
 .../org/apache/camel/catalog/others/jsh-dsl.json  | 15 +++
 .../org/apache/camel/catalog/others/kamelet-main.json | 15 +++
 .../org/apache/camel/catalog/others/kotlin-dsl.json   | 15 +++
 .../org/apache/camel/catalog/others/xml-io-dsl.json   | 15 +++
 .../org/apache/camel/catalog/others/xml-jaxb-dsl.json | 15 +++
 .../org/apache/camel/catalog/others/yaml-dsl.json | 15 +++
 11 files changed, 165 insertions(+)

diff --git 
a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/others/componentdsl.json
 
b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/others/componentdsl.json
new file mode 100644
index 000..8ed0f4a
--- /dev/null
+++ 
b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/others/componentdsl.json
@@ -0,0 +1,15 @@
+{
+  "other": {
+"kind": "other",
+"name": "componentdsl",
+"title": "Java Component DSL",
+"description": "The Camel Component DSL",
+"deprecated": false,
+"firstVersion": "3.1.0",
+"label": "dsl",
+"supportLevel": "Stable",
+"groupId": "org.apache.camel",
+"artifactId": "camel-componentdsl",
+"version": "3.15.0-SNAPSHOT"
+  }
+}
diff --git 
a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/others/endpointdsl.json
 
b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/others/endpointdsl.json
new file mode 100644
index 000..543d714
--- /dev/null
+++ 
b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/others/endpointdsl.json
@@ -0,0 +1,15 @@
+{
+  "other": {
+"kind": "other",
+"name": "endpointdsl",
+"title": "Java Endpoint DSL",
+"description": "The Camel Endpoint DSL",
+"deprecated": false,
+"firstVersion": "3.0.0",
+"label": "dsl",
+"supportLevel": "Stable",
+"groupId": "org.apache.camel",
+"artifactId": "camel-endpointdsl",
+"version": "3.15.0-SNAPSHOT"
+  }
+}
diff --git 
a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/others/groovy-dsl.json
 
b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/others/groovy-dsl.json
new file mode 100644
index 000..89e0f2d
--- /dev/null
+++ 
b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/others/groovy-dsl.json
@@ -0,0 +1,15 @@
+{
+  "other": {
+"kind": "other",
+"name": "groovy-dsl",
+"title": "Groovy Dsl",
+"description": "Camel DSL with Groovy",
+"deprecated": false,
+"firstVersion": "3.9.0",
+"label": "dsl",
+"supportLevel": "Experimental",
+"groupId": "org.apache.camel",
+"artifactId": "camel-groovy-dsl",
+"version": "3.15.0-SNAPSHOT"
+  }
+}
diff --git 
a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/others/java-joor-dsl.json
 
b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/others/java-joor-dsl.json
new file mode 100644
index 000..ac29886
--- /dev/null
+++ 
b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/others/java-joor-dsl.json
@@ -0,0 +1,15 @@
+{
+  "other": {
+"kind": "other",
+"name": "java-joor-dsl",
+"title": "Java DSL (runtime compiled)",
+"description": "Camel Java DSL with jOOR",
+"deprecated": false,
+"firstVersion": "3.9.0",
+"label": "dsl",
+"supportLevel": "Stable",
+"groupId": "org.apache.camel",
+"artifactId": "camel-java-joor-dsl",
+"version": "3.15.0-SNAPSHOT"
+  }
+}
diff --git 
a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/others/js-dsl.json
 
b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/others/js-dsl.json
new file mode 100644
index 000..dc4e963
--- /dev/null
+++ 
b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/others/js-dsl.json
@@ -0,0 +1,15 @@
+{
+  "other": {
+"kind": "other",
+"name": "js-dsl",
+"title": "JavaScript DSL",
+"description": "Camel DSL with JavaScript",
+"deprecated": false,
+"firstVersion": "3.9.0",
+"label": "dsl",
+"supportLevel": "Experimental",
+"groupId": "org.apache.camel",
+"artifactId": "camel-j

[GitHub] [camel] davsclaus merged pull request #6810: CAMEL-17500: Simplified Dynamic Router control channel messages.

2022-01-27 Thread GitBox


davsclaus merged pull request #6810:
URL: https://github.com/apache/camel/pull/6810


   


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

2022-01-27 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 0ecd055  Regen
0ecd055 is described below

commit 0ecd055e4f6c1b16ea05a9f5f91fbc8d9ab6163a
Author: Claus Ibsen 
AuthorDate: Thu Jan 27 09:19:20 2022 +0100

Regen
---
 .../camel/catalog/components/dynamic-router.json   |  25 +-
 .../dsl/DynamicRouterComponentBuilderFactory.java  |  23 --
 .../src/generated/resources/metadata.json  |   3 +-
 .../builder/endpoint/StaticEndpointBuilders.java   |  14 +
 .../dsl/DynamicRouterEndpointBuilderFactory.java   | 393 ++---
 .../EndpointConsumerDeserializersResolver.java |   1 -
 6 files changed, 131 insertions(+), 328 deletions(-)

diff --git 
a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components/dynamic-router.json
 
b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components/dynamic-router.json
index 8b02990..9cf0104 100644
--- 
a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components/dynamic-router.json
+++ 
b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components/dynamic-router.json
@@ -15,27 +15,30 @@
 "scheme": "dynamic-router",
 "extendsScheme": "",
 "syntax": "dynamic-router:channel",
+"alternativeSyntax": 
"dynamic-router:channel\/controlAction\/subscribeChannel",
 "async": false,
 "api": false,
 "consumerOnly": false,
-"producerOnly": false,
+"producerOnly": true,
 "lenientProperties": false
   },
   "componentProperties": {
-"bridgeErrorHandler": { "kind": "property", "displayName": "Bridge Error 
Handler", "group": "consumer", "label": "consumer", "required": false, "type": 
"boolean", "javaType": "boolean", "deprecated": false, "autowired": false, 
"secret": false, "defaultValue": false, "description": "Allows for bridging the 
consumer to the Camel routing Error Handler, which mean any exceptions occurred 
while the consumer is trying to pickup incoming messages, or the likes, will 
now be processed as a me [...]
 "lazyStartProducer": { "kind": "property", "displayName": "Lazy Start 
Producer", "group": "producer", "label": "producer", "required": false, "type": 
"boolean", "javaType": "boolean", "deprecated": false, "autowired": false, 
"secret": false, "defaultValue": false, "description": "Whether the producer 
should be started lazy (on the first message). By starting lazy you can use 
this to allow CamelContext and routes to startup in situations where a producer 
may otherwise fail during star [...]
 "autowiredEnabled": { "kind": "property", "displayName": "Autowired 
Enabled", "group": "advanced", "label": "advanced", "required": false, "type": 
"boolean", "javaType": "boolean", "deprecated": false, "autowired": false, 
"secret": false, "defaultValue": true, "description": "Whether autowiring is 
enabled. This is used for automatic autowiring options (the option must be 
marked as autowired) by looking up in the registry to find if there is a single 
instance of matching type, which t [...]
   },
   "properties": {
-"channel": { "kind": "path", "displayName": "Channel", "group": "common", 
"label": "common", "required": true, "type": "string", "javaType": 
"java.lang.String", "deprecated": false, "deprecationNote": "", "autowired": 
false, "secret": false, "description": "Channel of the Dynamic Router" },
-"bridgeErrorHandler": { "kind": "parameter", "displayName": "Bridge Error 
Handler", "group": "consumer", "label": "consumer", "required": false, "type": 
"boolean", "javaType": "boolean", "deprecated": false, "autowired": false, 
"secret": false, "defaultValue": false, "description": "Allows for bridging the 
consumer to the Camel routing Error Handler, which mean any exceptions occurred 
while the consumer is trying to pickup incoming messages, or the likes, will 
now be processed as a m [...]
-"exceptionHandler": { "kind": "parameter", "displayName": "Exception 
Handler", "group": "consumer (advanced)", "label": "consumer,advanced", 
"required": false, "type": "object", "javaType": 
"org.apache.camel.spi.ExceptionHandler", "optionalPrefix": "consumer.", 
"deprecated": false, "autowired": false, "secret": false, "description": "To 
let the consumer use a custom ExceptionHandler. Notice if the option 
bridgeErrorHandler is enabled then this option is not in use. By default the 
con [...]
-"exchangePattern": { "kind": "parameter", "displayName": "Exchange 
Pattern", "group": "consumer (advanced)", "label": "consumer,advanced", 
"required": false, "type": "object", "javaType": 
"org.apache.camel.ExchangePattern", "enum": [ "InOnly", "InOut", 
"InOptionalOut" ], "deprecated": false, "autowired": false, "secret": false, 
"description": "Sets the exchange pattern when the consumer creates an 
exchange.

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

2022-01-27 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 9513e2f  Regen
9513e2f is described below

commit 9513e2f0e02fa424b6c009a2c4ccc4b4df57de95
Author: Claus Ibsen 
AuthorDate: Thu Jan 27 09:25:06 2022 +0100

Regen
---
 .../catalog/components/dynamic-router.json | 25 --
 .../src/main/docs/dynamic-router.json  |  7 --
 .../DynamicRouterComponentConfiguration.java   | 17 ---
 .../camel-elasticsearch-rest-starter/pom.xml   |  5 -
 4 files changed, 14 insertions(+), 40 deletions(-)

diff --git 
a/catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/components/dynamic-router.json
 
b/catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/components/dynamic-router.json
index c5bb6ad..6c8e4f0 100644
--- 
a/catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/components/dynamic-router.json
+++ 
b/catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/components/dynamic-router.json
@@ -15,27 +15,30 @@
 "scheme": "dynamic-router",
 "extendsScheme": "",
 "syntax": "dynamic-router:channel",
+"alternativeSyntax": 
"dynamic-router:channel\/controlAction\/subscribeChannel",
 "async": false,
 "api": false,
 "consumerOnly": false,
-"producerOnly": false,
+"producerOnly": true,
 "lenientProperties": false
   },
   "componentProperties": {
-"bridgeErrorHandler": { "kind": "property", "displayName": "Bridge Error 
Handler", "group": "consumer", "label": "consumer", "required": false, "type": 
"boolean", "javaType": "boolean", "deprecated": false, "autowired": false, 
"secret": false, "defaultValue": false, "description": "Allows for bridging the 
consumer to the Camel routing Error Handler, which mean any exceptions occurred 
while the consumer is trying to pickup incoming messages, or the likes, will 
now be processed as a me [...]
 "lazyStartProducer": { "kind": "property", "displayName": "Lazy Start 
Producer", "group": "producer", "label": "producer", "required": false, "type": 
"boolean", "javaType": "boolean", "deprecated": false, "autowired": false, 
"secret": false, "defaultValue": false, "description": "Whether the producer 
should be started lazy (on the first message). By starting lazy you can use 
this to allow CamelContext and routes to startup in situations where a producer 
may otherwise fail during star [...]
 "autowiredEnabled": { "kind": "property", "displayName": "Autowired 
Enabled", "group": "advanced", "label": "advanced", "required": false, "type": 
"boolean", "javaType": "boolean", "deprecated": false, "autowired": false, 
"secret": false, "defaultValue": true, "description": "Whether autowiring is 
enabled. This is used for automatic autowiring options (the option must be 
marked as autowired) by looking up in the registry to find if there is a single 
instance of matching type, which t [...]
   },
   "properties": {
-"channel": { "kind": "path", "displayName": "Channel", "group": "common", 
"label": "common", "required": true, "type": "string", "javaType": 
"java.lang.String", "deprecated": false, "deprecationNote": "", "autowired": 
false, "secret": false, "description": "Channel of the Dynamic Router" },
-"bridgeErrorHandler": { "kind": "parameter", "displayName": "Bridge Error 
Handler", "group": "consumer", "label": "consumer", "required": false, "type": 
"boolean", "javaType": "boolean", "deprecated": false, "autowired": false, 
"secret": false, "defaultValue": false, "description": "Allows for bridging the 
consumer to the Camel routing Error Handler, which mean any exceptions occurred 
while the consumer is trying to pickup incoming messages, or the likes, will 
now be processed as a m [...]
-"exceptionHandler": { "kind": "parameter", "displayName": "Exception 
Handler", "group": "consumer (advanced)", "label": "consumer,advanced", 
"required": false, "type": "object", "javaType": 
"org.apache.camel.spi.ExceptionHandler", "optionalPrefix": "consumer.", 
"deprecated": false, "autowired": false, "secret": false, "description": "To 
let the consumer use a custom ExceptionHandler. Notice if the option 
bridgeErrorHandler is enabled then this option is not in use. By default the 
con [...]
-"exchangePattern": { "kind": "parameter", "displayName": "Exchange 
Pattern", "group": "consumer (advanced)", "label": "consumer,advanced", 
"required": false, "type": "object", "javaType": 
"org.apache.camel.ExchangePattern", "enum": [ "InOnly", "InOut", 
"InOptionalOut" ], "deprecated": false, "autowired": false, "secret": false, 
"description": "Sets the exchange pattern when the consumer creates an

[camel-quarkus] branch main updated: Update min-maven-version in antora.yml

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

jamesnetherton 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 ec5ea46  Update min-maven-version in antora.yml
ec5ea46 is described below

commit ec5ea466594c719db1bce40e4b3d26765c0134a2
Author: James Netherton 
AuthorDate: Thu Jan 27 08:25:33 2022 +

Update min-maven-version in antora.yml
---
 docs/antora.yml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/docs/antora.yml b/docs/antora.yml
index 5c382fb..e4761be 100644
--- a/docs/antora.yml
+++ b/docs/antora.yml
@@ -27,7 +27,7 @@ asciidoc:
 prerelease: true
 requires: "'util=camel-website-util,quarkus=xref:js/quarkus.js'"
 
-min-maven-version: 3.6.2 # replace ${min-maven-version}
+min-maven-version: 3.8.1 # replace ${min-maven-version}
 target-maven-version: 3.8.4 # replace ${target-maven-version}
 camel-version: 3.14.0 # replace ${camel.version}
 camel-docs-version: 3.14.x # replace ${camel.docs.components.version}


[camel] branch main updated: Polished

2022-01-27 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 92d37d4  Polished
92d37d4 is described below

commit 92d37d4167e04f14dcbf2619024861f2f8d03f9b
Author: Claus Ibsen 
AuthorDate: Thu Jan 27 09:27:18 2022 +0100

Polished
---
 .../camel-dynamic-router/src/test/resources/log4j2.properties| 9 +++--
 1 file changed, 7 insertions(+), 2 deletions(-)

diff --git 
a/components/camel-dynamic-router/src/test/resources/log4j2.properties 
b/components/camel-dynamic-router/src/test/resources/log4j2.properties
index d9f0508..19bccd1 100644
--- a/components/camel-dynamic-router/src/test/resources/log4j2.properties
+++ b/components/camel-dynamic-router/src/test/resources/log4j2.properties
@@ -15,9 +15,14 @@
 ## limitations under the License.
 ## ---
 
+appender.file.type = File
+appender.file.name = file
+appender.file.fileName = target/camel-dynamic-router-test.log
+appender.file.layout.type = PatternLayout
+appender.file.layout.pattern = %d [%-15.15t] %-5p %-30.30c{1} - %m%n
 appender.out.type = Console
 appender.out.name = out
 appender.out.layout.type = PatternLayout
-appender.out.layout.pattern = [%30.30t] %-30.30c{1} %-5p %m%n
+appender.out.layout.pattern = %d [%-15.15t] %-5p %-30.30c{1} - %m%n
 rootLogger.level = INFO
-rootLogger.appenderRef.out.ref = out
+rootLogger.appenderRef.file.ref = file


[camel-karaf] branch main updated: Regen

2022-01-27 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-karaf.git


The following commit(s) were added to refs/heads/main by this push:
 new 623efcb  Regen
623efcb is described below

commit 623efcbf9ee9e0e534ec4ed4c7d65ec56fe73de3
Author: Claus Ibsen 
AuthorDate: Thu Jan 27 09:27:36 2022 +0100

Regen
---
 .../org/apache/camel/catalog/karaf/others.properties  |  1 +
 .../org/apache/camel/catalog/karaf/others/yaml-dsl.json   | 15 +++
 2 files changed, 16 insertions(+)

diff --git 
a/catalog/camel-catalog-provider-karaf/src/main/resources/org/apache/camel/catalog/karaf/others.properties
 
b/catalog/camel-catalog-provider-karaf/src/main/resources/org/apache/camel/catalog/karaf/others.properties
index c79b991..83dee71 100644
--- 
a/catalog/camel-catalog-provider-karaf/src/main/resources/org/apache/camel/catalog/karaf/others.properties
+++ 
b/catalog/camel-catalog-provider-karaf/src/main/resources/org/apache/camel/catalog/karaf/others.properties
@@ -16,4 +16,5 @@ shiro
 swagger-java
 test-spring
 tracing
+yaml-dsl
 zipkin
diff --git 
a/catalog/camel-catalog-provider-karaf/src/main/resources/org/apache/camel/catalog/karaf/others/yaml-dsl.json
 
b/catalog/camel-catalog-provider-karaf/src/main/resources/org/apache/camel/catalog/karaf/others/yaml-dsl.json
new file mode 100644
index 000..efbd056
--- /dev/null
+++ 
b/catalog/camel-catalog-provider-karaf/src/main/resources/org/apache/camel/catalog/karaf/others/yaml-dsl.json
@@ -0,0 +1,15 @@
+{
+  "other": {
+"kind": "other",
+"name": "yaml-dsl",
+"title": "YAML DSL",
+"description": "Camel DSL with YAML",
+"deprecated": false,
+"firstVersion": "3.9.0",
+"label": "dsl",
+"supportLevel": "Stable",
+"groupId": "org.apache.camel",
+"artifactId": "camel-yaml-dsl",
+"version": "3.15.0-SNAPSHOT"
+  }
+}


[GitHub] [camel-k] squakez commented on pull request #2899: WIP See #2898 Generate CRD API docs as AsciiDoc

2022-01-27 Thread GitBox


squakez commented on pull request #2899:
URL: https://github.com/apache/camel-k/pull/2899#issuecomment-102297


   Looks good for me either. Thanks for taking care of it!


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

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

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




[GitHub] [camel-quarkus] jamesnetherton merged pull request #3495: CVE-2020-8908 guava: local information disclosure via temporary direc…

2022-01-27 Thread GitBox


jamesnetherton merged pull request #3495:
URL: https://github.com/apache/camel-quarkus/pull/3495


   


-- 
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 closed issue #3494: CVE-2020-8908 guava: local information disclosure via temporary directory created with unsafe permissions

2022-01-27 Thread GitBox


jamesnetherton closed issue #3494:
URL: https://github.com/apache/camel-quarkus/issues/3494


   


-- 
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 (ec5ea46 -> b98a643)

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

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


from ec5ea46  Update min-maven-version in antora.yml
 add b98a643  CVE-2020-8908 guava: local information disclosure via 
temporary directory created with unsafe permissions #3494

No new revisions were added by this update.

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


[camel-k-runtime] branch main updated: chore(deps): remove kamelet-reify

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

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


The following commit(s) were added to refs/heads/main by this push:
 new 31e148f  chore(deps): remove kamelet-reify
31e148f is described below

commit 31e148ff8f369e7e191c73848c367dbebdb37aa7
Author: Pasquale Congiusti 
AuthorDate: Wed Jan 26 16:51:49 2022 +0100

chore(deps): remove kamelet-reify

Closes #766
---
 camel-k-kamelet-reify/deployment/pom.xml   | 59 ---
 .../deployment/KameletReifyFeature.java| 29 
 camel-k-kamelet-reify/pom.xml  | 36 -
 camel-k-kamelet-reify/runtime/pom.xml  | 86 --
 .../apache/camel/component/knative/knative.json|  2 +-
 pom.xml|  2 -
 6 files changed, 1 insertion(+), 213 deletions(-)

diff --git a/camel-k-kamelet-reify/deployment/pom.xml 
b/camel-k-kamelet-reify/deployment/pom.xml
deleted file mode 100644
index c815034..000
--- a/camel-k-kamelet-reify/deployment/pom.xml
+++ /dev/null
@@ -1,59 +0,0 @@
-
-
-http://maven.apache.org/POM/4.0.0"; 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"; 
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 
http://maven.apache.org/xsd/maven-4.0.0.xsd";>
-
-org.apache.camel.k
-camel-k-kamelet-reify-parent
-1.11.1-SNAPSHOT
-
-4.0.0
-
-camel-k-kamelet-reify-deployment
-
-
-
-org.apache.camel.k
-camel-k-core-deployment
-
-
-org.apache.camel.k
-camel-k-kamelet-reify
-
-
-
-
-
-
-org.apache.maven.plugins
-maven-compiler-plugin
-
-
-
-io.quarkus
-
quarkus-extension-processor
-${quarkus-version}
-
-
-
-
-
-
-
-
diff --git 
a/camel-k-kamelet-reify/deployment/src/main/java/org/apache/camel/k/quarkus/kameletreify/deployment/KameletReifyFeature.java
 
b/camel-k-kamelet-reify/deployment/src/main/java/org/apache/camel/k/quarkus/kameletreify/deployment/KameletReifyFeature.java
deleted file mode 100644
index 034f555..000
--- 
a/camel-k-kamelet-reify/deployment/src/main/java/org/apache/camel/k/quarkus/kameletreify/deployment/KameletReifyFeature.java
+++ /dev/null
@@ -1,29 +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.k.quarkus.kameletreify.deployment;
-
-import io.quarkus.deployment.annotations.BuildStep;
-import io.quarkus.deployment.builditem.FeatureBuildItem;
-
-public class KameletReifyFeature {
-private static final String FEATURE = "camel-k-kamelet-reify";
-
-@BuildStep
-FeatureBuildItem feature() {
-return new FeatureBuildItem(FEATURE);
-}
-}
diff --git a/camel-k-kamelet-reify/pom.xml b/camel-k-kamelet-reify/pom.xml
deleted file mode 100644
index b695bbc..000
--- a/camel-k-kamelet-reify/pom.xml
+++ /dev/null
@@ -1,36 +0,0 @@
-
-
-http://maven.apache.org/POM/4.0.0"; 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"; 
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 
http://maven.apache.org/xsd/maven-4.0.0.xsd";>
-
-org.apache.camel.k
-camel-k-runtime-project
-1.11.1-SNAPSHOT
-
-4.0.0
-pom
-
-camel-k-kamelet-reify-parent
-
-
-runtime
-deployment
-
-
-
diff --git a/camel-k-kamelet-reify/runtime/pom.xml 
b/camel-k-kamelet-reify/runtime/pom.xml
deleted file mode 100644
index a1ad4b2..000
--- a/camel-k-kamelet-reify/runtime/pom.xml
+++ /dev/null
@@ -1,86 +0,0 @@
-
-
-http://maven.apache.org/POM/4.0.0"; 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"; 
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 
http://maven.apache.org/xsd/maven-4.0.0.xsd";>
-
-org.apache.camel.k
-camel-k-kamelet-reify-parent
-1.11.1-SNAPSHOT
-
-4.0.0
-
-camel-k-kamelet-rei

[GitHub] [camel-k-runtime] squakez merged pull request #784: chore(deps): remove kamelet-reify

2022-01-27 Thread GitBox


squakez merged pull request #784:
URL: https://github.com/apache/camel-k-runtime/pull/784


   


-- 
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-runtime] squakez closed issue #766: Remove camel-k-kamelet-reify

2022-01-27 Thread GitBox


squakez closed issue #766:
URL: https://github.com/apache/camel-k-runtime/issues/766


   


-- 
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] squakez merged pull request #2949: chore(deps): remove kamelet-reify

2022-01-27 Thread GitBox


squakez merged pull request #2949:
URL: https://github.com/apache/camel-k/pull/2949


   


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

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

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




[camel-k] branch main updated: chore(deps): remove kamelet-reify

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

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


The following commit(s) were added to refs/heads/main by this push:
 new d0350dd  chore(deps): remove kamelet-reify
d0350dd is described below

commit d0350dd0e6e67c61b9c539ab4233db659adbedad
Author: Pasquale Congiusti 
AuthorDate: Wed Jan 26 16:48:35 2022 +0100

chore(deps): remove kamelet-reify

Ref #apache/camel-k-runtime/issues/766
---
 build/maven/pom-runtime.xml | 10 --
 1 file changed, 10 deletions(-)

diff --git a/build/maven/pom-runtime.xml b/build/maven/pom-runtime.xml
index effb780..a900a89 100644
--- a/build/maven/pom-runtime.xml
+++ b/build/maven/pom-runtime.xml
@@ -125,16 +125,6 @@
 
 
 org.apache.camel.k
-camel-k-kamelet-reify
-${runtime.version}
-
-
-org.apache.camel.k
-camel-k-kamelet-reify-deployment
-${runtime.version}
-
-
-org.apache.camel.k
 camel-k-core-support
 ${runtime.version}
 


[GitHub] [camel-website] squakez opened a new issue #768: Tune image output for social links

2022-01-27 Thread GitBox


squakez opened a new issue #768:
URL: https://github.com/apache/camel-website/issues/768


   Right now the result would be like this:
   
![image](https://user-images.githubusercontent.com/23169723/151192749-37632e70-eba6-4b97-82a1-c40d07334833.png)
   We must work on improving the image (which is required to be 1080p to render 
automatically).
   
   _Originally posted by @squakez in 
https://github.com/apache/camel-website/issues/767#issuecomment-1022310649_


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

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

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




[camel-website] branch main updated: fix: social link dynamically retrieved

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

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


The following commit(s) were added to refs/heads/main by this push:
 new 673308c  fix: social link dynamically retrieved
673308c is described below

commit 673308cd19415dd624aeb188d30bf1119cd25bcb
Author: Pasquale Congiusti 
AuthorDate: Wed Jan 26 12:52:18 2022 +0100

fix: social link dynamically retrieved

Closes #679
---
 layouts/partials/header.html | 23 ++-
 1 file changed, 18 insertions(+), 5 deletions(-)

diff --git a/layouts/partials/header.html b/layouts/partials/header.html
index 3ffa2f4..e7890a1 100644
--- a/layouts/partials/header.html
+++ b/layouts/partials/header.html
@@ -17,12 +17,25 @@
 
 
 
-
-
-https://camel.apache.org";>
-
+
+ 
+ 
+ 
+{{ if .Description}}
+
+{{ else }}
+{{ if .Params.preview}}
+
+{{ end }}
+{{ end }}
 
-
+{{ $featured := (.Resources.ByType "image").GetMatch "*featured*" }}
+{{ with $featured }}
+
+{{ else }}
+
+{{ end }}
+
 
 {{ block "title" . }}{{ .Title }} - {{ .Site.Title }}{{ end 
}}
 


[GitHub] [camel-website] squakez closed issue #679: Some problem with social media overview

2022-01-27 Thread GitBox


squakez closed issue #679:
URL: https://github.com/apache/camel-website/issues/679


   


-- 
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-website] squakez merged pull request #767: fix: social link dynamically retrieved

2022-01-27 Thread GitBox


squakez merged pull request #767:
URL: https://github.com/apache/camel-website/pull/767


   


-- 
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-website] squakez commented on issue #768: Tune image output for social links

2022-01-27 Thread GitBox


squakez commented on issue #768:
URL: https://github.com/apache/camel-website/issues/768#issuecomment-1022988465


   Have a look at 
https://developers.facebook.com/docs/sharing/best-practices#images for possible 
solution


-- 
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] opened a new pull request #6833: Generated sources regen

2022-01-27 Thread GitBox


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


   Regen bot :robot: found some uncommited 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 regen_bot updated (a057534 -> fa759bb)

2022-01-27 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 a057534  Upgrade AWS SDK v2 to version 2.17.118
 add aacbfad  CAMEL-17398: Include core/dsl in catalog
 add b0ecd96  correcting documentation and test cases (#6832)
 add 222d2b3  Upgrade consul
 add ecb729d  CAMEL-17398: Include core/dsl in catalog
 add 29f296b  CAMEL-17398: Include core/dsl in catalog
 add 55addd0  CAMEL-17500: Simplified Dynamic Router control channel 
messages. (#6810)
 add fa759bb  Regen for commit 55addd015d17278e9133a9cc3ec628f4299c7b34

No new revisions were added by this update.

Summary of changes:
 .../camel/catalog/components/dynamic-router.json   |  25 +-
 .../org/apache/camel/catalog/others.properties |   9 +
 .../apache/camel/catalog/others}/componentdsl.json |   0
 .../apache/camel/catalog/others}/endpointdsl.json  |   0
 .../camel/catalog/others}/java-joor-dsl.json   |   0
 .../org/apache/camel/catalog/others}/js-dsl.json   |   0
 .../org/apache/camel/catalog/others}/jsh-dsl.json  |   0
 .../apache/camel/catalog/others}/kamelet-main.json |   0
 .../apache/camel/catalog/others}/kotlin-dsl.json   |   0
 .../apache/camel/catalog/others}/xml-io-dsl.json   |   0
 .../apache/camel/catalog/others}/xml-jaxb-dsl.json |   0
 .../src/main/docs/debezium-mongodb-component.adoc  |   2 +-
 .../debezium/DebeziumMongodbComponentTest.java |   4 +-
 .../src/main/docs/debezium-mysql-component.adoc|   2 +-
 .../debezium/DebeziumMySqlComponentTest.java   |   4 +-
 .../src/main/docs/debezium-postgres-component.adoc |   2 +-
 .../debezium/DebeziumPostgresComponentTest.java|   4 +-
 .../main/docs/debezium-sqlserver-component.adoc|   2 +-
 .../debezium/DebeziumSqlserverComponentTest.java   |   4 +-
 .../DynamicRouterComponentConfigurer.java  |   6 -
 .../DynamicRouterEndpointConfigurer.java   |  74 ++--
 .../DynamicRouterEndpointUriFactory.java   |  23 +-
 .../component/dynamicrouter/dynamic-router.json|  25 +-
 .../src/main/docs/dynamic-router-component.adoc|  81 +++-
 .../dynamicrouter/DynamicRouterComponent.java  | 109 +++---
 .../dynamicrouter/DynamicRouterConfiguration.java  | 406 +
 .../dynamicrouter/DynamicRouterConstants.java  |  61 +++-
 .../dynamicrouter/DynamicRouterConsumer.java   | 165 -
 ...DynamicRouterConsumerNotAvailableException.java |  32 --
 .../DynamicRouterControlChannelProcessor.java  | 112 +-
 .../{message => }/DynamicRouterControlMessage.java |   2 +-
 .../DynamicRouterControlProducer.java  | 114 ++
 .../dynamicrouter/DynamicRouterEndpoint.java   | 342 ++---
 .../{processor => }/DynamicRouterProcessor.java|  83 +++--
 .../dynamicrouter/DynamicRouterProducer.java   | 286 ++-
 .../PrioritizedFilterProcessor.java|   5 +-
 .../org/apache/camel/component/dynamic-router  |   2 +-
 .../dynamicrouter/DynamicRouterComponentTest.java  |  48 +--
 .../DynamicRouterConfigurationTest.java|  48 +++
 .../dynamicrouter/DynamicRouterConsumerTest.java   |  79 
 .../DynamicRouterControlChannelProcessorTest.java  | 229 
 .../DynamicRouterControlMessageTest.java   |  93 +
 .../DynamicRouterControlProducerTest.java  |  47 +++
 .../dynamicrouter/DynamicRouterEndpointTest.java   |  45 ++-
 .../DynamicRouterProcessorTest.java|  42 ++-
 .../dynamicrouter/DynamicRouterProducerTest.java   |  55 +--
 .../PrioritizedFilterProcessorTest.java|  56 +++
 .../DynamicRouterBasicSynchronousIT.java   |   6 +-
 ...a => DynamicRouterMultipleRecipientModeIT.java} |  39 +-
 .../DynamicRouterSingleRouteTwoParticipantsIT.java |   4 +-
 .../integration/DynamicRouterTwoRoutesIT.java  |   4 +-
 .../integration/DynamicRouterUriControlIT.java | 203 +++
 ...tSupport.java => DynamicRouterTestSupport.java} | 129 +--
 ...namicRouterMultipleRecipientModeIT-context.xml} |   2 +-
 ...RouterSingleRouteTwoParticipantsIT-context.xml} |   0
 dsl/camel-componentdsl/pom.xml |   1 +
 .../dsl/DynamicRouterComponentBuilderFactory.java  |  23 --
 .../src/generated/resources/metadata.json  |   3 +-
 .../services/org/apache/camel/other.properties |   7 -
 .../src/generated/resources/dsl-support.json   |  15 -
 .../services/org/apache/camel/other.properties |   7 -
 .../generated/resources/endpointdsl-support.json   |  15 -
 dsl/camel-endpointdsl/pom.xml  |   1 +
 .../builder/endpoint/StaticEndpointBuilders.java   |  14 +
 .../dsl/DynamicRouterEndpointBuilderFactory.java   | 393 +---
 .../services/org/apache/camel/other.properties |   7 -
 .../src/generated/resources/groovy-dsl-common.json |  14 -
 .../services/org/apache/camel/other.properties |   7 -
 .../src/generated

[camel] branch regen_bot updated (fa759bb -> 649ec04)

2022-01-27 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.


 discard fa759bb  Regen for commit 55addd015d17278e9133a9cc3ec628f4299c7b34
omit 55addd0  CAMEL-17500: Simplified Dynamic Router control channel 
messages. (#6810)
 add 649ec04  Regen for commit 29f296b444e6c02022c9a0e5349803175e45793f

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   (fa759bb)
\
 N -- N -- N   refs/heads/regen_bot (649ec04)

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/catalog/components/dynamic-router.json   |  25 +-
 .../DynamicRouterComponentConfigurer.java  |   6 +
 .../DynamicRouterEndpointConfigurer.java   |  74 ++--
 .../DynamicRouterEndpointUriFactory.java   |  23 +-
 .../component/dynamicrouter/dynamic-router.json|  25 +-
 .../src/main/docs/dynamic-router-component.adoc|  81 +---
 .../dynamicrouter/DynamicRouterComponent.java  | 109 +++---
 .../dynamicrouter/DynamicRouterConfiguration.java  | 406 -
 .../dynamicrouter/DynamicRouterConstants.java  |  61 +---
 .../dynamicrouter/DynamicRouterConsumer.java   | 165 +
 ...DynamicRouterConsumerNotAvailableException.java |  32 ++
 .../DynamicRouterControlChannelProcessor.java  | 112 +-
 .../DynamicRouterControlProducer.java  | 114 --
 .../dynamicrouter/DynamicRouterEndpoint.java   | 342 +++--
 .../dynamicrouter/DynamicRouterProducer.java   | 286 +--
 .../{ => message}/DynamicRouterControlMessage.java |   2 +-
 .../{ => processor}/DynamicRouterProcessor.java|  83 ++---
 .../PrioritizedFilterProcessor.java|   5 +-
 .../org/apache/camel/component/dynamic-router  |   2 +-
 .../dynamicrouter/DynamicRouterComponentTest.java  |  48 ++-
 .../DynamicRouterConfigurationTest.java|  48 ---
 .../dynamicrouter/DynamicRouterConsumerTest.java   |  79 
 .../DynamicRouterControlChannelProcessorTest.java  | 229 
 .../DynamicRouterControlMessageTest.java   |  93 -
 .../DynamicRouterControlProducerTest.java  |  47 ---
 .../dynamicrouter/DynamicRouterEndpointTest.java   |  45 +--
 .../dynamicrouter/DynamicRouterProducerTest.java   |  55 ++-
 .../PrioritizedFilterProcessorTest.java|  56 ---
 .../DynamicRouterBasicSynchronousIT.java   |   6 +-
 .../DynamicRouterMultipleRecipientModeIT.java  | 134 ---
 .../DynamicRouterSingleRouteTwoParticipantsIT.java |   4 +-
 .../integration/DynamicRouterTwoRoutesIT.java  |   4 +-
 .../integration/DynamicRouterUriControlIT.java | 203 ---
 .../DynamicRouterProcessorTest.java|  42 +--
 ...ort.java => CamelDynamicRouterTestSupport.java} | 129 ++-
 ...ynamicRouterMultipleRecipientModeIT-context.xml |  34 --
 ... => DynamicRouterTwoParticipantsIT-context.xml} |   0
 .../dsl/DynamicRouterComponentBuilderFactory.java  |  23 ++
 .../src/generated/resources/metadata.json  |   3 +-
 .../builder/endpoint/StaticEndpointBuilders.java   |  14 -
 .../dsl/DynamicRouterEndpointBuilderFactory.java   | 393 +++-
 .../EndpointConsumerDeserializersResolver.java |   1 +
 42 files changed, 1334 insertions(+), 2309 deletions(-)
 delete mode 100644 
components/camel-dynamic-router/src/main/java/org/apache/camel/component/dynamicrouter/DynamicRouterConfiguration.java
 create mode 100644 
components/camel-dynamic-router/src/main/java/org/apache/camel/component/dynamicrouter/DynamicRouterConsumer.java
 create mode 100644 
components/camel-dynamic-router/src/main/java/org/apache/camel/component/dynamicrouter/DynamicRouterConsumerNotAvailableException.java
 delete mode 100644 
components/camel-dynamic-router/src/main/java/org/apache/camel/component/dynamicrouter/DynamicRouterControlProducer.java
 rename 
components/camel-dynamic-router/src/main/java/org/apache/camel/component/dynamicrouter/{
 => message}/DynamicRouterControlMessage.java (99%)
 rename 
components/camel-dynamic-router/src/main/java/org/apache/camel/component/dynamicrouter/{
 => processor}/DynamicRouterProcessor.java (77%)
 rename 
components/camel-dynamic-router/src/main/java/org/apache/camel/component/dynamicrouter/{
 => processor}/PrioritizedFilterProcessor.java (96%)
 delete mode 100644 
components/camel-dynamic-

[camel] branch regen_bot updated (649ec04 -> 65d3cfc)

2022-01-27 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.


 discard 649ec04  Regen for commit 29f296b444e6c02022c9a0e5349803175e45793f
 add 55addd0  CAMEL-17500: Simplified Dynamic Router control channel 
messages. (#6810)
 add 0ecd055  Regen
 add 65d3cfc  Regen for commit 0ecd055e4f6c1b16ea05a9f5f91fbc8d9ab6163a

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   (649ec04)
\
 N -- N -- N   refs/heads/regen_bot (65d3cfc)

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/catalog/components/dynamic-router.json   |  25 +-
 .../DynamicRouterComponentConfigurer.java  |   6 -
 .../DynamicRouterEndpointConfigurer.java   |  74 ++--
 .../DynamicRouterEndpointUriFactory.java   |  23 +-
 .../component/dynamicrouter/dynamic-router.json|  25 +-
 .../src/main/docs/dynamic-router-component.adoc|  81 +++-
 .../dynamicrouter/DynamicRouterComponent.java  | 109 +++---
 .../dynamicrouter/DynamicRouterConfiguration.java  | 406 +
 .../dynamicrouter/DynamicRouterConstants.java  |  61 +++-
 .../dynamicrouter/DynamicRouterConsumer.java   | 165 -
 ...DynamicRouterConsumerNotAvailableException.java |  32 --
 .../DynamicRouterControlChannelProcessor.java  | 112 +-
 .../{message => }/DynamicRouterControlMessage.java |   2 +-
 .../DynamicRouterControlProducer.java  | 114 ++
 .../dynamicrouter/DynamicRouterEndpoint.java   | 342 ++---
 .../{processor => }/DynamicRouterProcessor.java|  83 +++--
 .../dynamicrouter/DynamicRouterProducer.java   | 286 ++-
 .../PrioritizedFilterProcessor.java|   5 +-
 .../org/apache/camel/component/dynamic-router  |   2 +-
 .../dynamicrouter/DynamicRouterComponentTest.java  |  48 +--
 .../DynamicRouterConfigurationTest.java|  48 +++
 .../dynamicrouter/DynamicRouterConsumerTest.java   |  79 
 .../DynamicRouterControlChannelProcessorTest.java  | 229 
 .../DynamicRouterControlMessageTest.java   |  93 +
 .../DynamicRouterControlProducerTest.java  |  47 +++
 .../dynamicrouter/DynamicRouterEndpointTest.java   |  45 ++-
 .../DynamicRouterProcessorTest.java|  42 ++-
 .../dynamicrouter/DynamicRouterProducerTest.java   |  55 +--
 .../PrioritizedFilterProcessorTest.java|  56 +++
 .../DynamicRouterBasicSynchronousIT.java   |   6 +-
 ...a => DynamicRouterMultipleRecipientModeIT.java} |  39 +-
 .../DynamicRouterSingleRouteTwoParticipantsIT.java |   4 +-
 .../integration/DynamicRouterTwoRoutesIT.java  |   4 +-
 .../integration/DynamicRouterUriControlIT.java | 203 +++
 ...tSupport.java => DynamicRouterTestSupport.java} | 129 +--
 ...namicRouterMultipleRecipientModeIT-context.xml} |   2 +-
 ...RouterSingleRouteTwoParticipantsIT-context.xml} |   0
 .../dsl/DynamicRouterComponentBuilderFactory.java  |  23 --
 .../src/generated/resources/metadata.json  |   3 +-
 .../builder/endpoint/StaticEndpointBuilders.java   |  14 +
 .../dsl/DynamicRouterEndpointBuilderFactory.java   | 393 +---
 .../EndpointConsumerDeserializersResolver.java |   1 -
 42 files changed, 2151 insertions(+), 1365 deletions(-)
 create mode 100644 
components/camel-dynamic-router/src/main/java/org/apache/camel/component/dynamicrouter/DynamicRouterConfiguration.java
 delete mode 100644 
components/camel-dynamic-router/src/main/java/org/apache/camel/component/dynamicrouter/DynamicRouterConsumer.java
 delete mode 100644 
components/camel-dynamic-router/src/main/java/org/apache/camel/component/dynamicrouter/DynamicRouterConsumerNotAvailableException.java
 rename 
components/camel-dynamic-router/src/main/java/org/apache/camel/component/dynamicrouter/{message
 => }/DynamicRouterControlMessage.java (99%)
 create mode 100644 
components/camel-dynamic-router/src/main/java/org/apache/camel/component/dynamicrouter/DynamicRouterControlProducer.java
 rename 
components/camel-dynamic-router/src/main/java/org/apache/camel/component/dynamicrouter/{processor
 => }/DynamicRouterProcessor.java (77%)
 rename 
components/camel-dynamic-router/src/main/java/org/apache/camel/component/dynamicrouter/{processor
 => }/PrioritizedFilterProcessor.java (96%)
 create mode 100644 
compon

[camel] branch regen_bot updated (65d3cfc -> 9a1604d)

2022-01-27 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.


 discard 65d3cfc  Regen for commit 0ecd055e4f6c1b16ea05a9f5f91fbc8d9ab6163a
 add 92d37d4  Polished
 add 9a1604d  Regen for commit 92d37d4167e04f14dcbf2619024861f2f8d03f9b

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   (65d3cfc)
\
 N -- N -- N   refs/heads/regen_bot (9a1604d)

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-dynamic-router/src/test/resources/log4j2.properties| 9 +++--
 1 file changed, 7 insertions(+), 2 deletions(-)


[GitHub] [camel-kafka-connector] samudurand opened a new issue #1335: Use SNS Aws2 connector with AWS Default Credential Provider

2022-01-27 Thread GitBox


samudurand opened a new issue #1335:
URL: https://github.com/apache/camel-kafka-connector/issues/1335


   From the docs as well as the code of the Camel SNS AWS V2 provider I only 
see an Access Key and Access Secret settings. Is there any way to make the 
connector use the default AWS Credentials provider, so that it works on a 
standard EC2 instance ? 
   
   When I do not provide the accessKey/accessSecret, then the connector fails 
with the error:
   ```
   AmazonSNSClient or accessKey and secretKey must be specified
   ```
   
   Does that mean it is possible to specify the client and make it use the 
default AWS Credentials provider? If yes, then how can I do so?


-- 
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-kafka-connector] oscerd commented on issue #1335: Use SNS Aws2 connector with AWS Default Credential Provider

2022-01-27 Thread GitBox


oscerd commented on issue #1335:
URL: 
https://github.com/apache/camel-kafka-connector/issues/1335#issuecomment-1023013572


   It's not available yet. You need to wait for a new release for default 
credentials provider.


-- 
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-kafka-connector] samudurand commented on issue #1335: Use SNS Aws2 connector with AWS Default Credential Provider

2022-01-27 Thread GitBox


samudurand commented on issue #1335:
URL: 
https://github.com/apache/camel-kafka-connector/issues/1335#issuecomment-1023015445


   Thanks for the quick answer. By the way where is the code for the AWSv2 SNS 
connector ? In this repo I could only see the code for the `aws` not `aws2` SNS 
connector. But I found a package with version 0.9 for it on the camel website.


-- 
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-kafka-connector] samudurand closed issue #1335: Use SNS Aws2 connector with AWS Default Credential Provider

2022-01-27 Thread GitBox


samudurand closed issue #1335:
URL: https://github.com/apache/camel-kafka-connector/issues/1335


   


-- 
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] hokutor opened a new pull request #6834: Camel 17321: Add HuaweiCloud FaceRecognitionService(FRS) Component

2022-01-27 Thread GitBox


hokutor opened a new pull request #6834:
URL: https://github.com/apache/camel/pull/6834


   Camel 17321: Add HuaweiCloud FaceRecognitionService(FRS) Component. See this 
JIRA issue: 
https://issues.apache.org/jira/browse/CAMEL-17321?jql=project%20%3D%20CAMEL%20AND%20resolution%20%3D%20Unresolved%20AND%20text%20~%20%22huaweicloud%22%20ORDER%20BY%20priority%20DESC%2C%20updated%20DESC


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

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

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




svn commit: r52298 - /release/camel/apache-camel/3.14.1/

2022-01-27 Thread gzurowski
Author: gzurowski
Date: Thu Jan 27 09:40:40 2022
New Revision: 52298

Log:
Apache Camel 3.14.1 release distro placeholder.

Added:
release/camel/apache-camel/3.14.1/



svn commit: r52299 - in /release/camel/apache-camel/3.14.1: apache-camel-3.14.1-src.zip apache-camel-3.14.1-src.zip.asc apache-camel-3.14.1-src.zip.sha512 apache-camel-3.14.1.pom apache-camel-3.14.1.p

2022-01-27 Thread gzurowski
Author: gzurowski
Date: Thu Jan 27 09:42:07 2022
New Revision: 52299

Log:
Apache Camel 3.14.1 released artifacts.

Added:
release/camel/apache-camel/3.14.1/apache-camel-3.14.1-src.zip   (with props)
release/camel/apache-camel/3.14.1/apache-camel-3.14.1-src.zip.asc
release/camel/apache-camel/3.14.1/apache-camel-3.14.1-src.zip.sha512
release/camel/apache-camel/3.14.1/apache-camel-3.14.1.pom
release/camel/apache-camel/3.14.1/apache-camel-3.14.1.pom.asc
release/camel/apache-camel/3.14.1/apache-camel-3.14.1.pom.sha512

Added: release/camel/apache-camel/3.14.1/apache-camel-3.14.1-src.zip
==
Binary file - no diff available.

Propchange: release/camel/apache-camel/3.14.1/apache-camel-3.14.1-src.zip
--
svn:mime-type = application/octet-stream

Added: release/camel/apache-camel/3.14.1/apache-camel-3.14.1-src.zip.asc
==
--- release/camel/apache-camel/3.14.1/apache-camel-3.14.1-src.zip.asc (added)
+++ release/camel/apache-camel/3.14.1/apache-camel-3.14.1-src.zip.asc Thu Jan 
27 09:42:07 2022
@@ -0,0 +1,16 @@
+-BEGIN PGP SIGNATURE-
+
+iQIzBAABCgAdFiEEYOzvJGEf6DJxT4aqnVvv+llCwEkFAmHtYakACgkQnVvv+llC
+wEniug//eRzooPnaeeFZ4NhM/qIDF+HUDIVXZ65ykEO3iRoEnmh1eWxTuCg5apce
+6PwfFvN4wXSPqDyIIgRdajyICJOR6jbfjDzrZsm+6mjw1SdPy3AvOlybwvmsaHA/
+IOpnYr+r72hYfzpXFVWmqRQopVfqtV/eIEFn6YeeH4agHPoHg9LBfAp/SG8wMhi+
+a+yCKEQ9fOkj/OrwwpZYypp8T31L8DVSDvwbOojO8pI8qrtFKSQ4f5cHidUvlson
+kvEg2/a1Pad2IAr0c0TbXmBXGwTItA0pgJ45AJ2KQAm+GhCFTojU/8azhS5O8KMr
+YoA1SkFQYnUMRrZpxePvqZcs8l7jYHOx+R216isJbNs+2DN25/445OAjwzOQy+2P
+CUXA5gc1HXHo01FrNj/EIpQAjukU/LzENUYjFqlB8/FGrBXaIfQH7uliKYq41Z6g
+6vTHMCnPDezRxzMOg4fxIgrZHETWwXPZqb4WT001wcl9LT6d7y+0emFOl3LuLHWV
+T15FLdEjxa4dZpSGxm9LCNHKVvhgSLIos5t+rvyru89x9KjxP2NeGbyepKVQG8g6
++uiprBzNAsFWRP0bpvS1OUI4ZNsqpoTzjiuO72g7YENu2WJ506y6E5yS1vA9CoQl
+1BV7sN2+tdZ38AohOjM+t0yczQdokDbArs8iMliUEiJL8R7bGZs=
+=HwGP
+-END PGP SIGNATURE-

Added: release/camel/apache-camel/3.14.1/apache-camel-3.14.1-src.zip.sha512
==
--- release/camel/apache-camel/3.14.1/apache-camel-3.14.1-src.zip.sha512 (added)
+++ release/camel/apache-camel/3.14.1/apache-camel-3.14.1-src.zip.sha512 Thu 
Jan 27 09:42:07 2022
@@ -0,0 +1 @@
+c6fefe40f2799bb1a4f821a0fa95b2e8d8c6c7e938e1a200f8b37418a68c211ec4a60031cb54bd218c09090c918c9478db832a97bdfec12664ee3ed5d12aa500
  apache-camel-3.14.1-src.zip

Added: release/camel/apache-camel/3.14.1/apache-camel-3.14.1.pom
==
--- release/camel/apache-camel/3.14.1/apache-camel-3.14.1.pom (added)
+++ release/camel/apache-camel/3.14.1/apache-camel-3.14.1.pom Thu Jan 27 
09:42:07 2022
@@ -0,0 +1,288 @@
+
+
+http://maven.apache.org/POM/4.0.0 
https://maven.apache.org/xsd/maven-4.0.0.xsd"; 
xmlns="http://maven.apache.org/POM/4.0.0";
+xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";>
+  4.0.0
+  
+org.apache.camel
+camel-parent
+3.14.1
+../parent
+  
+  org.apache.camel
+  apache-camel
+  3.14.1
+  pom
+  Camel :: Assembly
+  Apache Camel Assembly
+  
+
+  Apache License, Version 2.0
+  https://www.apache.org/licenses/LICENSE-2.0.txt
+  repo
+
+  
+  
+gnu
+true
+true
+false
+  
+  
+
+  org.apache.camel
+  camel-api
+  3.14.1
+  compile
+
+
+  org.apache.camel
+  camel-util
+  3.14.1
+  compile
+
+
+  org.apache.camel
+  camel-management-api
+  3.14.1
+  compile
+
+
+  org.apache.camel
+  camel-management
+  3.14.1
+  compile
+
+
+  org.apache.camel
+  camel-base
+  3.14.1
+  compile
+
+
+  org.apache.camel
+  camel-base-engine
+  3.14.1
+  compile
+
+
+  org.apache.camel
+  camel-support
+  3.14.1
+  compile
+
+
+  org.apache.camel
+  camel-core
+  3.14.1
+  compile
+
+
+  org.apache.camel
+  camel-core-engine
+  3.14.1
+  compile
+
+
+  org.apache.camel
+  camel-core-model
+  3.14.1
+  compile
+
+
+  org.apache.camel
+  camel-core-processor
+  3.14.1
+  compile
+
+
+  org.apache.camel
+  camel-core-reifier
+  3.14.1
+  compile
+
+
+  org.apache.camel
+  camel-core-languages
+  3.14.1
+  compile
+
+
+  org.apache.camel
+  camel-core-xml
+  3.14.1
+  compile
+
+
+  org.apache.camel
+  camel-core-catalog
+  3.14.1
+  compile
+
+
+  org.apache.camel
+  camel-cloud
+  3.14.1
+  compile
+
+
+  org.apache.camel
+  camel-cluster
+  3.14.1
+  compile
+
+
+ 

svn commit: r52300 - /release/camel/apache-camel/3.14.0/

2022-01-27 Thread gzurowski
Author: gzurowski
Date: Thu Jan 27 09:42:17 2022
New Revision: 52300

Log:
Removed the old release

Removed:
release/camel/apache-camel/3.14.0/



[camel-website] branch asf-site updated (b371c92 -> 05e4116)

2022-01-27 Thread git-site-role
This is an automated email from the ASF dual-hosted git repository.

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


 discard b371c92  Website updated to 789019b1b43654f0748c9eb3ce73c6496d4c07e8
 discard 2dc5ad3  Website updated to 325e929157412b27394080f4d4dba3d821476ddf
 new fe8abbf  Website updated to 325e929157412b27394080f4d4dba3d821476ddf
 new 05e4116  Website updated to 673308cd19415dd624aeb188d30bf1119cd25bcb

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   (b371c92)
\
 N -- N -- N   refs/heads/asf-site (05e4116)

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

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

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


Summary of changes:
 .htaccess  |   26 +-
 acknowledgments/index.html |2 +-
 blog/2019/05/RELEASE-2.24.0/index.html |2 +-
 blog/2019/09/ApacheConNA-2019/index.html   |2 +-
 blog/2019/09/RELEASE-2.23.4/index.html |2 +-
 blog/2019/09/RELEASE-2.24.2/index.html |2 +-
 blog/2019/09/RELEASE-3.0.0-RC1/index.html  |2 +-
 blog/2019/10/Camel3-2monthsaway/index.html |2 +-
 blog/2019/10/RELEASE-3.0.0-RC2/index.html  |2 +-
 blog/2019/10/RELEASE-3.0.0-RC3/index.html  |2 +-
 blog/2019/11/ASF-Report-2019/index.html|2 +-
 blog/2019/11/RELEASE-3.0.0/index.html  |2 +-
 blog/2019/12/2019-Numbers/index.html   |2 +-
 .../2019/12/Camel-Kafka-connector-intro/index.html |2 +-
 blog/2019/12/Camel3-Whatsnew/index.html|2 +-
 .../12/LanguageSupportTooling-0.0.20/index.html|2 +-
 blog/2019/12/Podcast47/index.html  |2 +-
 blog/2019/12/RELEASE-2.24.3/index.html |2 +-
 blog/2020/01/CustomWebApiComponent/index.html  |2 +-
 blog/2020/01/FOSDEM-2020/index.html|2 +-
 blog/2020/01/RELEASE-2.25.0/index.html |2 +-
 blog/2020/01/RELEASE-3.0.1/index.html  |2 +-
 blog/2020/01/capi-gateway/index.html   |2 +-
 blog/2020/02/ApacheConNA-2020-CFP/index.html   |2 +-
 blog/2020/02/GSoC-2020-announced/index.html|2 +-
 blog/2020/02/RELEASE-3.1.0/index.html  |2 +-
 blog/2020/03/Camel3-AWS2-Whatsnew/index.html   |2 +-
 blog/2020/03/LTS-Release-Schedule/index.html   |2 +-
 blog/2020/03/Outreachy-May2020-Update/index.html   |2 +-
 blog/2020/03/Outreachy-May2020/index.html  |2 +-
 blog/2020/04/100Camels/index.html  |2 +-
 .../Camel-Kafka-connector-release-0.1.0/index.html |2 +-
 .../04/Camel-Quarkus-release-1.0.0-M7/index.html   |2 +-
 blog/2020/04/Camel32-Whatsnew/index.html   |2 +-
 blog/2020/04/RELEASE-2.25.1/index.html |2 +-
 blog/2020/04/RELEASE-3.2.0/index.html  |2 +-
 blog/2020/05/Camel33-Whatsnew/index.html   |2 +-
 blog/2020/05/CdcWithCamelAndDebezium/index.html|2 +-
 blog/2020/05/RELEASE-3.3.0/index.html  |2 +-
 blog/2020/06/RELEASE-3.4.0/index.html  |2 +-
 blog/2020/06/camel-k-release-1.0.0/index.html  |2 +-
 .../06/camel-quarkus-release-1.0.0-CR2/index.html  |2 +-
 blog/2020/06/camel34-whatsnew/index.html   |2 +-
 blog/2020/06/whatsnew-camel-3-webinar/index.html   |2 +-
 blog/2020/07/ApacheCon-2020-at-home/index.html |2 +-
 blog/2020/07/RELEASE-2.25.2/index.html |2 +-
 blog/2020/07/RELEASE-3.4.1/index.html  |2 +-
 blog/2020/07/RELEASE-3.4.2/index.html  |2 +-
 .../07/camel-quarkus-release-1.0.0-CR3/index.html  |2 +-
 .../index.html |2 +-
 .../Camel-kafka-connector-0.4.0-RELEASE/index.html |2 +-
 blog/2020/08/RELEASE-3.4.3/index.html  |2 +-
 .../2020/08/camel-quarkus-release-1.0.0/index.html |2 +-
 .../2020/08/camel-quarkus-release-1.0.1/index.html |2 +-
 blog/2020/09/ApacheCon-at-Home-starts/index.html   |2 +-
 .../Camel-kafka-connector-050-Whatsnew/index.html  |2 +-
 blog/2020/09/Camel35-Whatsnew/index.html   |2 +-
 blog/2020/09/RE

[GitHub] [camel-kafka-connector] oscerd commented on issue #1335: Use SNS Aws2 connector with AWS Default Credential Provider

2022-01-27 Thread GitBox


oscerd commented on issue #1335:
URL: 
https://github.com/apache/camel-kafka-connector/issues/1335#issuecomment-1023034913


   It's named aws but it's the AWS v2 SDK based, so you're looking at the right 
place.


-- 
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-kafka-connector] samudurand commented on issue #1335: Use SNS Aws2 connector with AWS Default Credential Provider

2022-01-27 Thread GitBox


samudurand commented on issue #1335:
URL: 
https://github.com/apache/camel-kafka-connector/issues/1335#issuecomment-1023036356


   Thanks ! When you say we have to wait for the DefaultCredentialProvider to 
be available, are we talking about 1-3 weeks, or more like several months 
because it's not yet on your priority list ? I am just asking to evaluate our 
own options :) 


-- 
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 camel-3.14.x updated (6497cda -> 70e6acb)

2022-01-27 Thread gzurowski
This is an automated email from the ASF dual-hosted git repository.

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


from 6497cda  correcting documentation and test cases (#6832)
 add 551357d  [maven-release-plugin] prepare release camel-3.14.1
 add 34e19f6  [maven-release-plugin] prepare for next development iteration
 new 70e6acb  Merge branch 'release/3.14.1' into camel-3.14.x

The 1 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:
 apache-camel/pom.xml   |  2 +-
 archetypes/camel-archetype-api-component/pom.xml   |  2 +-
 archetypes/camel-archetype-cdi/pom.xml |  2 +-
 archetypes/camel-archetype-component/pom.xml   |  2 +-
 archetypes/camel-archetype-dataformat/pom.xml  |  2 +-
 archetypes/camel-archetype-endpointdsl/pom.xml |  2 +-
 archetypes/camel-archetype-java/pom.xml|  2 +-
 archetypes/camel-archetype-main/pom.xml|  2 +-
 archetypes/camel-archetype-spring/pom.xml  |  2 +-
 archetypes/pom.xml |  2 +-
 bom/camel-bom/pom.xml  |  2 +-
 bom/pom.xml|  2 +-
 buildingtools/pom.xml  |  2 +-
 camel-dependencies/pom.xml | 23 +++---
 catalog/camel-catalog-lucene/pom.xml   |  2 +-
 catalog/camel-catalog-maven/pom.xml|  2 +-
 catalog/camel-catalog/pom.xml  |  2 +-
 catalog/camel-csimple-maven-plugin/pom.xml |  2 +-
 catalog/camel-report-maven-plugin/pom.xml  |  2 +-
 catalog/camel-route-parser/pom.xml |  2 +-
 catalog/dummy-component/pom.xml|  2 +-
 catalog/pom.xml|  2 +-
 components/camel-activemq/pom.xml  |  2 +-
 components/camel-ahc-ws/pom.xml|  2 +-
 components/camel-ahc/pom.xml   |  2 +-
 components/camel-amqp/pom.xml  |  2 +-
 components/camel-any23/pom.xml |  2 +-
 components/camel-arangodb/pom.xml  |  2 +-
 components/camel-as2/camel-as2-api/pom.xml |  2 +-
 components/camel-as2/camel-as2-component/pom.xml   |  2 +-
 components/camel-as2/pom.xml   |  2 +-
 components/camel-asn1/pom.xml  |  2 +-
 components/camel-asterisk/pom.xml  |  2 +-
 components/camel-atlasmap/pom.xml  |  2 +-
 components/camel-atmos/pom.xml |  2 +-
 components/camel-atmosphere-websocket/pom.xml  |  2 +-
 components/camel-atom/pom.xml  |  2 +-
 components/camel-atomix/pom.xml|  2 +-
 components/camel-attachments/pom.xml   |  2 +-
 .../camel-avro-rpc-component/pom.xml   |  2 +-
 .../camel-avro-rpc/camel-avro-rpc-jetty/pom.xml|  2 +-
 .../camel-avro-rpc/camel-avro-rpc-spi/pom.xml  |  2 +-
 components/camel-avro-rpc/pom.xml  |  2 +-
 components/camel-avro/pom.xml  |  2 +-
 .../camel-aws/camel-aws-secrets-manager/pom.xml|  2 +-
 components/camel-aws/camel-aws-xray/pom.xml|  2 +-
 components/camel-aws/camel-aws2-athena/pom.xml |  2 +-
 components/camel-aws/camel-aws2-cw/pom.xml |  2 +-
 components/camel-aws/camel-aws2-ddb/pom.xml|  2 +-
 components/camel-aws/camel-aws2-ec2/pom.xml|  2 +-
 components/camel-aws/camel-aws2-ecs/pom.xml|  2 +-
 components/camel-aws/camel-aws2-eks/pom.xml|  2 +-
 .../camel-aws/camel-aws2-eventbridge/pom.xml   |  2 +-
 components/camel-aws/camel-aws2-iam/pom.xml|  2 +-
 components/camel-aws/camel-aws2-kinesis/pom.xml|  2 +-
 components/camel-aws/camel-aws2-kms/pom.xml|  2 +-
 components/camel-aws/camel-aws2-lambda/pom.xml |  2 +-
 components/camel-aws/camel-aws2-mq/pom.xml |  2 +-
 components/camel-aws/camel-aws2-msk/pom.xml|  2 +-
 components/camel-aws/camel-aws2-s3/pom.xml |  2 +-
 components/camel-aws/camel-aws2-ses/pom.xml|  2 +-
 components/camel-aws/camel-aws2-sns/pom.xml|  2 +-
 components/camel-aws/camel-aws2-sqs/pom.xml|  2 +-
 components/camel-aws/camel-aws2-sts/pom.xml|  2 +-
 components/camel-aws/camel-aws2-translate/pom.xml  |  2 +-
 components/camel-aws/pom.xml   |  2 +-
 .../camel-azure/camel-azure-cosmosdb/pom.xml   |  2 +-
 .../camel-azure/camel-azure-eventhubs/pom.xml  |  2 +-
 .../camel-azure/camel-azure-servicebus/pom.xml |  2 +-
 .../camel-azure/camel-azure-storage-blob/pom.xml   |  2 +-
 .../camel-azure-storage-datalake/pom.xml   |  2 +-
 ..

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

2022-01-27 Thread GitBox


davsclaus merged pull request #6833:
URL: https://github.com/apache/camel/pull/6833


   


-- 
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-kafka-connector] oscerd commented on issue #1335: Use SNS Aws2 connector with AWS Default Credential Provider

2022-01-27 Thread GitBox


oscerd commented on issue #1335:
URL: 
https://github.com/apache/camel-kafka-connector/issues/1335#issuecomment-1023037676


   We don't have an ETA for this, but I think it could be in 3-4 weeks.


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

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

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




[camel] 01/01: Merge branch 'release/3.14.1' into camel-3.14.x

2022-01-27 Thread gzurowski
This is an automated email from the ASF dual-hosted git repository.

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

commit 70e6acb9c6b656be26c2a314f4d23ba15b2b7f03
Merge: 6497cda 34e19f6
Author: Gregor Zurowski 
AuthorDate: Thu Jan 27 09:58:05 2022 +

Merge branch 'release/3.14.1' into camel-3.14.x

 apache-camel/pom.xml   |  2 +-
 archetypes/camel-archetype-api-component/pom.xml   |  2 +-
 archetypes/camel-archetype-cdi/pom.xml |  2 +-
 archetypes/camel-archetype-component/pom.xml   |  2 +-
 archetypes/camel-archetype-dataformat/pom.xml  |  2 +-
 archetypes/camel-archetype-endpointdsl/pom.xml |  2 +-
 archetypes/camel-archetype-java/pom.xml|  2 +-
 archetypes/camel-archetype-main/pom.xml|  2 +-
 archetypes/camel-archetype-spring/pom.xml  |  2 +-
 archetypes/pom.xml |  2 +-
 bom/camel-bom/pom.xml  |  2 +-
 bom/pom.xml|  2 +-
 buildingtools/pom.xml  |  2 +-
 camel-dependencies/pom.xml | 23 +++---
 catalog/camel-catalog-lucene/pom.xml   |  2 +-
 catalog/camel-catalog-maven/pom.xml|  2 +-
 catalog/camel-catalog/pom.xml  |  2 +-
 catalog/camel-csimple-maven-plugin/pom.xml |  2 +-
 catalog/camel-report-maven-plugin/pom.xml  |  2 +-
 catalog/camel-route-parser/pom.xml |  2 +-
 catalog/dummy-component/pom.xml|  2 +-
 catalog/pom.xml|  2 +-
 components/camel-activemq/pom.xml  |  2 +-
 components/camel-ahc-ws/pom.xml|  2 +-
 components/camel-ahc/pom.xml   |  2 +-
 components/camel-amqp/pom.xml  |  2 +-
 components/camel-any23/pom.xml |  2 +-
 components/camel-arangodb/pom.xml  |  2 +-
 components/camel-as2/camel-as2-api/pom.xml |  2 +-
 components/camel-as2/camel-as2-component/pom.xml   |  2 +-
 components/camel-as2/pom.xml   |  2 +-
 components/camel-asn1/pom.xml  |  2 +-
 components/camel-asterisk/pom.xml  |  2 +-
 components/camel-atlasmap/pom.xml  |  2 +-
 components/camel-atmos/pom.xml |  2 +-
 components/camel-atmosphere-websocket/pom.xml  |  2 +-
 components/camel-atom/pom.xml  |  2 +-
 components/camel-atomix/pom.xml|  2 +-
 components/camel-attachments/pom.xml   |  2 +-
 .../camel-avro-rpc-component/pom.xml   |  2 +-
 .../camel-avro-rpc/camel-avro-rpc-jetty/pom.xml|  2 +-
 .../camel-avro-rpc/camel-avro-rpc-spi/pom.xml  |  2 +-
 components/camel-avro-rpc/pom.xml  |  2 +-
 components/camel-avro/pom.xml  |  2 +-
 .../camel-aws/camel-aws-secrets-manager/pom.xml|  2 +-
 components/camel-aws/camel-aws-xray/pom.xml|  2 +-
 components/camel-aws/camel-aws2-athena/pom.xml |  2 +-
 components/camel-aws/camel-aws2-cw/pom.xml |  2 +-
 components/camel-aws/camel-aws2-ddb/pom.xml|  2 +-
 components/camel-aws/camel-aws2-ec2/pom.xml|  2 +-
 components/camel-aws/camel-aws2-ecs/pom.xml|  2 +-
 components/camel-aws/camel-aws2-eks/pom.xml|  2 +-
 .../camel-aws/camel-aws2-eventbridge/pom.xml   |  2 +-
 components/camel-aws/camel-aws2-iam/pom.xml|  2 +-
 components/camel-aws/camel-aws2-kinesis/pom.xml|  2 +-
 components/camel-aws/camel-aws2-kms/pom.xml|  2 +-
 components/camel-aws/camel-aws2-lambda/pom.xml |  2 +-
 components/camel-aws/camel-aws2-mq/pom.xml |  2 +-
 components/camel-aws/camel-aws2-msk/pom.xml|  2 +-
 components/camel-aws/camel-aws2-s3/pom.xml |  2 +-
 components/camel-aws/camel-aws2-ses/pom.xml|  2 +-
 components/camel-aws/camel-aws2-sns/pom.xml|  2 +-
 components/camel-aws/camel-aws2-sqs/pom.xml|  2 +-
 components/camel-aws/camel-aws2-sts/pom.xml|  2 +-
 components/camel-aws/camel-aws2-translate/pom.xml  |  2 +-
 components/camel-aws/pom.xml   |  2 +-
 .../camel-azure/camel-azure-cosmosdb/pom.xml   |  2 +-
 .../camel-azure/camel-azure-eventhubs/pom.xml  |  2 +-
 .../camel-azure/camel-azure-servicebus/pom.xml |  2 +-
 .../camel-azure/camel-azure-storage-blob/pom.xml   |  2 +-
 .../camel-azure-storage-datalake/pom.xml   |  2 +-
 .../camel-azure/camel-azure-storage-queue/pom.xml  |  2 +-
 components/camel-azure/pom.xml |  2 +-
 components/camel-barcode/pom.xml   |  2 +-
 components/camel-base64/pom.xml|  2 +-
 components/camel-bean-validator/pom.xml|  2 +-
 components/camel-bean/pom.xml 

[camel] branch main updated: Regen for commit 92d37d4167e04f14dcbf2619024861f2f8d03f9b (#6833)

2022-01-27 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 ed37e43  Regen for commit 92d37d4167e04f14dcbf2619024861f2f8d03f9b 
(#6833)
ed37e43 is described below

commit ed37e43152954ad625e34f2ee6dd1c0cf7a3f731
Author: github-actions[bot] 
<41898282+github-actions[bot]@users.noreply.github.com>
AuthorDate: Thu Jan 27 10:59:24 2022 +0100

Regen for commit 92d37d4167e04f14dcbf2619024861f2f8d03f9b (#6833)

Signed-off-by: GitHub 

Co-authored-by: davsclaus 
---
 .../resources/org/apache/camel/catalog/others.properties  |  2 --
 .../org/apache/camel/catalog/others/groovy-dsl.json   | 15 ---
 .../org/apache/camel/catalog/others/yaml-dsl.json | 15 ---
 3 files changed, 32 deletions(-)

diff --git 
a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/others.properties
 
b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/others.properties
index 0fb5b58..ce91a0d 100644
--- 
a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/others.properties
+++ 
b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/others.properties
@@ -15,7 +15,6 @@ debug
 elytron
 endpointdsl
 etcd3
-groovy-dsl
 headersmap
 health
 hystrix
@@ -64,5 +63,4 @@ tracing
 undertow-spring-security
 xml-io-dsl
 xml-jaxb-dsl
-yaml-dsl
 zipkin
diff --git 
a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/others/groovy-dsl.json
 
b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/others/groovy-dsl.json
deleted file mode 100644
index 89e0f2d..000
--- 
a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/others/groovy-dsl.json
+++ /dev/null
@@ -1,15 +0,0 @@
-{
-  "other": {
-"kind": "other",
-"name": "groovy-dsl",
-"title": "Groovy Dsl",
-"description": "Camel DSL with Groovy",
-"deprecated": false,
-"firstVersion": "3.9.0",
-"label": "dsl",
-"supportLevel": "Experimental",
-"groupId": "org.apache.camel",
-"artifactId": "camel-groovy-dsl",
-"version": "3.15.0-SNAPSHOT"
-  }
-}
diff --git 
a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/others/yaml-dsl.json
 
b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/others/yaml-dsl.json
deleted file mode 100644
index efbd056..000
--- 
a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/others/yaml-dsl.json
+++ /dev/null
@@ -1,15 +0,0 @@
-{
-  "other": {
-"kind": "other",
-"name": "yaml-dsl",
-"title": "YAML DSL",
-"description": "Camel DSL with YAML",
-"deprecated": false,
-"firstVersion": "3.9.0",
-"label": "dsl",
-"supportLevel": "Stable",
-"groupId": "org.apache.camel",
-"artifactId": "camel-yaml-dsl",
-"version": "3.15.0-SNAPSHOT"
-  }
-}


[camel] branch release/3.14.1 deleted (was 34e19f6)

2022-01-27 Thread gzurowski
This is an automated email from the ASF dual-hosted git repository.

gzurowski pushed a change to branch release/3.14.1
in repository https://gitbox.apache.org/repos/asf/camel.git.


 was 34e19f6  [maven-release-plugin] prepare for next development iteration

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


[GitHub] [camel] hokutor closed pull request #6834: Camel 17321: Add HuaweiCloud FaceRecognitionService(FRS) Component

2022-01-27 Thread GitBox


hokutor closed pull request #6834:
URL: https://github.com/apache/camel/pull/6834


   


-- 
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] 02/02: Target Camel 3.14.2-SNAPSHOT for development

2022-01-27 Thread gzurowski
This is an automated email from the ASF dual-hosted git repository.

gzurowski pushed a commit to branch camel-spring-boot-3.14.x
in repository https://gitbox.apache.org/repos/asf/camel-spring-boot.git

commit 722cb7e8a5ed000c88d774c6319631b5125e7146
Author: Gregor Zurowski 
AuthorDate: Thu Jan 27 10:03:41 2022 +

Target Camel 3.14.2-SNAPSHOT for development
---
 pom.xml | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/pom.xml b/pom.xml
index 4f30163..3dba51b 100644
--- a/pom.xml
+++ b/pom.xml
@@ -23,7 +23,7 @@
 
 org.apache.camel
 camel-dependencies
-3.14.1
+3.14.2-SNAPSHOT
 
 
 org.apache.camel.springboot
@@ -111,7 +111,7 @@
 2.6.3
 
 
-3.14.1
+3.14.2-SNAPSHOT
 
 
 1.0.2.v20150114
@@ -453,7 +453,7 @@
 
 dev
 
-3.14.1
+3.14.2-SNAPSHOT
 
 
 


[camel-spring-boot] 01/02: Merge branch 'release/3.14.1' into camel-spring-boot-3.14.x

2022-01-27 Thread gzurowski
This is an automated email from the ASF dual-hosted git repository.

gzurowski pushed a commit to branch camel-spring-boot-3.14.x
in repository https://gitbox.apache.org/repos/asf/camel-spring-boot.git

commit 3d562b82ae79faa656a93bdb505f96244727b785
Merge: dd112fe d738d48
Author: Gregor Zurowski 
AuthorDate: Thu Jan 27 10:03:01 2022 +

Merge branch 'release/3.14.1' into camel-spring-boot-3.14.x

 archetypes/camel-archetype-spring-boot/pom.xml |   2 +-
 archetypes/pom.xml |   2 +-
 catalog/camel-catalog-provider-springboot/pom.xml  |   2 +-
 catalog/pom.xml|   2 +-
 components-starter/camel-activemq-starter/pom.xml  |   2 +-
 components-starter/camel-ahc-starter/pom.xml   |   2 +-
 components-starter/camel-ahc-ws-starter/pom.xml|   2 +-
 components-starter/camel-amqp-starter/pom.xml  |   2 +-
 components-starter/camel-any23-starter/pom.xml |   2 +-
 components-starter/camel-arangodb-starter/pom.xml  |   2 +-
 components-starter/camel-as2-starter/pom.xml   |   2 +-
 components-starter/camel-asn1-starter/pom.xml  |   2 +-
 components-starter/camel-asterisk-starter/pom.xml  |   2 +-
 components-starter/camel-atlasmap-starter/pom.xml  |   2 +-
 components-starter/camel-atmos-starter/pom.xml |   2 +-
 .../camel-atmosphere-websocket-starter/pom.xml |   2 +-
 components-starter/camel-atom-starter/pom.xml  |   2 +-
 components-starter/camel-atomix-starter/pom.xml|   2 +-
 components-starter/camel-avro-rpc-starter/pom.xml  |   2 +-
 components-starter/camel-avro-starter/pom.xml  |   2 +-
 .../camel-aws-secrets-manager-starter/pom.xml  |   2 +-
 components-starter/camel-aws-xray-starter/pom.xml  |   2 +-
 .../camel-aws2-athena-starter/pom.xml  |   2 +-
 components-starter/camel-aws2-cw-starter/pom.xml   |   2 +-
 components-starter/camel-aws2-ddb-starter/pom.xml  |   2 +-
 components-starter/camel-aws2-ec2-starter/pom.xml  |   2 +-
 components-starter/camel-aws2-ecs-starter/pom.xml  |   2 +-
 components-starter/camel-aws2-eks-starter/pom.xml  |   2 +-
 .../camel-aws2-eventbridge-starter/pom.xml |   2 +-
 components-starter/camel-aws2-iam-starter/pom.xml  |   2 +-
 .../camel-aws2-kinesis-starter/pom.xml |   2 +-
 components-starter/camel-aws2-kms-starter/pom.xml  |   2 +-
 .../camel-aws2-lambda-starter/pom.xml  |   2 +-
 components-starter/camel-aws2-mq-starter/pom.xml   |   2 +-
 components-starter/camel-aws2-msk-starter/pom.xml  |   2 +-
 components-starter/camel-aws2-s3-starter/pom.xml   |   2 +-
 components-starter/camel-aws2-ses-starter/pom.xml  |   2 +-
 components-starter/camel-aws2-sns-starter/pom.xml  |   2 +-
 components-starter/camel-aws2-sqs-starter/pom.xml  |   2 +-
 components-starter/camel-aws2-sts-starter/pom.xml  |   2 +-
 .../camel-aws2-translate-starter/pom.xml   |   2 +-
 .../camel-azure-cosmosdb-starter/pom.xml   |   2 +-
 .../camel-azure-eventhubs-starter/pom.xml  |   2 +-
 .../camel-azure-servicebus-starter/pom.xml |   2 +-
 .../camel-azure-storage-blob-starter/pom.xml   |   2 +-
 .../camel-azure-storage-datalake-starter/pom.xml   |   2 +-
 .../camel-azure-storage-queue-starter/pom.xml  |   2 +-
 components-starter/camel-barcode-starter/pom.xml   |   2 +-
 components-starter/camel-base64-starter/pom.xml|   2 +-
 components-starter/camel-bean-starter/pom.xml  |   2 +-
 .../camel-bean-validator-starter/pom.xml   |   2 +-
 components-starter/camel-beanio-starter/pom.xml|   2 +-
 components-starter/camel-beanstalk-starter/pom.xml |   2 +-
 components-starter/camel-bindy-starter/pom.xml |   2 +-
 components-starter/camel-bonita-starter/pom.xml|   2 +-
 components-starter/camel-box-starter/pom.xml   |   2 +-
 components-starter/camel-braintree-starter/pom.xml |   2 +-
 components-starter/camel-browse-starter/pom.xml|   2 +-
 .../camel-caffeine-lrucache-starter/pom.xml|   2 +-
 components-starter/camel-caffeine-starter/pom.xml  |   2 +-
 .../camel-cassandraql-starter/pom.xml  |   2 +-
 components-starter/camel-cbor-starter/pom.xml  |   2 +-
 .../camel-chatscript-starter/pom.xml   |   2 +-
 components-starter/camel-chunk-starter/pom.xml |   2 +-
 components-starter/camel-cm-sms-starter/pom.xml|   2 +-
 components-starter/camel-cmis-starter/pom.xml  |   2 +-
 components-starter/camel-coap-starter/pom.xml  |   2 +-
 components-starter/camel-cometd-starter/pom.xml|   2 +-
 components-starter/camel-consul-starter/pom.xml|   2 +-
 .../camel-controlbus-starter/pom.xml   |   2 +-
 components-starter/camel-corda-starter/pom.xml |   2 +-
 components-starter/camel-core-starter/pom.xml  |   2 +-
 components-starter/camel-couchbase-starter/pom.xml |   2 +-
 components-starter/camel-couchdb-starter/pom.xml   |   2 +-
 components-starter/camel-cron-starter/pom.xml  |   2 +-
 components-star

[camel-spring-boot] branch camel-spring-boot-3.14.x updated (dd112fe -> 722cb7e)

2022-01-27 Thread gzurowski
This is an automated email from the ASF dual-hosted git repository.

gzurowski pushed a change to branch camel-spring-boot-3.14.x
in repository https://gitbox.apache.org/repos/asf/camel-spring-boot.git.


from dd112fe  Regen
 add c6a2936  Target Camel 3.14.1 for release
 add 3629fe7  [maven-release-plugin] prepare release 
camel-spring-boot-3.14.1
 add d738d48  [maven-release-plugin] prepare for next development iteration
 new 3d562b8  Merge branch 'release/3.14.1' into camel-spring-boot-3.14.x
 new 722cb7e  Target Camel 3.14.2-SNAPSHOT for development

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


Summary of changes:
 archetypes/camel-archetype-spring-boot/pom.xml |   2 +-
 archetypes/pom.xml |   2 +-
 catalog/camel-catalog-provider-springboot/pom.xml  |   2 +-
 catalog/pom.xml|   2 +-
 components-starter/camel-activemq-starter/pom.xml  |   2 +-
 components-starter/camel-ahc-starter/pom.xml   |   2 +-
 components-starter/camel-ahc-ws-starter/pom.xml|   2 +-
 components-starter/camel-amqp-starter/pom.xml  |   2 +-
 components-starter/camel-any23-starter/pom.xml |   2 +-
 components-starter/camel-arangodb-starter/pom.xml  |   2 +-
 components-starter/camel-as2-starter/pom.xml   |   2 +-
 components-starter/camel-asn1-starter/pom.xml  |   2 +-
 components-starter/camel-asterisk-starter/pom.xml  |   2 +-
 components-starter/camel-atlasmap-starter/pom.xml  |   2 +-
 components-starter/camel-atmos-starter/pom.xml |   2 +-
 .../camel-atmosphere-websocket-starter/pom.xml |   2 +-
 components-starter/camel-atom-starter/pom.xml  |   2 +-
 components-starter/camel-atomix-starter/pom.xml|   2 +-
 components-starter/camel-avro-rpc-starter/pom.xml  |   2 +-
 components-starter/camel-avro-starter/pom.xml  |   2 +-
 .../camel-aws-secrets-manager-starter/pom.xml  |   2 +-
 components-starter/camel-aws-xray-starter/pom.xml  |   2 +-
 .../camel-aws2-athena-starter/pom.xml  |   2 +-
 components-starter/camel-aws2-cw-starter/pom.xml   |   2 +-
 components-starter/camel-aws2-ddb-starter/pom.xml  |   2 +-
 components-starter/camel-aws2-ec2-starter/pom.xml  |   2 +-
 components-starter/camel-aws2-ecs-starter/pom.xml  |   2 +-
 components-starter/camel-aws2-eks-starter/pom.xml  |   2 +-
 .../camel-aws2-eventbridge-starter/pom.xml |   2 +-
 components-starter/camel-aws2-iam-starter/pom.xml  |   2 +-
 .../camel-aws2-kinesis-starter/pom.xml |   2 +-
 components-starter/camel-aws2-kms-starter/pom.xml  |   2 +-
 .../camel-aws2-lambda-starter/pom.xml  |   2 +-
 components-starter/camel-aws2-mq-starter/pom.xml   |   2 +-
 components-starter/camel-aws2-msk-starter/pom.xml  |   2 +-
 components-starter/camel-aws2-s3-starter/pom.xml   |   2 +-
 components-starter/camel-aws2-ses-starter/pom.xml  |   2 +-
 components-starter/camel-aws2-sns-starter/pom.xml  |   2 +-
 components-starter/camel-aws2-sqs-starter/pom.xml  |   2 +-
 components-starter/camel-aws2-sts-starter/pom.xml  |   2 +-
 .../camel-aws2-translate-starter/pom.xml   |   2 +-
 .../camel-azure-cosmosdb-starter/pom.xml   |   2 +-
 .../camel-azure-eventhubs-starter/pom.xml  |   2 +-
 .../camel-azure-servicebus-starter/pom.xml |   2 +-
 .../camel-azure-storage-blob-starter/pom.xml   |   2 +-
 .../camel-azure-storage-datalake-starter/pom.xml   |   2 +-
 .../camel-azure-storage-queue-starter/pom.xml  |   2 +-
 components-starter/camel-barcode-starter/pom.xml   |   2 +-
 components-starter/camel-base64-starter/pom.xml|   2 +-
 components-starter/camel-bean-starter/pom.xml  |   2 +-
 .../camel-bean-validator-starter/pom.xml   |   2 +-
 components-starter/camel-beanio-starter/pom.xml|   2 +-
 components-starter/camel-beanstalk-starter/pom.xml |   2 +-
 components-starter/camel-bindy-starter/pom.xml |   2 +-
 components-starter/camel-bonita-starter/pom.xml|   2 +-
 components-starter/camel-box-starter/pom.xml   |   2 +-
 components-starter/camel-braintree-starter/pom.xml |   2 +-
 components-starter/camel-browse-starter/pom.xml|   2 +-
 .../camel-caffeine-lrucache-starter/pom.xml|   2 +-
 components-starter/camel-caffeine-starter/pom.xml  |   2 +-
 .../camel-cassandraql-starter/pom.xml  |   2 +-
 components-starter/camel-cbor-starter/pom.xml  |   2 +-
 .../camel-chatscript-starter/pom.xml   |   2 +-
 components-starter/camel-chunk-starter/pom.xml |   2 +-
 components-starter/camel-cm-sms-starter/pom.xml|   2 +-
 components-starter/camel-cmis-starter/pom.xml  |   2 +-
 components-starter/camel-coap-starter/pom.xml  |   2 +-
 components-starter/camel-cometd-starter/pom.xml|   2 +-
 components-sta

[camel-spring-boot] branch release/3.14.1 deleted (was d738d48)

2022-01-27 Thread gzurowski
This is an automated email from the ASF dual-hosted git repository.

gzurowski pushed a change to branch release/3.14.1
in repository https://gitbox.apache.org/repos/asf/camel-spring-boot.git.


 was d738d48  [maven-release-plugin] prepare for next development iteration

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


[GitHub] [camel-examples] essobedo opened a new pull request #59: Fix route reload configuration

2022-01-27 Thread GitBox


essobedo opened a new pull request #59:
URL: https://github.com/apache/camel-examples/pull/59


   ## Motivation
   
   In the examples `main-xml` and `main-yaml`, the routes are not automatically 
reloaded when the route file is modified while the route reloading feature is 
enabled.
   
   ## Modifications
   
   Since, by default the parameter 
`camel.main.routes-reload-directory-recursive` is `false` and 
`camel.main.routes-reload-directory` has been set to `src/main/resources`, the 
modifications of a file in the directory `routes` can not be detected.
   
   * Modifies the base directory to watch in order to detect modifications in 
the route file. 


-- 
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-karaf] 01/02: Merge branch 'release/3.14.1' into camel-karaf-3.14.x

2022-01-27 Thread gzurowski
This is an automated email from the ASF dual-hosted git repository.

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

commit 061a60ce5966a7f8d738060e64a4707113d27bb1
Merge: d50e04e d90a35f
Author: Gregor Zurowski 
AuthorDate: Thu Jan 27 10:04:42 2022 +

Merge branch 'release/3.14.1' into camel-karaf-3.14.x

 archetypes/camel-archetype-blueprint/pom.xml   | 2 +-
 archetypes/pom.xml | 2 +-
 bom/camel-karaf-bom/pom.xml| 2 +-
 bom/pom.xml| 2 +-
 catalog/camel-catalog-provider-karaf/pom.xml   | 2 +-
 catalog/pom.xml| 2 +-
 components/camel-bean-osgi/pom.xml | 2 +-
 components/camel-bean-validator-osgi/pom.xml   | 2 +-
 components/camel-blueprint-main/pom.xml| 2 +-
 components/camel-blueprint/pom.xml | 2 +-
 components/camel-cmis-osgi/pom.xml | 2 +-
 components/camel-cxf-blueprint/pom.xml | 2 +-
 components/camel-cxf-transport-blueprint/pom.xml   | 2 +-
 components/camel-eventadmin/pom.xml| 2 +-
 components/camel-jcache-osgi/pom.xml   | 2 +-
 components/camel-kura/pom.xml  | 2 +-
 components/camel-osgi-activator/pom.xml| 2 +-
 components/camel-paxlogging/pom.xml| 2 +-
 components/camel-servlet-osgi/pom.xml  | 2 +-
 components/camel-test-blueprint/pom.xml| 2 +-
 components/camel-test-karaf/pom.xml| 2 +-
 components/camel-zookeeper-master-osgi/pom.xml | 2 +-
 components/pom.xml | 2 +-
 core/camel-core-osgi/pom.xml   | 2 +-
 core/pom.xml   | 2 +-
 platforms/commands/commands-core/pom.xml   | 2 +-
 platforms/commands/pom.xml | 2 +-
 platforms/karaf/commands/pom.xml   | 2 +-
 platforms/karaf/features/pom.xml   | 2 +-
 platforms/karaf/pom.xml| 2 +-
 platforms/pom.xml  | 2 +-
 pom.xml| 8 
 tests/camel-blueprint-cxf-test/pom.xml | 2 +-
 tests/camel-blueprint-test/pom.xml | 2 +-
 tests/camel-itest-osgi/pom.xml | 2 +-
 tests/pom.xml  | 2 +-
 tooling/camel-catalog-generator-karaf-maven-plugin/pom.xml | 2 +-
 tooling/camel-karaf-maven-plugin/pom.xml   | 2 +-
 tooling/pom.xml| 2 +-
 39 files changed, 42 insertions(+), 42 deletions(-)


[camel-karaf] 02/02: Target Camel 3.14.2-SNAPSHOT for development

2022-01-27 Thread gzurowski
This is an automated email from the ASF dual-hosted git repository.

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

commit cae1fe47ba0928049312123b26916babf7fc4a0b
Author: Gregor Zurowski 
AuthorDate: Thu Jan 27 10:10:18 2022 +

Target Camel 3.14.2-SNAPSHOT for development
---
 pom.xml | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/pom.xml b/pom.xml
index 2f4cb82..abc6e6c 100644
--- a/pom.xml
+++ b/pom.xml
@@ -23,7 +23,7 @@
 
 org.apache.camel
 camel-dependencies
-3.14.1
+3.14.2-SNASHOT
 
 
 org.apache.camel.karaf
@@ -106,7 +106,7 @@
 false
 
 
-3.14.1
+3.14.2-SNASHOT
 
 1.7.0_6
 3.5.2_1
@@ -759,7 +759,7 @@
 
 dev
 
-3.14.1
+3.14.2-SNAPSHOT
 
 
 


[camel-karaf] branch camel-karaf-3.14.x updated (d50e04e -> cae1fe4)

2022-01-27 Thread gzurowski
This is an automated email from the ASF dual-hosted git repository.

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


from d50e04e  Update features.xml (#110)
 add a48b1c3  Target Camel 3.14.1 for release
 add 5e326be  [maven-release-plugin] prepare release camel-karaf-3.14.1
 add d90a35f  [maven-release-plugin] prepare for next development iteration
 new 061a60c  Merge branch 'release/3.14.1' into camel-karaf-3.14.x
 new cae1fe4  Target Camel 3.14.2-SNAPSHOT for development

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


Summary of changes:
 archetypes/camel-archetype-blueprint/pom.xml   | 2 +-
 archetypes/pom.xml | 2 +-
 bom/camel-karaf-bom/pom.xml| 2 +-
 bom/pom.xml| 2 +-
 catalog/camel-catalog-provider-karaf/pom.xml   | 2 +-
 catalog/pom.xml| 2 +-
 components/camel-bean-osgi/pom.xml | 2 +-
 components/camel-bean-validator-osgi/pom.xml   | 2 +-
 components/camel-blueprint-main/pom.xml| 2 +-
 components/camel-blueprint/pom.xml | 2 +-
 components/camel-cmis-osgi/pom.xml | 2 +-
 components/camel-cxf-blueprint/pom.xml | 2 +-
 components/camel-cxf-transport-blueprint/pom.xml   | 2 +-
 components/camel-eventadmin/pom.xml| 2 +-
 components/camel-jcache-osgi/pom.xml   | 2 +-
 components/camel-kura/pom.xml  | 2 +-
 components/camel-osgi-activator/pom.xml| 2 +-
 components/camel-paxlogging/pom.xml| 2 +-
 components/camel-servlet-osgi/pom.xml  | 2 +-
 components/camel-test-blueprint/pom.xml| 2 +-
 components/camel-test-karaf/pom.xml| 2 +-
 components/camel-zookeeper-master-osgi/pom.xml | 2 +-
 components/pom.xml | 2 +-
 core/camel-core-osgi/pom.xml   | 2 +-
 core/pom.xml   | 2 +-
 platforms/commands/commands-core/pom.xml   | 2 +-
 platforms/commands/pom.xml | 2 +-
 platforms/karaf/commands/pom.xml   | 2 +-
 platforms/karaf/features/pom.xml   | 2 +-
 platforms/karaf/pom.xml| 2 +-
 platforms/pom.xml  | 2 +-
 pom.xml| 8 
 tests/camel-blueprint-cxf-test/pom.xml | 2 +-
 tests/camel-blueprint-test/pom.xml | 2 +-
 tests/camel-itest-osgi/pom.xml | 2 +-
 tests/pom.xml  | 2 +-
 tooling/camel-catalog-generator-karaf-maven-plugin/pom.xml | 2 +-
 tooling/camel-karaf-maven-plugin/pom.xml   | 2 +-
 tooling/pom.xml| 2 +-
 39 files changed, 42 insertions(+), 42 deletions(-)


[camel-karaf] branch release/3.14.1 deleted (was d90a35f)

2022-01-27 Thread gzurowski
This is an automated email from the ASF dual-hosted git repository.

gzurowski pushed a change to branch release/3.14.1
in repository https://gitbox.apache.org/repos/asf/camel-karaf.git.


 was d90a35f  [maven-release-plugin] prepare for next development iteration

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


[camel-karaf] branch main updated: Fix karaf features and also remove some google which cannot work in OSGi

2022-01-27 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-karaf.git


The following commit(s) were added to refs/heads/main by this push:
 new 1e92828  Fix karaf features and also remove some google which cannot 
work in OSGi
1e92828 is described below

commit 1e92828779e2402324dfd79ebf593e45aa9d051b
Author: Claus Ibsen 
AuthorDate: Thu Jan 27 11:05:41 2022 +0100

Fix karaf features and also remove some google which cannot work in OSGi
---
 .../karaf/features/src/main/resources/features.xml | 48 +-
 1 file changed, 2 insertions(+), 46 deletions(-)

diff --git a/platforms/karaf/features/src/main/resources/features.xml 
b/platforms/karaf/features/src/main/resources/features.xml
index 65aeb9f..1a91f6c 100644
--- a/platforms/karaf/features/src/main/resources/features.xml
+++ b/platforms/karaf/features/src/main/resources/features.xml
@@ -688,7 +688,7 @@
 mvn:com.fasterxml.jackson.module/jackson-module-jaxb-annotations/${jackson2-version}
 mvn:com.fasterxml.jackson.jaxrs/jackson-jaxrs-base/${jackson2-version}
 mvn:com.fasterxml.jackson.jaxrs/jackson-jaxrs-json-provider/${jackson2-version}
-mvn:com.google.guava/guava/${google-guava-version}
+mvn:com.google.guava/guava/19.0
 mvn:io.netty/netty-resolver/${netty-version}
 mvn:io.netty/netty-common/${netty-version}
 mvn:io.netty/netty-buffer/${netty-version}
@@ -948,51 +948,6 @@
 wrap:mvn:org.threeten/threetenbp/${google-cloud-threetenbp-version}
 
mvn:org.apache.camel/camel-google-bigquery/${project.version}
   
-   
-camel-core
-mvn:commons-codec/commons-codec/${commons-codec-version}
-mvn:com.fasterxml.jackson.core/jackson-core/${jackson2-version}
-mvn:org.apache.httpcomponents/httpcore-osgi/${httpcore4-version}
-mvn:org.apache.httpcomponents/httpclient-osgi/${httpclient4-version}
-wrap:mvn:com.google.api-client/google-api-client/${google-api-client-version}
-wrap:mvn:com.google.apis/google-api-services-calendar/${google-api-services-calendar-version}
-wrap:mvn:com.google.http-client/google-http-client/${google-api-client-version}
-wrap:mvn:com.google.http-client/google-http-client-jackson2/${google-api-client-version}
-wrap:mvn:com.google.oauth-client/google-oauth-client/${google-api-client-version}
-wrap:mvn:com.google.oauth-client/google-oauth-client-java6/${google-api-client-version}
-wrap:mvn:com.google.oauth-client/google-oauth-client-jetty/${google-api-client-version}
-
mvn:org.apache.camel/camel-google-calendar/${project.version}
-  
-  
-camel-core
-mvn:commons-codec/commons-codec/${commons-codec-version}
-mvn:com.fasterxml.jackson.core/jackson-core/${jackson2-version}
-mvn:org.apache.httpcomponents/httpcore-osgi/${httpcore4-version}
-mvn:org.apache.httpcomponents/httpclient-osgi/${httpclient4-version}
-wrap:mvn:com.google.api-client/google-api-client/${google-api-client-version}
-wrap:mvn:com.google.apis/google-api-services-sheets/${google-api-services-sheets-version}
-wrap:mvn:com.google.http-client/google-http-client/${google-api-client-version}
-wrap:mvn:com.google.http-client/google-http-client-jackson2/${google-api-client-version}
-wrap:mvn:com.google.oauth-client/google-oauth-client/${google-api-client-version}
-wrap:mvn:com.google.oauth-client/google-oauth-client-java6/${google-api-client-version}
-wrap:mvn:com.google.oauth-client/google-oauth-client-jetty/${google-api-client-version}
-
mvn:org.apache.camel/camel-google-sheets/${project.version}
-  
-  
-camel-core
-mvn:commons-codec/commons-codec/${commons-codec-version}
-mvn:com.fasterxml.jackson.core/jackson-core/${jackson2-version}
-mvn:org.apache.httpcomponents/httpcore-osgi/${httpcore4-version}
-mvn:org.apache.httpcomponents/httpclient-osgi/${httpclient4-version}
-wrap:mvn:com.google.api-client/google-api-client/${google-api-client-version}
-wrap:mvn:com.google.apis/google-api-services-drive/${google-api-services-drive-version}
-wrap:mvn:com.google.http-client/google-http-client/${google-api-client-version}
-wrap:mvn:com.google.http-client/google-http-client-jackson2/${google-api-client-version}
-wrap:mvn:com.google.oauth-client/google-oauth-client/${google-api-client-version}
-wrap:mvn:com.google.oauth-client/google-oauth-client-java6/${google-api-client-version}
-wrap:mvn:com.google.oauth-client/google-oauth-client-jetty/${google-api-client-version}
-mvn:org.apache.camel/camel-google-drive/${project.version}
-  
   
 camel-core
 mvn:org.codehaus.groovy/groovy/${groovy-version}
@@ -1389,6 +1344,7 @@
 mvn:io.fabric8/openshift-model/${kubernetes-model-version}
 
mvn:io.fabric8/openshift-model-console/${kubernetes-model-version}
 
mvn:io.fabric8/openshift-model-clusterautoscaling/${kubernetes-model-version}
+
mvn:io.fabric8/openshift-model-hive

[camel] branch main updated: Fix karaf features and also remove some google which cannot work in OSGi

2022-01-27 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 e276ed4  Fix karaf features and also remove some google which cannot 
work in OSGi
e276ed4 is described below

commit e276ed4d80842fffbf732c4deb359c7f018f94cc
Author: Claus Ibsen 
AuthorDate: Thu Jan 27 11:07:00 2022 +0100

Fix karaf features and also remove some google which cannot work in OSGi
---
 docs/user-manual/modules/ROOT/pages/camel-3x-upgrade-guide-3_15.adoc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/docs/user-manual/modules/ROOT/pages/camel-3x-upgrade-guide-3_15.adoc 
b/docs/user-manual/modules/ROOT/pages/camel-3x-upgrade-guide-3_15.adoc
index 2e46685..83608c4 100644
--- a/docs/user-manual/modules/ROOT/pages/camel-3x-upgrade-guide-3_15.adoc
+++ b/docs/user-manual/modules/ROOT/pages/camel-3x-upgrade-guide-3_15.adoc
@@ -192,7 +192,7 @@ The signature for `KafkaManualCommitFactory` and its 
classes has been adjusted t
 
 The `camel-endpointdsl` and `camel-componentdsl` is no longer supported on 
Apache Karaf.
 
-The `camel-osg-activator`, `camel-google-mail`, and `camel-jooq` has been 
removed.
+The `camel-osg-activator`, `camel-google-calendar`, `camel-google-drive`, 
`camel-google-mail`, `camel-google-sheets`, and `camel-jooq` has been removed.
 
 === camel-netty / camel-netty-http
 


[camel] 01/02: CAMEL-17398: Include core/dsl in catalog

2022-01-27 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

commit 13efef6e5ed89efff8d7e30f3dc92fabf75050a9
Author: Claus Ibsen 
AuthorDate: Thu Jan 27 11:10:37 2022 +0100

CAMEL-17398: Include core/dsl in catalog
---
 .../main/java/org/apache/camel/maven/packaging/PrepareCatalogMojo.java   | 1 -
 1 file changed, 1 deletion(-)

diff --git 
a/tooling/maven/camel-package-maven-plugin/src/main/java/org/apache/camel/maven/packaging/PrepareCatalogMojo.java
 
b/tooling/maven/camel-package-maven-plugin/src/main/java/org/apache/camel/maven/packaging/PrepareCatalogMojo.java
index 1af3d0a..c7428ff 100644
--- 
a/tooling/maven/camel-package-maven-plugin/src/main/java/org/apache/camel/maven/packaging/PrepareCatalogMojo.java
+++ 
b/tooling/maven/camel-package-maven-plugin/src/main/java/org/apache/camel/maven/packaging/PrepareCatalogMojo.java
@@ -612,7 +612,6 @@ public class PrepareCatalogMojo extends AbstractMojo {
 // and some from dsl
 case "dsl-support":
 case "camel-dsl-support":
-case "endpointdsl-support":
 case "camel-endpointdsl-support":
 // and components with middle folders
 case "camel-as2":


[camel] branch main updated (e276ed4 -> c021916)

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

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


from e276ed4  Fix karaf features and also remove some google which cannot 
work in OSGi
 new 13efef6  CAMEL-17398: Include core/dsl in catalog
 new c021916  CAMEL-17398: Include core/dsl in catalog

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


Summary of changes:
 .../generated/resources/org/apache/camel/catalog/others.properties| 2 ++
 .../resources/org/apache/camel/catalog/others}/groovy-dsl.json| 0
 .../resources/org/apache/camel/catalog/others}/yaml-dsl.json  | 0
 .../src/main/java/org/apache/camel/maven/packaging/MojoHelper.java| 4 
 .../java/org/apache/camel/maven/packaging/PrepareCatalogMojo.java | 2 +-
 5 files changed, 7 insertions(+), 1 deletion(-)
 copy {dsl/camel-groovy-dsl/camel-groovy-dsl/src/generated/resources => 
catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/others}/groovy-dsl.json
 (100%)
 copy {dsl/camel-yaml-dsl/camel-yaml-dsl/src/generated/resources => 
catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/others}/yaml-dsl.json
 (100%)


[camel] 02/02: CAMEL-17398: Include core/dsl in catalog

2022-01-27 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

commit c021916bae78f78825217d82130c8f08f76d6bdc
Author: Claus Ibsen 
AuthorDate: Thu Jan 27 11:14:59 2022 +0100

CAMEL-17398: Include core/dsl in catalog
---
 .../resources/org/apache/camel/catalog/others.properties  |  2 ++
 .../org/apache/camel/catalog/others/groovy-dsl.json   | 15 +++
 .../org/apache/camel/catalog/others/yaml-dsl.json | 15 +++
 .../java/org/apache/camel/maven/packaging/MojoHelper.java |  4 
 .../apache/camel/maven/packaging/PrepareCatalogMojo.java  |  1 +
 5 files changed, 37 insertions(+)

diff --git 
a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/others.properties
 
b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/others.properties
index ce91a0d..0fb5b58 100644
--- 
a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/others.properties
+++ 
b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/others.properties
@@ -15,6 +15,7 @@ debug
 elytron
 endpointdsl
 etcd3
+groovy-dsl
 headersmap
 health
 hystrix
@@ -63,4 +64,5 @@ tracing
 undertow-spring-security
 xml-io-dsl
 xml-jaxb-dsl
+yaml-dsl
 zipkin
diff --git 
a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/others/groovy-dsl.json
 
b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/others/groovy-dsl.json
new file mode 100644
index 000..89e0f2d
--- /dev/null
+++ 
b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/others/groovy-dsl.json
@@ -0,0 +1,15 @@
+{
+  "other": {
+"kind": "other",
+"name": "groovy-dsl",
+"title": "Groovy Dsl",
+"description": "Camel DSL with Groovy",
+"deprecated": false,
+"firstVersion": "3.9.0",
+"label": "dsl",
+"supportLevel": "Experimental",
+"groupId": "org.apache.camel",
+"artifactId": "camel-groovy-dsl",
+"version": "3.15.0-SNAPSHOT"
+  }
+}
diff --git 
a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/others/yaml-dsl.json
 
b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/others/yaml-dsl.json
new file mode 100644
index 000..efbd056
--- /dev/null
+++ 
b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/others/yaml-dsl.json
@@ -0,0 +1,15 @@
+{
+  "other": {
+"kind": "other",
+"name": "yaml-dsl",
+"title": "YAML DSL",
+"description": "Camel DSL with YAML",
+"deprecated": false,
+"firstVersion": "3.9.0",
+"label": "dsl",
+"supportLevel": "Stable",
+"groupId": "org.apache.camel",
+"artifactId": "camel-yaml-dsl",
+"version": "3.15.0-SNAPSHOT"
+  }
+}
diff --git 
a/tooling/maven/camel-package-maven-plugin/src/main/java/org/apache/camel/maven/packaging/MojoHelper.java
 
b/tooling/maven/camel-package-maven-plugin/src/main/java/org/apache/camel/maven/packaging/MojoHelper.java
index 6c747f7..f4c3811 100644
--- 
a/tooling/maven/camel-package-maven-plugin/src/main/java/org/apache/camel/maven/packaging/MojoHelper.java
+++ 
b/tooling/maven/camel-package-maven-plugin/src/main/java/org/apache/camel/maven/packaging/MojoHelper.java
@@ -94,6 +94,10 @@ public final class MojoHelper {
 dir.resolve("camel-huaweicloud-obs"));
 case "camel-knative":
 return 
Collections.singletonList(dir.resolve("camel-knative-component"));
+case "camel-groovy-dsl":
+return 
Collections.singletonList(dir.resolve("camel-groovy-dsl"));
+case "camel-yaml-dsl":
+return 
Collections.singletonList(dir.resolve("camel-yaml-dsl"));
 default:
 return Collections.singletonList(dir);
 }
diff --git 
a/tooling/maven/camel-package-maven-plugin/src/main/java/org/apache/camel/maven/packaging/PrepareCatalogMojo.java
 
b/tooling/maven/camel-package-maven-plugin/src/main/java/org/apache/camel/maven/packaging/PrepareCatalogMojo.java
index c7428ff..73d416c 100644
--- 
a/tooling/maven/camel-package-maven-plugin/src/main/java/org/apache/camel/maven/packaging/PrepareCatalogMojo.java
+++ 
b/tooling/maven/camel-package-maven-plugin/src/main/java/org/apache/camel/maven/packaging/PrepareCatalogMojo.java
@@ -250,6 +250,7 @@ public class PrepareCatalogMojo extends AbstractMojo {
 
 // special for dsl-dir as its built after camel-catalog, so we can 
only look inside src/generated
 Stream.of(list(dslDir.toPath())).flatMap(s -> s)
+.flatMap(p -> getComponentPath(p).stream())
 .filter(dir -> 
Files.isDirectory(dir.resolve("src/generated/resources")))
 .flatMap(PackageHelper::walk).forEach(p -> {
 String f = p.getFileName().toString();


[GitHub] [camel-examples] davsclaus merged pull request #59: Fix route reload configuration

2022-01-27 Thread GitBox


davsclaus merged pull request #59:
URL: https://github.com/apache/camel-examples/pull/59


   


-- 
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-examples] branch main updated: Fix route reload configuration (#59)

2022-01-27 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-examples.git


The following commit(s) were added to refs/heads/main by this push:
 new 10557f4  Fix route reload configuration (#59)
10557f4 is described below

commit 10557f4a34bbe1c428361e40deeb82adfa4372da
Author: Nicolas Filotto 
AuthorDate: Thu Jan 27 11:15:53 2022 +0100

Fix route reload configuration (#59)
---
 examples/main-xml/src/main/resources/application.properties  | 4 ++--
 examples/main-yaml/src/main/resources/application.properties | 4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/examples/main-xml/src/main/resources/application.properties 
b/examples/main-xml/src/main/resources/application.properties
index dcbef5d..88cffd1 100644
--- a/examples/main-xml/src/main/resources/application.properties
+++ b/examples/main-xml/src/main/resources/application.properties
@@ -25,9 +25,9 @@ camel.main.routes-include-pattern = routes/*.xml
 # turn on route reloading on file changes
 camel.main.routes-reload-enabled = true
 # the base directory to watch
-camel.main.routes-reload-directory = src/main/resources
+camel.main.routes-reload-directory = src/main/resources/routes
 # pattern(s) for files to watch
-camel.main.routes-reload-pattern = routes/*.xml
+camel.main.routes-reload-pattern = *.xml
 
 # properties used in the route
 myCron = 0/2 * * * * ?
diff --git a/examples/main-yaml/src/main/resources/application.properties 
b/examples/main-yaml/src/main/resources/application.properties
index 3d66ad8..8aba99f 100644
--- a/examples/main-yaml/src/main/resources/application.properties
+++ b/examples/main-yaml/src/main/resources/application.properties
@@ -22,9 +22,9 @@ camel.main.name = MyYamlCamel
 # turn on route reloading on file changes
 camel.main.routes-reload-enabled = true
 # the base directory to watch
-camel.main.routes-reload-directory = src/main/resources
+camel.main.routes-reload-directory = src/main/resources/routes
 # pattern(s) for files to watch
-camel.main.routes-reload-pattern = routes/*.yaml
+camel.main.routes-reload-pattern = *.yaml
 # on reload should all existing routes be removed first
 camel.main.routes-reload-remove-all-routes = true
 


[camel-website] branch main updated: Add release notes and blog entry for Camel 3.14.1

2022-01-27 Thread gzurowski
This is an automated email from the ASF dual-hosted git repository.

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


The following commit(s) were added to refs/heads/main by this push:
 new c85a18c  Add release notes and blog entry for Camel 3.14.1
c85a18c is described below

commit c85a18cac82d75a1eed504e6ab7d0be1160620cd
Author: Gregor Zurowski 
AuthorDate: Thu Jan 27 11:18:14 2022 +0100

Add release notes and blog entry for Camel 3.14.1
---
 content/blog/2022/01/RELEASE-3.14.1/featured.jpeg | Bin 0 -> 625206 bytes
 content/blog/2022/01/RELEASE-3.14.1/index.md  |  19 +++
 content/releases/release-3.14.1.md|  17 +
 3 files changed, 36 insertions(+)

diff --git a/content/blog/2022/01/RELEASE-3.14.1/featured.jpeg 
b/content/blog/2022/01/RELEASE-3.14.1/featured.jpeg
new file mode 100644
index 000..36c23a0
Binary files /dev/null and b/content/blog/2022/01/RELEASE-3.14.1/featured.jpeg 
differ
diff --git a/content/blog/2022/01/RELEASE-3.14.1/index.md 
b/content/blog/2022/01/RELEASE-3.14.1/index.md
new file mode 100644
index 000..b561bf8
--- /dev/null
+++ b/content/blog/2022/01/RELEASE-3.14.1/index.md
@@ -0,0 +1,19 @@
+---
+title: "RELEASE 3.14.1"
+date: 2022-01-27
+draft: false
+authors: [gzurowski]
+categories: ["Releases"]
+preview: "The Camel community announces the immediate availability of the new 
Camel 3.14.1 LTS release"
+---
+
+
+The Camel community announces the immediate availability of Camel 3.14.1 
(LTS), a new patch release with 47 improvements and fixes.
+
+The artifacts are published and ready for you to download from the Central 
Maven repository. For more details please take a look at the [release 
notes](/releases/release-3.14.1/).
+
+Many thanks to all who made this release possible.
+
+On behalf of the Camel PMC,
+
+Gregor Zurowski
diff --git a/content/releases/release-3.14.1.md 
b/content/releases/release-3.14.1.md
new file mode 100644
index 000..a25d306
--- /dev/null
+++ b/content/releases/release-3.14.1.md
@@ -0,0 +1,17 @@
+---
+date: 2022-01-27
+eol: 2023-12-16
+draft: false
+type: release-note
+version: 3.14.1
+title: "Release 3.14.1"
+preview: "New LTS release 3.14.1"
+apiBreaking: ""
+knownIssues: ""
+jiraVersionId: 12351060
+category: camel
+kind: lts
+jdk: [8,11]
+---
+
+This release is the new Camel 3.14.1 LTS patch release.


[camel-k] branch 2189 created (now 7c18c33)

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

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


  at 7c18c33  Kamel dump: make the command smarter

This branch includes the following new commits:

 new cfff11e  Smarter dump
 new 7c18c33  Kamel dump: make the command smarter

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



[camel-k] 02/02: Kamel dump: make the command smarter

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

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

commit 7c18c3303f97ad38f71c4fe1144008fbe58bbc87
Author: Andrea Cosentino 
AuthorDate: Thu Jan 27 11:27:04 2022 +0100

Kamel dump: make the command smarter
---
 pkg/cmd/dump.go  | 67 ++-
 pkg/cmd/util_compress.go | 82 
 2 files changed, 84 insertions(+), 65 deletions(-)

diff --git a/pkg/cmd/dump.go b/pkg/cmd/dump.go
index 62055c6..04c53df 100644
--- a/pkg/cmd/dump.go
+++ b/pkg/cmd/dump.go
@@ -18,14 +18,12 @@ limitations under the License.
 package cmd
 
 import (
-   "archive/tar"
"bufio"
-   "compress/gzip"
"context"
"fmt"
"io"
-   "log"
"os"
+   "time"
 
"github.com/apache/camel-k/pkg/util"
 
@@ -73,19 +71,7 @@ func (o *dumpCmdOptions) dump(cmd *cobra.Command, args 
[]string) (err error) {
return dumpNamespace(o.Context, c, o.Namespace, 
file, o.LogLines)
} else {
dumpNamespace(o.Context, c, o.Namespace, file, 
o.LogLines)
-   // Create output file
-   out, err := os.Create("output.tar.gz")
-   if err != nil {
-   log.Fatalln("Error writing archive:", 
err)
-   }
-   defer out.Close()
-
-   // Create the archive and write the output to 
the "out" Writer
-   files := []string{file.Name()}
-   err = createArchive(files, out)
-   if err != nil {
-   log.Fatalln("Error creating archive:", 
err)
-   }
+   createTarFile([]string{file.Name()}, "dump." + 
file.Name() + "." + time.Now().Format(time.RFC3339) + ".tar.gz")
return nil
}
})
@@ -223,52 +209,3 @@ func dumpLogs(ctx context.Context, c client.Client, prefix 
string, ns string, na
}
return stream.Close()
 }
-
-func createArchive(files []string, buf io.Writer) error {
-   gw := gzip.NewWriter(buf)
-   defer gw.Close()
-   tw := tar.NewWriter(gw)
-   defer tw.Close()
-
-   // Iterate over files and add them to the tar archive
-   for _, file := range files {
-   err := addToArchive(tw, file)
-   if err != nil {
-   return err
-   }
-   }
-
-   return nil
-}
-
-func addToArchive(tw *tar.Writer, filename string) error {
-   file, err := os.Open(filename)
-   if err != nil {
-   return err
-   }
-   defer file.Close()
-
-   info, err := file.Stat()
-   if err != nil {
-   return err
-   }
-
-   header, err := tar.FileInfoHeader(info, info.Name())
-   if err != nil {
-   return err
-   }
-
-   header.Name = filename
-
-   err = tw.WriteHeader(header)
-   if err != nil {
-   return err
-   }
-
-   _, err = io.Copy(tw, file)
-   if err != nil {
-   return err
-   }
-
-   return nil
-}
diff --git a/pkg/cmd/util_compress.go b/pkg/cmd/util_compress.go
new file mode 100644
index 000..c4ae9f5
--- /dev/null
+++ b/pkg/cmd/util_compress.go
@@ -0,0 +1,82 @@
+/*
+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 cmd
+
+import (
+   "archive/tar"
+   "compress/gzip"
+   "io"
+   "log"
+   "os"
+)
+
+func createTarFile(fileNames []string, archiveName string) {
+   out, err := os.Create(archiveName)
+   if err != nil {
+   log.Fatalln("Error writing archive:", err)
+   }
+   defer out.Close()
+
+   err = createArchiveFile(fileNames, out)
+   if err != nil {
+   log.Fatalln("Error creating archive:", err)
+   }
+}
+
+func createArchiveFile(files []string, buf io.Writer) error {
+   gw := gzip.N

[camel-k] 01/02: Smarter dump

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

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

commit cfff11e375ef1f9dcc8ca96517674b2d3ce87e6d
Author: Andrea Cosentino 
AuthorDate: Mon Jan 24 18:41:55 2022 +0100

Smarter dump
---
 pkg/cmd/dump.go | 74 -
 1 file changed, 73 insertions(+), 1 deletion(-)

diff --git a/pkg/cmd/dump.go b/pkg/cmd/dump.go
index 902a167..62055c6 100644
--- a/pkg/cmd/dump.go
+++ b/pkg/cmd/dump.go
@@ -18,10 +18,13 @@ limitations under the License.
 package cmd
 
 import (
+   "archive/tar"
"bufio"
+   "compress/gzip"
"context"
"fmt"
"io"
+   "log"
"os"
 
"github.com/apache/camel-k/pkg/util"
@@ -48,12 +51,14 @@ func newCmdDump(rootCmdOptions *RootCmdOptions) 
(*cobra.Command, *dumpCmdOptions
}
 
cmd.Flags().Int("logLines", 100, "Number of log lines to dump")
+   cmd.Flags().Bool("compressed", false, "If the log file must be 
compressed in a tar.")
return &cmd, &options
 }
 
 type dumpCmdOptions struct {
*RootCmdOptions
LogLines int `mapstructure:"logLines"`
+   Compressed bool `mapstructure:"compressed" yaml:",omitempty"`
 }
 
 func (o *dumpCmdOptions) dump(cmd *cobra.Command, args []string) (err error) {
@@ -64,7 +69,25 @@ func (o *dumpCmdOptions) dump(cmd *cobra.Command, args 
[]string) (err error) {
 
if len(args) == 1 {
err = util.WithFile(args[0], os.O_RDWR|os.O_CREATE, 0o644, 
func(file *os.File) error {
-   return dumpNamespace(o.Context, c, o.Namespace, file, 
o.LogLines)
+   if (!o.Compressed) {
+   return dumpNamespace(o.Context, c, o.Namespace, 
file, o.LogLines)
+   } else {
+   dumpNamespace(o.Context, c, o.Namespace, file, 
o.LogLines)
+   // Create output file
+   out, err := os.Create("output.tar.gz")
+   if err != nil {
+   log.Fatalln("Error writing archive:", 
err)
+   }
+   defer out.Close()
+
+   // Create the archive and write the output to 
the "out" Writer
+   files := []string{file.Name()}
+   err = createArchive(files, out)
+   if err != nil {
+   log.Fatalln("Error creating archive:", 
err)
+   }
+   return nil
+   }
})
} else {
err = dumpNamespace(o.Context, c, o.Namespace, 
cmd.OutOrStdout(), o.LogLines)
@@ -200,3 +223,52 @@ func dumpLogs(ctx context.Context, c client.Client, prefix 
string, ns string, na
}
return stream.Close()
 }
+
+func createArchive(files []string, buf io.Writer) error {
+   gw := gzip.NewWriter(buf)
+   defer gw.Close()
+   tw := tar.NewWriter(gw)
+   defer tw.Close()
+
+   // Iterate over files and add them to the tar archive
+   for _, file := range files {
+   err := addToArchive(tw, file)
+   if err != nil {
+   return err
+   }
+   }
+
+   return nil
+}
+
+func addToArchive(tw *tar.Writer, filename string) error {
+   file, err := os.Open(filename)
+   if err != nil {
+   return err
+   }
+   defer file.Close()
+
+   info, err := file.Stat()
+   if err != nil {
+   return err
+   }
+
+   header, err := tar.FileInfoHeader(info, info.Name())
+   if err != nil {
+   return err
+   }
+
+   header.Name = filename
+
+   err = tw.WriteHeader(header)
+   if err != nil {
+   return err
+   }
+
+   _, err = io.Copy(tw, file)
+   if err != nil {
+   return err
+   }
+
+   return nil
+}


[GitHub] [camel-k] oscerd opened a new pull request #2952: Kamel dump: make the command smarter

2022-01-27 Thread GitBox


oscerd opened a new pull request #2952:
URL: https://github.com/apache/camel-k/pull/2952


   **Release Note**
   ```release-note
   NONE
   ```
   Fixes #2189 
   
   Now we're able to compress the dump file in a tar.gz with --compressed
   


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

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

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




[camel-k] branch 2189 updated (7c18c33 -> aead927)

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

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


from 7c18c33  Kamel dump: make the command smarter
 add aead927  Fix golint finding

No new revisions were added by this update.

Summary of changes:
 pkg/cmd/util_compress.go | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)


[GitHub] [camel-quarkus] zbendhiba commented on issue #3488: Debezium mysql - passing additionalProperties results in wrong properties beeing passed

2022-01-27 Thread GitBox


zbendhiba commented on issue #3488:
URL: https://github.com/apache/camel-quarkus/issues/3488#issuecomment-1023076886


   Hello @Tarjei400 Can you give information about which camel-quarkus version 
are you using ?


-- 
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] squakez commented on a change in pull request #2952: Kamel dump: make the command smarter

2022-01-27 Thread GitBox


squakez commented on a change in pull request #2952:
URL: https://github.com/apache/camel-k/pull/2952#discussion_r793480624



##
File path: pkg/cmd/util_compress.go
##
@@ -0,0 +1,82 @@
+/*
+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 cmd

Review comment:
   Maybe we can move it in a more general package 
(https://github.com/apache/camel-k/tree/main/pkg/util), as we do for `gzip`




-- 
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 (9a1604d -> ed37e43)

2022-01-27 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 9a1604d  Regen for commit 92d37d4167e04f14dcbf2619024861f2f8d03f9b
 add ed37e43  Regen for commit 92d37d4167e04f14dcbf2619024861f2f8d03f9b 
(#6833)

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   (9a1604d)
\
 N -- N -- N   refs/heads/regen_bot (ed37e43)

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-website] branch asf-site updated (05e4116 -> 3744833)

2022-01-27 Thread git-site-role
This is an automated email from the ASF dual-hosted git repository.

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


 discard 05e4116  Website updated to 673308cd19415dd624aeb188d30bf1119cd25bcb
 discard fe8abbf  Website updated to 325e929157412b27394080f4d4dba3d821476ddf
 new 2e209fc  Website updated to 325e929157412b27394080f4d4dba3d821476ddf
 new 3744833  Website updated to 49676a47a01beef9868d951806abd17620b42346

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   (05e4116)
\
 N -- N -- N   refs/heads/asf-site (3744833)

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

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

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


Summary of changes:
 .htaccess  |   26 +-
 ...print-3.14.0.xsd => camel-blueprint-3.14.1.xsd} |0
 ...-cxf-spring.xsd => camel-cxf-3.14.1-spring.xsd} |0
 ...-3.9.0.xsd => camel-spring-security-3.14.1.xsd} |0
 ...-xml-3.14.0.xsd => camel-spring-xml-3.14.1.xsd} |0
 ...9.0.xsd => camel-spring-integration-3.14.1.xsd} |0
 site-manifest.json |2 +-
 sitemap-camel-k.xml| 1054 +--
 sitemap-camel-kafka-connector.xml  | 1706 ++---
 sitemap-camel-kamelets.xml | 1246 +--
 sitemap-camel-karaf.xml|   82 +-
 sitemap-camel-quarkus.xml  | 2774 +++
 sitemap-camel-spring-boot.xml  |   62 +-
 sitemap-components.xml | 7902 ++--
 sitemap-manual.xml |  386 +-
 15 files changed, 7620 insertions(+), 7620 deletions(-)
 copy schema/blueprint/{camel-blueprint-3.14.0.xsd => 
camel-blueprint-3.14.1.xsd} (100%)
 copy schema/cxf/{camel-cxf-spring.xsd => camel-cxf-3.14.1-spring.xsd} (100%)
 copy schema/spring-security/{camel-spring-security-3.9.0.xsd => 
camel-spring-security-3.14.1.xsd} (100%)
 copy schema/spring-xml/{camel-spring-xml-3.14.0.xsd => 
camel-spring-xml-3.14.1.xsd} (100%)
 copy schema/spring/integration/{camel-spring-integration-3.9.0.xsd => 
camel-spring-integration-3.14.1.xsd} (100%)


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

2022-01-27 Thread GitBox


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


   Regen bot :robot: found some uncommited changes after running build on 
:camel: camel-3.14.x.
   Please do not delete `regen_bot_3.14.x` branch after merge/rebase.


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

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

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




[camel] branch regen_bot_3.14.x updated (6497cda -> e003efc93)

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

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


from 6497cda  correcting documentation and test cases (#6832)
 add 551357d  [maven-release-plugin] prepare release camel-3.14.1
 add 34e19f6  [maven-release-plugin] prepare for next development iteration
 add 70e6acb  Merge branch 'release/3.14.1' into camel-3.14.x
 add e003efc93 Regen for commit 70e6acb9c6b656be26c2a314f4d23ba15b2b7f03

No new revisions were added by this update.

Summary of changes:
 apache-camel/pom.xml   |   2 +-
 archetypes/camel-archetype-api-component/pom.xml   |   2 +-
 archetypes/camel-archetype-cdi/pom.xml |   2 +-
 archetypes/camel-archetype-component/pom.xml   |   2 +-
 archetypes/camel-archetype-dataformat/pom.xml  |   2 +-
 archetypes/camel-archetype-endpointdsl/pom.xml |   2 +-
 archetypes/camel-archetype-java/pom.xml|   2 +-
 archetypes/camel-archetype-main/pom.xml|   2 +-
 archetypes/camel-archetype-spring/pom.xml  |   2 +-
 archetypes/pom.xml |   2 +-
 bom/camel-bom/pom.xml  |   2 +-
 bom/pom.xml|   2 +-
 buildingtools/pom.xml  |   2 +-
 camel-dependencies/pom.xml |   2 +-
 catalog/camel-catalog-lucene/pom.xml   |   2 +-
 catalog/camel-catalog-maven/pom.xml|   2 +-
 catalog/camel-catalog/pom.xml  |   2 +-
 .../camel/catalog/archetypes/archetype-catalog.xml |  16 +-
 .../apache/camel/catalog/components/activemq.json  |   2 +-
 .../apache/camel/catalog/components/ahc-ws.json|   2 +-
 .../apache/camel/catalog/components/ahc-wss.json   |   2 +-
 .../org/apache/camel/catalog/components/ahc.json   |   2 +-
 .../org/apache/camel/catalog/components/amqp.json  |   2 +-
 .../apache/camel/catalog/components/arangodb.json  |   2 +-
 .../org/apache/camel/catalog/components/as2.json   |   2 +-
 .../apache/camel/catalog/components/asterisk.json  |   2 +-
 .../apache/camel/catalog/components/atlasmap.json  |   2 +-
 .../org/apache/camel/catalog/components/atmos.json |   2 +-
 .../catalog/components/atmosphere-websocket.json   |   2 +-
 .../org/apache/camel/catalog/components/atom.json  |   2 +-
 .../camel/catalog/components/atomix-map.json   |   2 +-
 .../camel/catalog/components/atomix-messaging.json |   2 +-
 .../camel/catalog/components/atomix-multimap.json  |   2 +-
 .../camel/catalog/components/atomix-queue.json |   2 +-
 .../camel/catalog/components/atomix-set.json   |   2 +-
 .../camel/catalog/components/atomix-value.json |   2 +-
 .../org/apache/camel/catalog/components/avro.json  |   2 +-
 .../catalog/components/aws-secrets-manager.json|   2 +-
 .../camel/catalog/components/aws2-athena.json  |   2 +-
 .../apache/camel/catalog/components/aws2-cw.json   |   2 +-
 .../apache/camel/catalog/components/aws2-ddb.json  |   2 +-
 .../camel/catalog/components/aws2-ddbstream.json   |   2 +-
 .../apache/camel/catalog/components/aws2-ec2.json  |   2 +-
 .../apache/camel/catalog/components/aws2-ecs.json  |   2 +-
 .../apache/camel/catalog/components/aws2-eks.json  |   2 +-
 .../camel/catalog/components/aws2-eventbridge.json |   2 +-
 .../apache/camel/catalog/components/aws2-iam.json  |   2 +-
 .../catalog/components/aws2-kinesis-firehose.json  |   2 +-
 .../camel/catalog/components/aws2-kinesis.json |   2 +-
 .../apache/camel/catalog/components/aws2-kms.json  |   2 +-
 .../camel/catalog/components/aws2-lambda.json  |   2 +-
 .../apache/camel/catalog/components/aws2-mq.json   |   2 +-
 .../apache/camel/catalog/components/aws2-msk.json  |   2 +-
 .../apache/camel/catalog/components/aws2-s3.json   |   2 +-
 .../apache/camel/catalog/components/aws2-ses.json  |   2 +-
 .../apache/camel/catalog/components/aws2-sns.json  |   2 +-
 .../apache/camel/catalog/components/aws2-sqs.json  |   2 +-
 .../apache/camel/catalog/components/aws2-sts.json  |   2 +-
 .../camel/catalog/components/aws2-translate.json   |   2 +-
 .../camel/catalog/components/azure-cosmosdb.json   |   2 +-
 .../camel/catalog/components/azure-eventhubs.json  |   2 +-
 .../camel/catalog/components/azure-servicebus.json |   2 +-
 .../catalog/components/azure-storage-blob.json |   2 +-
 .../catalog/components/azure-storage-datalake.json |   2 +-
 .../catalog/components/azure-storage-queue.json|   2 +-
 .../camel/catalog/components/bean-validator.json   |   2 +-
 .../org/apache/camel/catalog/components/bean.json  |   2 +-
 .../apache/camel/catalog/components/beanstalk.json |   2 +-
 .../apache/camel/catalog/components/bonita.json|   2 +-
 .../org/apache/camel/catalog/components/box.json   |   2 +-
 .../apache/camel/catalog/components/braintree.json |   2 +-
 .../apache/camel/catalog/components/browse.json|   2

[GitHub] [camel-quarkus] zbendhiba commented on issue #3459: Camel 3.15 - Extensions for camel-knative and camel-cloudevents

2022-01-27 Thread GitBox


zbendhiba commented on issue #3459:
URL: https://github.com/apache/camel-quarkus/issues/3459#issuecomment-1023083468


   @davsclaus My understanding is that the workaround for native mode is 
already done in camel-k-runtime. And the idea is to port this here as 
extensions, right ?


-- 
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] orpiske opened a new pull request #6836: CAMEL-17284: upgrade Kafka clients to 3.1.0

2022-01-27 Thread GitBox


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


   


-- 
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] oscerd commented on a change in pull request #2952: Kamel dump: make the command smarter

2022-01-27 Thread GitBox


oscerd commented on a change in pull request #2952:
URL: https://github.com/apache/camel-k/pull/2952#discussion_r793487930



##
File path: pkg/cmd/util_compress.go
##
@@ -0,0 +1,82 @@
+/*
+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 cmd

Review comment:
   yup, sure




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

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

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




[camel-k] branch 2189 updated (aead927 -> 49f3c8d)

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

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


from aead927  Fix golint finding
 add 49f3c8d  Fix golint finding

No new revisions were added by this update.

Summary of changes:
 .golangci.yml| 1 -
 pkg/cmd/dump.go  | 8 
 pkg/cmd/util_compress.go | 4 ++--
 3 files changed, 6 insertions(+), 7 deletions(-)


[camel] branch regen_bot updated (ed37e43 -> e276ed4)

2022-01-27 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 ed37e43  Regen for commit 92d37d4167e04f14dcbf2619024861f2f8d03f9b 
(#6833)
 add e276ed4  Fix karaf features and also remove some google which cannot 
work in OSGi

No new revisions were added by this update.

Summary of changes:
 docs/user-manual/modules/ROOT/pages/camel-3x-upgrade-guide-3_15.adoc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)


[camel-k] branch 2189 updated (49f3c8d -> 3092211)

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

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


from 49f3c8d  Fix golint finding
 add 3092211  Fixed golint finding

No new revisions were added by this update.

Summary of changes:
 .golangci.yml| 2 --
 pkg/cmd/dump.go  | 5 ++---
 pkg/cmd/util_compress.go | 4 ++--
 3 files changed, 4 insertions(+), 7 deletions(-)


[GitHub] [camel-examples] essobedo opened a new pull request #60: CAMEL-11834: Add tests for main/main-endpointdsl/reactive-executor-vertx/route-throttling/main-health/main-joor/main-lambda/main-tiny/

2022-01-27 Thread GitBox


essobedo opened a new pull request #60:
URL: https://github.com/apache/camel-examples/pull/60


   ## Motivation
   
   Most of the Camel examples don't have any test such that they need to be 
launched manually to ensure that they still work which is not convenient.
   
   ## Modifications:
   
   * Override the method `isUseAdviceWith()` in all existing test class of type 
`CamelTestSupport` to avoid starting the context several times
   * Remove the file `src/main/data/foo.properties` from main-tiny example as 
it is not used
   * Fix the readme.doc (wording, grammar, out dated info, typos)
   * Add a build section in all readme.doc for consistency
   * Make the period of the timer configurable in the example main-joor to 
reduce the duration of the test 
   * Call `context.getInjector().newInstance(MyConfiguration.class)` in 
`postProcessTest` phase to load configuration class
   * Add the route built by `LambdaRouteBuilder` manually in the test as I 
could not find any better way
   * Load the XML and YAML routes using explicitly the 
`PackageScanResourceResolver` and `RoutesLoader` in the tests as I could not 
find any better way
   * Avoid calling explicitly `context.stop()` when the context is managed by a 
`try-with-resource` statement since it is already done on `close()`
   * Wrap `ClassPathXmlApplicationContext ` and `ProducerTemplate` in 
`try-with-resource` statement to avoid the need to call `close` explicitly
   * Remove useless namespace definitions


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

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

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




[camel-k] branch 2189 updated (3092211 -> e15d228)

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

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


from 3092211  Fixed golint finding
 add e15d228  Fixed goling findings

No new revisions were added by this update.

Summary of changes:
 .golangci.yml | 2 ++
 1 file changed, 2 insertions(+)


[camel-website] branch asf-site updated (3744833 -> 49c2643)

2022-01-27 Thread git-site-role
This is an automated email from the ASF dual-hosted git repository.

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


 discard 3744833  Website updated to 49676a47a01beef9868d951806abd17620b42346
 discard 2e209fc  Website updated to 325e929157412b27394080f4d4dba3d821476ddf
 new cfc5eb0  Website updated to 325e929157412b27394080f4d4dba3d821476ddf
 new 49c2643  Website updated to c85a18cac82d75a1eed504e6ab7d0be1160620cd

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   (3744833)
\
 N -- N -- N   refs/heads/asf-site (49c2643)

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

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

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


Summary of changes:
 .htaccess  |   16 +-
 .../01/RELEASE-3.14.1}/featured.jpeg   |  Bin
 ...c68bd9be1_625206_800x0_resize_q95_gaussian.jpeg |  Bin
 .../01/RELEASE-3.14.1}/index.html  |2 +-
 blog/2022/01/camel-k-release-1-8/index.html|2 +-
 blog/index.html|2 +-
 blog/index.xml |   15 +-
 blog/page/10/index.html|2 +-
 blog/page/11/index.html|2 +-
 blog/page/12/index.html|2 +-
 blog/page/13/index.html|2 +-
 blog/page/14/index.html|2 +-
 blog/page/15/index.html|2 +-
 blog/page/16/index.html|2 +-
 blog/page/17/index.html|2 +-
 blog/page/18/index.html|2 +-
 blog/page/19/index.html|2 +-
 blog/page/2/index.html |2 +-
 blog/page/20/index.html|2 +-
 blog/page/21/index.html|2 +-
 blog/page/22/index.html|2 +-
 blog/page/23/index.html|2 +-
 blog/page/24/index.html|2 +-
 blog/page/25/index.html|2 +-
 blog/page/26/index.html|2 +-
 blog/page/27/index.html|2 +-
 blog/page/28/index.html|2 +-
 blog/page/29/index.html|2 +-
 blog/page/3/index.html |2 +-
 blog/page/30/index.html|2 +-
 blog/page/31/index.html|2 +-
 blog/page/32/index.html|2 +-
 blog/page/33/index.html|2 +-
 blog/page/34/index.html|2 +-
 blog/page/35/index.html|2 +-
 blog/page/36/index.html|2 +-
 blog/page/37/index.html|2 +-
 blog/page/38/index.html|2 +-
 blog/page/39/index.html|2 +-
 blog/page/4/index.html |2 +-
 blog/page/40/index.html|2 +-
 blog/page/41/index.html|2 +-
 blog/page/42/index.html|2 +-
 blog/page/43/index.html|2 +-
 blog/page/44/index.html|2 +-
 blog/page/45/index.html|2 +-
 blog/page/46/index.html|2 +-
 blog/page/47/index.html|2 +-
 blog/page/48/index.html|2 +-
 blog/page/49/index.html|2 +-
 blog/page/5/index.html |2 +-
 blog/page/50/index.html|2 +-
 blog/page/51/index.html|2 +-
 blog/page/52/index.html|2 +-
 blog/page/53/index.html|2 +-
 blog/page/6/index.html |2 +-
 blog/page/7/index.html |2 +-
 blog/page/8/index.htm

[GitHub] [camel-quarkus] Tarjei400 commented on issue #3488: Debezium mysql - passing additionalProperties results in wrong properties beeing passed

2022-01-27 Thread GitBox


Tarjei400 commented on issue #3488:
URL: https://github.com/apache/camel-quarkus/issues/3488#issuecomment-1023099496


   Sorry, I am using version 2.6.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




[camel-k] branch 2189 updated (e15d228 -> 8a9b36d)

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

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


from e15d228  Fixed goling findings
 add 8a9b36d  Fix findings for golint

No new revisions were added by this update.

Summary of changes:
 pkg/cmd/util_compress.go | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)


[camel] branch regen_bot updated (e276ed4 -> c021916)

2022-01-27 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 e276ed4  Fix karaf features and also remove some google which cannot 
work in OSGi
 add 13efef6  CAMEL-17398: Include core/dsl in catalog
 add c021916  CAMEL-17398: Include core/dsl in catalog

No new revisions were added by this update.

Summary of changes:
 .../generated/resources/org/apache/camel/catalog/others.properties| 2 ++
 .../resources/org/apache/camel/catalog/others}/groovy-dsl.json| 0
 .../resources/org/apache/camel/catalog/others}/yaml-dsl.json  | 0
 .../src/main/java/org/apache/camel/maven/packaging/MojoHelper.java| 4 
 .../java/org/apache/camel/maven/packaging/PrepareCatalogMojo.java | 2 +-
 5 files changed, 7 insertions(+), 1 deletion(-)
 copy {dsl/camel-groovy-dsl/camel-groovy-dsl/src/generated/resources => 
catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/others}/groovy-dsl.json
 (100%)
 copy {dsl/camel-yaml-dsl/camel-yaml-dsl/src/generated/resources => 
catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/others}/yaml-dsl.json
 (100%)


[camel-k] branch 2189 updated (8a9b36d -> f161522)

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

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


 discard 8a9b36d  Fix findings for golint
 discard e15d228  Fixed goling findings
 discard 3092211  Fixed golint finding
 discard 49f3c8d  Fix golint finding
 discard aead927  Fix golint finding
 discard 7c18c33  Kamel dump: make the command smarter
 discard cfff11e  Smarter dump
 add f161522  Kamel dump: make the command smarter

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   (8a9b36d)
\
 N -- N -- N   refs/heads/2189 (f161522)

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:
 pkg/cmd/dump.go| 9 ++---
 pkg/{cmd => util/tar}/util_compress.go | 2 +-
 2 files changed, 7 insertions(+), 4 deletions(-)
 rename pkg/{cmd => util/tar}/util_compress.go (99%)


[GitHub] [camel-quarkus] ppalaga opened a new issue #3498: Upgrade to H2 2.x

2022-01-27 Thread GitBox


ppalaga opened a new issue #3498:
URL: https://github.com/apache/camel-quarkus/issues/3498


   @gsmet asked us through various channels to try how well we can live with H2 
2.x. They'd like to upgrade in Quarkus 2.8
   
   We need to try the newest 2.x release 
https://mvnrepository.com/artifact/com.h2database/h2


-- 
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 opened a new pull request #3499: [2.2.x] CVE-2020-8908 guava: local information disclosure via temporary direc…

2022-01-27 Thread GitBox


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


   …tory created with unsafe permissions #3494
   


-- 
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] gsmet commented on issue #3498: Upgrade to H2 2.x

2022-01-27 Thread GitBox


gsmet commented on issue #3498:
URL: https://github.com/apache/camel-quarkus/issues/3498#issuecomment-1023123882


   Just to be clear: it's a coordinated effort, we don't want it to become a 
problem. So let's evaluate and see what needs fixing and then let's discuss it.


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

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

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




[camel-k] branch 2189 updated (f161522 -> 5f41ff1)

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

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


omit f161522  Kamel dump: make the command smarter
 add 5f41ff1  Kamel dump: make the command smarter

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   (f161522)
\
 N -- N -- N   refs/heads/2189 (5f41ff1)

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:
 .golangci.yml | 1 +
 pkg/cmd/dump.go   | 4 ++--
 pkg/util/tar/util_compress.go | 2 +-
 3 files changed, 4 insertions(+), 3 deletions(-)


[GitHub] [camel-quarkus] aldettinger opened a new pull request #3500: Removed the deprecated @BuildTimeAvroDataFormat annotation #2791

2022-01-27 Thread GitBox


aldettinger opened a new pull request #3500:
URL: https://github.com/apache/camel-quarkus/pull/3500


   


-- 
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] aldettinger commented on pull request #3500: Removed the deprecated @BuildTimeAvroDataFormat annotation #2791

2022-01-27 Thread GitBox


aldettinger commented on pull request #3500:
URL: https://github.com/apache/camel-quarkus/pull/3500#issuecomment-1023130143


   I wonder whether it's a right spot to remove the deprecated 
@BuildTimeAvroDataFormat annotation ?
   
   @ppalaga @jamesnetherton What do you think ?


-- 
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] hokutor opened a new pull request #6837: Camel 17321: Add HuaweiCloud FaceRecognitionService(FRS) Component

2022-01-27 Thread GitBox


hokutor opened a new pull request #6837:
URL: https://github.com/apache/camel/pull/6837


   Add HuaweiCloud FaceRecognitionService(FRS) Component


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

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

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




  1   2   3   >