[GitHub] [camel-kamelets] oscerd closed issue #63: Add Quartz source kamelet

2022-05-23 Thread GitBox


oscerd closed issue #63: Add Quartz source kamelet
URL: https://github.com/apache/camel-kamelets/issues/63


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

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

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



[camel] branch main updated: CAMEL-18139: camel-jbang - Run from clipboard does not work for java

2022-05-23 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 dce91e64366 CAMEL-18139: camel-jbang - Run from clipboard does not 
work for java
dce91e64366 is described below

commit dce91e6436669552a806409c3482b93be80dda7a
Author: Claus Ibsen 
AuthorDate: Tue May 24 07:32:40 2022 +0200

CAMEL-18139: camel-jbang - Run from clipboard does not work for java
---
 .../apache/camel/dsl/jbang/core/commands/Run.java  | 32 ++
 1 file changed, 32 insertions(+)

diff --git 
a/dsl/camel-jbang/camel-jbang-core/src/main/java/org/apache/camel/dsl/jbang/core/commands/Run.java
 
b/dsl/camel-jbang/camel-jbang-core/src/main/java/org/apache/camel/dsl/jbang/core/commands/Run.java
index 8576f6cd5d5..cb8a66d406c 100644
--- 
a/dsl/camel-jbang/camel-jbang-core/src/main/java/org/apache/camel/dsl/jbang/core/commands/Run.java
+++ 
b/dsl/camel-jbang/camel-jbang-core/src/main/java/org/apache/camel/dsl/jbang/core/commands/Run.java
@@ -40,6 +40,8 @@ import java.util.concurrent.Executors;
 import java.util.concurrent.ScheduledExecutorService;
 import java.util.concurrent.TimeUnit;
 import java.util.function.Supplier;
+import java.util.regex.Matcher;
+import java.util.regex.Pattern;
 
 import com.fasterxml.jackson.databind.JsonNode;
 import com.fasterxml.jackson.databind.ObjectMapper;
@@ -78,6 +80,12 @@ class Run extends CamelCommand {
 private static final String OPENAPI_GENERATED_FILE = 
".camel-jbang/generated-openapi.yaml";
 private static final String CLIPBOARD_GENERATED_FILE = 
".camel-jbang/generated-clipboard";
 
+private static final Pattern PACKAGE_PATTERN = Pattern.compile(
+"^\\s*package\\s+([a-zA-Z][\\.\\w]*)\\s*;.*$", Pattern.MULTILINE);
+
+private static final Pattern CLASS_PATTERN = Pattern.compile(
+"^\\s*public class\\s+([a-zA-Z0-9]*)[\\s+|;].*$", 
Pattern.MULTILINE);
+
 private CamelContext context;
 private File lockFile;
 private ScheduledExecutorService executor;
@@ -596,6 +604,14 @@ class Run extends CamelCommand {
 Object t = c.getData(DataFlavor.stringFlavor);
 if (t != null) {
 String fn = CLIPBOARD_GENERATED_FILE + "." + ext;
+if ("java".equals(ext)) {
+String fqn = determineClassName(t.toString());
+if (fqn == null) {
+throw new IllegalArgumentException(
+"Cannot determine the Java class name from the 
source in the clipboard");
+}
+fn = fqn + ".java";
+}
 Files.write(Paths.get(fn), 
t.toString().getBytes(StandardCharsets.UTF_8));
 file = "file:" + fn;
 }
@@ -761,4 +777,20 @@ class Run extends CamelCommand {
 }
 }
 
+private static String determineClassName(String content) {
+Matcher matcher = PACKAGE_PATTERN.matcher(content);
+String pn = matcher.find() ? matcher.group(1) : null;
+
+matcher = CLASS_PATTERN.matcher(content);
+String cn = matcher.find() ? matcher.group(1) : null;
+
+String fqn;
+if (pn != null) {
+fqn = pn + "." + cn;
+} else {
+fqn = cn;
+}
+return fqn;
+}
+
 }



[GitHub] [camel-k] haanhvu commented on issue #3211: Add e2e test for kamel run --dev in a warmed-up environment

2022-05-23 Thread GitBox


haanhvu commented on issue #3211:
URL: https://github.com/apache/camel-k/issues/3211#issuecomment-1135423513

   > @haanhvu Are you still working on this? Is there any help we can provide 
for you? If you don't have time to work on it now, I can take it over.
   
   yes please


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

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

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



[GitHub] [camel-karavan] guoxunbo commented on issue #321: Create a NPM package

2022-05-23 Thread GitBox


guoxunbo commented on issue #321:
URL: https://github.com/apache/camel-karavan/issues/321#issuecomment-1135419985

   Yes. I alse had this requirement. 
   It will be very nice if Karavan is available as npm package. 
   Looking forward for it very much.


-- 
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: Create an Azure Key Vault Extension

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

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


The following commit(s) were added to refs/heads/main by this push:
 new 1b158916bd Create an Azure Key Vault Extension
1b158916bd is described below

commit 1b158916bd6359db4dd1684f03a9303930756c3e
Author: Andrea Cosentino 
AuthorDate: Mon May 23 18:41:08 2022 +0200

Create an Azure Key Vault Extension
---
 catalog/pom.xml|  13 +++
 .../ROOT/examples/components/azure-key-vault.yml   |  13 +++
 docs/modules/ROOT/nav.adoc |   1 +
 .../reference/extensions/azure-key-vault.adoc  |  35 +++
 .../camel/quarkus/core/FastCamelContext.java   |   2 +-
 extensions-jvm/azure-key-vault/deployment/pom.xml  |  63 +
 .../vault/deployment/AzureKeyVaultProcessor.java   |  46 +
 extensions-jvm/azure-key-vault/pom.xml |  39 
 extensions-jvm/azure-key-vault/runtime/pom.xml | 100 
 .../main/resources/META-INF/quarkus-extension.yaml |  32 +++
 extensions-jvm/pom.xml |   1 +
 integration-tests-jvm/azure-key-vault/pom.xml  | 103 +
 .../azure/key/vault/it/AzureKeyVaultResource.java  |  51 ++
 .../azure/key/vault/it/AzureKeyVaultTest.java  |  34 +++
 integration-tests-jvm/pom.xml  |   1 +
 integration-tests/compression-grouped/pom.xml  |  10 +-
 poms/bom/pom.xml   |  15 +++
 poms/bom/src/main/generated/flattened-full-pom.xml |  15 +++
 .../src/main/generated/flattened-reduced-pom.xml   |  20 
 .../generated/flattened-reduced-verbose-pom.xml|  20 
 20 files changed, 608 insertions(+), 6 deletions(-)

diff --git a/catalog/pom.xml b/catalog/pom.xml
index 15c575e152..635b7ba2e8 100644
--- a/catalog/pom.xml
+++ b/catalog/pom.xml
@@ -539,6 +539,19 @@
 
 
 
+
+org.apache.camel.quarkus
+camel-quarkus-azure-key-vault
+${project.version}
+pom
+test
+
+
+*
+*
+
+
+
 
 org.apache.camel.quarkus
 camel-quarkus-azure-servicebus
diff --git a/docs/modules/ROOT/examples/components/azure-key-vault.yml 
b/docs/modules/ROOT/examples/components/azure-key-vault.yml
new file mode 100644
index 00..d958b4acd3
--- /dev/null
+++ b/docs/modules/ROOT/examples/components/azure-key-vault.yml
@@ -0,0 +1,13 @@
+# Do not edit directly!
+# This file was generated by 
camel-quarkus-maven-plugin:update-extension-doc-page
+cqArtifactId: camel-quarkus-azure-key-vault
+cqArtifactIdBase: azure-key-vault
+cqNativeSupported: false
+cqStatus: Preview
+cqDeprecated: false
+cqJvmSince: 2.10.0
+cqNativeSince: n/a
+cqCamelPartName: azure-key-vault
+cqCamelPartTitle: Azure Key Vault
+cqCamelPartDescription: Manage secrets and keys in Azure Key Vault Service
+cqExtensionPageTitle: Azure Key Vault
diff --git a/docs/modules/ROOT/nav.adoc b/docs/modules/ROOT/nav.adoc
index 247a6ff382..05380b3c99 100644
--- a/docs/modules/ROOT/nav.adoc
+++ b/docs/modules/ROOT/nav.adoc
@@ -60,6 +60,7 @@
 *** xref:reference/extensions/avro-rpc.adoc[Avro RPC]
 *** xref:reference/extensions/azure-cosmosdb.adoc[Azure CosmosDB]
 *** xref:reference/extensions/azure-eventhubs.adoc[Azure Event Hubs]
+*** xref:reference/extensions/azure-key-vault.adoc[Azure Key Vault]
 *** xref:reference/extensions/azure-servicebus.adoc[Azure ServiceBus]
 *** xref:reference/extensions/azure-storage-blob.adoc[Azure Storage Blob 
Service]
 *** xref:reference/extensions/azure-storage-queue.adoc[Azure Storage Queue 
Service]
diff --git a/docs/modules/ROOT/pages/reference/extensions/azure-key-vault.adoc 
b/docs/modules/ROOT/pages/reference/extensions/azure-key-vault.adoc
new file mode 100644
index 00..7e0915b2d1
--- /dev/null
+++ b/docs/modules/ROOT/pages/reference/extensions/azure-key-vault.adoc
@@ -0,0 +1,35 @@
+// Do not edit directly!
+// This file was generated by 
camel-quarkus-maven-plugin:update-extension-doc-page
+= Azure Key Vault
+:linkattrs:
+:cq-artifact-id: camel-quarkus-azure-key-vault
+:cq-native-supported: false
+:cq-status: Preview
+:cq-status-deprecation: Preview
+:cq-description: Manage secrets and keys in Azure Key Vault Service
+:cq-deprecated: false
+:cq-jvm-since: 2.10.0
+:cq-native-since: n/a
+
+[.badges]
+[.badge-key]##JVM since##[.badge-supported]##2.10.0## 
[.badge-key]##Native##[.badge-unsupported]##unsupported##
+
+Manage secrets and keys in Azure Key Vault Service
+
+== What's inside
+
+* xref:{cq-camel-components}::azure-key-vault-component.adoc[Azure Key Vault 
component], URI syntax: `azure-key-vault:vaultName`
+
+Please refer to the above link for usage and configuration details.
+
+== Maven 

[GitHub] [camel-quarkus] oscerd merged pull request #3806: Create an Azure Key Vault Extension

2022-05-23 Thread GitBox


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


-- 
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] oscerd closed issue #3688: Create an Azure Key Vault Extension

2022-05-23 Thread GitBox


oscerd closed issue #3688: Create an Azure Key Vault Extension
URL: https://github.com/apache/camel-quarkus/issues/3688


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

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

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



[camel-kamelets] branch 0.8.x updated: Upgrade to Camel K 1.9.2 in the docs refs

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

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


The following commit(s) were added to refs/heads/0.8.x by this push:
 new fb553a5c Upgrade to Camel K 1.9.2 in the docs refs
fb553a5c is described below

commit fb553a5cb2c70eb7bbff19959c57182608641e07
Author: Andrea Cosentino 
AuthorDate: Mon May 23 14:20:30 2022 +0200

Upgrade to Camel K 1.9.2 in the docs refs
---
 docs/antora.yml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/docs/antora.yml b/docs/antora.yml
index c8d6ca96..0e999e74 100644
--- a/docs/antora.yml
+++ b/docs/antora.yml
@@ -27,7 +27,7 @@ asciidoc:
 requires: "'util=camel-website-util,kamelets=xref:js/kamelets.js'"
 # Update to appropriate released camel-k version on release
 version-used: true
-camel-k-version: 1.9.1
+camel-k-version: 1.9.2
 camel-k-docs-version: 1.9.x
 #camel-kafka-connector-version: none
 #camel-kafka-connector-docs-version: none



[GitHub] [camel-kamelets] oscerd merged pull request #937: Upgrade to Camel K 1.9.2 in the docs refs

2022-05-23 Thread GitBox


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


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

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

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



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

2022-05-23 Thread GitBox


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

   The [camel-main](https://github.com/apache/camel-quarkus/tree/camel-main) 
branch build has failed:
   
   * Build ID: 2374673124-657-00ab1342-40d6-4447-bdd0-b68ca6440d47
   * Camel Quarkus Commit: 576883467ba32a2fada75e26a5e9f32f0abbde39
   
   * Camel Main Commit: 5186a6f51ff05880ff22057710cf6b60f5683647
   * Link to build: 
https://github.com/apache/camel-quarkus/actions/runs/2374673124


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

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

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



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

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

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


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

commit c2bf48213cf4d2c35e9d2977ca8992eef44ed8cd
Author: github-actions[bot] 
<41898282+github-actions[bot]@users.noreply.github.com>
AuthorDate: Tue May 24 03:37:16 2022 +

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

diff --git a/CHANGELOG.md b/CHANGELOG.md
index 92659ad21b..5590f487b2 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -13,9 +13,11 @@
 - Changes in health endpoint with camel from Quarkus version 2.7.5 to version 
\>=2.8.0 [\#3799](https://github.com/apache/camel-quarkus/issues/3799)
 - Improve camel-quarkus-velocity test coverage 
[\#3790](https://github.com/apache/camel-quarkus/issues/3790)
 - Switch from OpenTracing to OpenTelemetry in observability example 
[\#3784](https://github.com/apache/camel-quarkus/issues/3784)
+- Support camel-debug component 
[\#3775](https://github.com/apache/camel-quarkus/issues/3775)
 - \[Camel 3.17.0\] Restore `jakarta-mail-version` placeholder in 
`jakarta.mail.version` property 
[\#3771](https://github.com/apache/camel-quarkus/issues/3771)
 - URL to the Kafka brokers must be configured with the brokers option in 
native mode \(continued\) 
[\#3742](https://github.com/apache/camel-quarkus/issues/3742)
 - \[Camel 3.17.0\] Property placeholder resolution is broken 
[\#3739](https://github.com/apache/camel-quarkus/issues/3739)
+- Use WireMock for xchange tests 
[\#3724](https://github.com/apache/camel-quarkus/issues/3724)
 - \[Camel 3.17.0\] Switch FTP / JSCH extensions to `com.github.mwiede:jsch` 
[\#3711](https://github.com/apache/camel-quarkus/issues/3711)
 - Gracefully handle `AnnotationInstance` being null in 
`InjectionPointsProcessor.syntheticBeans` 
[\#3703](https://github.com/apache/camel-quarkus/issues/3703)
 - Remove deprecated extensions 
[\#3698](https://github.com/apache/camel-quarkus/issues/3698)
@@ -38,6 +40,9 @@
 
 **Merged pull requests:**
 
+- Use WireMock for xchange tests 
[\#3802](https://github.com/apache/camel-quarkus/pull/3802) 
([jamesnetherton](https://github.com/jamesnetherton))
+- Add migration guide for the 2.10.0 release 
[\#3801](https://github.com/apache/camel-quarkus/pull/3801) 
([jamesnetherton](https://github.com/jamesnetherton))
+- Add debug JVM only extension 
[\#3800](https://github.com/apache/camel-quarkus/pull/3800) 
([jamesnetherton](https://github.com/jamesnetherton))
 - Upgrade Google Cloud Native Image Support to 0.14.1 
[\#3796](https://github.com/apache/camel-quarkus/pull/3796) 
([jamesnetherton](https://github.com/jamesnetherton))
 - Exclude unwanted Apache Commons dependencies from 
hapi-fhir-structures-dstu2.1 
[\#3794](https://github.com/apache/camel-quarkus/pull/3794) 
([jamesnetherton](https://github.com/jamesnetherton))
 - Improve camel-quarkus-velocity test coverage \#3790 
[\#3793](https://github.com/apache/camel-quarkus/pull/3793) 
([JiriOndrusek](https://github.com/JiriOndrusek))



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

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

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


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

commit b28889e7fb286ebcfb63f7fcbc94cff80b56a157
Author: github-actions[bot] 
<41898282+github-actions[bot]@users.noreply.github.com>
AuthorDate: Tue May 24 03:31:44 2022 +

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

diff --git a/CHANGELOG.md b/CHANGELOG.md
index 2bc67220..729d4433 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -12,6 +12,7 @@
 **Merged pull requests:**
 
 - build\(deps\): bump versions-maven-plugin from 2.10.0 to 2.11.0 
[\#824](https://github.com/apache/camel-k-runtime/pull/824) 
([dependabot[bot]](https://github.com/apps/dependabot))
+- chore\(dependencies\): 1.14.0 new release cycle 
[\#823](https://github.com/apache/camel-k-runtime/pull/823) 
([squakez](https://github.com/squakez))
 - Improve error message during ErrorHander building validation 
[\#822](https://github.com/apache/camel-k-runtime/pull/822) 
([lburgazzoli](https://github.com/lburgazzoli))
 - build\(deps\): bump maven-failsafe-plugin from 3.0.0-M5 to 3.0.0-M6 
[\#821](https://github.com/apache/camel-k-runtime/pull/821) 
([dependabot[bot]](https://github.com/apps/dependabot))
 - build\(deps\): bump maven-clean-plugin from 3.1.0 to 3.2.0 
[\#817](https://github.com/apache/camel-k-runtime/pull/817) 
([dependabot[bot]](https://github.com/apps/dependabot))



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

2022-05-23 Thread GitBox


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

   The 
[quarkus-main](https://github.com/apache/camel-quarkus/tree/quarkus-main) 
branch build has failed:
   
   * Build ID: 2375132505-761-36e83022-ed84-4caf-a7c3-08169bfbb179
   * Camel Quarkus Commit: ff34457cafcae88c3fb1940e07ab73789da6a557
   
   * Quarkus Main Commit: Unknown
   * Link to build: 
https://github.com/apache/camel-quarkus/actions/runs/2375132505


-- 
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] github-actions[bot] commented on issue #2965: Modify e2e tests so that if failed the tests is repeated in a new namespace

2022-05-23 Thread GitBox


github-actions[bot] commented on issue #2965:
URL: https://github.com/apache/camel-k/issues/2965#issuecomment-1135265683

   This issue has been automatically marked as stale due to 90 days of 
inactivity. 
   It will be closed if no further activity occurs within 15 days.
   If you think that’s incorrect or the issue should never stale, please simply 
write any comment.
   Thanks for your contributions!


-- 
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] github-actions[bot] commented on issue #2996: Improve message error when IntegrationPlatform failure

2022-05-23 Thread GitBox


github-actions[bot] commented on issue #2996:
URL: https://github.com/apache/camel-k/issues/2996#issuecomment-1135265668

   This issue has been automatically marked as stale due to 90 days of 
inactivity. 
   It will be closed if no further activity occurs within 15 days.
   If you think that’s incorrect or the issue should never stale, please simply 
write any comment.
   Thanks for your contributions!


-- 
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] ammachado commented on issue #3295: Run without source code

2022-05-23 Thread GitBox


ammachado commented on issue #3295:
URL: https://github.com/apache/camel-k/issues/3295#issuecomment-1135226523

   I think a better implementation what I was talking about is in #334


-- 
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] ammachado opened a new issue, #3295: Run without source code

2022-05-23 Thread GitBox


ammachado opened a new issue, #3295:
URL: https://github.com/apache/camel-k/issues/3295

   Is it possible to run integrations contained in a JAR file, without having 
to specify which source files will be used? Or pull a Maven dependency and run 
every route on 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.apache.org

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



[GitHub] [camel] Ozymandy commented on pull request #7666: [CAMEL-18137] Ability to pass sharded key to upsert query in mongo component

2022-05-23 Thread GitBox


Ozymandy commented on PR #7666:
URL: https://github.com/apache/camel/pull/7666#issuecomment-1135145262

   @davsclaus Sure, all tests are green at my local environment


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

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

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



[camel-quarkus] branch main updated: Add migration guide for the 2.10.0 release

2022-05-23 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 5186a6f51f Add migration guide for the 2.10.0 release
5186a6f51f is described below

commit 5186a6f51ff05880ff22057710cf6b60f5683647
Author: James Netherton 
AuthorDate: Mon May 23 09:32:02 2022 +0100

Add migration guide for the 2.10.0 release
---
 .../modules/ROOT/pages/migration-guide/2.10.0.adoc | 28 ++
 docs/modules/ROOT/pages/migration-guide/index.adoc |  1 +
 2 files changed, 29 insertions(+)

diff --git a/docs/modules/ROOT/pages/migration-guide/2.10.0.adoc 
b/docs/modules/ROOT/pages/migration-guide/2.10.0.adoc
new file mode 100644
index 00..975ccaa0c8
--- /dev/null
+++ b/docs/modules/ROOT/pages/migration-guide/2.10.0.adoc
@@ -0,0 +1,28 @@
+= Camel Quarkus 2.10.0 Migration Guide
+
+The following guide outlines how to adapt your code to changes that were made 
in Camel Quarkus 2.10.0 & Quarkus 2.10.0.Final.
+
+== Removal of deprecated extensions
+
+The following deprecated extensions were removed in this release.
+
+* camel-ahc
+* camel-ahc-ws
+* camel-atomix
+* camel-beanstalk
+* camel-beanio
+* camel-etcd
+* camel-elsql
+* camel-ganglia
+* camel-nsq
+* camel-hystrix
+* camel-jing
+* camel-msv
+* camel-nagios
+* camel-nsq
+* camel-ribbon
+* camel-sip
+* camel-soroush
+* camel-spark
+* camel-tagsoup
+* camel-yammer
diff --git a/docs/modules/ROOT/pages/migration-guide/index.adoc 
b/docs/modules/ROOT/pages/migration-guide/index.adoc
index aae2d13786..8786e8b4ba 100644
--- a/docs/modules/ROOT/pages/migration-guide/index.adoc
+++ b/docs/modules/ROOT/pages/migration-guide/index.adoc
@@ -4,6 +4,7 @@ We do frequent releases, a release almost every month, and even 
though we strive
 
 Listed here are guides on how to migrate between major versions and anything 
of significance to watch for when upgrading from minor versions.
 
+* xref:migration-guide/2.10.0.adoc[Camel Quarkus 2.9.0 to Camel Quarkus 2.10.0 
migration guide]
 * xref:migration-guide/2.8.0.adoc[Camel Quarkus 2.7.0 to Camel Quarkus 2.8.0 
migration guide]
 * xref:migration-guide/2.7.0.adoc[Camel Quarkus 2.6.0 to Camel Quarkus 2.7.0 
migration guide]
 * xref:migration-guide/2.6.0.adoc[Camel Quarkus 2.5.0 to Camel Quarkus 2.6.0 
migration guide]



[GitHub] [camel-quarkus] jamesnetherton merged pull request #3801: Add migration guide for the 2.10.0 release

2022-05-23 Thread GitBox


jamesnetherton merged PR #3801:
URL: https://github.com/apache/camel-quarkus/pull/3801


-- 
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: Use WireMock for xchange tests

2022-05-23 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 d465a84e9f Use WireMock for xchange tests
d465a84e9f is described below

commit d465a84e9f9faf0bd74becb74bf542906543e1b1
Author: James Netherton 
AuthorDate: Mon May 23 11:18:28 2022 +0100

Use WireMock for xchange tests

Fixes #3724
---
 integration-tests/xchange/README.adoc  | 18 
 integration-tests/xchange/pom.xml  |  4 ++
 .../component/xchange/it/XchangeResource.java  | 49 +++---
 .../xchange/it/XchangeBinanceTestResource.java | 45 
 .../xchange/it/XchangeKrakenTestResource.java  | 45 
 .../quarkus/component/xchange/it/XchangeTest.java  |  6 ++-
 ...pairs-3a81de1f-2691-412e-8896-3bac2239f07d.json |  1 +
 ...ssets-23a47848-dae8-4bdb-9ac7-851012c5b102.json |  1 +
 ...einfo-41fc7d67-259d-4bf2-944d-8a00f9c2370a.json |  1 +
 ...pairs-3a81de1f-2691-412e-8896-3bac2239f07d.json | 29 +
 ...ssets-23a47848-dae8-4bdb-9ac7-851012c5b102.json | 29 +
 ...icker-9b4fb7b4-081c-4965-beae-7a5d5c9869e9.json | 29 +
 ...einfo-41fc7d67-259d-4bf2-944d-8a00f9c2370a.json | 38 +
 ..._24hr-32b9aee3-92c1-45ac-af48-7fd4b7f67da9.json | 38 +
 14 files changed, 326 insertions(+), 7 deletions(-)

diff --git a/integration-tests/xchange/README.adoc 
b/integration-tests/xchange/README.adoc
new file mode 100644
index 00..ef18b63bcf
--- /dev/null
+++ b/integration-tests/xchange/README.adoc
@@ -0,0 +1,18 @@
+== Camel Quarkus XChange Integration Tests
+
+By default the XChange integration tests use WireMock to stub the API 
interactions.
+
+To run the `camel-quarkus-xchange` integration tests against the real APIs, 
you can set the following environment variable:
+
+[source,shell]
+
+export CAMEL_QUARKUS_START_MOCK_BACKEND=false
+
+
+If the WireMock stub recordings need updating, then remove the existing files 
from `src/test/resources/mappings` and run tests with either:
+
+System property `-Dwiremock.record=true`
+
+Or
+
+Set environment variable `WIREMOCK_RECORD=true`
diff --git a/integration-tests/xchange/pom.xml 
b/integration-tests/xchange/pom.xml
index 48b26000aa..52a7b64f0f 100644
--- a/integration-tests/xchange/pom.xml
+++ b/integration-tests/xchange/pom.xml
@@ -61,6 +61,10 @@
 rest-assured
 test
 
+
+org.apache.camel.quarkus
+camel-quarkus-integration-wiremock-support
+
 
 
 
diff --git 
a/integration-tests/xchange/src/main/java/org/apache/camel/quarkus/component/xchange/it/XchangeResource.java
 
b/integration-tests/xchange/src/main/java/org/apache/camel/quarkus/component/xchange/it/XchangeResource.java
index e79642b6d8..4203de4185 100644
--- 
a/integration-tests/xchange/src/main/java/org/apache/camel/quarkus/component/xchange/it/XchangeResource.java
+++ 
b/integration-tests/xchange/src/main/java/org/apache/camel/quarkus/component/xchange/it/XchangeResource.java
@@ -16,7 +16,9 @@
  */
 package org.apache.camel.quarkus.component.xchange.it;
 
+import java.net.URI;
 import java.util.List;
+import java.util.Optional;
 
 import javax.enterprise.context.ApplicationScoped;
 import javax.inject.Inject;
@@ -33,17 +35,26 @@ import javax.ws.rs.core.MediaType;
 
 import org.apache.camel.ProducerTemplate;
 import org.apache.camel.component.xchange.XChangeComponent;
+import org.apache.camel.spi.annotations.Component;
+import org.eclipse.microprofile.config.Config;
+import org.eclipse.microprofile.config.ConfigProvider;
+import org.knowm.xchange.Exchange;
+import org.knowm.xchange.ExchangeFactory;
+import org.knowm.xchange.ExchangeSpecification;
+import org.knowm.xchange.binance.BinanceExchange;
 import org.knowm.xchange.currency.Currency;
 import org.knowm.xchange.currency.CurrencyPair;
 import org.knowm.xchange.dto.marketdata.Ticker;
 import org.knowm.xchange.dto.meta.CurrencyMetaData;
 import org.knowm.xchange.dto.meta.CurrencyPairMetaData;
+import org.knowm.xchange.kraken.KrakenExchange;
 
 @Path("/xchange")
 @ApplicationScoped
 public class XchangeResource {
 
 public static final String DEFAULT_CRYPTO_EXCHANGE = "binance";
+public static final String ALTERNATIVE_CRYPTO_EXCHANGE = "kraken";
 
 @Inject
 ProducerTemplate producerTemplate;
@@ -55,10 +66,8 @@ public class XchangeResource {
 @PathParam("exchange") String cryptoExchange,
 @QueryParam("currencyPair") String currencyPair) {
 
-String component = cryptoExchange.equals(DEFAULT_CRYPTO_EXCHANGE) ? 
"xchange" : "xchange-" + cryptoExchange;
-
 Ticker ticker = producerTemplate.requestBody(
-component + ":" + cryptoExchange + 
"?service=marketdata=ticker=" + currencyPair, null,
+  

[GitHub] [camel-quarkus] jamesnetherton merged pull request #3802: Use WireMock for xchange tests

2022-05-23 Thread GitBox


jamesnetherton merged PR #3802:
URL: https://github.com/apache/camel-quarkus/pull/3802


-- 
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 #3800: Add debug JVM only extension

2022-05-23 Thread GitBox


jamesnetherton merged PR #3800:
URL: https://github.com/apache/camel-quarkus/pull/3800


-- 
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 #3724: Use WireMock for xchange tests

2022-05-23 Thread GitBox


jamesnetherton closed issue #3724: Use WireMock for xchange tests
URL: https://github.com/apache/camel-quarkus/issues/3724


-- 
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 #3775: Support camel-debug component

2022-05-23 Thread GitBox


jamesnetherton closed issue #3775: Support camel-debug component
URL: https://github.com/apache/camel-quarkus/issues/3775


-- 
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: Add debug JVM only extension

2022-05-23 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 13cef38ca8 Add debug JVM only extension
13cef38ca8 is described below

commit 13cef38ca8a44fe77172432afb4b769f79978510
Author: James Netherton 
AuthorDate: Mon May 23 09:23:32 2022 +0100

Add debug JVM only extension

Fixes #3775
---
 docs/modules/ROOT/examples/others/debug.yml|  13 +++
 docs/modules/ROOT/nav.adoc |   1 +
 .../ROOT/pages/reference/extensions/debug.adoc |  35 +++
 extensions-jvm/debug/deployment/pom.xml|  83 
 .../component/debug/deployment/DebugProcessor.java |  53 +++
 .../component/debug/deployment/DebugResource.java  |  40 
 .../component/debug/deployment/DebugTest.java  |  51 ++
 extensions-jvm/debug/pom.xml   |  39 
 extensions-jvm/debug/runtime/pom.xml   | 104 +
 .../main/resources/META-INF/quarkus-extension.yaml |  32 +++
 extensions-jvm/pom.xml |   1 +
 integration-tests-jvm/debug/pom.xml|  84 +
 .../quarkus/component/debug/it/DebugResource.java  |  43 +
 .../quarkus/component/debug/it/DebugTest.java  |  38 
 integration-tests-jvm/pom.xml  |   1 +
 poms/bom/pom.xml   |  15 +++
 poms/bom/src/main/generated/flattened-full-pom.xml |  15 +++
 .../src/main/generated/flattened-reduced-pom.xml   |  15 +++
 .../generated/flattened-reduced-verbose-pom.xml|  15 +++
 19 files changed, 678 insertions(+)

diff --git a/docs/modules/ROOT/examples/others/debug.yml 
b/docs/modules/ROOT/examples/others/debug.yml
new file mode 100644
index 00..099e7d0218
--- /dev/null
+++ b/docs/modules/ROOT/examples/others/debug.yml
@@ -0,0 +1,13 @@
+# Do not edit directly!
+# This file was generated by 
camel-quarkus-maven-plugin:update-extension-doc-page
+cqArtifactId: camel-quarkus-debug
+cqArtifactIdBase: debug
+cqNativeSupported: false
+cqStatus: Preview
+cqDeprecated: false
+cqJvmSince: 2.10.0
+cqNativeSince: n/a
+cqCamelPartName: debug
+cqCamelPartTitle: Debug
+cqCamelPartDescription: Enables Camel Route Debugging
+cqExtensionPageTitle: Debug
diff --git a/docs/modules/ROOT/nav.adoc b/docs/modules/ROOT/nav.adoc
index 31d326093f..247a6ff382 100644
--- a/docs/modules/ROOT/nav.adoc
+++ b/docs/modules/ROOT/nav.adoc
@@ -101,6 +101,7 @@
 *** xref:reference/extensions/debezium-mysql.adoc[Debezium MySQL Connector]
 *** xref:reference/extensions/debezium-postgres.adoc[Debezium PostgresSQL 
Connector]
 *** xref:reference/extensions/debezium-sqlserver.adoc[Debezium SQL Server 
Connector]
+*** xref:reference/extensions/debug.adoc[Debug]
 *** xref:reference/extensions/djl.adoc[Deep Java Library]
 *** xref:reference/extensions/digitalocean.adoc[DigitalOcean]
 *** xref:reference/extensions/direct.adoc[Direct]
diff --git a/docs/modules/ROOT/pages/reference/extensions/debug.adoc 
b/docs/modules/ROOT/pages/reference/extensions/debug.adoc
new file mode 100644
index 00..23eb4bf2b3
--- /dev/null
+++ b/docs/modules/ROOT/pages/reference/extensions/debug.adoc
@@ -0,0 +1,35 @@
+// Do not edit directly!
+// This file was generated by 
camel-quarkus-maven-plugin:update-extension-doc-page
+= Debug
+:linkattrs:
+:cq-artifact-id: camel-quarkus-debug
+:cq-native-supported: false
+:cq-status: Preview
+:cq-status-deprecation: Preview
+:cq-description: Enables Camel Route Debugging
+:cq-deprecated: false
+:cq-jvm-since: 2.10.0
+:cq-native-since: n/a
+
+[.badges]
+[.badge-key]##JVM since##[.badge-supported]##2.10.0## 
[.badge-key]##Native##[.badge-unsupported]##unsupported##
+
+Enables Camel Route Debugging
+
+== What's inside
+
+* xref:{cq-camel-components}:others:debug.adoc[Debug]
+
+Please refer to the above link for usage and configuration details.
+
+== Maven coordinates
+
+[source,xml]
+
+
+org.apache.camel.quarkus
+camel-quarkus-debug
+
+
+
+Check the xref:user-guide/index.adoc[User guide] for more information about 
writing Camel Quarkus applications.
diff --git a/extensions-jvm/debug/deployment/pom.xml 
b/extensions-jvm/debug/deployment/pom.xml
new file mode 100644
index 00..f59295ebd7
--- /dev/null
+++ b/extensions-jvm/debug/deployment/pom.xml
@@ -0,0 +1,83 @@
+
+
+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;>
+4.0.0
+
+org.apache.camel.quarkus
+camel-quarkus-debug-parent
+2.10.0-SNAPSHOT
+../pom.xml
+
+
+camel-quarkus-debug-deployment
+Camel Quarkus :: Debug :: Deployment
+
+
+
+

[GitHub] [camel-quarkus] jamesnetherton commented on a diff in pull request #3800: Add debug JVM only extension

2022-05-23 Thread GitBox


jamesnetherton commented on code in PR #3800:
URL: https://github.com/apache/camel-quarkus/pull/3800#discussion_r879832984


##
extensions-jvm/debug/deployment/src/test/java/org/apache/camel/quarkus/component/debug/deployment/DebugTest.java:
##
@@ -0,0 +1,51 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License.  You may obtain a copy of the License at
+ *
+ *  http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.apache.camel.quarkus.component.debug.deployment;
+
+import java.io.IOException;
+import java.net.Socket;
+
+import io.quarkus.test.QuarkusDevModeTest;
+import io.restassured.RestAssured;
+import org.jboss.shrinkwrap.api.ShrinkWrap;
+import org.jboss.shrinkwrap.api.spec.JavaArchive;
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Test;
+import org.junit.jupiter.api.extension.RegisterExtension;
+
+import static org.hamcrest.Matchers.is;
+
+public class DebugTest {
+
+@RegisterExtension
+static final QuarkusDevModeTest TEST = new QuarkusDevModeTest()
+.setArchiveProducer(() -> ShrinkWrap
+.create(JavaArchive.class)
+.addClass(DebugResource.class));
+
+@Test
+public void camelDebuggingEnabledInDevMode() throws IOException {
+RestAssured.get("/debug/enabled")
+.then()
+.body(is("true"))
+.statusCode(200);
+
+try (Socket socket = new Socket("localhost", 1099)) {

Review Comment:
   From what I could see, it is not configurable at the moment.



-- 
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 (abbf92e60c8 -> 729540bbe49)

2022-05-23 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 abbf92e60c8 CAMEL-18070: Add propertiesExist function to simple 
language.
 add 729540bbe49 Fix flaky test

No new revisions were added by this update.

Summary of changes:
 .../apache/camel/component/seda/SedaConcurrentTest.java  | 16 
 1 file changed, 8 insertions(+), 8 deletions(-)



[camel-kamelets-examples] branch main updated: Polished

2022-05-23 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-kamelets-examples.git


The following commit(s) were added to refs/heads/main by this push:
 new 2cdb187  Polished
2cdb187 is described below

commit 2cdb18718e2815921cc85400a61b48489ef93dff
Author: Claus Ibsen 
AuthorDate: Mon May 23 20:37:23 2022 +0200

Polished
---
 jbang/pipe/README.adoc | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/jbang/pipe/README.adoc b/jbang/pipe/README.adoc
index 6148a3c..420309e 100644
--- a/jbang/pipe/README.adoc
+++ b/jbang/pipe/README.adoc
@@ -4,8 +4,8 @@ This example shows how to use Camel with terminal scripting.
 
 There are 2 scripts:
 
-- upper.yaml - Upper cases the input
-- to_csv.java - Aggregates the input into a single comma separated output
+- `upper.yaml` - Upper cases the input
+- `to_csv.java` - Aggregates the input into a single comma separated output
 
 === Install JBang
 



[camel-kamelets-examples] branch main updated: Remove vscode files

2022-05-23 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-kamelets-examples.git


The following commit(s) were added to refs/heads/main by this push:
 new 2391066  Remove vscode files
2391066 is described below

commit 2391066646c2c9ba98d65ad6d95f85d5faa6d2cb
Author: Claus Ibsen 
AuthorDate: Mon May 23 20:25:01 2022 +0200

Remove vscode files
---
 .gitignore   | 1 +
 jbang/pipe/.vscode/settings.json | 6 --
 2 files changed, 1 insertion(+), 6 deletions(-)

diff --git a/.gitignore b/.gitignore
index 157a4bf..2f891ee 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,3 +1,4 @@
 target/
 .camel-jbang/
+.vscode/
 camel-runner.jar
\ No newline at end of file
diff --git a/jbang/pipe/.vscode/settings.json b/jbang/pipe/.vscode/settings.json
deleted file mode 100644
index cf11b06..000
--- a/jbang/pipe/.vscode/settings.json
+++ /dev/null
@@ -1,6 +0,0 @@
-{
-"java.project.referencedLibraries": [
-"lib/**/*.jar",
-"/Users/davsclaus/Library/Application 
Support/Code/User/globalStorage/redhat.vscode-camelk/java-dependencies-3.14.1/dependencies/*.jar"
-]
-}
\ No newline at end of file



[camel] branch main updated: Fix flaky test

2022-05-23 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 729540bbe49 Fix flaky test
729540bbe49 is described below

commit 729540bbe49a90c9e423524aaae134ca602a
Author: Claus Ibsen 
AuthorDate: Mon May 23 20:14:23 2022 +0200

Fix flaky test
---
 .../apache/camel/component/seda/SedaConcurrentTest.java  | 16 
 1 file changed, 8 insertions(+), 8 deletions(-)

diff --git 
a/core/camel-core/src/test/java/org/apache/camel/component/seda/SedaConcurrentTest.java
 
b/core/camel-core/src/test/java/org/apache/camel/component/seda/SedaConcurrentTest.java
index a0fb6db5d21..417e5a5c89b 100644
--- 
a/core/camel-core/src/test/java/org/apache/camel/component/seda/SedaConcurrentTest.java
+++ 
b/core/camel-core/src/test/java/org/apache/camel/component/seda/SedaConcurrentTest.java
@@ -40,8 +40,8 @@ public class SedaConcurrentTest extends ContextTestSupport {
 MockEndpoint mock = getMockEndpoint("mock:result");
 mock.expectedMessageCount(20);
 
-// should at least take 0.5 sec
-mock.setResultMinimumWaitTime(500);
+// should at least take about 0.5 sec
+mock.setResultMinimumWaitTime(400);
 
 for (int i = 0; i < 20; i++) {
 template.sendBody("seda:foo", "Message " + i);
@@ -55,8 +55,8 @@ public class SedaConcurrentTest extends ContextTestSupport {
 MockEndpoint mock = getMockEndpoint("mock:result");
 mock.expectedMessageCount(20);
 
-// should at least take 0.5 sec
-mock.setResultMinimumWaitTime(500);
+// should at least take about 0.5 sec
+mock.setResultMinimumWaitTime(400);
 
 for (int i = 0; i < 20; i++) {
 template.asyncSendBody("seda:foo", "Message " + i);
@@ -71,8 +71,8 @@ public class SedaConcurrentTest extends ContextTestSupport {
 mock.expectedMessageCount(20);
 mock.allMessages().body().startsWith("Bye");
 
-// should at least take 0.5 sec
-mock.setResultMinimumWaitTime(500);
+// should at least take about 0.5 sec
+mock.setResultMinimumWaitTime(400);
 
 ExecutorService executors = Executors.newFixedThreadPool(10);
 List replies = new ArrayList<>(20);
@@ -98,8 +98,8 @@ public class SedaConcurrentTest extends ContextTestSupport {
 mock.expectedMessageCount(20);
 mock.allMessages().body().startsWith("Bye");
 
-// should at least take 0.5 sec
-mock.setResultMinimumWaitTime(500);
+// should at least take about 0.5 sec
+mock.setResultMinimumWaitTime(400);
 
 // use our own template that has a higher thread pool than default 
camel
 // that uses 5



[GitHub] [camel-spring-boot-examples] davsclaus merged pull request #61: Update twitter-salesforce pom.xml example

2022-05-23 Thread GitBox


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


-- 
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-examples] branch main updated (7279cb4 -> 60d07f3)

2022-05-23 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-spring-boot-examples.git


from 7279cb4  Update twitter-salesforce example (#60)
 add 60d07f3  Update twitter-salesforce example (#61)

No new revisions were added by this update.

Summary of changes:
 twitter-salesforce/pom.xml | 16 
 1 file changed, 8 insertions(+), 8 deletions(-)



[GitHub] [camel-quarkus] aldettinger commented on a diff in pull request #3800: Add debug JVM only extension

2022-05-23 Thread GitBox


aldettinger commented on code in PR #3800:
URL: https://github.com/apache/camel-quarkus/pull/3800#discussion_r879702352


##
extensions-jvm/debug/deployment/src/test/java/org/apache/camel/quarkus/component/debug/deployment/DebugTest.java:
##
@@ -0,0 +1,51 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License.  You may obtain a copy of the License at
+ *
+ *  http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.apache.camel.quarkus.component.debug.deployment;
+
+import java.io.IOException;
+import java.net.Socket;
+
+import io.quarkus.test.QuarkusDevModeTest;
+import io.restassured.RestAssured;
+import org.jboss.shrinkwrap.api.ShrinkWrap;
+import org.jboss.shrinkwrap.api.spec.JavaArchive;
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Test;
+import org.junit.jupiter.api.extension.RegisterExtension;
+
+import static org.hamcrest.Matchers.is;
+
+public class DebugTest {
+
+@RegisterExtension
+static final QuarkusDevModeTest TEST = new QuarkusDevModeTest()
+.setArchiveProducer(() -> ShrinkWrap
+.create(JavaArchive.class)
+.addClass(DebugResource.class));
+
+@Test
+public void camelDebuggingEnabledInDevMode() throws IOException {
+RestAssured.get("/debug/enabled")
+.then()
+.body(is("true"))
+.statusCode(200);
+
+try (Socket socket = new Socket("localhost", 1099)) {

Review Comment:
   Not blocking. I wonder if there would be a way to avoid using a fix port ?



-- 
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] oscerd opened a new pull request, #3806: Create an Azure Key Vault Extension

2022-05-23 Thread GitBox


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

   
   
   Fixes #3688 


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

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

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



[camel-quarkus] 01/01: Create an Azure Key Vault Extension

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

acosentino pushed a commit to branch azure-key-vault
in repository https://gitbox.apache.org/repos/asf/camel-quarkus.git

commit 9309dc7726da5c6ab19d9107bc619dee03342017
Author: Andrea Cosentino 
AuthorDate: Mon May 23 18:41:08 2022 +0200

Create an Azure Key Vault Extension
---
 catalog/pom.xml|  13 +++
 .../ROOT/examples/components/azure-key-vault.yml   |  13 +++
 docs/modules/ROOT/nav.adoc |   1 +
 .../reference/extensions/azure-key-vault.adoc  |  35 +++
 .../camel/quarkus/core/FastCamelContext.java   |   2 +-
 extensions-jvm/azure-key-vault/deployment/pom.xml  |  63 +
 .../vault/deployment/AzureKeyVaultProcessor.java   |  46 +
 extensions-jvm/azure-key-vault/pom.xml |  39 
 extensions-jvm/azure-key-vault/runtime/pom.xml | 100 
 .../main/resources/META-INF/quarkus-extension.yaml |  32 +++
 extensions-jvm/pom.xml |   1 +
 integration-tests-jvm/azure-key-vault/pom.xml  | 103 +
 .../azure/key/vault/it/AzureKeyVaultResource.java  |  51 ++
 .../azure/key/vault/it/AzureKeyVaultTest.java  |  34 +++
 integration-tests-jvm/pom.xml  |   1 +
 integration-tests/compression-grouped/pom.xml  |  10 +-
 poms/bom/pom.xml   |  15 +++
 poms/bom/src/main/generated/flattened-full-pom.xml |  15 +++
 .../src/main/generated/flattened-reduced-pom.xml   |  20 
 .../generated/flattened-reduced-verbose-pom.xml|  20 
 20 files changed, 608 insertions(+), 6 deletions(-)

diff --git a/catalog/pom.xml b/catalog/pom.xml
index 15c575e152..635b7ba2e8 100644
--- a/catalog/pom.xml
+++ b/catalog/pom.xml
@@ -539,6 +539,19 @@
 
 
 
+
+org.apache.camel.quarkus
+camel-quarkus-azure-key-vault
+${project.version}
+pom
+test
+
+
+*
+*
+
+
+
 
 org.apache.camel.quarkus
 camel-quarkus-azure-servicebus
diff --git a/docs/modules/ROOT/examples/components/azure-key-vault.yml 
b/docs/modules/ROOT/examples/components/azure-key-vault.yml
new file mode 100644
index 00..d958b4acd3
--- /dev/null
+++ b/docs/modules/ROOT/examples/components/azure-key-vault.yml
@@ -0,0 +1,13 @@
+# Do not edit directly!
+# This file was generated by 
camel-quarkus-maven-plugin:update-extension-doc-page
+cqArtifactId: camel-quarkus-azure-key-vault
+cqArtifactIdBase: azure-key-vault
+cqNativeSupported: false
+cqStatus: Preview
+cqDeprecated: false
+cqJvmSince: 2.10.0
+cqNativeSince: n/a
+cqCamelPartName: azure-key-vault
+cqCamelPartTitle: Azure Key Vault
+cqCamelPartDescription: Manage secrets and keys in Azure Key Vault Service
+cqExtensionPageTitle: Azure Key Vault
diff --git a/docs/modules/ROOT/nav.adoc b/docs/modules/ROOT/nav.adoc
index 31d326093f..fa47d99fe7 100644
--- a/docs/modules/ROOT/nav.adoc
+++ b/docs/modules/ROOT/nav.adoc
@@ -60,6 +60,7 @@
 *** xref:reference/extensions/avro-rpc.adoc[Avro RPC]
 *** xref:reference/extensions/azure-cosmosdb.adoc[Azure CosmosDB]
 *** xref:reference/extensions/azure-eventhubs.adoc[Azure Event Hubs]
+*** xref:reference/extensions/azure-key-vault.adoc[Azure Key Vault]
 *** xref:reference/extensions/azure-servicebus.adoc[Azure ServiceBus]
 *** xref:reference/extensions/azure-storage-blob.adoc[Azure Storage Blob 
Service]
 *** xref:reference/extensions/azure-storage-queue.adoc[Azure Storage Queue 
Service]
diff --git a/docs/modules/ROOT/pages/reference/extensions/azure-key-vault.adoc 
b/docs/modules/ROOT/pages/reference/extensions/azure-key-vault.adoc
new file mode 100644
index 00..7e0915b2d1
--- /dev/null
+++ b/docs/modules/ROOT/pages/reference/extensions/azure-key-vault.adoc
@@ -0,0 +1,35 @@
+// Do not edit directly!
+// This file was generated by 
camel-quarkus-maven-plugin:update-extension-doc-page
+= Azure Key Vault
+:linkattrs:
+:cq-artifact-id: camel-quarkus-azure-key-vault
+:cq-native-supported: false
+:cq-status: Preview
+:cq-status-deprecation: Preview
+:cq-description: Manage secrets and keys in Azure Key Vault Service
+:cq-deprecated: false
+:cq-jvm-since: 2.10.0
+:cq-native-since: n/a
+
+[.badges]
+[.badge-key]##JVM since##[.badge-supported]##2.10.0## 
[.badge-key]##Native##[.badge-unsupported]##unsupported##
+
+Manage secrets and keys in Azure Key Vault Service
+
+== What's inside
+
+* xref:{cq-camel-components}::azure-key-vault-component.adoc[Azure Key Vault 
component], URI syntax: `azure-key-vault:vaultName`
+
+Please refer to the above link for usage and configuration details.
+
+== Maven coordinates
+
+[source,xml]
+
+
+org.apache.camel.quarkus
+camel-quarkus-azure-key-vault
+
+
+
+Check the 

[camel-quarkus] branch azure-key-vault created (now 9309dc7726)

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

acosentino pushed a change to branch azure-key-vault
in repository https://gitbox.apache.org/repos/asf/camel-quarkus.git


  at 9309dc7726 Create an Azure Key Vault Extension

This branch includes the following new commits:

 new 9309dc7726 Create an Azure Key Vault Extension

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.




[camel] branch regen_bot updated (4dc6c549882 -> abbf92e60c8)

2022-05-23 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 4dc6c549882 Polished
 add abbf92e60c8 CAMEL-18070: Add propertiesExist function to simple 
language.

No new revisions were added by this update.

Summary of changes:
 .../modules/languages/pages/simple-language.adoc   |  3 +++
 .../simple/ast/SimpleFunctionExpression.java   | 15 
 .../apache/camel/language/simple/SimpleTest.java   | 17 ++
 .../camel/support/builder/ExpressionBuilder.java   | 27 ++
 4 files changed, 62 insertions(+)



Error while running github feature from .asf.yaml in camel-website-pub!

2022-05-23 Thread Apache Infrastructure


An error occurred while running github feature in .asf.yaml!:
422 {"message": "Validation Failed", "errors": [{"message": "Sorry, you need to 
allow at least one merge strategy. (no_merge_method)", "resource": 
"Repository", "field": "merge_commit_allowed", "code": "invalid"}], 
"documentation_url": 
"https://docs.github.com/rest/reference/repos#update-a-repository"}



[camel-website-pub] branch asf-site updated (f5510af639 -> cdb4afe355)

2022-05-23 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-pub.git


 discard f5510af639 Website updated to 0f8aabd6fc98cdbec7829e569a0c860551c01e2a
 discard bf7d7804c4 Website updated to 325e929157412b27394080f4d4dba3d821476ddf
 new 4278141291 Website updated to 325e929157412b27394080f4d4dba3d821476ddf
 new cdb4afe355 Website updated to 957b021e2d0abbf39ddf17343ffb640216c29c3c

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   (f5510af639)
\
 N -- N -- N   refs/heads/asf-site (cdb4afe355)

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:
 .well-known/security.txt   |2 +-
 manual/camel-jbang.html|3 +-
 .../camel-spring-3.11.0.xsd}   |0
 .../camel-spring-3.11.1.xsd}   |0
 .../camel-spring-3.11.2.xsd}   |0
 .../camel-spring-3.11.3.xsd}   |0
 .../camel-spring-3.11.4.xsd}   |0
 .../camel-spring-3.11.5.xsd}   |0
 .../camel-spring-3.11.6.xsd}   |0
 .../camel-spring-3.11.7.xsd}   |0
 .../camel-spring-3.12.0.xsd}   |0
 .../camel-spring-3.13.0.xsd}   |0
 .../camel-spring-3.14.0.xsd}   |0
 .../camel-spring-3.14.1.xsd}   |0
 .../camel-spring-3.14.2.xsd}   |0
 .../camel-spring-3.14.3.xsd}   |0
 .../camel-spring-3.15.0.xsd}   |0
 .../camel-spring-3.16.0.xsd}   |0
 .../camel-spring-3.17.0.xsd}   |0
 schema/spring/camel-spring.xsd | 4653 +-
 site-manifest.json |2 +-
 sitemap-camel-k.xml|  874 +-
 sitemap-camel-kafka-connector.xml  | 1750 ++--
 sitemap-camel-kamelets.xml | 1384 +--
 sitemap-camel-karaf.xml|   90 +-
 sitemap-camel-quarkus.xml  | 2748 +++---
 sitemap-camel-spring-boot.xml  |   68 +-
 sitemap-components.xml | 9060 ++--
 sitemap-manual.xml |  392 +-
 29 files changed, 10426 insertions(+), 10600 deletions(-)
 rename schema/{spring-xml/camel-spring-xml-3.11.0.xsd => 
spring/camel-spring-3.11.0.xsd} (100%)
 rename schema/{spring-xml/camel-spring-xml-3.11.1.xsd => 
spring/camel-spring-3.11.1.xsd} (100%)
 rename schema/{spring-xml/camel-spring-xml-3.11.2.xsd => 
spring/camel-spring-3.11.2.xsd} (100%)
 rename schema/{spring-xml/camel-spring-xml-3.11.3.xsd => 
spring/camel-spring-3.11.3.xsd} (100%)
 rename schema/{spring-xml/camel-spring-xml-3.11.4.xsd => 
spring/camel-spring-3.11.4.xsd} (100%)
 rename schema/{spring-xml/camel-spring-xml-3.11.5.xsd => 
spring/camel-spring-3.11.5.xsd} (100%)
 rename schema/{spring-xml/camel-spring-xml-3.11.6.xsd => 
spring/camel-spring-3.11.6.xsd} (100%)
 rename schema/{spring-xml/camel-spring-xml-3.11.7.xsd => 
spring/camel-spring-3.11.7.xsd} (100%)
 rename schema/{spring-xml/camel-spring-xml-3.12.0.xsd => 
spring/camel-spring-3.12.0.xsd} (100%)
 rename schema/{spring-xml/camel-spring-xml-3.13.0.xsd => 
spring/camel-spring-3.13.0.xsd} (100%)
 rename schema/{spring-xml/camel-spring-xml-3.14.0.xsd => 
spring/camel-spring-3.14.0.xsd} (100%)
 rename schema/{spring-xml/camel-spring-xml-3.14.1.xsd => 
spring/camel-spring-3.14.1.xsd} (100%)
 rename schema/{spring-xml/camel-spring-xml-3.14.2.xsd => 
spring/camel-spring-3.14.2.xsd} (100%)
 rename schema/{spring-xml/camel-spring-xml-3.14.3.xsd => 
spring/camel-spring-3.14.3.xsd} (100%)
 rename schema/{spring-xml/camel-spring-xml-3.15.0.xsd => 
spring/camel-spring-3.15.0.xsd} (100%)
 rename schema/{spring-xml/camel-spring-xml-3.16.0.xsd => 
spring/camel-spring-3.16.0.xsd} (100%)
 rename schema/{spring-xml/camel-spring-xml-3.17.0.xsd => 
spring/camel-spring-3.17.0.xsd} (100%)



[camel] branch main updated: CAMEL-18070: Add propertiesExist function to simple language.

2022-05-23 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 abbf92e60c8 CAMEL-18070: Add propertiesExist function to simple 
language.
abbf92e60c8 is described below

commit abbf92e60c8b690b5cfe607657c4361a459edf8d
Author: Claus Ibsen 
AuthorDate: Mon May 23 17:18:38 2022 +0200

CAMEL-18070: Add propertiesExist function to simple language.
---
 .../modules/languages/pages/simple-language.adoc   |  3 +++
 .../simple/ast/SimpleFunctionExpression.java   | 15 
 .../apache/camel/language/simple/SimpleTest.java   | 17 ++
 .../camel/support/builder/ExpressionBuilder.java   | 27 ++
 4 files changed, 62 insertions(+)

diff --git 
a/core/camel-core-languages/src/main/docs/modules/languages/pages/simple-language.adoc
 
b/core/camel-core-languages/src/main/docs/modules/languages/pages/simple-language.adoc
index 7ac6a90d07a..5626af3421b 100644
--- 
a/core/camel-core-languages/src/main/docs/modules/languages/pages/simple-language.adoc
+++ 
b/core/camel-core-languages/src/main/docs/modules/languages/pages/simple-language.adoc
@@ -172,6 +172,9 @@ to a bean class (such as calling a static method) then you 
can prefix with type,
 not exists or has no value, then an optional default value can be
 specified.
 
+|`propertiesExist:key` |String |Checks whether a property placeholder with the 
given key exists or not.
+The result can be negated by prefixing the key with `!`.
+
 |routeId |String |Returns the id of the current route the
 Exchange is being routed.
 
diff --git 
a/core/camel-core-languages/src/main/java/org/apache/camel/language/simple/ast/SimpleFunctionExpression.java
 
b/core/camel-core-languages/src/main/java/org/apache/camel/language/simple/ast/SimpleFunctionExpression.java
index 21993f5b577..a737c323d9a 100644
--- 
a/core/camel-core-languages/src/main/java/org/apache/camel/language/simple/ast/SimpleFunctionExpression.java
+++ 
b/core/camel-core-languages/src/main/java/org/apache/camel/language/simple/ast/SimpleFunctionExpression.java
@@ -244,6 +244,21 @@ public class SimpleFunctionExpression extends 
LiteralExpression {
 return bean.createExpression(null, properties);
 }
 
+// properties-exist: prefix
+remainder = ifStartsWithReturnRemainder("propertiesExist:", function);
+if (remainder != null) {
+String[] parts = remainder.split(":", 2);
+if (parts.length > 2) {
+throw new SimpleParserException("Valid syntax: 
${propertiesExist:key was: " + function, token.getIndex());
+}
+String key = parts[0];
+boolean negate = key != null && key.startsWith("!");
+if (negate) {
+key = key.substring(1);
+}
+return ExpressionBuilder.propertiesComponentExist(key, negate);
+}
+
 // properties: prefix
 remainder = ifStartsWithReturnRemainder("properties:", function);
 if (remainder != null) {
diff --git 
a/core/camel-core/src/test/java/org/apache/camel/language/simple/SimpleTest.java
 
b/core/camel-core/src/test/java/org/apache/camel/language/simple/SimpleTest.java
index 2fdc1574dd5..d0243353312 100644
--- 
a/core/camel-core/src/test/java/org/apache/camel/language/simple/SimpleTest.java
+++ 
b/core/camel-core/src/test/java/org/apache/camel/language/simple/SimpleTest.java
@@ -41,6 +41,7 @@ import 
org.apache.camel.language.bean.RuntimeBeanExpressionException;
 import org.apache.camel.language.simple.myconverter.MyCustomDate;
 import org.apache.camel.language.simple.types.SimpleIllegalSyntaxException;
 import org.apache.camel.spi.Language;
+import org.apache.camel.spi.PropertiesComponent;
 import org.apache.camel.spi.Registry;
 import org.apache.camel.util.InetAddressUtil;
 import org.junit.jupiter.api.Test;
@@ -1987,6 +1988,22 @@ public class SimpleTest extends LanguageTestSupport {
 assertExpression("${body.replace(\"((\", \"--\").replace(\"\", 
\"\")}", "Hello -- World  Again");
 }
 
+@Test
+public void testPropertiesExist() throws Exception {
+PropertiesComponent pc = context.getPropertiesComponent();
+
+assertExpression("${propertiesExist:myKey}", "false");
+assertExpression("${propertiesExist:!myKey}", "true");
+assertPredicate("${propertiesExist:myKey}", false);
+assertPredicate("${propertiesExist:!myKey}", true);
+
+pc.addInitialProperty("myKey", "abc");
+assertExpression("${propertiesExist:myKey}", "true");
+assertExpression("${propertiesExist:!myKey}", "false");
+assertPredicate("${propertiesExist:myKey}", true);
+assertPredicate("${propertiesExist:!myKey}", false);
+}
+
 @Override
 protected String getLanguageName() {
 return "simple";
diff --git 

[camel] branch regen_bot updated (bcef40f7613 -> 4dc6c549882)

2022-05-23 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 bcef40f7613 CAMEL-18117: camel-jbang - Add docs about profiles
 add 4dc6c549882 Polished

No new revisions were added by this update.

Summary of changes:
 docs/user-manual/modules/ROOT/pages/camel-jbang.adoc | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)



[GitHub] [camel-spring-boot-examples] oscerd commented on pull request #61: Update twitter-salesforce pom.xml example

2022-05-23 Thread GitBox


oscerd commented on PR #61:
URL: 
https://github.com/apache/camel-spring-boot-examples/pull/61#issuecomment-1134764598

   Please 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 (c17345b4b9a -> bcef40f7613)

2022-05-23 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 c17345b4b9a CAMEL-18117: camel-jbang - Use profile for commands such 
as run, uber-jar, which allows the profile to control which properties file to 
use with settings.
 add bcef40f7613 CAMEL-18117: camel-jbang - Add docs about profiles

No new revisions were added by this update.

Summary of changes:
 .../modules/ROOT/pages/camel-jbang.adoc| 38 ++
 1 file changed, 38 insertions(+)



[GitHub] [camel-website] davsclaus closed issue #827: Add camel-jbang to website list of projects

2022-05-23 Thread GitBox


davsclaus closed issue #827: Add camel-jbang to website list of projects
URL: https://github.com/apache/camel-website/issues/827


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

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

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



[camel-karavan] branch main updated: Add local profile to just try in local mode

2022-05-23 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-karavan.git


The following commit(s) were added to refs/heads/main by this push:
 new 65de51c  Add local profile to just try in local mode
65de51c is described below

commit 65de51ce05928e4295a87fd00303d080c4fd6483
Author: Claus Ibsen 
AuthorDate: Mon May 23 16:09:43 2022 +0200

Add local profile to just try in local mode
---
 karavan-demo/placeholder/application.properties | 1 -
 karavan-demo/placeholder/local.properties   | 3 +++
 2 files changed, 3 insertions(+), 1 deletion(-)

diff --git a/karavan-demo/placeholder/application.properties 
b/karavan-demo/placeholder/application.properties
index 81c0292..fda338d 100644
--- a/karavan-demo/placeholder/application.properties
+++ b/karavan-demo/placeholder/application.properties
@@ -7,7 +7,6 @@ camel.jbang.project.cleanup=true
 camel.jbang.package=true
 camel.jbang.package.uber-jar.jar=camel-runner.jar
 camel.jbang.package.uber-jar.fresh=true
-camel.jbang.classpathFiles=application.properties
 camel.main.routesIncludePattern=file:demo.yaml
 camel.jbang.build.image=true
 camel.jbang.build.image.openshift=false
diff --git a/karavan-demo/placeholder/local.properties 
b/karavan-demo/placeholder/local.properties
new file mode 100644
index 000..8147934
--- /dev/null
+++ b/karavan-demo/placeholder/local.properties
@@ -0,0 +1,3 @@
+
+message=Local mode
+camel.main.routesIncludePattern=file:demo.yaml



[camel] branch main updated: Polished

2022-05-23 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 4dc6c549882 Polished
4dc6c549882 is described below

commit 4dc6c54988202e7e53c5325d237546ab9839d434
Author: Claus Ibsen 
AuthorDate: Mon May 23 15:51:16 2022 +0200

Polished
---
 docs/user-manual/modules/ROOT/pages/camel-jbang.adoc | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/docs/user-manual/modules/ROOT/pages/camel-jbang.adoc 
b/docs/user-manual/modules/ROOT/pages/camel-jbang.adoc
index 7da4467875b..a44a2e42b4f 100644
--- a/docs/user-manual/modules/ROOT/pages/camel-jbang.adoc
+++ b/docs/user-manual/modules/ROOT/pages/camel-jbang.adoc
@@ -387,9 +387,9 @@ works in two modes:
 - line mode (default) - reads input as single lines (separated by line breaks).
   Message body is a `String`.
 - raw mode - reads the entire stream until _end of stream_.
-  Mmessage body is a `byte[]`.
+  Message body is a `byte[]`.
 
-The default mode is due to historically how the stream component as created.
+IMPORTANT: The default mode is due to historically how the stream component 
was created.
 Therefore, you may want to set `stream:in?readLine=false` to use raw mode.
 
 === Running local Kamelets



[camel] branch main updated: CAMEL-18117: camel-jbang - Add docs about profiles

2022-05-23 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 bcef40f7613 CAMEL-18117: camel-jbang - Add docs about profiles
bcef40f7613 is described below

commit bcef40f7613d2e41b778e9ad3e4285e7d4924818
Author: Claus Ibsen 
AuthorDate: Mon May 23 15:46:55 2022 +0200

CAMEL-18117: camel-jbang - Add docs about profiles
---
 .../modules/ROOT/pages/camel-jbang.adoc| 38 ++
 1 file changed, 38 insertions(+)

diff --git a/docs/user-manual/modules/ROOT/pages/camel-jbang.adoc 
b/docs/user-manual/modules/ROOT/pages/camel-jbang.adoc
index 44186a55ff1..7da4467875b 100644
--- a/docs/user-manual/modules/ROOT/pages/camel-jbang.adoc
+++ b/docs/user-manual/modules/ROOT/pages/camel-jbang.adoc
@@ -117,6 +117,44 @@ Then while the Camel application is running, you can 
update the YAML route and u
 NOTE: The live reload is meant for development purposes, and if you encounter 
problems with reloading
 such as JVM class loading issues, then you may need to restart the application.
 
+=== Using profiles
+
+Camel JBang have the concept of profiles. A _profile_ is essentially a name 
(id) that refers
+to which configuration to automatic load with Camel JBang. The default profile 
is named `application`
+which is a (smart default) to let Camel JBang automatic load 
`application.properties` (if present).
+
+This means that creating profiles matching to a properties file with the same 
name.
+
+For example having a profile named `local`, means that Camel JBang will load 
`local.properties` instead
+of `application.properties`.
+
+To use a profile, you specify as command line option `--profile` such as:
+
+[source,bash]
+
+camel run hello.java --profile=local
+
+
+You can only specify one profile name, i.e. `--profile=local,two` is not valid.
+
+In the `properties` files you can configure all
+the configurations from xref:components:others:main.adoc[Camel Main].
+
+For example to turn off xref:stream-caching.adoc[Stream Caching] and enable 
log masking you can specify:
+
+[source,properties]
+
+camel.main.streamCaching=false
+camel.main.logMask=true
+
+
+And you can also configure Camel components such as camel-kafka to declare the 
URL to the brokers:
+
+[source,properties]
+
+camel.component.kafka.brokers=broker1:9092,broker2:9092,broker3:9092
+
+
 === Running routes hosted on GitHub
 
 You can run a route that is hosted on GitHub using Camels 
xref:components:others:resourceresolver-github.adoc[github] resource loader.



Error while running github feature from .asf.yaml in camel-website-pub!

2022-05-23 Thread Apache Infrastructure


An error occurred while running github feature in .asf.yaml!:
422 {"message": "Validation Failed", "errors": [{"message": "Sorry, you need to 
allow at least one merge strategy. (no_merge_method)", "resource": 
"Repository", "field": "merge_commit_allowed", "code": "invalid"}], 
"documentation_url": 
"https://docs.github.com/rest/reference/repos#update-a-repository"}



[camel-website-pub] branch asf-site updated (4beb443f61 -> f5510af639)

2022-05-23 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-pub.git


 discard 4beb443f61 Website updated to 957b021e2d0abbf39ddf17343ffb640216c29c3c
 discard 6f16e42348 Website updated to 325e929157412b27394080f4d4dba3d821476ddf
 new bf7d7804c4 Website updated to 325e929157412b27394080f4d4dba3d821476ddf
 new f5510af639 Website updated to 0f8aabd6fc98cdbec7829e569a0c860551c01e2a

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   (4beb443f61)
\
 N -- N -- N   refs/heads/asf-site (f5510af639)

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:
 .well-known/security.txt   |2 +-
 .../camel-spring-xml-3.11.0.xsd}   |0
 .../camel-spring-xml-3.11.1.xsd}   |0
 .../camel-spring-xml-3.11.2.xsd}   |0
 .../camel-spring-xml-3.11.3.xsd}   |0
 .../camel-spring-xml-3.11.4.xsd}   |0
 .../camel-spring-xml-3.11.5.xsd}   |0
 .../camel-spring-xml-3.11.6.xsd}   |0
 .../camel-spring-xml-3.11.7.xsd}   |0
 .../camel-spring-xml-3.12.0.xsd}   |0
 .../camel-spring-xml-3.13.0.xsd}   |0
 .../camel-spring-xml-3.14.0.xsd}   |0
 .../camel-spring-xml-3.14.1.xsd}   |0
 .../camel-spring-xml-3.14.2.xsd}   |0
 .../camel-spring-xml-3.14.3.xsd}   |0
 .../camel-spring-xml-3.15.0.xsd}   |0
 .../camel-spring-xml-3.16.0.xsd}   |0
 .../camel-spring-xml-3.17.0.xsd}   |0
 schema/spring/camel-spring.xsd | 4619 +-
 site-manifest.json |2 +-
 sitemap-camel-k.xml|  874 +-
 sitemap-camel-kafka-connector.xml  | 1750 ++--
 sitemap-camel-kamelets.xml | 1384 +--
 sitemap-camel-karaf.xml|   90 +-
 sitemap-camel-quarkus.xml  | 2748 +++---
 sitemap-camel-spring-boot.xml  |   68 +-
 sitemap-components.xml | 9060 ++--
 sitemap-manual.xml |  392 +-
 28 files changed, 10582 insertions(+), 10407 deletions(-)
 rename schema/{spring/camel-spring-3.11.0.xsd => 
spring-xml/camel-spring-xml-3.11.0.xsd} (100%)
 rename schema/{spring/camel-spring-3.11.1.xsd => 
spring-xml/camel-spring-xml-3.11.1.xsd} (100%)
 rename schema/{spring/camel-spring-3.11.2.xsd => 
spring-xml/camel-spring-xml-3.11.2.xsd} (100%)
 rename schema/{spring/camel-spring-3.11.3.xsd => 
spring-xml/camel-spring-xml-3.11.3.xsd} (100%)
 rename schema/{spring/camel-spring-3.11.4.xsd => 
spring-xml/camel-spring-xml-3.11.4.xsd} (100%)
 rename schema/{spring/camel-spring-3.11.5.xsd => 
spring-xml/camel-spring-xml-3.11.5.xsd} (100%)
 rename schema/{spring/camel-spring-3.11.6.xsd => 
spring-xml/camel-spring-xml-3.11.6.xsd} (100%)
 rename schema/{spring/camel-spring-3.11.7.xsd => 
spring-xml/camel-spring-xml-3.11.7.xsd} (100%)
 rename schema/{spring/camel-spring-3.12.0.xsd => 
spring-xml/camel-spring-xml-3.12.0.xsd} (100%)
 rename schema/{spring/camel-spring-3.13.0.xsd => 
spring-xml/camel-spring-xml-3.13.0.xsd} (100%)
 rename schema/{spring/camel-spring-3.14.0.xsd => 
spring-xml/camel-spring-xml-3.14.0.xsd} (100%)
 rename schema/{spring/camel-spring-3.14.1.xsd => 
spring-xml/camel-spring-xml-3.14.1.xsd} (100%)
 rename schema/{spring/camel-spring-3.14.2.xsd => 
spring-xml/camel-spring-xml-3.14.2.xsd} (100%)
 rename schema/{spring/camel-spring-3.14.3.xsd => 
spring-xml/camel-spring-xml-3.14.3.xsd} (100%)
 rename schema/{spring/camel-spring-3.15.0.xsd => 
spring-xml/camel-spring-xml-3.15.0.xsd} (100%)
 rename schema/{spring/camel-spring-3.16.0.xsd => 
spring-xml/camel-spring-xml-3.16.0.xsd} (100%)
 rename schema/{spring/camel-spring-3.17.0.xsd => 
spring-xml/camel-spring-xml-3.17.0.xsd} (100%)



[camel-website-pub] branch asf-site updated (53d1cf4afc -> 4beb443f61)

2022-05-23 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-pub.git


 discard 53d1cf4afc Website updated to d544e5c909c357c5619593362886368187e17d61
 discard 7675137933 Website updated to 325e929157412b27394080f4d4dba3d821476ddf
 new 6f16e42348 Website updated to 325e929157412b27394080f4d4dba3d821476ddf
 new 4beb443f61 Website updated to 957b021e2d0abbf39ddf17343ffb640216c29c3c

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   (53d1cf4afc)
\
 N -- N -- N   refs/heads/asf-site (4beb443f61)

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:
 .well-known/security.txt   |2 +-
 camel-kamelets/0.6.x/index.html|2 +-
 camel-kamelets/0.7.x/index.html|2 +-
 camel-kamelets/0.8.x/index.html|2 +-
 camel-kamelets/next/index.html |2 +-
 download/index.html|2 +-
 index.xml  |   11 +-
 releases/index.html|2 +-
 releases/index.xml |   11 +-
 releases/k-1.9.1/index.html|2 +-
 releases/k-1.9.2/index.html|4 +
 releases/release-3.17.0/index.html |2 +-
 .../camel-spring-3.11.0.xsd}   |0
 .../camel-spring-3.11.1.xsd}   |0
 .../camel-spring-3.11.2.xsd}   |0
 .../camel-spring-3.11.3.xsd}   |0
 .../camel-spring-3.11.4.xsd}   |0
 .../camel-spring-3.11.5.xsd}   |0
 .../camel-spring-3.11.6.xsd}   |0
 .../camel-spring-3.11.7.xsd}   |0
 .../camel-spring-3.12.0.xsd}   |0
 .../camel-spring-3.13.0.xsd}   |0
 .../camel-spring-3.14.0.xsd}   |0
 .../camel-spring-3.14.1.xsd}   |0
 .../camel-spring-3.14.2.xsd}   |0
 .../camel-spring-3.14.3.xsd}   |0
 .../camel-spring-3.15.0.xsd}   |0
 .../camel-spring-3.16.0.xsd}   |0
 .../camel-spring-3.17.0.xsd}   |0
 schema/spring/camel-spring.xsd | 4653 +-
 site-manifest.json |2 +-
 sitemap-camel-k.xml|  874 +-
 sitemap-camel-kafka-connector.xml  | 1750 ++--
 sitemap-camel-kamelets.xml | 1384 +--
 sitemap-camel-karaf.xml|   90 +-
 sitemap-camel-quarkus.xml  | 2748 +++---
 sitemap-camel-spring-boot.xml  |   68 +-
 sitemap-components.xml | 9060 ++--
 sitemap-manual.xml |  392 +-
 sitemap-website.xml|   15 +-
 sitemap/index.html |2 +-
 41 files changed, 10466 insertions(+), 10616 deletions(-)
 create mode 100644 releases/k-1.9.2/index.html
 rename schema/{spring-xml/camel-spring-xml-3.11.0.xsd => 
spring/camel-spring-3.11.0.xsd} (100%)
 rename schema/{spring-xml/camel-spring-xml-3.11.1.xsd => 
spring/camel-spring-3.11.1.xsd} (100%)
 rename schema/{spring-xml/camel-spring-xml-3.11.2.xsd => 
spring/camel-spring-3.11.2.xsd} (100%)
 rename schema/{spring-xml/camel-spring-xml-3.11.3.xsd => 
spring/camel-spring-3.11.3.xsd} (100%)
 rename schema/{spring-xml/camel-spring-xml-3.11.4.xsd => 
spring/camel-spring-3.11.4.xsd} (100%)
 rename schema/{spring-xml/camel-spring-xml-3.11.5.xsd => 
spring/camel-spring-3.11.5.xsd} (100%)
 rename schema/{spring-xml/camel-spring-xml-3.11.6.xsd => 
spring/camel-spring-3.11.6.xsd} (100%)
 rename schema/{spring-xml/camel-spring-xml-3.11.7.xsd => 
spring/camel-spring-3.11.7.xsd} (100%)
 rename schema/{spring-xml/camel-spring-xml-3.12.0.xsd => 
spring/camel-spring-3.12.0.xsd} (100%)
 rename 

Error while running github feature from .asf.yaml in camel-website-pub!

2022-05-23 Thread Apache Infrastructure


An error occurred while running github feature in .asf.yaml!:
422 {"message": "Validation Failed", "errors": [{"message": "Sorry, you need to 
allow at least one merge strategy. (no_merge_method)", "resource": 
"Repository", "field": "merge_commit_allowed", "code": "invalid"}], 
"documentation_url": 
"https://docs.github.com/rest/reference/repos#update-a-repository"}



[GitHub] [camel-k] robertonav20 commented on issue #1238: Multi-architecture support

2022-05-23 Thread GitBox


robertonav20 commented on issue #1238:
URL: https://github.com/apache/camel-k/issues/1238#issuecomment-1134633609

   Ok Great! Thanks!
   Anyway you are limited by buildah architecture support, for others solutions 
it's necessary fix the dependency problem which i describe some comment ago
   
   
   I will try to add the platform field as attribute of IntegrationPlatform 
struct, but i don't know these classes and model, can you suggest how to 
proceed?.


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

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

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



[camel-kamelets] branch regen_bot updated (9fc700a7 -> f87774cf)

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

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


from 9fc700a7 Turn AWS Region into an enum - Regen
 add 0486c474 Upgrade Camel to version 3.17.0
 add f87774cf Point to 3.17.x for main

No new revisions were added by this update.

Summary of changes:
 docs/antora.yml | 4 ++--
 pom.xml | 2 +-
 2 files changed, 3 insertions(+), 3 deletions(-)



[camel-kamelets] branch 0.8.x-docs created (now 5b47a255)

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

acosentino pushed a change to branch 0.8.x-docs
in repository https://gitbox.apache.org/repos/asf/camel-kamelets.git


  at 5b47a255 Upgrade to Camel K 1.9.2 in the docs refs

This branch includes the following new commits:

 new 5b47a255 Upgrade to Camel K 1.9.2 in the docs refs

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.




[camel-kamelets] 01/01: Upgrade to Camel K 1.9.2 in the docs refs

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

acosentino pushed a commit to branch 0.8.x-docs
in repository https://gitbox.apache.org/repos/asf/camel-kamelets.git

commit 5b47a255fc5e3d937c49e0129e73ed5c71a34750
Author: Andrea Cosentino 
AuthorDate: Mon May 23 14:20:30 2022 +0200

Upgrade to Camel K 1.9.2 in the docs refs
---
 docs/antora.yml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/docs/antora.yml b/docs/antora.yml
index c8d6ca96..0e999e74 100644
--- a/docs/antora.yml
+++ b/docs/antora.yml
@@ -27,7 +27,7 @@ asciidoc:
 requires: "'util=camel-website-util,kamelets=xref:js/kamelets.js'"
 # Update to appropriate released camel-k version on release
 version-used: true
-camel-k-version: 1.9.1
+camel-k-version: 1.9.2
 camel-k-docs-version: 1.9.x
 #camel-kafka-connector-version: none
 #camel-kafka-connector-docs-version: none



[camel-kamelets] branch main updated: Point to 3.17.x for main

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

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


The following commit(s) were added to refs/heads/main by this push:
 new f87774cf Point to 3.17.x for main
f87774cf is described below

commit f87774cfa658cb9c1ad0e314b139ec044a360951
Author: Andrea Cosentino 
AuthorDate: Mon May 23 14:13:31 2022 +0200

Point to 3.17.x for main
---
 docs/antora.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/docs/antora.yml b/docs/antora.yml
index 71386ca7..7cabfdcc 100644
--- a/docs/antora.yml
+++ b/docs/antora.yml
@@ -34,5 +34,5 @@ asciidoc:
 camel-k-docs-version: next
 #camel-kafka-connector-version: none
 #camel-kafka-connector-docs-version: none
-camel-version: 3.16.0
-camel-docs-version: 3.16.x
+camel-version: 3.17.0
+camel-docs-version: 3.17.x



[camel-kamelets] branch docs-fix created (now 6a3e2b07)

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

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


  at 6a3e2b07 Point to 3.17.x for main

No new revisions were added by this update.



[GitHub] [camel-kamelets] oscerd merged pull request #936: Point to 3.17.x for main

2022-05-23 Thread GitBox


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


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

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

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



[camel-kamelets] branch main updated: Upgrade Camel to version 3.17.0

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

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


The following commit(s) were added to refs/heads/main by this push:
 new 0486c474 Upgrade Camel to version 3.17.0
0486c474 is described below

commit 0486c474cfc80c2d2fbb69d71393e791716c89ac
Author: Andrea Cosentino 
AuthorDate: Mon May 23 13:54:31 2022 +0200

Upgrade Camel to version 3.17.0
---
 pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/pom.xml b/pom.xml
index 94f9e8f0..e0df578b 100644
--- a/pom.xml
+++ b/pom.xml
@@ -58,7 +58,7 @@
 2.1.1
 0.13
 
-3.16.0
+3.17.0
 1.7.36
 2.17.2
 2.13.2



[GitHub] [camel-kamelets] oscerd merged pull request #935: Upgrade Camel to version 3.17.0

2022-05-23 Thread GitBox


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


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

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

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



[GitHub] [camel-kamelets] oscerd closed issue #934: Upgrade to Camel 3.17.0

2022-05-23 Thread GitBox


oscerd closed issue #934: Upgrade to Camel 3.17.0
URL: https://github.com/apache/camel-kamelets/issues/934


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

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

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



[GitHub] [camel-kamelets] oscerd opened a new pull request, #935: Upgrade Camel to version 3.17.0

2022-05-23 Thread GitBox


oscerd opened a new pull request, #935:
URL: https://github.com/apache/camel-kamelets/pull/935

   Fixes #934 


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

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

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



[camel-kamelets] 01/01: Upgrade Camel to version 3.17.0

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

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

commit 0db8af0cc95f5144278271e1bbf8eb221f501bef
Author: Andrea Cosentino 
AuthorDate: Mon May 23 13:54:31 2022 +0200

Upgrade Camel to version 3.17.0
---
 pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/pom.xml b/pom.xml
index 94f9e8f0..e0df578b 100644
--- a/pom.xml
+++ b/pom.xml
@@ -58,7 +58,7 @@
 2.1.1
 0.13
 
-3.16.0
+3.17.0
 1.7.36
 2.17.2
 2.13.2



[camel-kamelets] branch camel-3.17.0 created (now 0db8af0c)

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

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


  at 0db8af0c Upgrade Camel to version 3.17.0

This branch includes the following new commits:

 new 0db8af0c Upgrade Camel to version 3.17.0

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.




[GitHub] [camel-quarkus] JiriOndrusek opened a new pull request, #3804: Aws SQS: Remove unnecessary headers from the test because of CAMEL-18…

2022-05-23 Thread GitBox


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

   fixes https://github.com/apache/camel-quarkus/issues/3803
   
   (requires https://github.com/apache/camel/pull/7633, therefore against 
camel-main)
   
   


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

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

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



[GitHub] [camel-k] squakez commented on issue #1238: Multi-architecture support

2022-05-23 Thread GitBox


squakez commented on issue #1238:
URL: https://github.com/apache/camel-k/issues/1238#issuecomment-1134576390

   Yeah, I am thinking on a generic situation where you have multiple nodes in 
your cluster, and the operator is running on any non-ARM architecture. Then you 
have a special node in ARM architecture where you are willing to run the 
Integrations. In such case, having that value as a parameter would help.


-- 
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] JiriOndrusek opened a new issue, #3803: Aws2 SQS: remove unnecessary headers from the test because of CAMEL-18123

2022-05-23 Thread GitBox


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

   Fix of https://issues.apache.org/jira/browse/CAMEL-18123, makes some header 
parameters unnecessary for purge/delete queue actions (i.e. 
https://github.com/apache/camel-quarkus/blob/main/integration-test-groups/aws2/aws2-sqs/src/main/java/org/apache/camel/quarkus/component/aws2/sqs/it/Aws2SqsResource.java#L86)


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

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

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



[GitHub] [camel-k] robertonav20 commented on issue #1238: Multi-architecture support

2022-05-23 Thread GitBox


robertonav20 commented on issue #1238:
URL: https://github.com/apache/camel-k/issues/1238#issuecomment-1134565226

   @squakez sorry, I don't understand why should be parameterized? 
   The integration kit are builded inside kubernetes so with architecture of 
the node amd64, arm64 etc  this thing can't be modified by the user.
   
   Can you describe me?


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

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

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



[camel-website] branch regen_bot updated (a784f11b -> 957b021e)

2022-05-23 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-website.git


omit a784f11b Regen for commit 262e64e660678a99377fb19b4bfb41d885060d70
 add 957b021e Regen for commit 0f8aabd6fc98cdbec7829e569a0c860551c01e2a

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   (a784f11b)
\
 N -- N -- N   refs/heads/regen_bot (957b021e)

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] 01/01: Regen for commit 0f8aabd6fc98cdbec7829e569a0c860551c01e2a

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

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

commit 957b021e2d0abbf39ddf17343ffb640216c29c3c
Author: oscerd 
AuthorDate: Mon May 23 11:01:33 2022 +

Regen for commit 0f8aabd6fc98cdbec7829e569a0c860551c01e2a

Signed-off-by: GitHub 
---
 antora-ui-camel/public/_/data/rev-manifest.json   | 1 +
 antora-ui-camel/public/_/helpers/asset.js | 1 +
 antora-ui-camel/public/_/img/jbang-123e48aa14.svg | 1 +
 antora-ui-camel/public/_/rev-manifest | 1 +
 4 files changed, 4 insertions(+)

diff --git a/antora-ui-camel/public/_/data/rev-manifest.json 
b/antora-ui-camel/public/_/data/rev-manifest.json
index 762df3cd..d90d83d7 100644
--- a/antora-ui-camel/public/_/data/rev-manifest.json
+++ b/antora-ui-camel/public/_/data/rev-manifest.json
@@ -22,6 +22,7 @@
   "img/github.svg": "img/github-c5ff589ac9.svg",
   "img/home-o.svg": "img/home-o-5f818ccd11.svg",
   "img/home.svg": "img/home-36f9a3c81a.svg",
+  "img/jbang.svg": "img/jbang-123e48aa14.svg",
   "img/karavan.svg": "img/karavan-feb7559d76.svg",
   "img/knative.svg": "img/knative-81c3109183.svg",
   "img/logo-camel-medium.png": "img/logo-camel-medium-372cf8688f.png",
diff --git a/antora-ui-camel/public/_/helpers/asset.js 
b/antora-ui-camel/public/_/helpers/asset.js
index f8106af5..cbdf982a 100644
--- a/antora-ui-camel/public/_/helpers/asset.js
+++ b/antora-ui-camel/public/_/helpers/asset.js
@@ -24,6 +24,7 @@ const manifest = {
   "img/github.svg": "img/github-c5ff589ac9.svg",
   "img/home-o.svg": "img/home-o-5f818ccd11.svg",
   "img/home.svg": "img/home-36f9a3c81a.svg",
+  "img/jbang.svg": "img/jbang-123e48aa14.svg",
   "img/karavan.svg": "img/karavan-feb7559d76.svg",
   "img/knative.svg": "img/knative-81c3109183.svg",
   "img/logo-camel-medium.png": "img/logo-camel-medium-372cf8688f.png",
diff --git a/antora-ui-camel/public/_/img/jbang-123e48aa14.svg 
b/antora-ui-camel/public/_/img/jbang-123e48aa14.svg
new file mode 100644
index ..1cab253b
--- /dev/null
+++ b/antora-ui-camel/public/_/img/jbang-123e48aa14.svg
@@ -0,0 +1 @@
+http://www.w3.org/2000/svg; 
viewBox="0 0 1024 1024">

[camel-website] branch main created (now 957b021e)

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

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


  at 957b021e Regen for commit 0f8aabd6fc98cdbec7829e569a0c860551c01e2a

This branch includes the following new commits:

 new 957b021e Regen for commit 0f8aabd6fc98cdbec7829e569a0c860551c01e2a

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.




[GitHub] [camel-website] oscerd merged pull request #853: UI bundle regen

2022-05-23 Thread GitBox


oscerd merged PR #853:
URL: https://github.com/apache/camel-website/pull/853


-- 
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 regen_bot updated (569ec4bd -> a784f11b)

2022-05-23 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-website.git


omit 569ec4bd Regen for commit 0f8aabd6fc98cdbec7829e569a0c860551c01e2a
 add 262e64e6 CAMEL-18138: camel-spring XSD files should be in /spring and 
not /spring-xml folder on the website for online access for Camel Spring XML 
users to download the XSD from its known location. Update camel-spring.xsd to 
latest 3.17.0 release (was 1 year old).
 add a784f11b Regen for commit 262e64e660678a99377fb19b4bfb41d885060d70

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   (569ec4bd)
\
 N -- N -- N   refs/heads/regen_bot (a784f11b)

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

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

No new revisions were added by this update.

Summary of changes:
 .../camel-spring-3.11.0.xsd}   |0
 .../camel-spring-3.11.1.xsd}   |0
 .../camel-spring-3.11.2.xsd}   |0
 .../camel-spring-3.11.3.xsd}   |0
 .../camel-spring-3.11.4.xsd}   |0
 .../camel-spring-3.11.5.xsd}   |0
 .../camel-spring-3.11.6.xsd}   |0
 .../camel-spring-3.11.7.xsd}   |0
 .../camel-spring-3.12.0.xsd}   |0
 .../camel-spring-3.13.0.xsd}   |0
 .../camel-spring-3.14.0.xsd}   |0
 .../camel-spring-3.14.1.xsd}   |0
 .../camel-spring-3.14.2.xsd}   |0
 .../camel-spring-3.14.3.xsd}   |0
 .../camel-spring-3.15.0.xsd}   |0
 .../camel-spring-3.16.0.xsd}   |0
 .../camel-spring-3.17.0.xsd}   |0
 static/schema/spring/camel-spring.xsd  | 4653 ++--
 18 files changed, 2239 insertions(+), 2414 deletions(-)
 rename static/schema/{spring-xml/camel-spring-xml-3.11.0.xsd => 
spring/camel-spring-3.11.0.xsd} (100%)
 rename static/schema/{spring-xml/camel-spring-xml-3.11.1.xsd => 
spring/camel-spring-3.11.1.xsd} (100%)
 rename static/schema/{spring-xml/camel-spring-xml-3.11.2.xsd => 
spring/camel-spring-3.11.2.xsd} (100%)
 rename static/schema/{spring-xml/camel-spring-xml-3.11.3.xsd => 
spring/camel-spring-3.11.3.xsd} (100%)
 rename static/schema/{spring-xml/camel-spring-xml-3.11.4.xsd => 
spring/camel-spring-3.11.4.xsd} (100%)
 rename static/schema/{spring-xml/camel-spring-xml-3.11.5.xsd => 
spring/camel-spring-3.11.5.xsd} (100%)
 rename static/schema/{spring-xml/camel-spring-xml-3.11.6.xsd => 
spring/camel-spring-3.11.6.xsd} (100%)
 rename static/schema/{spring-xml/camel-spring-xml-3.11.7.xsd => 
spring/camel-spring-3.11.7.xsd} (100%)
 rename static/schema/{spring-xml/camel-spring-xml-3.12.0.xsd => 
spring/camel-spring-3.12.0.xsd} (100%)
 rename static/schema/{spring-xml/camel-spring-xml-3.13.0.xsd => 
spring/camel-spring-3.13.0.xsd} (100%)
 rename static/schema/{spring-xml/camel-spring-xml-3.14.0.xsd => 
spring/camel-spring-3.14.0.xsd} (100%)
 rename static/schema/{spring-xml/camel-spring-xml-3.14.1.xsd => 
spring/camel-spring-3.14.1.xsd} (100%)
 rename static/schema/{spring-xml/camel-spring-xml-3.14.2.xsd => 
spring/camel-spring-3.14.2.xsd} (100%)
 rename static/schema/{spring-xml/camel-spring-xml-3.14.3.xsd => 
spring/camel-spring-3.14.3.xsd} (100%)
 rename static/schema/{spring-xml/camel-spring-xml-3.15.0.xsd => 
spring/camel-spring-3.15.0.xsd} (100%)
 rename static/schema/{spring-xml/camel-spring-xml-3.16.0.xsd => 
spring/camel-spring-3.16.0.xsd} (100%)
 rename static/schema/{spring-xml/camel-spring-xml-3.17.0.xsd => 
spring/camel-spring-3.17.0.xsd} (100%)



[GitHub] [camel-website] github-actions[bot] opened a new pull request, #853: UI bundle regen

2022-05-23 Thread GitBox


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

   Regen bot :robot: found some uncommited changes after running build on 
:camel-website/antora-ui-bundle: 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-website] branch main updated: Regen for commit 0f8aabd6fc98cdbec7829e569a0c860551c01e2a

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

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


The following commit(s) were added to refs/heads/main by this push:
 new 957b021e Regen for commit 0f8aabd6fc98cdbec7829e569a0c860551c01e2a
957b021e is described below

commit 957b021e2d0abbf39ddf17343ffb640216c29c3c
Author: oscerd 
AuthorDate: Mon May 23 11:01:33 2022 +

Regen for commit 0f8aabd6fc98cdbec7829e569a0c860551c01e2a

Signed-off-by: GitHub 
---
 antora-ui-camel/public/_/data/rev-manifest.json   | 1 +
 antora-ui-camel/public/_/helpers/asset.js | 1 +
 antora-ui-camel/public/_/img/jbang-123e48aa14.svg | 1 +
 antora-ui-camel/public/_/rev-manifest | 1 +
 4 files changed, 4 insertions(+)

diff --git a/antora-ui-camel/public/_/data/rev-manifest.json 
b/antora-ui-camel/public/_/data/rev-manifest.json
index 762df3cd..d90d83d7 100644
--- a/antora-ui-camel/public/_/data/rev-manifest.json
+++ b/antora-ui-camel/public/_/data/rev-manifest.json
@@ -22,6 +22,7 @@
   "img/github.svg": "img/github-c5ff589ac9.svg",
   "img/home-o.svg": "img/home-o-5f818ccd11.svg",
   "img/home.svg": "img/home-36f9a3c81a.svg",
+  "img/jbang.svg": "img/jbang-123e48aa14.svg",
   "img/karavan.svg": "img/karavan-feb7559d76.svg",
   "img/knative.svg": "img/knative-81c3109183.svg",
   "img/logo-camel-medium.png": "img/logo-camel-medium-372cf8688f.png",
diff --git a/antora-ui-camel/public/_/helpers/asset.js 
b/antora-ui-camel/public/_/helpers/asset.js
index f8106af5..cbdf982a 100644
--- a/antora-ui-camel/public/_/helpers/asset.js
+++ b/antora-ui-camel/public/_/helpers/asset.js
@@ -24,6 +24,7 @@ const manifest = {
   "img/github.svg": "img/github-c5ff589ac9.svg",
   "img/home-o.svg": "img/home-o-5f818ccd11.svg",
   "img/home.svg": "img/home-36f9a3c81a.svg",
+  "img/jbang.svg": "img/jbang-123e48aa14.svg",
   "img/karavan.svg": "img/karavan-feb7559d76.svg",
   "img/knative.svg": "img/knative-81c3109183.svg",
   "img/logo-camel-medium.png": "img/logo-camel-medium-372cf8688f.png",
diff --git a/antora-ui-camel/public/_/img/jbang-123e48aa14.svg 
b/antora-ui-camel/public/_/img/jbang-123e48aa14.svg
new file mode 100644
index ..1cab253b
--- /dev/null
+++ b/antora-ui-camel/public/_/img/jbang-123e48aa14.svg
@@ -0,0 +1 @@
+http://www.w3.org/2000/svg; 
viewBox="0 0 1024 1024">

[GitHub] [camel-website] oscerd merged pull request #851: UI bundle regen

2022-05-23 Thread GitBox


oscerd merged PR #851:
URL: https://github.com/apache/camel-website/pull/851


-- 
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 regen_bot updated (1ecb8744 -> 569ec4bd)

2022-05-23 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-website.git


omit 1ecb8744 Regen for commit d544e5c909c357c5619593362886368187e17d61
 add 0f8aabd6 Release Camel K 1.9.2
 add 569ec4bd Regen for commit 0f8aabd6fc98cdbec7829e569a0c860551c01e2a

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   (1ecb8744)
\
 N -- N -- N   refs/heads/regen_bot (569ec4bd)

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:
 content/releases/k/release-1.9.2.md | 12 
 1 file changed, 12 insertions(+)
 create mode 100644 content/releases/k/release-1.9.2.md



[camel-website] branch main updated: Release Camel K 1.9.2

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

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


The following commit(s) were added to refs/heads/main by this push:
 new 0f8aabd6 Release Camel K 1.9.2
0f8aabd6 is described below

commit 0f8aabd6fc98cdbec7829e569a0c860551c01e2a
Author: Andrea Cosentino 
AuthorDate: Mon May 23 11:34:32 2022 +0200

Release Camel K 1.9.2
---
 content/releases/k/release-1.9.2.md | 12 
 1 file changed, 12 insertions(+)

diff --git a/content/releases/k/release-1.9.2.md 
b/content/releases/k/release-1.9.2.md
new file mode 100644
index ..a69f0bc2
--- /dev/null
+++ b/content/releases/k/release-1.9.2.md
@@ -0,0 +1,12 @@
+---
+url: "/releases/k-1.9.2/"
+date: 2022-05-23
+type: release-note
+version: "1.9.2"
+title: "Camel-K 1.9.2"
+preview: ""
+changelog: ""
+category: "camel-k"
+milestone: 33
+jdk: [11]
+---



[GitHub] [camel-website] oscerd merged pull request #852: Release Camel K 1.9.2

2022-05-23 Thread GitBox


oscerd merged PR #852:
URL: https://github.com/apache/camel-website/pull/852


-- 
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] github-actions[bot] commented on pull request #852: Release Camel K 1.9.2

2022-05-23 Thread GitBox


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

    Preview is available at https://pr-852--camel.netlify.app


-- 
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 (54bb4f17c31 -> c17345b4b9a)

2022-05-23 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 54bb4f17c31 camel-catalog - Do not include spring xml models.
 add cf655c2aefa Regen for commit e116bfb301e94bb296ab9770ee0e0bd6e5c3c308 
(#7667)
 add 5f87d8b01a6 camel-jbang - Polished
 add 895cf7fc771 CAMEL-18117: camel-jbang - Use profile for commands such 
as run, uber-jar, which allows the profile to control which properties file to 
use with settings.
 add 7db71673406 camel-jbang - Polished
 add bc629b0b5b8 camel-jbang - Polished
 add 82ca7fb67be CAMEL-18117: camel-jbang - Use profile for commands such 
as run, uber-jar, which allows the profile to control which properties file to 
use with settings.
 add c17345b4b9a CAMEL-18117: camel-jbang - Use profile for commands such 
as run, uber-jar, which allows the profile to control which properties file to 
use with settings.

No new revisions were added by this update.

Summary of changes:
 .../apache/camel/dsl/jbang/core/commands/Bind.java |  11 +-
 .../camel/dsl/jbang/core/commands/Build.java   |  16 ++-
 .../{CodeGenerator.java => CamelCommand.java}  |  24 +++--
 .../dsl/jbang/core/commands/CamelJBangMain.java|  37 ---
 .../dsl/jbang/core/commands/CodeGenerator.java |   9 +-
 .../dsl/jbang/core/commands/CodeRestGenerator.java |   9 +-
 .../camel/dsl/jbang/core/commands/Deploy.java  |  10 +-
 .../camel/dsl/jbang/core/commands/Image.java   |   9 +-
 .../apache/camel/dsl/jbang/core/commands/Init.java |  10 +-
 .../camel/dsl/jbang/core/commands/Manifest.java|   9 +-
 .../camel/dsl/jbang/core/commands/Package.java |  16 ++-
 .../apache/camel/dsl/jbang/core/commands/Pipe.java |  15 ++-
 .../camel/dsl/jbang/core/commands/Profile.java |   3 +-
 .../{PropertiesHelper.java => ProfileHelper.java}  |  44 
 .../apache/camel/dsl/jbang/core/commands/Run.java  | 119 +++--
 .../camel/dsl/jbang/core/commands/UberJar.java |  50 ++---
 .../camel/dsl/jbang/core/commands/Undeploy.java|   9 +-
 17 files changed, 216 insertions(+), 184 deletions(-)
 copy 
dsl/camel-jbang/camel-jbang-core/src/main/java/org/apache/camel/dsl/jbang/core/commands/{CodeGenerator.java
 => CamelCommand.java} (72%)
 rename 
dsl/camel-jbang/camel-jbang-core/src/main/java/org/apache/camel/dsl/jbang/core/commands/{PropertiesHelper.java
 => ProfileHelper.java} (84%)



[GitHub] [camel-quarkus] aloubyansky commented on issue #3788: BOM generation output is platform dependent

2022-05-23 Thread GitBox


aloubyansky commented on issue #3788:
URL: https://github.com/apache/camel-quarkus/issues/3788#issuecomment-1134505157

   Right, it looks like a problem for the users of the extension in general.


-- 
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: Release Helm 0.10.2

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

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


The following commit(s) were added to refs/heads/main by this push:
 new 50405daab Release Helm 0.10.2
50405daab is described below

commit 50405daab16601d65d33b526fedd8a6717e81f6f
Author: Andrea Cosentino 
AuthorDate: Mon May 23 12:12:00 2022 +0200

Release Helm 0.10.2
---
 docs/charts/camel-k-0.10.2.tgz | Bin 0 -> 112153 bytes
 docs/charts/index.yaml |  25 +
 helm/camel-k/Chart.yaml|   2 +-
 3 files changed, 26 insertions(+), 1 deletion(-)

diff --git a/docs/charts/camel-k-0.10.2.tgz b/docs/charts/camel-k-0.10.2.tgz
new file mode 100644
index 0..299d4a6c1
Binary files /dev/null and b/docs/charts/camel-k-0.10.2.tgz differ
diff --git a/docs/charts/index.yaml b/docs/charts/index.yaml
index 8569f0a39..d795a9ac6 100644
--- a/docs/charts/index.yaml
+++ b/docs/charts/index.yaml
@@ -1,6 +1,31 @@
 apiVersion: v1
 entries:
   camel-k:
+  - apiVersion: v2
+appVersion: 1.9.2
+created: "2022-05-23T12:10:55.652693993+02:00"
+description: A lightweight integration platform, born on Kubernetes, with 
serverless
+  superpowers
+digest: bbf1187380da9a5c9725e8c1a94ea49dd858d4dab7da7ea13345a04aa24911d3
+home: https://camel.apache.org/camel-k/latest/
+icon: https://github.com/apache/camel/raw/main/docs/img/logo64-d.png
+keywords:
+- serverless
+- integration
+- patterns
+maintainers:
+- email: nferr...@apache.org
+  name: nferraro
+name: camel-k
+sources:
+- https://github.com/apache/camel-k
+- https://github.com/apache/camel-k-runtime
+- https://github.com/apache/camel-quarkus
+- https://github.com/apache/camel
+type: application
+urls:
+- https://apache.github.io/camel-k/charts/camel-k-0.10.2.tgz
+version: 0.10.2
   - apiVersion: v2
 appVersion: 1.9.1
 created: "2022-05-13T10:38:35.800812109+02:00"
diff --git a/helm/camel-k/Chart.yaml b/helm/camel-k/Chart.yaml
index 5576937a3..7cacca14b 100644
--- a/helm/camel-k/Chart.yaml
+++ b/helm/camel-k/Chart.yaml
@@ -31,7 +31,7 @@ type: application
 
 # This is the chart version. This version number should be incremented each 
time you make changes
 # to the chart and its templates, including the app version.
-version: 0.10.1
+version: 0.10.2
 
 # This is the version number of the application being deployed. This version 
number should be
 # incremented each time you make changes to the application.



[camel-k] 03/03: Set to next version 1.9.3-SNAPSHOT

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

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

commit bc382ba0aefaea144e39acb7f2adbc1e46287223
Author: Andrea Cosentino 
AuthorDate: Mon May 23 12:12:23 2022 +0200

Set to next version 1.9.3-SNAPSHOT
---
 helm/camel-k/Chart.yaml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/helm/camel-k/Chart.yaml b/helm/camel-k/Chart.yaml
index 746745354..2c304fd77 100644
--- a/helm/camel-k/Chart.yaml
+++ b/helm/camel-k/Chart.yaml
@@ -35,7 +35,7 @@ version: 0.10.2
 
 # This is the version number of the application being deployed. This version 
number should be
 # incremented each time you make changes to the application.
-appVersion: 1.9.2
+appVersion: 1.9.3-SNAPSHOT
 
 icon: https://github.com/apache/camel/raw/main/docs/img/logo64-d.png
 home: https://camel.apache.org/camel-k/latest/



[camel-k] branch release-1.9.x updated (46289bfaf -> bc382ba0a)

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

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


from 46289bfaf docs: Adding a link instead of explaining how to add another 
registry
 new 573db46e3 Set to next version 1.9.3-SNAPSHOT
 new 81ebb4b33 Release Helm 0.10.2
 new bc382ba0a Set to next version 1.9.3-SNAPSHOT

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


Summary of changes:
 config/manager/operator-deployment.yaml|   6 ++---
 .../bases/camel-k.clusterserviceversion.yaml   |   2 +-
 docs/charts/camel-k-0.10.2.tgz | Bin 0 -> 112153 bytes
 docs/charts/index.yaml |  25 +
 helm/camel-k/Chart.yaml|   4 ++--
 helm/camel-k/values.yaml   |   2 +-
 pkg/util/defaults/defaults.go  |   2 +-
 script/Makefile|   2 +-
 8 files changed, 34 insertions(+), 9 deletions(-)
 create mode 100644 docs/charts/camel-k-0.10.2.tgz



[camel-k] 02/03: Release Helm 0.10.2

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

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

commit 81ebb4b33ef8639b19f0ad95da3cedf5bb7580bc
Author: Andrea Cosentino 
AuthorDate: Mon May 23 12:12:00 2022 +0200

Release Helm 0.10.2
---
 docs/charts/camel-k-0.10.2.tgz | Bin 0 -> 112153 bytes
 docs/charts/index.yaml |  25 +
 helm/camel-k/Chart.yaml|   4 ++--
 3 files changed, 27 insertions(+), 2 deletions(-)

diff --git a/docs/charts/camel-k-0.10.2.tgz b/docs/charts/camel-k-0.10.2.tgz
new file mode 100644
index 0..299d4a6c1
Binary files /dev/null and b/docs/charts/camel-k-0.10.2.tgz differ
diff --git a/docs/charts/index.yaml b/docs/charts/index.yaml
index 8569f0a39..d795a9ac6 100644
--- a/docs/charts/index.yaml
+++ b/docs/charts/index.yaml
@@ -1,6 +1,31 @@
 apiVersion: v1
 entries:
   camel-k:
+  - apiVersion: v2
+appVersion: 1.9.2
+created: "2022-05-23T12:10:55.652693993+02:00"
+description: A lightweight integration platform, born on Kubernetes, with 
serverless
+  superpowers
+digest: bbf1187380da9a5c9725e8c1a94ea49dd858d4dab7da7ea13345a04aa24911d3
+home: https://camel.apache.org/camel-k/latest/
+icon: https://github.com/apache/camel/raw/main/docs/img/logo64-d.png
+keywords:
+- serverless
+- integration
+- patterns
+maintainers:
+- email: nferr...@apache.org
+  name: nferraro
+name: camel-k
+sources:
+- https://github.com/apache/camel-k
+- https://github.com/apache/camel-k-runtime
+- https://github.com/apache/camel-quarkus
+- https://github.com/apache/camel
+type: application
+urls:
+- https://apache.github.io/camel-k/charts/camel-k-0.10.2.tgz
+version: 0.10.2
   - apiVersion: v2
 appVersion: 1.9.1
 created: "2022-05-13T10:38:35.800812109+02:00"
diff --git a/helm/camel-k/Chart.yaml b/helm/camel-k/Chart.yaml
index 3df7e56f5..746745354 100644
--- a/helm/camel-k/Chart.yaml
+++ b/helm/camel-k/Chart.yaml
@@ -31,11 +31,11 @@ type: application
 
 # This is the chart version. This version number should be incremented each 
time you make changes
 # to the chart and its templates, including the app version.
-version: 0.10.1
+version: 0.10.2
 
 # This is the version number of the application being deployed. This version 
number should be
 # incremented each time you make changes to the application.
-appVersion: 1.9.3-SNAPSHOT
+appVersion: 1.9.2
 
 icon: https://github.com/apache/camel/raw/main/docs/img/logo64-d.png
 home: https://camel.apache.org/camel-k/latest/



[camel-k] 01/03: Set to next version 1.9.3-SNAPSHOT

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

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

commit 573db46e31156f282d4eb735fe4f02f547f3c03b
Author: Andrea Cosentino 
AuthorDate: Mon May 23 12:07:49 2022 +0200

Set to next version 1.9.3-SNAPSHOT
---
 config/manager/operator-deployment.yaml   | 6 +++---
 config/manifests/bases/camel-k.clusterserviceversion.yaml | 2 +-
 helm/camel-k/Chart.yaml   | 2 +-
 helm/camel-k/values.yaml  | 2 +-
 pkg/util/defaults/defaults.go | 2 +-
 script/Makefile   | 2 +-
 6 files changed, 8 insertions(+), 8 deletions(-)

diff --git a/config/manager/operator-deployment.yaml 
b/config/manager/operator-deployment.yaml
index 7ac3d3a2a..a2ee6348d 100644
--- a/config/manager/operator-deployment.yaml
+++ b/config/manager/operator-deployment.yaml
@@ -25,7 +25,7 @@ metadata:
 name: camel-k-operator
 app.kubernetes.io/component: operator
 app.kubernetes.io/name: camel-k
-app.kubernetes.io/version: "1.9.2-SNAPSHOT"
+app.kubernetes.io/version: "1.9.3-SNAPSHOT"
 spec:
   replicas: 1
   strategy:
@@ -41,12 +41,12 @@ spec:
 app: "camel-k"
 app.kubernetes.io/component: operator
 app.kubernetes.io/name: camel-k
-app.kubernetes.io/version: "1.9.2-SNAPSHOT"
+app.kubernetes.io/version: "1.9.3-SNAPSHOT"
 spec:
   serviceAccountName: camel-k-operator
   containers:
 - name: camel-k-operator
-  image: docker.io/apache/camel-k:1.9.2-SNAPSHOT
+  image: docker.io/apache/camel-k:1.9.3-SNAPSHOT
   imagePullPolicy: IfNotPresent
   command:
 - kamel
diff --git a/config/manifests/bases/camel-k.clusterserviceversion.yaml 
b/config/manifests/bases/camel-k.clusterserviceversion.yaml
index 719abd5cf..73dddf842 100644
--- a/config/manifests/bases/camel-k.clusterserviceversion.yaml
+++ b/config/manifests/bases/camel-k.clusterserviceversion.yaml
@@ -22,7 +22,7 @@ metadata:
 capabilities: Full Lifecycle
 categories: Integration & Delivery
 certified: "false"
-containerImage: docker.io/apache/camel-k:1.9.2-SNAPSHOT
+containerImage: docker.io/apache/camel-k:1.9.3-SNAPSHOT
 createdAt: 2022-04-26T08:32:16Z
 description: Apache Camel K is a lightweight integration platform, born on 
Kubernetes,
   with serverless superpowers.
diff --git a/helm/camel-k/Chart.yaml b/helm/camel-k/Chart.yaml
index ce5371c02..3df7e56f5 100644
--- a/helm/camel-k/Chart.yaml
+++ b/helm/camel-k/Chart.yaml
@@ -35,7 +35,7 @@ version: 0.10.1
 
 # This is the version number of the application being deployed. This version 
number should be
 # incremented each time you make changes to the application.
-appVersion: 1.9.2-SNAPSHOT
+appVersion: 1.9.3-SNAPSHOT
 
 icon: https://github.com/apache/camel/raw/main/docs/img/logo64-d.png
 home: https://camel.apache.org/camel-k/latest/
diff --git a/helm/camel-k/values.yaml b/helm/camel-k/values.yaml
index 2f53d6320..518d02d1a 100644
--- a/helm/camel-k/values.yaml
+++ b/helm/camel-k/values.yaml
@@ -23,7 +23,7 @@ nameOverride: ""
 fullnameOverride: ""
 
 operator:
-  image: docker.io/apache/camel-k:1.9.2-SNAPSHOT
+  image: docker.io/apache/camel-k:1.9.3-SNAPSHOT
 
 platform:
   build:
diff --git a/pkg/util/defaults/defaults.go b/pkg/util/defaults/defaults.go
index 74262052f..20058b81c 100644
--- a/pkg/util/defaults/defaults.go
+++ b/pkg/util/defaults/defaults.go
@@ -23,7 +23,7 @@ package defaults
 
 const (
// Version --
-   Version = "1.9.2-SNAPSHOT"
+   Version = "1.9.3-SNAPSHOT"
 
// DefaultRuntimeVersion --
DefaultRuntimeVersion = "1.13.0"
diff --git a/script/Makefile b/script/Makefile
index 113e07790..841c8a126 100644
--- a/script/Makefile
+++ b/script/Makefile
@@ -14,7 +14,7 @@
 # limitations under the License.
 
 VERSIONFILE := pkg/util/defaults/defaults.go
-VERSION ?= 1.9.2-SNAPSHOT
+VERSION ?= 1.9.3-SNAPSHOT
 OPERATOR_VERSION := $(subst -SNAPSHOT,,$(VERSION))
 LAST_RELEASED_IMAGE_NAME := camel-k-operator
 LAST_RELEASED_VERSION := 1.9.1



[camel] branch main updated: CAMEL-18117: camel-jbang - Use profile for commands such as run, uber-jar, which allows the profile to control which properties file to use with settings.

2022-05-23 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 c17345b4b9a CAMEL-18117: camel-jbang - Use profile for commands such 
as run, uber-jar, which allows the profile to control which properties file to 
use with settings.
c17345b4b9a is described below

commit c17345b4b9a2cbfe4a1d24a49c380d501e36e212
Author: Claus Ibsen 
AuthorDate: Mon May 23 11:53:07 2022 +0200

CAMEL-18117: camel-jbang - Use profile for commands such as run, uber-jar, 
which allows the profile to control which properties file to use with settings.
---
 .../src/main/java/org/apache/camel/dsl/jbang/core/commands/Run.java| 1 -
 .../main/java/org/apache/camel/dsl/jbang/core/commands/UberJar.java| 3 ++-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git 
a/dsl/camel-jbang/camel-jbang-core/src/main/java/org/apache/camel/dsl/jbang/core/commands/Run.java
 
b/dsl/camel-jbang/camel-jbang-core/src/main/java/org/apache/camel/dsl/jbang/core/commands/Run.java
index f7469387d45..8576f6cd5d5 100644
--- 
a/dsl/camel-jbang/camel-jbang-core/src/main/java/org/apache/camel/dsl/jbang/core/commands/Run.java
+++ 
b/dsl/camel-jbang/camel-jbang-core/src/main/java/org/apache/camel/dsl/jbang/core/commands/Run.java
@@ -23,7 +23,6 @@ import java.awt.datatransfer.UnsupportedFlavorException;
 import java.io.File;
 import java.io.FileInputStream;
 import java.io.FileOutputStream;
-import java.io.FilenameFilter;
 import java.io.IOException;
 import java.nio.charset.StandardCharsets;
 import java.nio.file.FileSystems;
diff --git 
a/dsl/camel-jbang/camel-jbang-core/src/main/java/org/apache/camel/dsl/jbang/core/commands/UberJar.java
 
b/dsl/camel-jbang/camel-jbang-core/src/main/java/org/apache/camel/dsl/jbang/core/commands/UberJar.java
index ef14f4322f5..81e555285d5 100644
--- 
a/dsl/camel-jbang/camel-jbang-core/src/main/java/org/apache/camel/dsl/jbang/core/commands/UberJar.java
+++ 
b/dsl/camel-jbang/camel-jbang-core/src/main/java/org/apache/camel/dsl/jbang/core/commands/UberJar.java
@@ -351,7 +351,8 @@ class UberJar extends CamelCommand {
 if (files != null) {
 for (File source : files) {
 // only copy files and skip settings/profile file as we do 
this later specially
-if (source.isDirectory() || 
source.getName().equals(Run.RUN_SETTINGS_FILE) || 
source.getName().equals(profile)) {
+if (source.isDirectory() || 
source.getName().equals(Run.RUN_SETTINGS_FILE)
+|| source.getName().equals(profile)) {
 continue;
 }
 File out = new File(target, source.getName());



[camel] 02/05: CAMEL-18117: camel-jbang - Use profile for commands such as run, uber-jar, which allows the profile to control which properties file to use with settings.

2022-05-23 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 895cf7fc771ae717fa5c6dc37abb0d55e521b8b6
Author: Claus Ibsen 
AuthorDate: Mon May 23 10:53:17 2022 +0200

CAMEL-18117: camel-jbang - Use profile for commands such as run, uber-jar, 
which allows the profile to control which properties file to use with settings.
---
 .../dsl/jbang/core/commands/CamelCommand.java  |  37 +++
 .../dsl/jbang/core/commands/CamelJBangMain.java|  17 +++-
 .../apache/camel/dsl/jbang/core/commands/Pipe.java |   8 +-
 .../dsl/jbang/core/commands/ProfileHelper.java |  25 +++--
 .../apache/camel/dsl/jbang/core/commands/Run.java  | 108 +++--
 .../camel/dsl/jbang/core/commands/UberJar.java |   8 +-
 6 files changed, 131 insertions(+), 72 deletions(-)

diff --git 
a/dsl/camel-jbang/camel-jbang-core/src/main/java/org/apache/camel/dsl/jbang/core/commands/CamelCommand.java
 
b/dsl/camel-jbang/camel-jbang-core/src/main/java/org/apache/camel/dsl/jbang/core/commands/CamelCommand.java
new file mode 100644
index 000..c6888b888a9
--- /dev/null
+++ 
b/dsl/camel-jbang/camel-jbang-core/src/main/java/org/apache/camel/dsl/jbang/core/commands/CamelCommand.java
@@ -0,0 +1,37 @@
+/*
+ * 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.dsl.jbang.core.commands;
+
+import java.util.concurrent.Callable;
+
+abstract class CamelCommand implements Callable {
+
+CamelJBangMain main;
+
+public CamelCommand(CamelJBangMain main) {
+this.main = main;
+}
+
+public CamelJBangMain getMain() {
+return main;
+}
+
+public String getProfile() {
+return main.getProfile();
+}
+
+}
diff --git 
a/dsl/camel-jbang/camel-jbang-core/src/main/java/org/apache/camel/dsl/jbang/core/commands/CamelJBangMain.java
 
b/dsl/camel-jbang/camel-jbang-core/src/main/java/org/apache/camel/dsl/jbang/core/commands/CamelJBangMain.java
index 979082ce800..fc22b313500 100644
--- 
a/dsl/camel-jbang/camel-jbang-core/src/main/java/org/apache/camel/dsl/jbang/core/commands/CamelJBangMain.java
+++ 
b/dsl/camel-jbang/camel-jbang-core/src/main/java/org/apache/camel/dsl/jbang/core/commands/CamelJBangMain.java
@@ -26,18 +26,20 @@ import picocli.CommandLine.Command;
 @Command(name = "camel", description = "Apache Camel CLI", 
mixinStandardHelpOptions = true)
 public class CamelJBangMain implements Callable {
 private static CommandLine commandLine;
+
 @CommandLine.Option(names = { "--profile" }, scope = 
CommandLine.ScopeType.INHERIT, defaultValue = "application",
 description = "Profile")
 private String profile;
 
 public static void run(String... args) {
-commandLine = new CommandLine(new CamelJBangMain())
-.addSubcommand("run", new CommandLine(new Run()))
+CamelJBangMain main = new CamelJBangMain();
+commandLine = new CommandLine(main)
+.addSubcommand("run", new CommandLine(new Run(main)))
 .addSubcommand("init", new CommandLine(new Init()))
 .addSubcommand("bind", new CommandLine(new Bind()))
-.addSubcommand("pipe", new CommandLine(new Pipe()))
+.addSubcommand("pipe", new CommandLine(new Pipe(main)))
 .addSubcommand("package", new CommandLine(new Package())
-.addSubcommand("uber-jar", new UberJar()))
+.addSubcommand("uber-jar", new UberJar(main)))
 .addSubcommand("generate", new CommandLine(new CodeGenerator())
 .addSubcommand("rest", new CodeRestGenerator()))
 .addSubcommand("build", new CommandLine(new Build())
@@ -61,7 +63,8 @@ public class CamelJBangMain implements Callable {
 return new String[] { v };
 });
 
-ProfileHelper.augmentWithProperties(commandLine, args);
+String profile = ProfileHelper.getProfile(args);
+ProfileHelper.augmentWithProperties(commandLine, profile, args);
 int exitCode = commandLine.execute(args);
 System.exit(exitCode);
 }
@@ -71,4 +74,8 @@ 

[camel] branch main updated (cf655c2aefa -> 82ca7fb67be)

2022-05-23 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 cf655c2aefa Regen for commit e116bfb301e94bb296ab9770ee0e0bd6e5c3c308 
(#7667)
 new 5f87d8b01a6 camel-jbang - Polished
 new 895cf7fc771 CAMEL-18117: camel-jbang - Use profile for commands such 
as run, uber-jar, which allows the profile to control which properties file to 
use with settings.
 new 7db71673406 camel-jbang - Polished
 new bc629b0b5b8 camel-jbang - Polished
 new 82ca7fb67be CAMEL-18117: camel-jbang - Use profile for commands such 
as run, uber-jar, which allows the profile to control which properties file to 
use with settings.

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:
 .../apache/camel/dsl/jbang/core/commands/Bind.java |  11 +-
 .../camel/dsl/jbang/core/commands/Build.java   |  16 ++-
 .../{CodeGenerator.java => CamelCommand.java}  |  24 +++--
 .../dsl/jbang/core/commands/CamelJBangMain.java|  37 ---
 .../dsl/jbang/core/commands/CodeGenerator.java |   9 +-
 .../dsl/jbang/core/commands/CodeRestGenerator.java |   9 +-
 .../camel/dsl/jbang/core/commands/Deploy.java  |  10 +-
 .../camel/dsl/jbang/core/commands/Image.java   |   9 +-
 .../apache/camel/dsl/jbang/core/commands/Init.java |  10 +-
 .../camel/dsl/jbang/core/commands/Manifest.java|   9 +-
 .../camel/dsl/jbang/core/commands/Package.java |  16 ++-
 .../apache/camel/dsl/jbang/core/commands/Pipe.java |  15 ++-
 .../camel/dsl/jbang/core/commands/Profile.java |   3 +-
 .../{PropertiesHelper.java => ProfileHelper.java}  |  44 
 .../apache/camel/dsl/jbang/core/commands/Run.java  | 120 +++--
 .../camel/dsl/jbang/core/commands/UberJar.java |  49 ++---
 .../camel/dsl/jbang/core/commands/Undeploy.java|   9 +-
 17 files changed, 216 insertions(+), 184 deletions(-)
 copy 
dsl/camel-jbang/camel-jbang-core/src/main/java/org/apache/camel/dsl/jbang/core/commands/{CodeGenerator.java
 => CamelCommand.java} (72%)
 rename 
dsl/camel-jbang/camel-jbang-core/src/main/java/org/apache/camel/dsl/jbang/core/commands/{PropertiesHelper.java
 => ProfileHelper.java} (84%)



[camel] 01/05: camel-jbang - Polished

2022-05-23 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 5f87d8b01a617ef33fb2b5eef821b46d22c9610f
Author: Claus Ibsen 
AuthorDate: Mon May 23 10:01:40 2022 +0200

camel-jbang - Polished
---
 .../dsl/jbang/core/commands/CamelJBangMain.java|  2 +-
 .../camel/dsl/jbang/core/commands/Profile.java |  3 ++-
 .../{PropertiesHelper.java => ProfileHelper.java}  | 31 +-
 3 files changed, 21 insertions(+), 15 deletions(-)

diff --git 
a/dsl/camel-jbang/camel-jbang-core/src/main/java/org/apache/camel/dsl/jbang/core/commands/CamelJBangMain.java
 
b/dsl/camel-jbang/camel-jbang-core/src/main/java/org/apache/camel/dsl/jbang/core/commands/CamelJBangMain.java
index 85752728754..979082ce800 100644
--- 
a/dsl/camel-jbang/camel-jbang-core/src/main/java/org/apache/camel/dsl/jbang/core/commands/CamelJBangMain.java
+++ 
b/dsl/camel-jbang/camel-jbang-core/src/main/java/org/apache/camel/dsl/jbang/core/commands/CamelJBangMain.java
@@ -61,7 +61,7 @@ public class CamelJBangMain implements Callable {
 return new String[] { v };
 });
 
-PropertiesHelper.augmentWithProperties(commandLine, args);
+ProfileHelper.augmentWithProperties(commandLine, args);
 int exitCode = commandLine.execute(args);
 System.exit(exitCode);
 }
diff --git 
a/dsl/camel-jbang/camel-jbang-core/src/main/java/org/apache/camel/dsl/jbang/core/commands/Profile.java
 
b/dsl/camel-jbang/camel-jbang-core/src/main/java/org/apache/camel/dsl/jbang/core/commands/Profile.java
index 92c12948ff2..bc7e5168b81 100644
--- 
a/dsl/camel-jbang/camel-jbang-core/src/main/java/org/apache/camel/dsl/jbang/core/commands/Profile.java
+++ 
b/dsl/camel-jbang/camel-jbang-core/src/main/java/org/apache/camel/dsl/jbang/core/commands/Profile.java
@@ -25,8 +25,9 @@ import picocli.CommandLine;
 public class Profile implements Callable {
 
 @CommandLine.Option(names = { "--profile" }, scope = 
CommandLine.ScopeType.INHERIT, defaultValue = "application",
-description = "Profile")
+description = "Profile to use (Loads properties file 
with the same profile name).")
 private String profile;
+
 @CommandLine.Unmatched
 private List unmatched;
 
diff --git 
a/dsl/camel-jbang/camel-jbang-core/src/main/java/org/apache/camel/dsl/jbang/core/commands/PropertiesHelper.java
 
b/dsl/camel-jbang/camel-jbang-core/src/main/java/org/apache/camel/dsl/jbang/core/commands/ProfileHelper.java
similarity index 86%
rename from 
dsl/camel-jbang/camel-jbang-core/src/main/java/org/apache/camel/dsl/jbang/core/commands/PropertiesHelper.java
rename to 
dsl/camel-jbang/camel-jbang-core/src/main/java/org/apache/camel/dsl/jbang/core/commands/ProfileHelper.java
index 88dec26c6e1..13cd2f42fd5 100644
--- 
a/dsl/camel-jbang/camel-jbang-core/src/main/java/org/apache/camel/dsl/jbang/core/commands/PropertiesHelper.java
+++ 
b/dsl/camel-jbang/camel-jbang-core/src/main/java/org/apache/camel/dsl/jbang/core/commands/ProfileHelper.java
@@ -30,7 +30,11 @@ import java.util.stream.Collectors;
 
 import picocli.CommandLine;
 
-public final class PropertiesHelper {
+/**
+ * Helper for CLI arguments with profile
+ */
+public final class ProfileHelper {
+
 private static final String PROPERTIES_FILE_EXTENSION = ".properties";
 private static final String DEFAULT_PROFILE = "application";
 private static final String PROFILE = "profile";
@@ -40,22 +44,23 @@ public final class PropertiesHelper {
 private static final List COMMON_ARGUMENTS = List.of("namespace", 
"name", "version");
 private static String propertiesFilename = "application.properties";
 
-private PropertiesHelper() {
+private ProfileHelper() {
 }
 
 public static void augmentWithProperties(CommandLine commandLine, 
String... args) {
-
 String profile = getProfile(args);
-if (!Objects.equals(profile, DEFAULT_PROFILE)) {
-propertiesFilename = profile + PROPERTIES_FILE_EXTENSION;
-// only show if not default
-System.out.println("Augmenting properties with profile " + 
profile);
-}
+propertiesFilename = profile + PROPERTIES_FILE_EXTENSION;
 
 Properties fileProperties = readProperties();
-Properties properties = replacePrefix(fileProperties);
-Properties augmentedProperties = augmentProperties(properties, 
commandLine);
-commandLine.setDefaultValueProvider(new 
CommandLine.PropertiesDefaultProvider(augmentedProperties));
+if (!fileProperties.isEmpty()) {
+if (!Objects.equals(profile, DEFAULT_PROFILE)) {
+// only show if not default
+System.out.println("Augmenting properties with profile " + 
profile);
+}
+Properties properties = replacePrefix(fileProperties);
+Properties augmentedProperties = 

[camel] 04/05: camel-jbang - Polished

2022-05-23 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 bc629b0b5b8fcb9dd1c6e1d405f4c56486dbb7b5
Author: Claus Ibsen 
AuthorDate: Mon May 23 11:03:50 2022 +0200

camel-jbang - Polished
---
 .../main/java/org/apache/camel/dsl/jbang/core/commands/Bind.java | 6 --
 .../java/org/apache/camel/dsl/jbang/core/commands/Build.java | 6 --
 .../org/apache/camel/dsl/jbang/core/commands/CamelCommand.java   | 9 -
 .../org/apache/camel/dsl/jbang/core/commands/CodeGenerator.java  | 3 ---
 .../apache/camel/dsl/jbang/core/commands/CodeRestGenerator.java  | 2 --
 .../java/org/apache/camel/dsl/jbang/core/commands/Deploy.java| 2 --
 .../java/org/apache/camel/dsl/jbang/core/commands/Image.java | 2 --
 .../main/java/org/apache/camel/dsl/jbang/core/commands/Init.java | 5 -
 .../java/org/apache/camel/dsl/jbang/core/commands/Manifest.java  | 2 --
 .../java/org/apache/camel/dsl/jbang/core/commands/Package.java   | 5 -
 .../main/java/org/apache/camel/dsl/jbang/core/commands/Pipe.java | 7 +--
 .../main/java/org/apache/camel/dsl/jbang/core/commands/Run.java  | 3 ---
 .../java/org/apache/camel/dsl/jbang/core/commands/UberJar.java   | 7 +--
 .../java/org/apache/camel/dsl/jbang/core/commands/Undeploy.java  | 2 --
 14 files changed, 10 insertions(+), 51 deletions(-)

diff --git 
a/dsl/camel-jbang/camel-jbang-core/src/main/java/org/apache/camel/dsl/jbang/core/commands/Bind.java
 
b/dsl/camel-jbang/camel-jbang-core/src/main/java/org/apache/camel/dsl/jbang/core/commands/Bind.java
index 7a6b2d0c8c8..1542381e664 100644
--- 
a/dsl/camel-jbang/camel-jbang-core/src/main/java/org/apache/camel/dsl/jbang/core/commands/Bind.java
+++ 
b/dsl/camel-jbang/camel-jbang-core/src/main/java/org/apache/camel/dsl/jbang/core/commands/Bind.java
@@ -36,7 +36,6 @@ import org.snakeyaml.engine.v2.parser.ParserImpl;
 import org.snakeyaml.engine.v2.scanner.StreamReader;
 import picocli.CommandLine;
 import picocli.CommandLine.Command;
-import picocli.CommandLine.Option;
 
 import static 
org.apache.camel.dsl.yaml.common.YamlDeserializerSupport.asStringSet;
 import static org.apache.camel.dsl.yaml.common.YamlDeserializerSupport.asText;
@@ -54,11 +53,6 @@ class Bind extends CamelCommand {
 @CommandLine.Parameters(description = "Name of binding file", arity = "1")
 private String file;
 
-//CHECKSTYLE:OFF
-@Option(names = { "-h", "--help" }, usageHelp = true, description = 
"Display the help and sub-commands")
-private boolean helpRequested = false;
-//CHECKSTYLE:ON
-
 public Bind(CamelJBangMain main) {
 super(main);
 }
diff --git 
a/dsl/camel-jbang/camel-jbang-core/src/main/java/org/apache/camel/dsl/jbang/core/commands/Build.java
 
b/dsl/camel-jbang/camel-jbang-core/src/main/java/org/apache/camel/dsl/jbang/core/commands/Build.java
index 8738f189e6c..72ef5352212 100644
--- 
a/dsl/camel-jbang/camel-jbang-core/src/main/java/org/apache/camel/dsl/jbang/core/commands/Build.java
+++ 
b/dsl/camel-jbang/camel-jbang-core/src/main/java/org/apache/camel/dsl/jbang/core/commands/Build.java
@@ -18,19 +18,13 @@ package org.apache.camel.dsl.jbang.core.commands;
 
 import picocli.CommandLine;
 import picocli.CommandLine.Command;
-import picocli.CommandLine.Option;
 
 @Command(name = "build", description = "Build Camel container image and 
resources (use --help to see sub commands)")
 class Build extends CamelCommand {
 
-//CHECKSTYLE:OFF
-@Option(names = { "-h", "--help" }, usageHelp = true, description = 
"Display the help and sub-commands")
-private boolean helpRequested = false;
-
 public Build(CamelJBangMain main) {
 super(main);
 }
-//CHECKSTYLE:ON
 
 @Override
 public Integer call() throws Exception {
diff --git 
a/dsl/camel-jbang/camel-jbang-core/src/main/java/org/apache/camel/dsl/jbang/core/commands/CamelCommand.java
 
b/dsl/camel-jbang/camel-jbang-core/src/main/java/org/apache/camel/dsl/jbang/core/commands/CamelCommand.java
index c6888b888a9..b1568a24f18 100644
--- 
a/dsl/camel-jbang/camel-jbang-core/src/main/java/org/apache/camel/dsl/jbang/core/commands/CamelCommand.java
+++ 
b/dsl/camel-jbang/camel-jbang-core/src/main/java/org/apache/camel/dsl/jbang/core/commands/CamelCommand.java
@@ -18,9 +18,16 @@ package org.apache.camel.dsl.jbang.core.commands;
 
 import java.util.concurrent.Callable;
 
+import picocli.CommandLine;
+
 abstract class CamelCommand implements Callable {
 
-CamelJBangMain main;
+private final CamelJBangMain main;
+
+//CHECKSTYLE:OFF
+@CommandLine.Option(names = { "-h", "--help" }, usageHelp = true, 
description = "Display the help and sub-commands")
+private boolean helpRequested = false;
+//CHECKSTYLE:ON
 
 public CamelCommand(CamelJBangMain main) {
 this.main = main;
diff --git 

[camel] 03/05: camel-jbang - Polished

2022-05-23 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 7db716734066fab618411936d691663b852e6cbc
Author: Claus Ibsen 
AuthorDate: Mon May 23 11:00:16 2022 +0200

camel-jbang - Polished
---
 .../apache/camel/dsl/jbang/core/commands/Bind.java |  7 +--
 .../camel/dsl/jbang/core/commands/Build.java   | 12 +++-
 .../dsl/jbang/core/commands/CamelJBangMain.java| 22 +++---
 .../dsl/jbang/core/commands/CodeGenerator.java |  8 +---
 .../dsl/jbang/core/commands/CodeRestGenerator.java |  7 +--
 .../camel/dsl/jbang/core/commands/Deploy.java  |  8 +---
 .../camel/dsl/jbang/core/commands/Image.java   |  7 +--
 .../apache/camel/dsl/jbang/core/commands/Init.java |  7 +--
 .../camel/dsl/jbang/core/commands/Manifest.java|  7 +--
 .../camel/dsl/jbang/core/commands/Package.java | 11 ++-
 .../apache/camel/dsl/jbang/core/commands/Pipe.java |  2 --
 .../camel/dsl/jbang/core/commands/UberJar.java |  1 -
 .../camel/dsl/jbang/core/commands/Undeploy.java|  7 +--
 13 files changed, 64 insertions(+), 42 deletions(-)

diff --git 
a/dsl/camel-jbang/camel-jbang-core/src/main/java/org/apache/camel/dsl/jbang/core/commands/Bind.java
 
b/dsl/camel-jbang/camel-jbang-core/src/main/java/org/apache/camel/dsl/jbang/core/commands/Bind.java
index eb0df0d8641..7a6b2d0c8c8 100644
--- 
a/dsl/camel-jbang/camel-jbang-core/src/main/java/org/apache/camel/dsl/jbang/core/commands/Bind.java
+++ 
b/dsl/camel-jbang/camel-jbang-core/src/main/java/org/apache/camel/dsl/jbang/core/commands/Bind.java
@@ -21,7 +21,6 @@ import java.io.InputStream;
 import java.net.URL;
 import java.util.Iterator;
 import java.util.Set;
-import java.util.concurrent.Callable;
 
 import org.apache.camel.github.GitHubResourceResolver;
 import org.apache.camel.impl.engine.DefaultResourceResolvers;
@@ -44,7 +43,7 @@ import static 
org.apache.camel.dsl.yaml.common.YamlDeserializerSupport.asText;
 import static org.apache.camel.dsl.yaml.common.YamlDeserializerSupport.nodeAt;
 
 @Command(name = "bind", description = "Bind source and sink Kamelets as a new 
Camel integration")
-class Bind implements Callable {
+class Bind extends CamelCommand {
 
 @CommandLine.Parameters(description = "Source such as a Kamelet or Camel 
endpoint uri", arity = "1")
 private String source;
@@ -60,6 +59,10 @@ class Bind implements Callable {
 private boolean helpRequested = false;
 //CHECKSTYLE:ON
 
+public Bind(CamelJBangMain main) {
+super(main);
+}
+
 @Override
 public Integer call() throws Exception {
 // the kamelet binding source and sink can either be a kamelet or an 
uri
diff --git 
a/dsl/camel-jbang/camel-jbang-core/src/main/java/org/apache/camel/dsl/jbang/core/commands/Build.java
 
b/dsl/camel-jbang/camel-jbang-core/src/main/java/org/apache/camel/dsl/jbang/core/commands/Build.java
index 0385a73c9f7..8738f189e6c 100644
--- 
a/dsl/camel-jbang/camel-jbang-core/src/main/java/org/apache/camel/dsl/jbang/core/commands/Build.java
+++ 
b/dsl/camel-jbang/camel-jbang-core/src/main/java/org/apache/camel/dsl/jbang/core/commands/Build.java
@@ -16,23 +16,25 @@
  */
 package org.apache.camel.dsl.jbang.core.commands;
 
-import java.util.concurrent.Callable;
-
 import picocli.CommandLine;
 import picocli.CommandLine.Command;
 import picocli.CommandLine.Option;
 
-@Command(name = "build", description = "Build Camel container image and 
resources")
-class Build implements Callable {
+@Command(name = "build", description = "Build Camel container image and 
resources (use --help to see sub commands)")
+class Build extends CamelCommand {
+
 //CHECKSTYLE:OFF
 @Option(names = { "-h", "--help" }, usageHelp = true, description = 
"Display the help and sub-commands")
 private boolean helpRequested = false;
+
+public Build(CamelJBangMain main) {
+super(main);
+}
 //CHECKSTYLE:ON
 
 @Override
 public Integer call() throws Exception {
 new CommandLine(this).execute("--help");
-
 return 0;
 }
 }
diff --git 
a/dsl/camel-jbang/camel-jbang-core/src/main/java/org/apache/camel/dsl/jbang/core/commands/CamelJBangMain.java
 
b/dsl/camel-jbang/camel-jbang-core/src/main/java/org/apache/camel/dsl/jbang/core/commands/CamelJBangMain.java
index fc22b313500..5d4b3b13ac0 100644
--- 
a/dsl/camel-jbang/camel-jbang-core/src/main/java/org/apache/camel/dsl/jbang/core/commands/CamelJBangMain.java
+++ 
b/dsl/camel-jbang/camel-jbang-core/src/main/java/org/apache/camel/dsl/jbang/core/commands/CamelJBangMain.java
@@ -35,18 +35,18 @@ public class CamelJBangMain implements Callable {
 CamelJBangMain main = new CamelJBangMain();
 commandLine = new CommandLine(main)
 .addSubcommand("run", new CommandLine(new Run(main)))
-.addSubcommand("init", new CommandLine(new Init()))
-

[camel-website] branch camel-k-1.9.2 created (now 5c0f97c5)

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

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


  at 5c0f97c5 Release Camel K 1.9.2

This branch includes the following new commits:

 new 5c0f97c5 Release Camel K 1.9.2

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.




[camel-website] 01/01: Release Camel K 1.9.2

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

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

commit 5c0f97c5b5cfad4874dc3b40043b7fb57f03bbff
Author: Andrea Cosentino 
AuthorDate: Mon May 23 11:34:32 2022 +0200

Release Camel K 1.9.2
---
 content/releases/k/release-1.9.2.md | 12 
 1 file changed, 12 insertions(+)

diff --git a/content/releases/k/release-1.9.2.md 
b/content/releases/k/release-1.9.2.md
new file mode 100644
index ..a69f0bc2
--- /dev/null
+++ b/content/releases/k/release-1.9.2.md
@@ -0,0 +1,12 @@
+---
+url: "/releases/k-1.9.2/"
+date: 2022-05-23
+type: release-note
+version: "1.9.2"
+title: "Camel-K 1.9.2"
+preview: ""
+changelog: ""
+category: "camel-k"
+milestone: 33
+jdk: [11]
+---



[camel-k-runtime] branch main updated (a3df073c -> e318501c)

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

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


from a3df073c Updated CHANGELOG.md
 add e318501c chore(dependencies): 1.14.0 new release cycle

No new revisions were added by this update.

Summary of changes:
 camel-k-cloudevents/deployment/pom.xml  | 2 +-
 camel-k-cloudevents/pom.xml | 2 +-
 camel-k-cloudevents/runtime/pom.xml | 2 +-
 camel-k-core/api/pom.xml| 2 +-
 camel-k-core/deployment/pom.xml | 2 +-
 camel-k-core/pom.xml| 2 +-
 camel-k-core/runtime/pom.xml| 2 +-
 camel-k-core/support/pom.xml| 2 +-
 camel-k-cron/deployment/pom.xml | 2 +-
 camel-k-cron/impl/pom.xml   | 2 +-
 camel-k-cron/pom.xml| 2 +-
 camel-k-cron/runtime/pom.xml| 2 +-
 camel-k-knative/consumer/deployment/pom.xml | 2 +-
 camel-k-knative/consumer/pom.xml| 2 +-
 camel-k-knative/consumer/runtime/pom.xml| 2 +-
 camel-k-knative/deployment/pom.xml  | 2 +-
 camel-k-knative/impl/pom.xml| 2 +-
 camel-k-knative/pom.xml | 2 +-
 camel-k-knative/producer/deployment/pom.xml | 2 +-
 camel-k-knative/producer/pom.xml| 2 +-
 camel-k-knative/producer/runtime/pom.xml| 2 +-
 camel-k-knative/runtime/pom.xml | 2 +-
 camel-k-master/deployment/pom.xml   | 2 +-
 camel-k-master/impl/pom.xml | 2 +-
 camel-k-master/pom.xml  | 2 +-
 camel-k-master/runtime/pom.xml  | 2 +-
 camel-k-runtime/deployment/pom.xml  | 2 +-
 camel-k-runtime/pom.xml | 2 +-
 camel-k-runtime/runtime/pom.xml | 2 +-
 camel-k-webhook/deployment/pom.xml  | 2 +-
 camel-k-webhook/impl/pom.xml| 2 +-
 camel-k-webhook/pom.xml | 2 +-
 camel-k-webhook/runtime/pom.xml | 2 +-
 components/camel-knative/camel-knative-test/pom.xml | 2 +-
 components/camel-knative/pom.xml| 2 +-
 components/pom.xml  | 2 +-
 distribution/pom.xml| 2 +-
 examples/cron/pom.xml   | 2 +-
 examples/groovy/pom.xml | 2 +-
 examples/java/pom.xml   | 2 +-
 examples/js/pom.xml | 2 +-
 examples/kafka-source-s3/pom.xml| 2 +-
 examples/kamelets-discovery/pom.xml | 2 +-
 examples/kamelets/pom.xml   | 2 +-
 examples/knative/pom.xml| 2 +-
 examples/kotlin/pom.xml | 2 +-
 examples/pom.xml| 2 +-
 examples/xml/pom.xml| 2 +-
 examples/yaml/pom.xml   | 2 +-
 itests/camel-k-itests-core/pom.xml  | 2 +-
 itests/camel-k-itests-cron/pom.xml  | 2 +-
 itests/camel-k-itests-kamelet/pom.xml   | 2 +-
 itests/camel-k-itests-knative-consumer/pom.xml  | 2 +-
 itests/camel-k-itests-knative-env-from-properties/pom.xml   | 2 +-
 itests/camel-k-itests-knative-env-from-registry/pom.xml | 2 +-
 itests/camel-k-itests-knative-producer/pom.xml  | 2 +-
 itests/camel-k-itests-knative-sinkbinding/pom.xml   | 2 +-
 itests/camel-k-itests-knative-source-groovy/pom.xml | 2 +-
 

[GitHub] [camel-k-runtime] squakez merged pull request #823: chore(dependencies): 1.14.0 new release cycle

2022-05-23 Thread GitBox


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


-- 
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 opened a new issue, #3294: Integration upgraded automatically after operator upgrade

2022-05-23 Thread GitBox


squakez opened a new issue, #3294:
URL: https://github.com/apache/camel-k/issues/3294

   Just tested with the following scenario:
   
   1. Use an operator version (ie, 1.8)
   2. Run a sample Integration
   3. Upgrade the operator version (ie, 1.9)
   
   The Integration on point 2 is rebuilt automatically (is that correct 
behavior?) And, even if that would be correct, the resulting Integration has 
still the previous operator version parameters, ie:
   ```
 status:
   ...
   phase: Running
   platform: camel-k
   profile: Kubernetes
   replicas: 1
   runtimeProvider: quarkus
   runtimeVersion: 1.12.0
   selector: camel.apache.org/integration=sample
   version: 1.8.2
   ```


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

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

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



[GitHub] [camel-k] squakez commented on issue #3294: Integration upgraded automatically after operator upgrade

2022-05-23 Thread GitBox


squakez commented on issue #3294:
URL: https://github.com/apache/camel-k/issues/3294#issuecomment-1134390270

   @astefanutti do you remind if the automatic rebuild was an intentional 
behavior?


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