[camel] branch main updated: Polished

2021-12-15 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 c9230f4  Polished
c9230f4 is described below

commit c9230f44272310503dc3ccde49ac5ceefc19e4a9
Author: Claus Ibsen 
AuthorDate: Thu Dec 16 08:39:02 2021 +0100

Polished
---
 .../src/main/java/org/apache/camel/Exchange.java   |  2 +-
 .../apache/camel/support/DefaultExchangeHolder.java| 18 ++
 2 files changed, 3 insertions(+), 17 deletions(-)

diff --git a/core/camel-api/src/main/java/org/apache/camel/Exchange.java 
b/core/camel-api/src/main/java/org/apache/camel/Exchange.java
index 5f34c55..52d4707 100644
--- a/core/camel-api/src/main/java/org/apache/camel/Exchange.java
+++ b/core/camel-api/src/main/java/org/apache/camel/Exchange.java
@@ -422,7 +422,7 @@ public interface Exchange {
 Map getAllProperties();
 
 /**
- * Returns whether any properties has been set
+ * Returns whether any properties have been set
  *
  * @return true if any properties has been set
  */
diff --git 
a/core/camel-support/src/main/java/org/apache/camel/support/DefaultExchangeHolder.java
 
b/core/camel-support/src/main/java/org/apache/camel/support/DefaultExchangeHolder.java
index 2436f04..405cd75 100644
--- 
a/core/camel-support/src/main/java/org/apache/camel/support/DefaultExchangeHolder.java
+++ 
b/core/camel-support/src/main/java/org/apache/camel/support/DefaultExchangeHolder.java
@@ -25,7 +25,6 @@ import java.util.LinkedHashMap;
 import java.util.Map;
 
 import org.apache.camel.Exchange;
-import org.apache.camel.ExtendedExchange;
 import org.apache.camel.RuntimeExchangeException;
 import org.apache.camel.WrappedFile;
 import org.apache.camel.util.ObjectHelper;
@@ -231,25 +230,12 @@ public class DefaultExchangeHolder implements 
Serializable {
 }
 
 private Map safeSetProperties(Exchange exchange, boolean 
allowSerializedHeaders) {
-if (exchange.hasProperties()) {
-Map map = 
checkValidExchangePropertyObjects("properties", exchange, 
exchange.getProperties(),
-allowSerializedHeaders);
-if (map != null && !map.isEmpty()) {
-properties = new LinkedHashMap<>(map);
-}
-}
 // also include the internal properties
-Map map = 
checkValidExchangePropertyObjects("properties", exchange,
-exchange.adapt(ExtendedExchange.class).getInternalProperties(),
+Map map = 
checkValidExchangePropertyObjects("properties", exchange, 
exchange.getAllProperties(),
 allowSerializedHeaders);
 if (map != null && !map.isEmpty()) {
-if (properties == null) {
-properties = new LinkedHashMap<>(map);
-} else {
-properties.putAll(map);
-}
+properties = new LinkedHashMap<>(map);
 }
-
 return null;
 }
 


[camel] branch regen_bot updated (3bdd817 -> 0816d95)

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

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


omit 3bdd817  Regen for commit 035dfaa1d9317e9547124fe16e015bbff92fce60
 add 0816d95  CAMEL-17337 - Resolve regression in FhirComponent

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   (3bdd817)
\
 N -- N -- N   refs/heads/regen_bot (0816d95)

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:
 .../org/apache/camel/catalog/components/fhir.json  |  25 +-
 .../component/fhir/FhirComponentConfigurer.java| 147 
 .../org/apache/camel/component/fhir/fhir.json  |  25 +-
 .../apache/camel/component/fhir/FhirComponent.java |  39 ++-
 .../apache/camel/component/fhir/FhirEndpoint.java  |   4 +-
 .../camel/component/fhir/internal/FhirHelper.java  |  70 ++--
 .../camel/component/fhir/FhirConfigurationIT.java  |   2 +-
 .../component/dsl/FhirComponentBuilderFactory.java | 380 -
 .../java/org/apache/camel/util/SensitiveUtils.java |   2 +
 9 files changed, 636 insertions(+), 58 deletions(-)


[camel] branch main updated: Regen for commit 035dfaa1d9317e9547124fe16e015bbff92fce60

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

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


The following commit(s) were added to refs/heads/main by this push:
 new decf613  Regen for commit 035dfaa1d9317e9547124fe16e015bbff92fce60
decf613 is described below

commit decf613fc21251048349b08cf6518fef9adb5d56
Author: davsclaus 
AuthorDate: Thu Dec 16 07:05:14 2021 +

Regen for commit 035dfaa1d9317e9547124fe16e015bbff92fce60

Signed-off-by: GitHub 
---
 .../org/apache/camel/catalog/components/fhir.json  |  25 +-
 .../component/fhir/FhirComponentConfigurer.java| 147 
 .../org/apache/camel/component/fhir/fhir.json  |  25 +-
 .../component/dsl/FhirComponentBuilderFactory.java | 380 +
 .../java/org/apache/camel/util/SensitiveUtils.java |   2 -
 5 files changed, 3 insertions(+), 576 deletions(-)

diff --git 
a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components/fhir.json
 
b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components/fhir.json
index 4e95e4e..5c39992 100644
--- 
a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components/fhir.json
+++ 
b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components/fhir.json
@@ -23,33 +23,10 @@
 "lenientProperties": false
   },
   "componentProperties": {
-"encoding": { "kind": "property", "displayName": "Encoding", "group": 
"common", "label": "", "required": false, "type": "string", "javaType": 
"java.lang.String", "enum": [ "JSON", "XML" ], "deprecated": false, 
"autowired": false, "secret": false, "configurationClass": 
"org.apache.camel.component.fhir.FhirConfiguration", "configurationField": 
"configuration", "description": "Encoding to use for all request" },
-"fhirVersion": { "kind": "property", "displayName": "Fhir Version", 
"group": "common", "label": "", "required": false, "type": "string", 
"javaType": "java.lang.String", "enum": [ "DSTU2", "DSTU2_HL7ORG", "DSTU2_1", 
"DSTU3", "R4", "R5" ], "deprecated": false, "autowired": false, "secret": 
false, "defaultValue": "R4", "configurationClass": 
"org.apache.camel.component.fhir.FhirConfiguration", "configurationField": 
"configuration", "description": "The FHIR Version to use" },
-"log": { "kind": "property", "displayName": "Log", "group": "common", 
"label": "", "required": false, "type": "boolean", "javaType": "boolean", 
"deprecated": false, "autowired": false, "secret": false, "defaultValue": 
false, "configurationClass": 
"org.apache.camel.component.fhir.FhirConfiguration", "configurationField": 
"configuration", "description": "Will log every requests and responses" },
-"prettyPrint": { "kind": "property", "displayName": "Pretty Print", 
"group": "common", "label": "", "required": false, "type": "boolean", 
"javaType": "boolean", "deprecated": false, "autowired": false, "secret": 
false, "defaultValue": false, "configurationClass": 
"org.apache.camel.component.fhir.FhirConfiguration", "configurationField": 
"configuration", "description": "Pretty print all request" },
-"serverUrl": { "kind": "property", "displayName": "Server Url", "group": 
"common", "label": "", "required": false, "type": "string", "javaType": 
"java.lang.String", "deprecated": false, "autowired": false, "secret": false, 
"configurationClass": "org.apache.camel.component.fhir.FhirConfiguration", 
"configurationField": "configuration", "description": "The FHIR server base 
URL" },
 "bridgeErrorHandler": { "kind": "property", "displayName": "Bridge Error 
Handler", "group": "consumer", "label": "consumer", "required": false, "type": 
"boolean", "javaType": "boolean", "deprecated": false, "autowired": false, 
"secret": false, "defaultValue": false, "description": "Allows for bridging the 
consumer to the Camel routing Error Handler, which mean any exceptions occurred 
while the consumer is trying to pickup incoming messages, or the likes, will 
now be processed as a me [...]
 "lazyStartProducer": { "kind": "property", "displayName": "Lazy Start 
Producer", "group": "producer", "label": "producer", "required": false, "type": 
"boolean", "javaType": "boolean", "deprecated": false, "autowired": false, 
"secret": false, "defaultValue": false, "description": "Whether the producer 
should be started lazy (on the first message). By starting lazy you can use 
this to allow CamelContext and routes to startup in situations where a producer 
may otherwise fail during star [...]
 "autowiredEnabled": { "kind": "property", "displayName": "Autowired 
Enabled", "group": "advanced", "label": "advanced", "required": false, "type": 
"boolean", "javaType": "boolean", "deprecated": false, "autowired": false, 
"secret": false, "defaultValue": true, "description": "Whether autowiring is 
enabled. This is used for automatic autowiring options (the option must be 
marked as autowired) by 

[camel] branch regen_bot updated (b121f58 -> 3bdd817)

2021-12-15 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 b121f58  [CAMEL-17341, CAMEL-17342] BacklogDebugger API enhancements 
(#6535)
 add 035dfaa  CAMEL-17337 - Resolve regression in FhirComponent (#6542)
 add 3bdd817  Regen for commit 035dfaa1d9317e9547124fe16e015bbff92fce60

No new revisions were added by this update.

Summary of changes:
 .../org/apache/camel/catalog/components/fhir.json  |  25 +-
 components/camel-fhir/camel-fhir-component/pom.xml |   5 +
 .../component/fhir/FhirComponentConfigurer.java| 147 
 .../org/apache/camel/component/fhir/fhir.json  |  25 +-
 .../apache/camel/component/fhir/FhirComponent.java |  17 -
 .../camel/component/fhir/FhirConfigurationIT.java  |  16 +-
 .../component/dsl/FhirComponentBuilderFactory.java | 380 +
 .../java/org/apache/camel/util/SensitiveUtils.java |   2 -
 8 files changed, 23 insertions(+), 594 deletions(-)


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

2021-12-15 Thread GitBox


oscerd merged pull request #6544:
URL: https://github.com/apache/camel/pull/6544


   


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

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

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




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

2021-12-15 Thread GitBox


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


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


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

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

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




[camel] branch regen_bot updated (0bd749e -> b121f58)

2021-12-15 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 0bd749e  Regen for commit ca1b9fe47a297fa1524687c1597da8fb23954d2e
 add c087835  CAMEL-17344: camel-salesforce: swallowing exceptions
 add 5882290  CAMEL-17346: camel-salesforce: expired passwords
 add b121f58  [CAMEL-17341, CAMEL-17342] BacklogDebugger API enhancements 
(#6535)

No new revisions were added by this update.

Summary of changes:
 ...efaultCompositeSObjectCollectionsApiClient.java |  34 +++--
 .../internal/client/SalesforceSecurityHandler.java |  34 +
 .../CompositeSObjectCollectionsProcessor.java  |   2 +-
 core/camel-management-api/pom.xml  |   1 -
 .../mbean/ManagedBacklogDebuggerMBean.java |   8 ++
 core/camel-management/pom.xml  |   1 -
 .../management/mbean/ManagedBacklogDebugger.java   | 106 ++-
 .../camel/management/BacklogDebuggerTest.java  | 145 +
 .../modules/ROOT/pages/backlog-debugger.adoc   |   3 +
 9 files changed, 316 insertions(+), 18 deletions(-)


[camel] branch main updated: CAMEL-17337 - Resolve regression in FhirComponent

2021-12-15 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 0816d95  CAMEL-17337 - Resolve regression in FhirComponent
0816d95 is described below

commit 0816d9501192ddb74d913fdc49ae73608c44e240
Author: Claus Ibsen 
AuthorDate: Thu Dec 16 07:27:18 2021 +0100

CAMEL-17337 - Resolve regression in FhirComponent
---
 .../apache/camel/component/fhir/FhirComponent.java | 39 ++--
 .../apache/camel/component/fhir/FhirEndpoint.java  |  4 +-
 .../camel/component/fhir/internal/FhirHelper.java  | 70 +++---
 .../camel/component/fhir/FhirConfigurationIT.java  |  2 +-
 4 files changed, 60 insertions(+), 55 deletions(-)

diff --git 
a/components/camel-fhir/camel-fhir-component/src/main/java/org/apache/camel/component/fhir/FhirComponent.java
 
b/components/camel-fhir/camel-fhir-component/src/main/java/org/apache/camel/component/fhir/FhirComponent.java
index 114dafd..a4f9198 100644
--- 
a/components/camel-fhir/camel-fhir-component/src/main/java/org/apache/camel/component/fhir/FhirComponent.java
+++ 
b/components/camel-fhir/camel-fhir-component/src/main/java/org/apache/camel/component/fhir/FhirComponent.java
@@ -26,14 +26,11 @@ import org.apache.camel.spi.Metadata;
 import org.apache.camel.spi.annotations.Component;
 import org.apache.camel.support.component.AbstractApiComponent;
 
-/**
- * Represents the component that manages {@link FhirEndpoint}.
- */
 @Component("fhir")
 public class FhirComponent extends AbstractApiComponent {
 
 @Metadata(label = "advanced")
-private IGenericClient client;
+private FhirConfiguration configuration;
 
 public FhirComponent() {
 super(FhirEndpoint.class, FhirApiName.class, 
FhirApiCollection.getCollection());
@@ -54,21 +51,29 @@ public class FhirComponent extends 
AbstractApiComponent getExtraParameters(Map properties) {
diff --git 
a/components/camel-fhir/camel-fhir-component/src/main/java/org/apache/camel/component/fhir/internal/FhirHelper.java
 
b/components/camel-fhir/camel-fhir-component/src/main/java/org/apache/camel/component/fhir/internal/FhirHelper.java
index 972f909..34f1a7a 100644
--- 
a/components/camel-fhir/camel-fhir-component/src/main/java/org/apache/camel/component/fhir/internal/FhirHelper.java
+++ 
b/components/camel-fhir/camel-fhir-component/src/main/java/org/apache/camel/component/fhir/internal/FhirHelper.java
@@ -43,24 +43,24 @@ public final class FhirHelper {
 // hide utility class constructor
 }
 
-public static IGenericClient createClient(FhirConfiguration 
endpointConfiguration, CamelContext camelContext) {
-if (endpointConfiguration.getClient() != null) {
-return endpointConfiguration.getClient();
+public static IGenericClient createClient(FhirConfiguration config, 
CamelContext camelContext) {
+if (config.getClient() != null) {
+return config.getClient();
 }
-FhirContext fhirContext = getFhirContext(endpointConfiguration);
-if (endpointConfiguration.isDeferModelScanning()) {
+FhirContext fhirContext = getFhirContext(config);
+if (config.isDeferModelScanning()) {
 
fhirContext.setPerformanceOptions(PerformanceOptionsEnum.DEFERRED_MODEL_SCANNING);
 }
-if (endpointConfiguration.getClientFactory() != null) {
-
fhirContext.setRestfulClientFactory(endpointConfiguration.getClientFactory());
+if (config.getClientFactory() != null) {
+fhirContext.setRestfulClientFactory(config.getClientFactory());
 }
 
 IRestfulClientFactory restfulClientFactory = 
fhirContext.getRestfulClientFactory();
-configureClientFactory(endpointConfiguration, restfulClientFactory, 
camelContext);
-IGenericClient genericClient = 
fhirContext.newRestfulGenericClient(endpointConfiguration.getServerUrl());
-genericClient.setPrettyPrint(endpointConfiguration.isPrettyPrint());
-EncodingEnum encoding = endpointConfiguration.getEncoding();
-SummaryEnum summary = endpointConfiguration.getSummary();
+configureClientFactory(config, restfulClientFactory, camelContext);
+IGenericClient genericClient = 
fhirContext.newRestfulGenericClient(config.getServerUrl());
+genericClient.setPrettyPrint(config.isPrettyPrint());
+EncodingEnum encoding = config.getEncoding();
+SummaryEnum summary = config.getSummary();
 
 if (encoding != null) {
 genericClient.setEncoding(encoding);
@@ -68,18 +68,18 @@ public final class FhirHelper {
 if (summary != null) {
 genericClient.setSummary(summary);
 }
-if (endpointConfiguration.isForceConformanceCheck()) {
+if (config.isForceConformanceCheck()) {
 genericClient.forceConformanceCheck();
 }
 
-

[camel] branch main updated: CAMEL-17337 - Resolve regression in FhirComponent (#6542)

2021-12-15 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 035dfaa  CAMEL-17337 - Resolve regression in FhirComponent (#6542)
035dfaa is described below

commit 035dfaa1d9317e9547124fe16e015bbff92fce60
Author: Paul C 
AuthorDate: Thu Dec 16 06:16:24 2021 +

CAMEL-17337 - Resolve regression in FhirComponent (#6542)

Co-authored-by: Paul Coombes 
---
 components/camel-fhir/camel-fhir-component/pom.xml  |  5 +
 .../org/apache/camel/component/fhir/FhirComponent.java  | 17 -
 .../camel/component/fhir/FhirConfigurationIT.java   | 16 +++-
 3 files changed, 20 insertions(+), 18 deletions(-)

diff --git a/components/camel-fhir/camel-fhir-component/pom.xml 
b/components/camel-fhir/camel-fhir-component/pom.xml
index 4a8b935..903315a 100644
--- a/components/camel-fhir/camel-fhir-component/pom.xml
+++ b/components/camel-fhir/camel-fhir-component/pom.xml
@@ -114,6 +114,11 @@
 junit-jupiter
 test
 
+
+org.mockito
+mockito-junit-jupiter
+test
+
 
 
 org.apache.camel
diff --git 
a/components/camel-fhir/camel-fhir-component/src/main/java/org/apache/camel/component/fhir/FhirComponent.java
 
b/components/camel-fhir/camel-fhir-component/src/main/java/org/apache/camel/component/fhir/FhirComponent.java
index b96a550..114dafd 100644
--- 
a/components/camel-fhir/camel-fhir-component/src/main/java/org/apache/camel/component/fhir/FhirComponent.java
+++ 
b/components/camel-fhir/camel-fhir-component/src/main/java/org/apache/camel/component/fhir/FhirComponent.java
@@ -33,9 +33,6 @@ import 
org.apache.camel.support.component.AbstractApiComponent;
 public class FhirComponent extends AbstractApiComponent {
 
 @Metadata(label = "advanced")
-FhirConfiguration configuration;
-
-@Metadata(label = "advanced")
 private IGenericClient client;
 
 public FhirComponent() {
@@ -74,18 +71,4 @@ public class FhirComponent extends 
AbstractApiComponenthttp://localhost:8080/hapi-fhir-jpaserver-example/baseDstu3=DSTU3;;
 private FhirConfiguration componentConfiguration;
 
+@Mock
+private IClientInterceptor mockClientInterceptor;
+
 @Override
 protected CamelContext createCamelContext() throws Exception {
 final CamelContext context = new 
DefaultCamelContext(createCamelRegistry());
@@ -61,6 +70,9 @@ public class FhirConfigurationIT extends 
AbstractFhirTestSupport {
 
fhirConfiguration.setServerUrl("http://localhost:8080/hapi-fhir-jpaserver-example/baseDstu3;);
 fhirConfiguration.setFhirVersion("DSTU3");
 component.setConfiguration(fhirConfiguration);
+
+
component.getClient(fhirConfiguration).registerInterceptor(this.mockClientInterceptor);
+
 this.componentConfiguration = fhirConfiguration;
 context.addComponent("fhir", component);
 
@@ -77,7 +89,9 @@ public class FhirConfigurationIT extends 
AbstractFhirTestSupport {
 assertEquals(EncodingEnum.JSON, client.getEncoding());
 assertEquals(SummaryEnum.TEXT, client.getSummary());
 List interceptors = 
client.getInterceptorService().getAllRegisteredInterceptors();
-assertEquals(5, interceptors.size());
+assertEquals(6, interceptors.size());
+
+assertTrue(interceptors.contains(this.mockClientInterceptor), "User 
defined IClientInterceptor not found");
 
 long counter = 
context.adapt(ExtendedCamelContext.class).getBeanIntrospection().getInvokedCounter();
 assertEquals(0, counter, "Should not use reflection");


[GitHub] [camel] davsclaus merged pull request #6542: [CAMEL-17337] - Resolve regression in FhirComponent

2021-12-15 Thread GitBox


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


   


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

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

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




[GitHub] [camel-kafka-connector] djencks opened a new pull request #1299: Camel kafka connector 0.11.x local index page and local/partial build

2021-12-15 Thread GitBox


djencks opened a new pull request #1299:
URL: https://github.com/apache/camel-kafka-connector/pull/1299


   This sets up the local/partial build structure for ckc and prepares for 
moving the playbook config for the page generation to a local file.
   (0.11.x branch)


-- 
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-17341, CAMEL-17342] BacklogDebugger API enhancements (#6535)

2021-12-15 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 b121f58  [CAMEL-17341, CAMEL-17342] BacklogDebugger API enhancements 
(#6535)
b121f58 is described below

commit b121f58a7b93287c8ce38f24a0508392667702a0
Author: javaduke 
AuthorDate: Wed Dec 15 22:41:51 2021 -0700

[CAMEL-17341, CAMEL-17342] BacklogDebugger API enhancements (#6535)

* Exposing properties and expression evaluator

* Removed unnecessary dependency

* Unit test and docs added

* Improved evaluateExpression, added tests and docs

* Use camel class resolver

* Got rid of the Apache utils and implemented isSerializable() method

* Need initialization of languages other than core

* CAMEL-17342 - exchange properties are optional part of the 
dumpTracedMessages

* CAMEL-17341 - removed DataSonnet tests to avoid cyclic reference
---
 core/camel-management-api/pom.xml  |   1 -
 .../mbean/ManagedBacklogDebuggerMBean.java |   8 ++
 core/camel-management/pom.xml  |   1 -
 .../management/mbean/ManagedBacklogDebugger.java   | 106 ++-
 .../camel/management/BacklogDebuggerTest.java  | 145 +
 .../modules/ROOT/pages/backlog-debugger.adoc   |   3 +
 6 files changed, 261 insertions(+), 3 deletions(-)

diff --git a/core/camel-management-api/pom.xml 
b/core/camel-management-api/pom.xml
index d971dfb..64bf001 100644
--- a/core/camel-management-api/pom.xml
+++ b/core/camel-management-api/pom.xml
@@ -43,7 +43,6 @@
 org.slf4j
 slf4j-api
 
-
 
 
 
diff --git 
a/core/camel-management-api/src/main/java/org/apache/camel/api/management/mbean/ManagedBacklogDebuggerMBean.java
 
b/core/camel-management-api/src/main/java/org/apache/camel/api/management/mbean/ManagedBacklogDebuggerMBean.java
index 75c4df1..2a6626a 100644
--- 
a/core/camel-management-api/src/main/java/org/apache/camel/api/management/mbean/ManagedBacklogDebuggerMBean.java
+++ 
b/core/camel-management-api/src/main/java/org/apache/camel/api/management/mbean/ManagedBacklogDebuggerMBean.java
@@ -142,6 +142,9 @@ public interface ManagedBacklogDebuggerMBean {
 @ManagedOperation(description = "Dumps the messages in xml format from the 
suspended breakpoint at the given node")
 String dumpTracedMessagesAsXml(String nodeId);
 
+@ManagedOperation(description = "Dumps the messages in xml format from the 
suspended breakpoint at the given node, optionally including the exchange 
properties")
+String dumpTracedMessagesAsXml(String nodeId, boolean 
includeExchangeProperties);
+
 @ManagedAttribute(description = "Number of total debugged messages")
 long getDebugCounter();
 
@@ -151,4 +154,9 @@ public interface ManagedBacklogDebuggerMBean {
 @ManagedOperation(description = "Used for validating if a given predicate 
is valid or not")
 String validateConditionalBreakpoint(String language, String predicate);
 
+@ManagedOperation(description = "Evaluates the expression at a given 
breakpoint Id")
+Object evaluateExpressionAtBreakpoint(String id, String language, String 
expression, String resultType);
+
+@ManagedOperation(description = "Evaluates the expression at a given 
breakpoint Id and returns the result as String")
+String evaluateExpressionAtBreakpoint(String id, String language, String 
expression);
 }
diff --git a/core/camel-management/pom.xml b/core/camel-management/pom.xml
index 8950f05..c806e27 100644
--- a/core/camel-management/pom.xml
+++ b/core/camel-management/pom.xml
@@ -85,7 +85,6 @@
 log4j-slf4j-impl
 test
 
-
 
 
 
diff --git 
a/core/camel-management/src/main/java/org/apache/camel/management/mbean/ManagedBacklogDebugger.java
 
b/core/camel-management/src/main/java/org/apache/camel/management/mbean/ManagedBacklogDebugger.java
index 9554cd8..22184e0 100644
--- 
a/core/camel-management/src/main/java/org/apache/camel/management/mbean/ManagedBacklogDebugger.java
+++ 
b/core/camel-management/src/main/java/org/apache/camel/management/mbean/ManagedBacklogDebugger.java
@@ -16,16 +16,26 @@
  */
 package org.apache.camel.management.mbean;
 
+import java.io.ByteArrayOutputStream;
+import java.io.IOException;
+import java.io.ObjectOutputStream;
+import java.util.Map;
 import java.util.Set;
 
 import org.apache.camel.CamelContext;
+import org.apache.camel.Exchange;
+import org.apache.camel.Expression;
 import org.apache.camel.NoTypeConversionAvailableException;
+import org.apache.camel.Predicate;
 import org.apache.camel.RuntimeCamelException;
 import org.apache.camel.api.management.ManagedResource;
+import org.apache.camel.api.management.mbean.BacklogTracerEventMessage;
 import org.apache.camel.api.management.mbean.ManagedBacklogDebuggerMBean;
 

[GitHub] [camel] davsclaus merged pull request #6535: [CAMEL-17341, CAMEL-17342] BacklogDebugger API enhancements

2021-12-15 Thread GitBox


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


   


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

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

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




[GitHub] [camel-kafka-connector] djencks opened a new pull request #1298: Main local index page and local/partial build

2021-12-15 Thread GitBox


djencks opened a new pull request #1298:
URL: https://github.com/apache/camel-kafka-connector/pull/1298


   This sets up the local/partial build structure for ckc and prepares for 
moving the playbook config for the page generation to a local file.
   (main branch)


-- 
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 asf-site updated (95cdc26 -> 2c6e184)

2021-12-15 Thread git-site-role
This is an automated email from the ASF dual-hosted git repository.

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


 discard 95cdc26  Website updated to 84d9574726ab3b79985b94ab0ddb5a95afd4131c
 discard 69ad076  Website updated to 325e929157412b27394080f4d4dba3d821476ddf
 new f1fcaa3  Website updated to 325e929157412b27394080f4d4dba3d821476ddf
 new 2c6e184  Website updated to 5e1db989e1d84af6ea20ba933ff13b831e46f74d

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   (95cdc26)
\
 N -- N -- N   refs/heads/asf-site (2c6e184)

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

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

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


Summary of changes:
 .htaccess  |   26 +-
 camel-k/1.7.x/languages/javascript.html|2 +-
 .../next/reference/extensions/opentelemetry.html   |2 +-
 .../next/user-guide/dependency-management.html |2 +-
 camel-quarkus/next/user-guide/first-steps.html |2 +-
 sitemap-camel-k.xml|  822 +--
 sitemap-camel-kafka-connector.xml  | 2218 +++
 sitemap-camel-kamelets.xml |  580 +-
 sitemap-camel-karaf.xml|   70 +-
 sitemap-camel-quarkus.xml  | 2078 +++---
 sitemap-camel-spring-boot.xml  |   54 +-
 sitemap-components.xml | 6712 ++--
 sitemap-manual.xml |  384 +-
 13 files changed, 6476 insertions(+), 6476 deletions(-)


[GitHub] [camel-spring-boot] oscerd merged pull request #420: [Github Actions] Periodic Sync Camel Spring Boot Main Branch

2021-12-15 Thread GitBox


oscerd merged pull request #420:
URL: https://github.com/apache/camel-spring-boot/pull/420


   


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

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

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




[camel-spring-boot] branch main updated: [create-pull-request] automated change

2021-12-15 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-spring-boot.git


The following commit(s) were added to refs/heads/main by this push:
 new b6b18e5  [create-pull-request] automated change
b6b18e5 is described below

commit b6b18e5012e22e222d512e9e76078840a6f8c2ff
Author: github-actions[bot] 
<41898282+github-actions[bot]@users.noreply.github.com>
AuthorDate: Thu Dec 16 00:54:23 2021 +

[create-pull-request] automated change
---
 .../springboot/catalog/components/azure-cosmosdb.json   |  4 ++--
 .../src/main/docs/azure-cosmosdb.json   |  4 ++--
 .../springboot/CosmosDbComponentConfiguration.java  | 17 -
 3 files changed, 12 insertions(+), 13 deletions(-)

diff --git 
a/catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/components/azure-cosmosdb.json
 
b/catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/components/azure-cosmosdb.json
index 3f4e852..5d5a696 100644
--- 
a/catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/components/azure-cosmosdb.json
+++ 
b/catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/components/azure-cosmosdb.json
@@ -33,7 +33,7 @@
 "createDatabaseIfNotExists": { "kind": "property", "displayName": "Create 
Database If Not Exists", "group": "common", "label": "common", "required": 
false, "type": "boolean", "javaType": "boolean", "deprecated": false, 
"autowired": false, "secret": false, "defaultValue": false, 
"configurationClass": 
"org.apache.camel.component.azure.cosmosdb.CosmosDbConfiguration", 
"configurationField": "configuration", "description": "Sets if the component 
should create Cosmos database automatically [...]
 "databaseEndpoint": { "kind": "property", "displayName": "Database 
Endpoint", "group": "common", "label": "common", "required": true, "type": 
"string", "javaType": "java.lang.String", "deprecated": false, 
"deprecationNote": "", "autowired": false, "secret": false, 
"configurationClass": 
"org.apache.camel.component.azure.cosmosdb.CosmosDbConfiguration", 
"configurationField": "configuration", "description": "Sets the Azure Cosmos 
database endpoint the component will connect to." },
 "multipleWriteRegionsEnabled": { "kind": "property", "displayName": 
"Multiple Write Regions Enabled", "group": "common", "label": "common", 
"required": false, "type": "boolean", "javaType": "boolean", "deprecated": 
false, "autowired": false, "secret": false, "defaultValue": true, 
"configurationClass": 
"org.apache.camel.component.azure.cosmosdb.CosmosDbConfiguration", 
"configurationField": "configuration", "description": "Sets the flag to enable 
writes on any regions for geo-replicate [...]
-"preferredRegions": { "kind": "property", "displayName": "Preferred 
Regions", "group": "common", "label": "common", "required": false, "type": 
"array", "javaType": "java.util.List", "deprecated": false, 
"autowired": false, "secret": false, "configurationClass": 
"org.apache.camel.component.azure.cosmosdb.CosmosDbConfiguration", 
"configurationField": "configuration", "description": "Sets the preferred 
regions for geo-replicated database accounts. For example, East US  [...]
+"preferredRegions": { "kind": "property", "displayName": "Preferred 
Regions", "group": "common", "label": "common", "required": false, "type": 
"string", "javaType": "java.lang.String", "deprecated": false, "autowired": 
false, "secret": false, "configurationClass": 
"org.apache.camel.component.azure.cosmosdb.CosmosDbConfiguration", 
"configurationField": "configuration", "description": "Sets the comma separated 
preferred regions for geo-replicated database accounts. For example, East US 
[...]
 "readRequestsFallbackEnabled": { "kind": "property", "displayName": "Read 
Requests Fallback Enabled", "group": "common", "label": "common", "required": 
false, "type": "boolean", "javaType": "boolean", "deprecated": false, 
"autowired": false, "secret": false, "defaultValue": true, 
"configurationClass": 
"org.apache.camel.component.azure.cosmosdb.CosmosDbConfiguration", 
"configurationField": "configuration", "description": "Sets whether to allow 
for reads to go to multiple regions confi [...]
 "throughputProperties": { "kind": "property", "displayName": "Throughput 
Properties", "group": "common", "label": "common", "required": false, "type": 
"object", "javaType": "com.azure.cosmos.models.ThroughputProperties", 
"deprecated": false, "autowired": false, "secret": false, "configurationClass": 
"org.apache.camel.component.azure.cosmosdb.CosmosDbConfiguration", 
"configurationField": "configuration", "description": "Sets throughput of the 
resources in the Azure Cosmos DB service." },
 "bridgeErrorHandler": { "kind": "property", 

[GitHub] [camel-quarkus] djencks merged pull request #3385: POC/WIP local build setup

2021-12-15 Thread GitBox


djencks merged pull request #3385:
URL: https://github.com/apache/camel-quarkus/pull/3385


   


-- 
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: local build setup

2021-12-15 Thread djencks
This is an automated email from the ASF dual-hosted git repository.

djencks 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 43cede1  local build setup
43cede1 is described below

commit 43cede1eca3fc257387ba448b371228df9669044
Author: David Jencks 
AuthorDate: Tue Dec 14 16:49:12 2021 -0800

local build setup

fix tooling enough so it doesn't break build
---
 docs/antora-playbook-dev.yml| 62 --
 docs/antora-playbook.yml| 80 -
 docs/local-build.sh | 37 +
 docs/pom.xml| 78 ++--
 docs/source-map.yml | 25 +
 docs/source-watch.yml   | 37 +
 tooling/scripts/update-antora-config.groovy |  2 -
 7 files changed, 138 insertions(+), 183 deletions(-)

diff --git a/docs/antora-playbook-dev.yml b/docs/antora-playbook-dev.yml
deleted file mode 100644
index 97ac4b9..000
--- a/docs/antora-playbook-dev.yml
+++ /dev/null
@@ -1,62 +0,0 @@
-#
-# Licensed to the Apache Software Foundation (ASF) under one or more
-# contributor license agreements.  See the NOTICE file distributed with
-# this work for additional information regarding copyright ownership.
-# The ASF licenses this file to You under the Apache License, Version 2.0
-# (the "License"); you may not use this file except in compliance with
-# the License.  You may obtain a copy of the License at
-#
-#  http://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing, software
-# distributed under the License is distributed on an "AS IS" BASIS,
-# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-# See the License for the specific language governing permissions and
-# limitations under the License.
-#
-
-site:
-  title: Apache Camel extensions for Quarkus
-  url: https://camel.apache.org
-  start_page: camel-quarkus::index.adoc
-content:
-  sources:
-  - url: ./../
-branches: HEAD
-start_path: docs
-  - url: g...@github.com:apache/camel.git
-branches:
-  - camel-3.13.x # replace ${camel.docs.branch}
-start_paths:
-  - docs/components
-  - url: g...@github.com:apache/camel.git
-branches:
-  - main
-start_paths:
-  - docs/user-manual
-  - docs/components
-  - core/camel-core-engine/src/main/docs
-branches: HEAD
-start_path: docs/components
-  #- url: ./../../camel-quarkus-examples
-  - url: g...@github.com:apache/camel-quarkus-examples.git
-branches: HEAD
-start_path: docs
-  - url: g...@github.com:apache/camel-spring-boot.git
-branches: main
-start_path: docs
-
-asciidoc:
-  extensions:
-- "@djencks/asciidoctor-antora-indexer"
-  attributes:
-eip-vc: latest@components
-
-ui:
-  bundle:
-url: 
https://gitlab.com/antora/antora-ui-default/-/jobs/artifacts/master/raw/build/ui-bundle.zip?job=bundle-stable
-snapshot: true
-output:
-  dir: ./target/site
-urls:
-  redirect_facility: httpd
diff --git a/docs/antora-playbook.yml b/docs/antora-playbook.yml
deleted file mode 100644
index da9b4b1..000
--- a/docs/antora-playbook.yml
+++ /dev/null
@@ -1,80 +0,0 @@
-#
-# Licensed to the Apache Software Foundation (ASF) under one or more
-# contributor license agreements.  See the NOTICE file distributed with
-# this work for additional information regarding copyright ownership.
-# The ASF licenses this file to You under the Apache License, Version 2.0
-# (the "License"); you may not use this file except in compliance with
-# the License.  You may obtain a copy of the License at
-#
-#  http://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing, software
-# distributed under the License is distributed on an "AS IS" BASIS,
-# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-# See the License for the specific language governing permissions and
-# limitations under the License.
-#
-
-site:
-  title: Apache Camel extensions for Quarkus
-  url: https://camel.apache.org
-  start_page: camel-quarkus::index.adoc
-
-content:
-  sources:
-  - url: ./../
-branches: HEAD
-start_path: docs
-
-  - url: https://github.com/apache/camel-quarkus-examples.git
-branches: main
-start_path: docs
-
-# The version/branch of main camel 'components' this version of camel-quarkus 
uses
-  - url: https://github.com/apache/camel.git
-branches:
-  - camel-3.13.x # replace ${camel.docs.branch}
-start_paths:
-  # eip
-  - core/camel-core-engine/src/main/docs
-  # main components doc
-  - docs/components
-
-# There is only one version of the user manual
-  - url: https://github.com/apache/camel.git
-branches:
-  - main
-start_paths:
-  - 

[camel-website] 01/02: New dependencies and playbook patch for partial/local builds, set up util as a dependency

2021-12-15 Thread djencks
This is an automated email from the ASF dual-hosted git repository.

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

commit da0d58437771e64e50c22749dbd2c1118170d644
Author: David Jencks 
AuthorDate: Tue Dec 14 14:41:00 2021 -0800

New dependencies and playbook patch for partial/local builds, set up util 
as a dependency
---
 .gitignore  |  2 ++
 antora-playbook.yml |  2 +-
 package.json| 15 +++
 playbook-patch-full.yml | 18 ++
 util/package.json   |  8 
 5 files changed, 40 insertions(+), 5 deletions(-)

diff --git a/.gitignore b/.gitignore
index 1ab379a..15a4f73 100644
--- a/.gitignore
+++ b/.gitignore
@@ -22,3 +22,5 @@ resources
 !**/.yarn/unplugged
 !**/.yarn/versions
 *.github-proxy.*
+
+local-antora-playbook-*
diff --git a/antora-playbook.yml b/antora-playbook.yml
index e4cc4bd..9097e7e 100644
--- a/antora-playbook.yml
+++ b/antora-playbook.yml
@@ -111,7 +111,7 @@ output:
 
 asciidoc:
   attributes:
-requires@: "'util=util/jsonpath-util.js'"
+requires@: "'util=camel-website-util'"
 #uncomment sb-statistics to see more info on camel spring boot list page 
such as non-spring-boot components.
 #This also tests the output of unused camel-spring-boot json detection and 
fails the Antora build with errors.
 #sb-statistics: on
diff --git a/package.json b/package.json
index 3492ee0..304f387 100644
--- a/package.json
+++ b/package.json
@@ -24,17 +24,24 @@
 "preview": "run-s preview:antora preview:hugo",
 "preview:antora": "antora --clean --fetch antora-playbook.yml",
 "preview:hugo": "hugo server -D",
-"preview:netlify": "netlify deploy --dir public"
+"preview:netlify": "netlify deploy --dir public",
+"build:antora-local-full": "antora local-antora-playbook-full.yml 
--stacktrace --clean",
+"build:antora-local-partial": "antora local-antora-playbook-partial.yml 
--stacktrace"
   },
   "devDependencies": {
 "@antora/cli": "^3.0.0-rc.2",
 "@antora/site-generator": "^3.0.0-rc.2",
 "@deadlinks/cargo-deadlinks": 
"github-release:deadlinks/cargo-deadlinks:0.8.0/deadlinks-linux",
 "@djencks/antora-aggregate-collector": "^0.1.0-beta.1",
+"@djencks/antora-site-manifest": "^0.0.3-rc.2",
+"@djencks/antora-source-map": "^0.0.1-rc.2",
+"@djencks/antora-source-watch": "^0.0.3-rc.2",
+"@djencks/antora-timer": "^0.0.1-beta.1",
 "@djencks/asciidoctor-antora-indexer": "^0.1.0-rc.2",
 "@djencks/asciidoctor-jsonpath": "^0.1.0-rc.2",
 "@oclif/errors": "^1.3.4",
 "antora-ui-camel": "workspace:antora-ui-camel",
+"camel-website-util": "workspace:util",
 "del": "^6.0.0",
 "escape-string-regexp": "~2.0",
 "gulp": "~4.0",
@@ -50,7 +57,7 @@
 "toml": "~3.0"
   },
   "workspaces": [
-"antora-ui-camel"
-  ],
-  "packageManager": "yarn@3.1.0"
+"antora-ui-camel",
+"util"
+  ]
 }
diff --git a/playbook-patch-full.yml b/playbook-patch-full.yml
new file mode 100644
index 000..834f065
--- /dev/null
+++ b/playbook-patch-full.yml
@@ -0,0 +1,18 @@
+- require: "@djencks/antora-site-manifest"
+  export-site-manifest: true
+  export-site-navigation-data: true
+  exported-attributes:
+- cq-artifact-id
+- cq-artifact-id-base
+- cq-native-supported
+- cq-status
+- cq-deprecated
+- cq-jvm-since
+- cq-native-since
+- cq-camel-part-name
+- cq-camel-part-title
+- cq-camel-part-description
+- cq-extension-page-title
+
+- require: '@djencks/antora-timer'
+  log_level: info
diff --git a/util/package.json b/util/package.json
new file mode 100644
index 000..6b1083c
--- /dev/null
+++ b/util/package.json
@@ -0,0 +1,8 @@
+{
+  "name": "camel-website-util",
+  "version": "1.0.0",
+  "main": "jsonpath-util.js",
+  "files": [
+"jsonpath-util.js"
+  ]
+}


[GitHub] [camel-website] djencks merged pull request #721: See #720: POC Main local builds

2021-12-15 Thread GitBox


djencks merged pull request #721:
URL: https://github.com/apache/camel-website/pull/721


   


-- 
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 (84d9574 -> 5e1db98)

2021-12-15 Thread djencks
This is an automated email from the ASF dual-hosted git repository.

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


from 84d9574  chore: reinstate redirect checks
 new da0d584  New dependencies and playbook patch for partial/local builds, 
set up util as a dependency
 new 5e1db98  generated yarn cache changes

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:
 .gitignore |2 +
 .pnp.cjs   | 1087 +---
 ...nifest-npm-0.0.3-rc.2-155271c578-1cb54bd46e.zip |  Bin 0 -> 14612 bytes
 ...ce-map-npm-0.0.1-rc.2-4cb86f9321-d4f22bbfd1.zip |  Bin 0 -> 3602 bytes
 ...-watch-npm-0.0.3-rc.2-3e7b96e4ac-cf9c4ce167.zip |  Bin 0 -> 6485 bytes
 ...imer-npm-0.0.1-beta.1-688e477176-c6bd779efc.zip |  Bin 0 -> 2796 bytes
 .../after-npm-0.8.2-7e7b7e3869-52ea9be2e9.zip  |  Bin 0 -> 4174 bytes
 ...> anymatch-npm-3.1.2-1d5471acfa-985163db22.zip} |  Bin 4612 -> 4628 bytes
 ...uffer.slice-npm-0.0.7-c409adb178-c6bacada71.zip |  Bin 0 -> 4162 bytes
 ...each-series-npm-0.1.1-5ea6f0ae16-674e5aeee2.zip |  Bin 0 -> 2410 bytes
 .../axios-npm-0.21.4-e278873748-44245f24ac.zip |  Bin 0 -> 117662 bytes
 .../backo2-npm-1.0.2-e933aab18a-fda8d0a0f4.zip |  Bin 0 -> 2986 bytes
 ...arraybuffer-npm-0.1.4-2f8efc60e0-d249a929e2.zip |  Bin 0 -> 3811 bytes
 .../base64id-npm-2.0.0-ef4afeee0a-581b1d37e6.zip   |  Bin 0 -> 3367 bytes
 .../cache/blob-npm-0.0.5-5e6b11bda5-ca6a025f11.zip |  Bin 0 -> 11580 bytes
 ...ync-client-npm-2.27.7-5ffd96457c-fa92bc7abc.zip |  Bin 0 -> 160453 bytes
 ...owser-sync-npm-2.27.7-b8e58f9a91-7f51177473.zip |  Bin 0 -> 170665 bytes
 ...er-sync-ui-npm-2.27.7-4ff11c7e03-d6e6a994ca.zip |  Bin 0 -> 1512000 bytes
 .../bs-recipes-npm-1.3.4-48576254d8-2cd89e2773.zip |  Bin 0 -> 190164 bytes
 ...et-injector-npm-2.0.1-cd1b94d486-f37863c657.zip |  Bin 0 -> 3026 bytes
 .../bytes-npm-3.1.1-f2d0e8c583-949ab99a38.zip  |  Bin 0 -> 5537 bytes
 ...le-request-npm-7.0.2-e64cc641fc-6152813982.zip} |  Bin 6998 -> 7001 bytes
 .../chokidar-npm-3.4.3-58f7548978-1c7ab8bcbc.zip   |  Bin 31081 -> 0 bytes
 .../chokidar-npm-3.5.2-6752340fec-d1fda32fcd.zip   |  Bin 0 -> 31137 bytes
 ...ponent-bind-npm-1.0.0-c4b6dae2b7-746c5810b9.zip |  Bin 0 -> 2592 bytes
 ...ent-emitter-npm-1.2.1-b9e2b2aee2-00599b8276.zip |  Bin 0 -> 3989 bytes
 ...ent-inherit-npm-0.0.3-8f67384b1a-9f5b872a6b.zip |  Bin 0 -> 2704 bytes
 ...pi-fallback-npm-1.6.0-6fbd7fa228-804ca2be28.zip |  Bin 0 -> 6173 bytes
 .../connect-npm-3.6.6-91c8da4baa-b8038eee6d.zip|  Bin 0 -> 28598 bytes
 .../debug-npm-3.1.0-9f0accb99b-0b52718ab9.zip  |  Bin 0 -> 21443 bytes
 .../debug-npm-4.1.1-540248b3aa-1e681f5cce.zip  |  Bin
 .../dev-ip-npm-1.0.1-6bbb9d1d09-274a6470c2.zip |  Bin 0 -> 6079 bytes
 ...sy-extender-npm-2.3.4-637938913e-beaca0611f.zip |  Bin 0 -> 6983 bytes
 ...eazy-logger-npm-3.1.0-29215733e6-ddb613b6a3.zip |  Bin 0 -> 24442 bytes
 ...e.io-client-npm-3.5.2-05cee90a28-2a4a8407ea.zip |  Bin 0 -> 54181 bytes
 .../engine.io-npm-3.5.0-e1f3080394-8d7eb10742.zip  |  Bin 0 -> 26145 bytes
 ...e.io-parser-npm-2.2.1-0b86cbeed8-c7291955c1.zip |  Bin 0 -> 13412 bytes
 ...inalhandler-npm-1.1.0-49da7761f1-fb22b42031.zip |  Bin 0 -> 7064 bytes
 ...-redirects-npm-1.13.1-7cb0be11a2-b93de110b4.zip |  Bin 9796 -> 0 bytes
 ...-redirects-npm-1.14.6-0483823f49-7fcdb089a7.zip |  Bin 0 -> 10291 bytes
 .../fs-extra-npm-3.0.1-9417aaf7f9-8957f9ee33.zip   |  Bin 0 -> 57040 bytes
 .../fsevents-npm-2.3.2-a881d6ac9f-97ade64e75.zip   |  Bin 0 -> 22846 bytes
 .yarn/cache/fsevents-patch-3340e2eb10-8.zip|  Bin 0 -> 23675 bytes
 ...glob-parent-npm-5.1.1-57b061cd88-9f9a19c8d4.zip |  Bin 4187 -> 0 bytes
 ...glob-parent-npm-5.1.2-021ab32634-f4f2bfe242.zip |  Bin 0 -> 5771 bytes
 .../cache/got-npm-11.8.2-c1eb105458-41ad7bf74f.zip |  Bin 83577 -> 0 bytes
 .../cache/got-npm-11.8.3-caf98d599b-3b6db107d9.zip |  Bin 0 -> 84283 bytes
 ...has-binary2-npm-1.0.3-a9954e86d3-9183a61783.zip |  Bin 0 -> 3083 bytes
 .../has-cors-npm-1.1.0-d60e35705d-549ce94113.zip   |  Bin 0 -> 2926 bytes
 ...http-errors-npm-1.8.0-4399ea3b8d-873d997bad.zip |  Bin 7416 -> 0 bytes
 ...http-errors-npm-1.8.1-fb60d9f6ae-d3c7e7e776.zip |  Bin 0 -> 7456 bytes
 .../immutable-npm-3.8.2-8bba11f18f-41909b3869.zip  |  Bin 0 -> 101046 bytes
 .../indexof-npm-0.0.1-b35b810950-0fb04e8b14.zip|  Bin 0 -> 1708 bytes
 ...number-like-npm-1.0.8-ac7af3c4eb-cfba928570.zip |  Bin 0 -> 31127 bytes
 .../isarray-npm-2.0.1-ef99c2575f-a052197321.zip|  Bin 0 -> 2153 bytes
 .../jsonfile-npm-3.0.1-77649e47c9-f2935da339.zip   |  Bin 0 -> 6556 bytes
 .../limiter-npm-1.1.5-aa11b1b2de-2d51d3a8be.zip|  Bin 0 -> 10588 bytes
 ...localtunnel-npm-2.0.2-4a732923ac-181452d945.zip |  Bin 0 -> 11760 

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

2021-12-15 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 e4b94bf  Updated CHANGELOG.md
e4b94bf is described below

commit e4b94bf5aa18a9e367e9c01046d0a4628e071503
Author: github-actions[bot] 
<41898282+github-actions[bot]@users.noreply.github.com>
AuthorDate: Thu Dec 16 03:11:43 2021 +

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

diff --git a/CHANGELOG.md b/CHANGELOG.md
index 03403a4..14a12ab 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -39,6 +39,7 @@
 
 **Merged pull requests:**
 
+- ⬆️ Upgrade Quarkus 2.6.0.Final 
[\#3388](https://github.com/apache/camel-quarkus/pull/3388) 
([zbendhiba](https://github.com/zbendhiba))
 - protobuf: Missing method "getName" when using contentTypeFormat=json … 
[\#3384](https://github.com/apache/camel-quarkus/pull/3384) 
([aldettinger](https://github.com/aldettinger))
 - ⬆️ Use the Quarkus Artemis BOM and upgrade to 1.0.2 
[\#3383](https://github.com/apache/camel-quarkus/pull/3383) 
([zbendhiba](https://github.com/zbendhiba))
 - Fix \#3374 to use File.separatorChar when get fqcn from generated … 
[\#3380](https://github.com/apache/camel-quarkus/pull/3380) 
([zhfeng](https://github.com/zhfeng))


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

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

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


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

commit a9fea7472ad736bf0c07123cc1358c2665ffb168
Author: github-actions[bot] 
<41898282+github-actions[bot]@users.noreply.github.com>
AuthorDate: Thu Dec 16 03:09:43 2021 +

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

diff --git a/CHANGELOG.md b/CHANGELOG.md
index 49ad3fd..f863f6f 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -23,6 +23,7 @@
 - Could not pull base image - Build kit failed \(No matching credentials were 
found, falling back on anonymous\) 
[\#2748](https://github.com/apache/camel-k/issues/2748)
 - Cannot deploy XML integration with undertow 
[\#2746](https://github.com/apache/camel-k/issues/2746)
 - Release 1.7.0 [\#2743](https://github.com/apache/camel-k/issues/2743)
+- \[E2E\] Reconciliation duration metric failure 
[\#2742](https://github.com/apache/camel-k/issues/2742)
 - Camel K SEDA Queue full Issue 
[\#2725](https://github.com/apache/camel-k/issues/2725)
 - How to set map properties in the kamelet parameters via the yaml definition? 
[\#2608](https://github.com/apache/camel-k/issues/2608)
 - Provide a way to specify exclusions for a dependency 
[\#2598](https://github.com/apache/camel-k/issues/2598)
@@ -45,12 +46,16 @@
 - Runtime reload configmap/secret when they change 
[\#2106](https://github.com/apache/camel-k/issues/2106)
 - Kamelet - Possible to pre configure component options 
[\#2081](https://github.com/apache/camel-k/issues/2081)
 - Monitor integration related events 
[\#2025](https://github.com/apache/camel-k/issues/2025)
+- Switch to UBI minimal  
[\#2007](https://github.com/apache/camel-k/issues/2007)
 - Expose operator information 
[\#1947](https://github.com/apache/camel-k/issues/1947)
 - not able to use json: MethodNotFoundException 
[\#1915](https://github.com/apache/camel-k/issues/1915)
 - Kamel 1.0 fails on install on mac 
[\#1543](https://github.com/apache/camel-k/issues/1543)
 
 **Merged pull requests:**
 
+- feat: Set GOMAXPROCS based on CPU quota 
[\#2837](https://github.com/apache/camel-k/pull/2837) 
([astefanutti](https://github.com/astefanutti))
+- fix\(e2e\): Account for requeued and errored integration reconciliations 
[\#2836](https://github.com/apache/camel-k/pull/2836) 
([astefanutti](https://github.com/astefanutti))
+- fix\(e2e\): Avoid nested Gomega fields matcher 
[\#2833](https://github.com/apache/camel-k/pull/2833) 
([astefanutti](https://github.com/astefanutti))
 - chore: Try SSA for Kamelet install only once 
[\#2823](https://github.com/apache/camel-k/pull/2823) 
([astefanutti](https://github.com/astefanutti))
 - fix\(yaml\): Take to-d into account while parsing YAML DSL steps 
[\#2822](https://github.com/apache/camel-k/pull/2822) 
([astefanutti](https://github.com/astefanutti))
 - fix: First bundle Kamelets install with client-side apply 
[\#2821](https://github.com/apache/camel-k/pull/2821) 
([astefanutti](https://github.com/astefanutti))


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

2021-12-15 Thread GitBox


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


   The 
[quarkus-main](https://github.com/apache/camel-quarkus/tree/quarkus-main) 
branch build has failed:
   
   * Build ID: 1585584206-602-620b94a8-8aa3-4e68-bd55-fa1d989c3e8c
   * Camel Quarkus Commit: f29307ea0a8d99efed8bfabe5c553cdf5fb72478
   
   * Quarkus Main Commit: Unknown
   * Link to build: 
https://github.com/apache/camel-quarkus/actions/runs/1585584206


-- 
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] tadayosi commented on issue #722: Share buttons disappeared in Blog

2021-12-15 Thread GitBox


tadayosi commented on issue #722:
URL: https://github.com/apache/camel-website/issues/722#issuecomment-995360605


   It turned out that an adblocker browser extension on my browser (Chrome) did 
the filtering against the icons. Disabling the extension for the website 
recovered them for me. Probably others who use an adblocker face the same issue.
   
   I'll explore a bit on why the icons are filtered out. 


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

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

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




[camel-karaf] branch automatic-periodic-sync updated (f44cb67 -> 63a1a09)

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

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


from f44cb67  Upgrade Spring Batch bundle to version 4.3.4_1
 add d26fbb3  CAMEL-17313 - Aligned camel-ahc feature
 add 8d9235d  CAMEL-17313 - Aligned Camel-amqp feature
 add d18af3b  CAMEL-17313 - Aligned Camel-atomix feature
 add a8cfdb8  CAMEL-17313 - Aligned camel-coap feature
 add 2d9e7dd  CAMEL-17313 - Aligned Camel-Docker feature
 add df2a8e8  CAMEL-17313 - Aligned camel-elasticsearch-rest feature
 add f2088b2  CAMEL-17313 - Aligned camel-etcd feature
 add 4ca8c90  CAMEL-17313 - Aligned camel-iec60870 feature
 add 6f46256  CAMEL-17313 - Aligned camel-lumberjack feature
 add 6e4dd53  CAMEL-17313 - Aligned camel-milo feature
 add 297b94b  CAMEL-17313 - Aligned camel-netty feature
 add 94f3a53  CAMEL-17313 - Aligned Camel-NSQ feature
 add b440a83  CAMEL-17313 - Aligned Camel-olingo4 feature
 add e153f39  CAMEL-17313 - Aligned Camel-pgevent feature
 add 51fd2a9  CAMEL-17313 - Aligned Camel-Telegram feature
 add 5dbac39  CAMEL-17313 - Aligned Camel-Vertx Feature
 add 1307e7b  CAMEL-17313 - Aligned Camel-Zendesk feature
 add 63a1a09  Camel-Avro: Upgrade Commons-compress to version 1.21 to align 
the feature

No new revisions were added by this update.

Summary of changes:
 .../karaf/features/src/main/resources/features.xml  | 17 +
 pom.xml |  3 ++-
 2 files changed, 19 insertions(+), 1 deletion(-)


[camel-spring-boot] branch automatic-periodic-sync updated (e339970 -> 7aa1671)

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

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


omit e339970  [create-pull-request] automated change
 add 496af02  [create-pull-request] automated change
 add f897487  CAMEL-17323: camel-main - Add option to turn on debug
 add 7aa1671  [create-pull-request] automated change

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

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:
 .../springboot/catalog/components/azure-cosmosdb.json   |  4 ++--
 .../src/main/docs/azure-cosmosdb.json   |  4 ++--
 .../springboot/CosmosDbComponentConfiguration.java  | 17 -
 core/camel-spring-boot/src/main/docs/spring-boot.json   |  7 +++
 .../camel/spring/boot/CamelConfigurationProperties.java |  7 +++
 5 files changed, 26 insertions(+), 13 deletions(-)


[GitHub] [camel-spring-boot] github-actions[bot] opened a new pull request #420: [Github Actions] Periodic Sync Camel Spring Boot Main Branch

2021-12-15 Thread GitBox


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


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


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

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

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




[GitHub] [camel-k] github-actions[bot] commented on issue #2641: Use the new dynamic shell completion from cobra

2021-12-15 Thread GitBox


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


   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-website] github-actions[bot] commented on pull request #721: See #720: POC Main local builds

2021-12-15 Thread GitBox


github-actions[bot] commented on pull request #721:
URL: https://github.com/apache/camel-website/pull/721#issuecomment-995290768


    Preview is available at https://pr-721--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




[GitHub] [camel-karavan] mgubaidullin merged pull request #147: Preview 0.0.9

2021-12-15 Thread GitBox


mgubaidullin merged pull request #147:
URL: https://github.com/apache/camel-karavan/pull/147


   


-- 
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: Preview 0.0.9 (#147)

2021-12-15 Thread marat
This is an automated email from the ASF dual-hosted git repository.

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


The following commit(s) were added to refs/heads/main by this push:
 new 0028aac  Preview 0.0.9 (#147)
0028aac is described below

commit 0028aacfea847ea2a7f200faf42c85c43fdaf53c
Author: Marat Gubaidullin 
AuthorDate: Wed Dec 15 16:55:45 2021 -0500

Preview 0.0.9 (#147)
---
 karavan-app/pom.xml  | 2 +-
 karavan-app/src/main/webapp/package.json | 2 +-
 karavan-designer/package.json| 2 +-
 karavan-generator/pom.xml| 2 +-
 karavan-vscode/CHANGELOG.md  | 5 +
 karavan-vscode/package.json  | 2 +-
 6 files changed, 10 insertions(+), 5 deletions(-)

diff --git a/karavan-app/pom.xml b/karavan-app/pom.xml
index 9115929..493ebe4 100644
--- a/karavan-app/pom.xml
+++ b/karavan-app/pom.xml
@@ -18,7 +18,7 @@
  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance;>
 4.0.0
 org.apache.camel.karavan
-0.0.8
+0.0.9
 karavan
 
 3.8.1
diff --git a/karavan-app/src/main/webapp/package.json 
b/karavan-app/src/main/webapp/package.json
index 9cab299..5a123ac 100644
--- a/karavan-app/src/main/webapp/package.json
+++ b/karavan-app/src/main/webapp/package.json
@@ -1,6 +1,6 @@
 {
   "name": "karavan",
-  "version": "0.0.8",
+  "version": "0.0.9",
   "private": true,
   "dependencies": {
 "@patternfly/patternfly": "^4.132.2",
diff --git a/karavan-designer/package.json b/karavan-designer/package.json
index 16480f2..23cf11e 100644
--- a/karavan-designer/package.json
+++ b/karavan-designer/package.json
@@ -1,6 +1,6 @@
 {
   "name": "karavan-designer",
-  "version": "0.0.8",
+  "version": "0.0.9",
   "private": true,
   "dependencies": {
 "@patternfly/patternfly": "^4.132.2",
diff --git a/karavan-generator/pom.xml b/karavan-generator/pom.xml
index b819d68..01162a5 100644
--- a/karavan-generator/pom.xml
+++ b/karavan-generator/pom.xml
@@ -19,7 +19,7 @@
 4.0.0
 org.apache.camel.karavan
 karavan-generator
-0.0.8
+0.0.9
 
 3.8.1
 true
diff --git a/karavan-vscode/CHANGELOG.md b/karavan-vscode/CHANGELOG.md
index 38850f1..5ed8938 100644
--- a/karavan-vscode/CHANGELOG.md
+++ b/karavan-vscode/CHANGELOG.md
@@ -1,5 +1,10 @@
 # Changelog
 
+## 0.0.9
+1. Support Marshal and Unmarshal elements with configurable DataFormats 
(`any23`, `asn1`, `avro`, `barcode`, `base64`, `beanio`, `bindy`, `cbor`, 
`crypto`, `csv`, `custom`, `fhirJson`, `fhirXml`, `flatpack`, `grok`, `gzip`, 
`hl7`, `ical`, `jacksonxml`, `jaxb`, `json`, `jsonApi`, `lzf`, `mimeMultipart`, 
`pgp`, `protobuf`, `rss`, `secureXML`, `soapjaxb`, `syslog`, `tarfile`, 
`thrift`, `tidyMarkup`, `univocity-csv`, `univocity-fixed`, `univocity-tsv`, 
`xmlrpc`, `xstream`, `yaml`, `zip`, `zi [...]
+2. Support of implicit dsl parameters configured as String, ex. `log: 
'${body}'` [#141](https://github.com/apache/camel-karavan/issues/141)
+3. Configurable JBang parameters: `Dcamel.jbang.version`, `max-messages`, 
`reload`, `logging-level`
+
 ## 0.0.8
 1. Custom Kamelets to use in Karavan 
[#114](https://github.com/apache/camel-karavan/issues/114)
 2. GitOps Mode 
https://github.com/apache/camel-karavan/blob/main/karavan-demo/openshift/README.md
diff --git a/karavan-vscode/package.json b/karavan-vscode/package.json
index b83741f..d8a6fc6 100644
--- a/karavan-vscode/package.json
+++ b/karavan-vscode/package.json
@@ -4,7 +4,7 @@
   "displayName": "Camel Karavan Designer",
   "icon": "icons/icon.png",
   "description": "Integration Designer for Apache Camel",
-  "version": "0.0.8",
+  "version": "0.0.9",
   "license": "Apache-2.0",
   "preview": true,
   "bugs": {


[GitHub] [camel-quarkus] ppalaga commented on a change in pull request #3391: ⏪️ Revert software.amazon.awssdk:apache-client dependency override

2021-12-15 Thread GitBox


ppalaga commented on a change in pull request #3391:
URL: https://github.com/apache/camel-quarkus/pull/3391#discussion_r770061252



##
File path: poms/bom/pom.xml
##
@@ -6055,18 +6048,6 @@
 json-smart
 ${json-smart.version}
 
-
-
-software.amazon.awssdk
-apache-client
-${awssdk.version}
-
-
-commons-logging
-commons-logging
-
-
-

Review comment:
   I think this is the only part we should remove now that we upgrade to 
Quarkus 2.6. I think `software.amazon.awssdk:bom` in version synced with 
quarkiverse amazonservices is still needed to keep the versions of 
software.amazon.awssdk dependencies consistent.




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

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

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




[GitHub] [camel-quarkus] ppalaga commented on a change in pull request #3392: ⬆️ Upgrade Camel to 3.14.0

2021-12-15 Thread GitBox


ppalaga commented on a change in pull request #3392:
URL: https://github.com/apache/camel-quarkus/pull/3392#discussion_r770047437



##
File path: docs/pom.xml
##
@@ -31,6 +31,12 @@
 
 Camel Quarkus :: Documentation
 
+
+

Review comment:
   An issue for re-enabling and pasting it's URL here would be nice.




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

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

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




[camel] 01/02: CAMEL-17344: camel-salesforce: swallowing exceptions

2021-12-15 Thread jeremyross
This is an automated email from the ASF dual-hosted git repository.

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

commit c08783523cdc4e2e4f2b5ded56f0a27e4e72c024
Author: Jeremy Ross 
AuthorDate: Wed Dec 15 12:24:33 2021 -0600

CAMEL-17344: camel-salesforce: swallowing exceptions

collections operations swallow exceptions
---
 ...efaultCompositeSObjectCollectionsApiClient.java | 34 +-
 .../CompositeSObjectCollectionsProcessor.java  |  2 +-
 2 files changed, 21 insertions(+), 15 deletions(-)

diff --git 
a/components/camel-salesforce/camel-salesforce-component/src/main/java/org/apache/camel/component/salesforce/internal/client/DefaultCompositeSObjectCollectionsApiClient.java
 
b/components/camel-salesforce/camel-salesforce-component/src/main/java/org/apache/camel/component/salesforce/internal/client/DefaultCompositeSObjectCollectionsApiClient.java
index 75c575a..953ac60 100644
--- 
a/components/camel-salesforce/camel-salesforce-component/src/main/java/org/apache/camel/component/salesforce/internal/client/DefaultCompositeSObjectCollectionsApiClient.java
+++ 
b/components/camel-salesforce/camel-salesforce-component/src/main/java/org/apache/camel/component/salesforce/internal/client/DefaultCompositeSObjectCollectionsApiClient.java
@@ -85,11 +85,11 @@ public class DefaultCompositeSObjectCollectionsApiClient 
extends AbstractClientB
 doHttpRequest(request, new ClientResponseCallback() {
 @Override
 public void onResponse(InputStream response, Map 
headers, SalesforceException ex) {
-callback.onResponse(
-tryToReadListResponse(
-sobjectType, response),
-headers,
-ex);
+Optional> body = Optional.empty();
+if (ex == null) {
+body = tryToReadListResponse(sobjectType, response);
+}
+callback.onResponse(body, headers, ex);
 }
 });
 }
@@ -124,9 +124,11 @@ public class DefaultCompositeSObjectCollectionsApiClient 
extends AbstractClientB
 doHttpRequest(request, new ClientResponseCallback() {
 @Override
 public void onResponse(InputStream response, Map 
headers, SalesforceException ex) {
-callback.onResponse(
-tryToReadListResponse(SaveSObjectResult.class, 
response),
-headers, ex);
+Optional> body = Optional.empty();
+if (ex == null) {
+body = tryToReadListResponse(SaveSObjectResult.class, 
response);
+}
+callback.onResponse(body, headers, ex);
 }
 });
 }
@@ -152,9 +154,11 @@ public class DefaultCompositeSObjectCollectionsApiClient 
extends AbstractClientB
 doHttpRequest(request, new ClientResponseCallback() {
 @Override
 public void onResponse(InputStream response, Map 
headers, SalesforceException ex) {
-callback.onResponse(
-tryToReadListResponse(UpsertSObjectResult.class, 
response),
-headers, ex);
+Optional> body = Optional.empty();
+if (ex == null) {
+body = tryToReadListResponse(UpsertSObjectResult.class, 
response);
+}
+callback.onResponse(body, headers, ex);
 }
 });
 }
@@ -172,9 +176,11 @@ public class DefaultCompositeSObjectCollectionsApiClient 
extends AbstractClientB
 doHttpRequest(request, new ClientResponseCallback() {
 @Override
 public void onResponse(InputStream response, Map 
headers, SalesforceException ex) {
-callback.onResponse(
-tryToReadListResponse(DeleteSObjectResult.class, 
response),
-headers, ex);
+Optional> body = Optional.empty();
+if (ex == null) {
+body = tryToReadListResponse(DeleteSObjectResult.class, 
response);
+}
+callback.onResponse(body, headers, ex);
 }
 });
 }
diff --git 
a/components/camel-salesforce/camel-salesforce-component/src/main/java/org/apache/camel/component/salesforce/internal/processor/CompositeSObjectCollectionsProcessor.java
 
b/components/camel-salesforce/camel-salesforce-component/src/main/java/org/apache/camel/component/salesforce/internal/processor/CompositeSObjectCollectionsProcessor.java
index 98319a7..03d6a20 100644
--- 
a/components/camel-salesforce/camel-salesforce-component/src/main/java/org/apache/camel/component/salesforce/internal/processor/CompositeSObjectCollectionsProcessor.java
+++ 

[camel] branch main updated (0bd749e -> 5882290)

2021-12-15 Thread jeremyross
This is an automated email from the ASF dual-hosted git repository.

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


from 0bd749e  Regen for commit ca1b9fe47a297fa1524687c1597da8fb23954d2e
 new c087835  CAMEL-17344: camel-salesforce: swallowing exceptions
 new 5882290  CAMEL-17346: camel-salesforce: expired passwords

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:
 ...efaultCompositeSObjectCollectionsApiClient.java | 34 +-
 .../internal/client/SalesforceSecurityHandler.java | 34 ++
 .../CompositeSObjectCollectionsProcessor.java  |  2 +-
 3 files changed, 55 insertions(+), 15 deletions(-)


[camel] 02/02: CAMEL-17346: camel-salesforce: expired passwords

2021-12-15 Thread jeremyross
This is an automated email from the ASF dual-hosted git repository.

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

commit 58822906704efd99470aec37430a12afa86e3dbc
Author: Jeremy Ross 
AuthorDate: Wed Dec 15 13:36:51 2021 -0600

CAMEL-17346: camel-salesforce: expired passwords

Better handling for 401 expired password.
---
 .../internal/client/SalesforceSecurityHandler.java | 34 ++
 1 file changed, 34 insertions(+)

diff --git 
a/components/camel-salesforce/camel-salesforce-component/src/main/java/org/apache/camel/component/salesforce/internal/client/SalesforceSecurityHandler.java
 
b/components/camel-salesforce/camel-salesforce-component/src/main/java/org/apache/camel/component/salesforce/internal/client/SalesforceSecurityHandler.java
index 62633be..375cfda 100644
--- 
a/components/camel-salesforce/camel-salesforce-component/src/main/java/org/apache/camel/component/salesforce/internal/client/SalesforceSecurityHandler.java
+++ 
b/components/camel-salesforce/camel-salesforce-component/src/main/java/org/apache/camel/component/salesforce/internal/client/SalesforceSecurityHandler.java
@@ -16,10 +16,15 @@
  */
 package org.apache.camel.component.salesforce.internal.client;
 
+import java.io.IOException;
 import java.io.InputStream;
+import java.util.Collections;
+import java.util.List;
 
+import com.fasterxml.jackson.databind.ObjectMapper;
 import org.apache.camel.component.salesforce.SalesforceHttpClient;
 import org.apache.camel.component.salesforce.api.SalesforceException;
+import org.apache.camel.component.salesforce.api.dto.RestError;
 import org.apache.camel.component.salesforce.internal.SalesforceSession;
 import org.eclipse.jetty.client.HttpContentResponse;
 import org.eclipse.jetty.client.HttpConversation;
@@ -45,12 +50,14 @@ public class SalesforceSecurityHandler implements 
ProtocolHandler {
 private static final Logger LOG = 
LoggerFactory.getLogger(SalesforceSecurityHandler.class);
 
 private static final String AUTHENTICATION_RETRIES_ATTRIBUTE = 
SalesforceSecurityHandler.class.getName().concat(".retries");
+private static final String EXPIRED_PASSWORD_CODE = 
"INVALID_OPERATION_WITH_EXPIRED_PASSWORD";
 
 private final SalesforceHttpClient httpClient;
 private final SalesforceSession session;
 private final int maxAuthenticationRetries;
 private final int maxContentLength;
 private final ResponseNotifier notifier;
+private final ObjectMapper objectMapper = new ObjectMapper();
 
 public SalesforceSecurityHandler(SalesforceHttpClient httpClient) {
 
@@ -159,6 +166,22 @@ public class SalesforceSecurityHandler implements 
ProtocolHandler {
 // request failed authentication?
 if (status == HttpStatus.UNAUTHORIZED_401) {
 
+// Salesforce will allow successful login with an expired 
password, but any subsequent
+// API calls will fail with a 401 and message about expired 
password.
+// It's fatal. User must reset password.
+List errors = Collections.emptyList();
+try {
+errors = client.readErrorsFrom(getContentAsInputStream(), 
objectMapper);
+} catch (IOException e) {
+LOG.warn("Unable to deserialize errors from response 
body.");
+}
+if (errors.stream().anyMatch(error -> 
EXPIRED_PASSWORD_CODE.equals(error.getErrorCode( {
+SalesforceException salesforceException = 
createSalesforceException(client, status,
+reason);
+forwardFailureComplete(request, null, response, 
salesforceException);
+return;
+}
+
 // REST token expiry
 LOG.warn("Retrying on Salesforce authentication error [{}]: 
[{}]", status, reason);
 
@@ -188,6 +211,16 @@ public class SalesforceSecurityHandler implements 
ProtocolHandler {
 }
 }
 
+private SalesforceException 
createSalesforceException(AbstractClientBase client, int statusCode, String 
reason) {
+List restErrors = Collections.emptyList();
+try {
+restErrors = client.readErrorsFrom(getContentAsInputStream(), 
new ObjectMapper());
+} catch (IOException e) {
+LOG.warn("Unable to deserialize errors from response body.");
+}
+return new SalesforceException(restErrors, statusCode);
+}
+
 protected void retryOnFailure(
 SalesforceHttpRequest request, HttpConversation conversation, 
Integer retries, AbstractClientBase client,
 Throwable failure) {
@@ -286,6 +319,7 @@ public class SalesforceSecurityHandler implements 
ProtocolHandler {
 
notifier.forwardFailureComplete(conversation.getResponseListeners(), request, 
requestFailure, response,
   

[GitHub] [camel-quarkus] zbendhiba opened a new pull request #3392: ⬆️ Upgrade Camel to 3.14.0

2021-12-15 Thread GitBox


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


   


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

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

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




[camel-k-runtime] branch release-1.10.x updated: fix(docs): grammar correction in JavaScript docs

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

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


The following commit(s) were added to refs/heads/release-1.10.x by this push:
 new d534609  fix(docs): grammar correction in JavaScript docs
d534609 is described below

commit d534609c39e7a0b441b56c02e538250c99b342ed
Author: Basit Mustafa 
AuthorDate: Wed Dec 15 11:47:22 2021 -0700

fix(docs): grammar correction in JavaScript docs
---
 docs/modules/languages/pages/javascript.adoc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/docs/modules/languages/pages/javascript.adoc 
b/docs/modules/languages/pages/javascript.adoc
index e94f33e..fc7b630 100644
--- a/docs/modules/languages/pages/javascript.adoc
+++ b/docs/modules/languages/pages/javascript.adoc
@@ -25,7 +25,7 @@ To run it, you need just to execute:
 kamel run hello.js
 ```
 
-For JavaScript integrations, Camel K does not yet provide an enhanced DSL, but 
you can access to some global bounded objects such as a writable registry and 
the camel context so to set the property _exchangeFormatter_ of the 
_LogComponent_ as done in previous example, you can do something like:
+For JavaScript integrations, Camel K does not yet provide an enhanced DSL, but 
you can access some global bounded objects such as a writable registry and the 
camel context so to set the property _exchangeFormatter_ of the _LogComponent_ 
as done in previous example, you can do something like:
 
 [source,js]
 


[GitHub] [camel-k-runtime] oscerd merged pull request #760: fix(docs): grammar correction in JavaScript docs

2021-12-15 Thread GitBox


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


   


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

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

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




[GitHub] [camel-k-runtime] 24601 opened a new pull request #760: fix(docs): grammar correction in JavaScript docs

2021-12-15 Thread GitBox


24601 opened a new pull request #760:
URL: https://github.com/apache/camel-k-runtime/pull/760


   
   
   There was a very slight grammar issue in the docs, likely b/c of 
editing/changing sentence structure over time. 
   
   
   
   
   **Release Note**
   ```release-note
   NONE
   ```
   


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

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

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




[GitHub] [camel-k] astefanutti merged pull request #2837: feat: Set GOMAXPROCS based on CPU quota

2021-12-15 Thread GitBox


astefanutti merged pull request #2837:
URL: https://github.com/apache/camel-k/pull/2837


   


-- 
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: feat: Set GOMAXPROCS based on CPU quota

2021-12-15 Thread astefanutti
This is an automated email from the ASF dual-hosted git repository.

astefanutti 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 a0daa6e  feat: Set GOMAXPROCS based on CPU quota
a0daa6e is described below

commit a0daa6eced76657c0a93ecb7617e774daedc842f
Author: Antonin Stefanutti 
AuthorDate: Wed Dec 15 17:48:00 2021 +0100

feat: Set GOMAXPROCS based on CPU quota
---
 go.mod   | 1 +
 go.sum   | 1 +
 pkg/cmd/operator/operator.go | 5 +
 3 files changed, 7 insertions(+)

diff --git a/go.mod b/go.mod
index e11b03b..bb740d4 100644
--- a/go.mod
+++ b/go.mod
@@ -40,6 +40,7 @@ require (
github.com/spf13/viper v1.8.1
github.com/stoewer/go-strcase v1.2.0
github.com/stretchr/testify v1.7.0
+   go.uber.org/automaxprocs v1.4.0
go.uber.org/multierr v1.6.0
go.uber.org/zap v1.19.1
golang.org/x/oauth2 v0.0.0-20211104180415-d3ed0bb246c8
diff --git a/go.sum b/go.sum
index 74904a0..8e3f6e8 100644
--- a/go.sum
+++ b/go.sum
@@ -1158,6 +1158,7 @@ go.uber.org/atomic v1.4.0/go.mod 
h1:gD2HeocX3+yG+ygLZcrzQJaqmWj9AIm7n08wl/qW/PE=
 go.uber.org/atomic v1.7.0/go.mod 
h1:fEN4uk6kAWBTFdckzkM89CLk9XfWZrxpCo0nPH17wJc=
 go.uber.org/atomic v1.9.0 h1:ECmE8Bn/WFTYwEW/bpKD3M8VtR/zQVbavAoalC1PYyE=
 go.uber.org/atomic v1.9.0/go.mod 
h1:fEN4uk6kAWBTFdckzkM89CLk9XfWZrxpCo0nPH17wJc=
+go.uber.org/automaxprocs v1.4.0 h1:CpDZl6aOlLhReez+8S3eEotD7Jx0Os++lemPlMULQP0=
 go.uber.org/automaxprocs v1.4.0/go.mod 
h1:/mTEdr7LvHhs0v7mjdxDreTz1OG5zdZGqgOnhWiR/+Q=
 go.uber.org/goleak v1.1.10/go.mod 
h1:8a7PlsEVH3e/a/GLqe5IIrQx6GzcnRmZEufDUTk4A7A=
 go.uber.org/goleak v1.1.11-0.20210813005559-691160354723 
h1:sHOAIxRGBp443oHZIPB+HsUGaksVCXVQENPxwTfQdH4=
diff --git a/pkg/cmd/operator/operator.go b/pkg/cmd/operator/operator.go
index 256d9d5..3741079 100644
--- a/pkg/cmd/operator/operator.go
+++ b/pkg/cmd/operator/operator.go
@@ -27,6 +27,8 @@ import (
"strconv"
"time"
 
+   "go.uber.org/automaxprocs/maxprocs"
+
appsv1 "k8s.io/api/apps/v1"
batchv1 "k8s.io/api/batch/v1"
batchv1beta1 "k8s.io/api/batch/v1beta1"
@@ -89,6 +91,9 @@ func Run(healthPort, monitoringPort int32, leaderElection 
bool) {
 
klog.SetLogger(log)
 
+   _, err := maxprocs.Set(maxprocs.Logger(func(f string, a ...interface{}) 
{ log.Info(fmt.Sprintf(f, a)) }))
+   exitOnError(err, "failed to set GOMAXPROCS from cgroups")
+
printVersion()
 
watchNamespace, err := getWatchNamespace()


[GitHub] [camel-quarkus] zbendhiba opened a new pull request #3391: ⏪️ Revert software.amazon.awssdk:apache-client dependency override

2021-12-15 Thread GitBox


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


   Fixes #3366
   
   


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

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

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




[GitHub] [camel-quarkus] aldettinger commented on pull request #3385: POC/WIP local build setup

2021-12-15 Thread GitBox


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


   @djencks the setup issue on my machine has no link with this specific PR. 
It's just I can't generate the doc locally independent from this PR.
   
   I was asking a bout a simple way to check the PR. And it looks there is not. 
So I guess it's ok to merge and see how it's going :)


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

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

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




[GitHub] [camel-quarkus] aldettinger commented on a change in pull request #3385: POC/WIP local build setup

2021-12-15 Thread GitBox


aldettinger commented on a change in pull request #3385:
URL: https://github.com/apache/camel-quarkus/pull/3385#discussion_r769882211



##
File path: docs/pom.xml
##
@@ -85,45 +85,45 @@
 
 
 
-
-com.github.eirslett
-frontend-maven-plugin
-${frontend-maven-plugin.version}
-
-
-install node and yarn
-
-install-node-and-yarn
-
-
-v14.16.0
-v1.22.5
-
-
-
-yarn install
-
-yarn
-
-verify
-
-install --immutable
-
-
-
-
-
+

Review comment:
   ok I see.




-- 
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] djencks commented on pull request #3385: POC/WIP local build setup

2021-12-15 Thread GitBox


djencks commented on pull request #3385:
URL: https://github.com/apache/camel-quarkus/pull/3385#issuecomment-995035663


   > @djencks I don't know the doc part that much and can't run it locally 
because of setup issues. Yet, let me do my best to review.
   
   Could you elaborate on the setup issues?  The instructions are in my dev 
list post on local partial builds. If the instructions are unclear or don't 
work I'd like to know :-)
   
   > One question thought, is there a simple way to double check that this PR 
does not break the doc ?
   
   I'm not quite sure what you are asking. The only sure way to check is to do 
a website PR build as described here: 
https://camel.apache.org/manual/improving-the-documentation.html#_creating_a_documentation_pull_request.
 Unfortunately this is not simple :-)  Doing a "full local build" as described 
in the dev list post is almost as good and much simpler.  However, since the 
changes here don't change anything about the stuff used in the actual website 
build, they are unlikely to break it.
   


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

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

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




[GitHub] [camel-quarkus] djencks commented on a change in pull request #3385: POC/WIP local build setup

2021-12-15 Thread GitBox


djencks commented on a change in pull request #3385:
URL: https://github.com/apache/camel-quarkus/pull/3385#discussion_r769862992



##
File path: docs/pom.xml
##
@@ -85,45 +85,45 @@
 
 
 
-
-com.github.eirslett
-frontend-maven-plugin
-${frontend-maven-plugin.version}
-
-
-install node and yarn
-
-install-node-and-yarn
-
-
-v14.16.0
-v1.22.5
-
-
-
-yarn install
-
-yarn
-
-verify
-
-install --immutable
-
-
-
-
-
+

Review comment:
   There's no point in keeping it's current state, but I left it there to 
help me think about whether there's a plausible way to do a partial docs build 
as part of the maven build... so far I don't see a good way.




-- 
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 asf-site updated (f04ee99 -> 95cdc26)

2021-12-15 Thread git-site-role
This is an automated email from the ASF dual-hosted git repository.

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


 discard f04ee99  Website updated to 14fc8832a999efee196bc0c32f0bedcd3caf38b4
 discard f0773db  Website updated to 325e929157412b27394080f4d4dba3d821476ddf
 new 69ad076  Website updated to 325e929157412b27394080f4d4dba3d821476ddf
 new 95cdc26  Website updated to 84d9574726ab3b79985b94ab0ddb5a95afd4131c

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   (f04ee99)
\
 N -- N -- N   refs/heads/asf-site (95cdc26)

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:
 camel-spring-boot/next/spring-boot.html   |2 +-
 components/next/azure-cosmosdb-component.html |2 +-
 components/next/others/main.html  |2 +-
 manual/backlog-debugger.html  |2 +-
 sitemap-camel-k.xml   |  822 +--
 sitemap-camel-kafka-connector.xml | 2218 
 sitemap-camel-kamelets.xml|  580 +--
 sitemap-camel-karaf.xml   |   70 +-
 sitemap-camel-quarkus.xml | 2078 
 sitemap-camel-spring-boot.xml |   54 +-
 sitemap-components.xml| 6712 -
 sitemap-manual.xml|  384 +-
 12 files changed, 6463 insertions(+), 6463 deletions(-)


[camel-quarkus] branch main updated (a726c53 -> f021cd2)

2021-12-15 Thread zbendhiba
This is an automated email from the ASF dual-hosted git repository.

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


from a726c53  Updated CHANGELOG.md
 new 5a8fc48  ⬆️ Upgrade Quarkus 2.6.0.Final
 new f021cd2  ⬆️ Upgrade kotlin to 1.6.10

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:
 docs/antora.yml | 2 +-
 pom.xml | 4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)


[camel-quarkus] 02/02: ⬆️ Upgrade kotlin to 1.6.10

2021-12-15 Thread zbendhiba
This is an automated email from the ASF dual-hosted git repository.

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

commit f021cd2f830f0feacdb887de75145cfee27cded8
Author: Zineb Bendhiba 
AuthorDate: Wed Dec 15 16:17:30 2021 +0100

⬆️ Upgrade kotlin to 1.6.10
---
 pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/pom.xml b/pom.xml
index 0abf333..81fc899 100644
--- a/pom.xml
+++ b/pom.xml
@@ -112,7 +112,7 @@
 2.4.7
 3.0.0
 ${kudu-version}
-1.6.0
+1.6.10
 ${libthrift-version} 
 ${metrics-version}
 ${mvel-version}


[camel-quarkus] 01/02: ⬆️ Upgrade Quarkus 2.6.0.Final

2021-12-15 Thread zbendhiba
This is an automated email from the ASF dual-hosted git repository.

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

commit 5a8fc4835cdb4b8f4b9fe4c361d9f75313d57071
Author: Zineb Bendhiba 
AuthorDate: Wed Dec 15 14:54:44 2021 +0100

⬆️ Upgrade Quarkus 2.6.0.Final
---
 docs/antora.yml | 2 +-
 pom.xml | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/docs/antora.yml b/docs/antora.yml
index 0c3b80f..7914162 100644
--- a/docs/antora.yml
+++ b/docs/antora.yml
@@ -27,7 +27,7 @@ asciidoc:
 min-maven-version: 3.6.2 # replace ${min-maven-version}
 target-maven-version: 3.8.4 # replace ${target-maven-version}
 camel-version: 3.13.0 # replace ${camel.version}
-quarkus-version: 2.6.0.CR1 # replace ${quarkus.version}
+quarkus-version: 2.6.0.Final # replace ${quarkus.version}
 # attributes used in xrefs to other Antora components
 cq-camel-components: 3.13.x@components # replace 
${camel.docs.components.xref}
 quarkus-examples-version: latest
diff --git a/pom.xml b/pom.xml
index da881e6..0abf333 100644
--- a/pom.xml
+++ b/pom.xml
@@ -55,7 +55,7 @@
 1.0.0
 2.3.0
 1.0.1
-2.6.0.CR1
+2.6.0.Final
 
2.0.0
 0.30.0
 


[GitHub] [camel-quarkus] zbendhiba merged pull request #3388: ⬆️ Upgrade Quarkus 2.6.0.Final

2021-12-15 Thread GitBox


zbendhiba merged pull request #3388:
URL: https://github.com/apache/camel-quarkus/pull/3388


   


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

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

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




[GitHub] [camel-quarkus] zbendhiba commented on pull request #3388: ⬆️ Upgrade Quarkus 2.6.0.Final

2021-12-15 Thread GitBox


zbendhiba commented on pull request #3388:
URL: https://github.com/apache/camel-quarkus/pull/3388#issuecomment-995022271


   > `mvn cq:sync-versions -N -e` does not show any upgrades anymore, so we are 
good
   
   yes I need to use this !! thanks


-- 
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] zregvart commented on pull request #721: See #720: POC Main local builds

2021-12-15 Thread GitBox


zregvart commented on pull request #721:
URL: https://github.com/apache/camel-website/pull/721#issuecomment-994994607


   I'll carve out some time to test his on my end, it seems like a good thing 
and implementation/user experience looks simple. A good start to having 
incremental builds on CI as well.


-- 
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 (14fc883 -> 84d9574)

2021-12-15 Thread zregvart
This is an automated email from the ASF dual-hosted git repository.

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


from 14fc883  fix: skip redirect checks
 new 64bc5da  chore: additional check that website is up
 new 197b77e  chore: fetch .htaccess from git
 new 84d9574  chore: reinstate redirect checks

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:
 package.json  |  2 +-
 tests/redirect.sh | 36 ++--
 2 files changed, 31 insertions(+), 7 deletions(-)


[camel-website] 02/03: chore: fetch .htaccess from git

2021-12-15 Thread zregvart
This is an automated email from the ASF dual-hosted git repository.

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

commit 197b77ecb1a9b20a106afcab16c1b60dffaa3850
Author: Zoran Regvart 
AuthorDate: Wed Dec 15 11:56:31 2021 +0100

chore: fetch .htaccess from git

If the website wasn't built we can still run the redirect checks by
loading the live `.htaccess` file from the `asf-site` branch in git.
This way we can run the redirect checks independent of the build if we
need to.
---
 tests/redirect.sh | 16 +++-
 1 file changed, 11 insertions(+), 5 deletions(-)

diff --git a/tests/redirect.sh b/tests/redirect.sh
index 96752ea..a3098c5 100755
--- a/tests/redirect.sh
+++ b/tests/redirect.sh
@@ -130,12 +130,18 @@ function test {
   fi
 }
 
+HTACCESS_FILE="$GIT_ROOT/documentation/.htaccess"
+if [ ! -f "$HTACCESS_FILE" ]; then
+  echo "No $HTACCESS_FILE found, using last published version. If you have 
made changes to the Antora playbook make sure to build the site first to test 
those."
+  $CURL_CMD -s -o "$HTACCESS_FILE" 
'https://gitbox.apache.org/repos/asf?p=camel-website.git;a=blob_plain;f=.htaccess;hb=refs/heads/asf-site'
+fi
+
 # determine current _latest_ versions
-COMPONENTS_VERSION="$(grep 'components/latest' 
"$GIT_ROOT/documentation/.htaccess" | grep -Z -o '[^/]*$')"
-CAMEL_K_VERSION="$(grep 'camel-k/latest' "$GIT_ROOT/documentation/.htaccess" | 
grep -Z -o '[^/]*$')"
-CAMEL_KAFKA_CONNECTOR_VERSION="$(grep 'camel-kafka-connector/latest' 
"$GIT_ROOT/documentation/.htaccess" | grep -Z -o '[^/]*$')"
-CAMEL_QUARKUS_VERSION="$(grep 'camel-quarkus/latest' 
"$GIT_ROOT/documentation/.htaccess" | grep -Z -o '[^/]*$')"
-CAMEL_KAMELETS_VERSION="$(grep 'camel-kamelets/latest' 
"$GIT_ROOT/documentation/.htaccess" | grep -Z -o '[^/]*$')"
+COMPONENTS_VERSION="$(grep '^Redirect 302 /components/latest' "$HTACCESS_FILE" 
| grep -Z -o '[^/]*$')"
+CAMEL_K_VERSION="$(grep '^Redirect 302 /camel-k/latest' "$HTACCESS_FILE" | 
grep -Z -o '[^/]*$')"
+CAMEL_KAFKA_CONNECTOR_VERSION="$(grep '^Redirect 302 
/camel-kafka-connector/latest' "$HTACCESS_FILE" | grep -Z -o '[^/]*$')"
+CAMEL_QUARKUS_VERSION="$(grep '^Redirect 302 /camel-quarkus/latest' 
"$HTACCESS_FILE" | grep -Z -o '[^/]*$')"
+CAMEL_KAMELETS_VERSION="$(grep '^Redirect 302 /camel-kamelets/latest' 
"$HTACCESS_FILE" | grep -Z -o '[^/]*$')"
 
 #
 # TESTS


[camel-website] 03/03: chore: reinstate redirect checks

2021-12-15 Thread zregvart
This is an automated email from the ASF dual-hosted git repository.

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

commit 84d9574726ab3b79985b94ab0ddb5a95afd4131c
Author: Zoran Regvart 
AuthorDate: Wed Dec 15 13:03:53 2021 +0100

chore: reinstate redirect checks
---
 package.json | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/package.json b/package.json
index bf4a8a8..3492ee0 100644
--- a/package.json
+++ b/package.json
@@ -13,7 +13,7 @@
 "check:html": "html-validate public",
 "check:links": "deadlinks-linux public",
 "check:redirects": "tests/redirect.sh -s",
-"checks": "run-s check:links check:html",
+"checks": "run-s check:links check:html check:redirects",
 "clean": "gulp clean",
 "check:dependencies": "run-p check:cache check:dedupe",
 "check:cache": "yarn workspaces foreach install --immutable 
--immutable-cache --check-cache",


[GitHub] [camel-website] zregvart merged pull request #723: chore: additional check that website is up

2021-12-15 Thread GitBox


zregvart merged pull request #723:
URL: https://github.com/apache/camel-website/pull/723


   


-- 
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] 01/03: chore: additional check that website is up

2021-12-15 Thread zregvart
This is an automated email from the ASF dual-hosted git repository.

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

commit 64bc5da0a8fa211aeb39eee49e98d38ec736994f
Author: Zoran Regvart 
AuthorDate: Wed Dec 15 14:31:50 2021 +0100

chore: additional check that website is up

When running the web server in a container for the redirect tests there
could be some network issues reaching it. This adds detection of that
situation and switches to using curl from inside of the web server
container.

This issue has occurred once on ASF Jenkins in build 622[1],
unfortunately without details allowing us to troubleshot this issue.

[1] https://ci-builds.apache.org/job/Camel/job/Camel.website/job/main/622/
---
 tests/redirect.sh | 20 +++-
 1 file changed, 19 insertions(+), 1 deletion(-)

diff --git a/tests/redirect.sh b/tests/redirect.sh
index a05ebad..96752ea 100755
--- a/tests/redirect.sh
+++ b/tests/redirect.sh
@@ -84,6 +84,24 @@ if [ "$SERVE" == 1 ]; then
   fi
 fi
 
+# make sure we can reach the web site
+CURL_CMD=curl
+set +e
+$CURL_CMD -sS -k -o /dev/null --retry-all-errors --retry-delay 3 --retry 5 
"$BASE_URL" || {
+  set -e
+  if [ -n "${CONTAINER_ID+x}" ]; then
+echo Reverting to using curl from within the HTTP container
+$CONTAINER_CMD exec "$CONTAINER_ID" apt-get update -y
+$CONTAINER_CMD exec "$CONTAINER_ID" apt-get install -y curl
+CURL_CMD="$CONTAINER_CMD exec $CONTAINER_ID curl"
+BASE_URL=https://localhost
+$CURL_CMD -sS -k -o /dev/null --retry-all-errors --retry-delay 3 --retry 5 
"$BASE_URL"
+  else
+exit 1
+  fi
+}
+set -e
+
 TOTAL=0
 SUCCESS=0
 
@@ -98,7 +116,7 @@ function test {
 
   local output
   set +e
-  output=$(curl -k -w '%{http_code},%{redirect_url}\n' -o /dev/null -s 
"${url}")
+  output=$($CURL_CMD -k -w '%{http_code},%{redirect_url}' -o /dev/null -s 
"${url}")
   set -e
   TOTAL=$((TOTAL + 1))
 


[GitHub] [camel-website] zregvart commented on pull request #724: chore: migrate to the new Algolia search app

2021-12-15 Thread GitBox


zregvart commented on pull request #724:
URL: https://github.com/apache/camel-website/pull/724#issuecomment-994991964


   We need to see about configuring the search index, this seems to have 
introduced some differences.
   
   Current
   ![Screenshot 2021-12-15 at 18-08-52 Apache Camel helps you integrate over 
300 different systems 
](https://user-images.githubusercontent.com/1306050/146232439-ce5231ae-1b06-480d-993e-edcb848fc94d.png)
   
   New
   ![Screenshot 2021-12-15 at 18-09-05 Apache Camel helps you integrate over 
300 different systems 
](https://user-images.githubusercontent.com/1306050/146232461-04a2bd0f-224a-431e-8bce-5333daa548d2.png)
   
   


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

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

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




[GitHub] [camel-k] astefanutti merged pull request #2836: fix(e2e): Account for requeued and errored integration reconciliations

2021-12-15 Thread GitBox


astefanutti merged pull request #2836:
URL: https://github.com/apache/camel-k/pull/2836


   


-- 
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: fix(e2e): Account for requeued and errored integration reconciliations

2021-12-15 Thread astefanutti
This is an automated email from the ASF dual-hosted git repository.

astefanutti 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 9cf6c60  fix(e2e): Account for requeued and errored integration 
reconciliations
9cf6c60 is described below

commit 9cf6c60aca8155bc07d1e93542fe7a11ad78d631
Author: Antonin Stefanutti 
AuthorDate: Wed Dec 15 13:25:23 2021 +0100

fix(e2e): Account for requeued and errored integration reconciliations
---
 e2e/common/operator_metrics_test.go | 34 +-
 1 file changed, 33 insertions(+), 1 deletion(-)

diff --git a/e2e/common/operator_metrics_test.go 
b/e2e/common/operator_metrics_test.go
index 62b181b..a3f12d1 100644
--- a/e2e/common/operator_metrics_test.go
+++ b/e2e/common/operator_metrics_test.go
@@ -269,7 +269,39 @@ func TestMetrics(t *testing.T) {
integrationReconciledCount := 
*integrationReconciled.Histogram.SampleCount

Expect(integrationReconciledCount).To(BeNumerically(">", 0))
 
-   
Expect(integrationReconciliations).To(BeNumerically("==", 
integrationReconciledCount))
+   integrationRequeued := 
getMetric(metrics["camel_k_reconciliation_duration_seconds"],
+   MatchFieldsP(IgnoreExtras, Fields{
+   "Label": ConsistOf(
+   label("group", 
v1.SchemeGroupVersion.Group),
+   label("version", 
v1.SchemeGroupVersion.Version),
+   label("kind", "Integration"),
+   label("namespace", 
it.Namespace),
+   label("result", "Requeued"),
+   label("tag", ""),
+   ),
+   }))
+   integrationRequeuedCount := uint64(0)
+   if integrationRequeued != nil {
+   integrationRequeuedCount = 
*integrationRequeued.Histogram.SampleCount
+   }
+
+   integrationErrored := 
getMetric(metrics["camel_k_reconciliation_duration_seconds"],
+   MatchFieldsP(IgnoreExtras, Fields{
+   "Label": ConsistOf(
+   label("group", 
v1.SchemeGroupVersion.Group),
+   label("version", 
v1.SchemeGroupVersion.Version),
+   label("kind", "Integration"),
+   label("namespace", 
it.Namespace),
+   label("result", "Errored"),
+   label("tag", "PlatformError"),
+   ),
+   }))
+   integrationErroredCount := uint64(0)
+   if integrationErrored != nil {
+   integrationErroredCount = 
*integrationErrored.Histogram.SampleCount
+   }
+
+   
Expect(integrationReconciliations).To(BeNumerically("==", 
integrationReconciledCount+integrationRequeuedCount+integrationErroredCount))
 
// Count the number of IntegrationKit reconciliations
integrationKitReconciliations, err := 
counter.Count(MatchFields(IgnoreExtras, Fields{


[GitHub] [camel-k] astefanutti commented on pull request #2836: fix(e2e): Account for requeued and errored integration reconciliations

2021-12-15 Thread GitBox


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


   Let me merge this as the metrics test passes on both Kubernetes and 
OpenShift:
   
   ```
   --- PASS: TestMetrics (82.89s)
   --- PASS: TestMetrics/Build_duration_metric (0.02s)
   --- PASS: TestMetrics/Build_recovery_attempts_metric (0.03s)
   --- PASS: TestMetrics/reconciliation_duration_metric (0.11s)
   --- PASS: TestMetrics/Build_queue_duration_metric (0.03s)
   --- PASS: TestMetrics/Integration_first_readiness_metric (0.03s)
   ```


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

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

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




[GitHub] [camel-k] astefanutti opened a new pull request #2837: feat: Set GOMAXPROCS based on CPU quota

2021-12-15 Thread GitBox


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


   This PR enables the Go runtime as well as Camel K to adjust vertical scaling 
based on CPU quota defined by cgroups. 
   
   **Release Note**
   ```release-note
   feat: Set GOMAXPROCS based on CPU quota
   ```
   


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

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

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




[camel] branch camel-3.14.x updated: CAMEL-17336: camel-jackson: useList has no effect (#6540)

2021-12-15 Thread jeremyross
This is an automated email from the ASF dual-hosted git repository.

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


The following commit(s) were added to refs/heads/camel-3.14.x by this push:
 new 2e69826  CAMEL-17336: camel-jackson: useList has no effect (#6540)
2e69826 is described below

commit 2e6982655246d1a6507ba582781ddb495b133d07
Author: Jeremy Ross 
AuthorDate: Tue Dec 14 12:35:24 2021 -0600

CAMEL-17336: camel-jackson: useList has no effect (#6540)

If an ObjectMapper from the registry is used, useList=true has no
effect.
---
 .../apache/camel/component/jackson/AbstractJacksonDataFormat.java  | 7 ---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git 
a/components/camel-jackson/src/main/java/org/apache/camel/component/jackson/AbstractJacksonDataFormat.java
 
b/components/camel-jackson/src/main/java/org/apache/camel/component/jackson/AbstractJacksonDataFormat.java
index 67f838d6..b338ca9 100644
--- 
a/components/camel-jackson/src/main/java/org/apache/camel/component/jackson/AbstractJacksonDataFormat.java
+++ 
b/components/camel-jackson/src/main/java/org/apache/camel/component/jackson/AbstractJacksonDataFormat.java
@@ -533,6 +533,10 @@ public abstract class AbstractJacksonDataFormat extends 
ServiceSupport
 
 @Override
 protected void doStart() throws Exception {
+if (useList) {
+setCollectionType(ArrayList.class);
+}
+
 boolean objectMapperFoundRegistry = false;
 if (objectMapper == null) {
 // lookup if there is a single default mapper we can use
@@ -559,9 +563,6 @@ public abstract class AbstractJacksonDataFormat extends 
ServiceSupport
 }
 
 if (!objectMapperFoundRegistry) {
-if (useList) {
-setCollectionType(ArrayList.class);
-}
 if (include != null) {
 JsonInclude.Include inc
 = 
getCamelContext().getTypeConverter().mandatoryConvertTo(JsonInclude.Include.class,
 include);


[GitHub] [camel-quarkus] djencks commented on issue #3387: Docs: Camel-quarkus 2.4.x docs don't show information in components/languages/dataformats and misc

2021-12-15 Thread GitBox


djencks commented on issue #3387:
URL: https://github.com/apache/camel-quarkus/issues/3387#issuecomment-994962850


   In particular, the tables emptied when camel-quarkus 2.3.x was removed: 
camel 3.12.x assumes that only camel-quarkus 2.3.x depends on it, so now that 
it's gone, the camel-quarkus info is no longer included in the camel 
components/etc pages.


-- 
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] djencks commented on issue #3387: Docs: Camel-quarkus 2.4.x docs don't show information in components/languages/dataformats and misc

2021-12-15 Thread GitBox


djencks commented on issue #3387:
URL: https://github.com/apache/camel-quarkus/issues/3387#issuecomment-994943963


   I may propose a different way of constructing these tables, there are some 
faulty assumptions about the relationship between camel versions and camel 
quarkus versions in the current setup.


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

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

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




[GitHub] [camel-kamelets] oscerd commented on issue #632: Documentation: Add information in active branches, about what is the camel-k version using the catalog

2021-12-15 Thread GitBox


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


   Yes, i forgot to link the website issue. Thanks for it. Feel free to assign 
to yourself :-)


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

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

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




[GitHub] [camel-kamelets] djencks commented on issue #632: Documentation: Add information in active branches, about what is the camel-k version using the catalog

2021-12-15 Thread GitBox


djencks commented on issue #632:
URL: https://github.com/apache/camel-kamelets/issues/632#issuecomment-994941474


   Is this a sub-task of https://github.com/apache/camel-website/issues/701? I 
was planning on tackling that next.


-- 
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] djencks commented on pull request #721: See #720: POC Main local builds

2021-12-15 Thread GitBox


djencks commented on pull request #721:
URL: https://github.com/apache/camel-website/pull/721#issuecomment-994931457


   > Not sure where the new `util` project is used. Is `util/jsonpath-util.js` 
missing from the PR?
   
   util/jsonpath-util.js has been there for a long time: this makes it 
available as a package.  The camel-kamelets PR has a kamelets.js that requires 
it.  However for consistency, I should change the `requires@` attribute  to use 
the package rather than the path.


-- 
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] javaduke edited a comment on pull request #6535: [CAMEL-17341, CAMEL-17342] BacklogDebugger API enhancements

2021-12-15 Thread GitBox


javaduke edited a comment on pull request #6535:
URL: https://github.com/apache/camel/pull/6535#issuecomment-994929655


   I agree the tracer needs to be improved, but for now I just do some strings 
manipulation. I'll review the tracer later and see if I can pass the exchange 
and thus simplify the code.
   And yes, my goal was not to break the backwards compatibility as much as 
possible, because the debugger should be able to work with the older versions 
of Camel (with limitations)


-- 
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] davsclaus commented on a change in pull request #6542: [CAMEL-17337] - Resolve regression in FhirComponent

2021-12-15 Thread GitBox


davsclaus commented on a change in pull request #6542:
URL: https://github.com/apache/camel/pull/6542#discussion_r769765818



##
File path: 
components/camel-fhir/camel-fhir-component/src/main/java/org/apache/camel/component/fhir/FhirComponent.java
##
@@ -32,9 +32,6 @@
 @Component("fhir")
 public class FhirComponent extends AbstractApiComponent {
 
-@Metadata(label = "advanced")

Review comment:
   I think removing this causes a problem with the auto generated api/docs 
for this. I need to check first.




-- 
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] javaduke commented on pull request #6535: [CAMEL-17341, CAMEL-17342] BacklogDebugger API enhancements

2021-12-15 Thread GitBox


javaduke commented on pull request #6535:
URL: https://github.com/apache/camel/pull/6535#issuecomment-994929655


   I agree the tracer needs to be improved, but for now I just do some strings 
manipulation. I'll review the tracer later and see if I can pass the exchange 
and thus simplify the code.


-- 
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] davsclaus commented on pull request #6535: [CAMEL-17341, CAMEL-17342] BacklogDebugger API enhancements

2021-12-15 Thread GitBox


davsclaus commented on pull request #6535:
URL: https://github.com/apache/camel/pull/6535#issuecomment-994929045


   Oh we can also do as you did, just embed the `` in the 
existing xml, as this only happens when you say (true) so its a new API and the 
old is as-is.
   
   


-- 
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] djencks commented on a change in pull request #721: See #720: POC Main local builds

2021-12-15 Thread GitBox


djencks commented on a change in pull request #721:
URL: https://github.com/apache/camel-website/pull/721#discussion_r769764443



##
File path: package.json
##
@@ -24,17 +24,24 @@
 "preview": "run-s preview:antora preview:hugo",
 "preview:antora": "antora --clean --fetch antora-playbook.yml",
 "preview:hugo": "hugo server -D",
-"preview:netlify": "netlify deploy --dir public"
+"preview:netlify": "netlify deploy --dir public",
+"build-full": "antora local-antora-playbook-full.yml --stacktrace",
+"build-partial": "antora local-antora-playbook-partial.yml --stacktrace"

Review comment:
   I think the longer name with local will be better, otherwise 
antora:build and antora:build-full will be too confusing.




-- 
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] djencks commented on a change in pull request #721: See #720: POC Main local builds

2021-12-15 Thread GitBox


djencks commented on a change in pull request #721:
URL: https://github.com/apache/camel-website/pull/721#discussion_r769763760



##
File path: package.json
##
@@ -50,7 +57,7 @@
 "toml": "~3.0"
   },
   "workspaces": [
-"antora-ui-camel"
-  ],
-  "packageManager": "yarn@3.1.0"

Review comment:
   Yarn removed it when I updated dependencies, I'm not sure why.  Perhaps 
because I followed recent instructions for node >= 16.10 and ran `corepack 
enable`? https://yarnpkg.com/getting-started/install
   
   I recently updated several of my projects to use yarn pnp and some got the 
packageManager key and some didn't.




-- 
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] davsclaus commented on pull request #6535: [CAMEL-17341, CAMEL-17342] BacklogDebugger API enhancements

2021-12-15 Thread GitBox


davsclaus commented on pull request #6535:
URL: https://github.com/apache/camel/pull/6535#issuecomment-994925541


   > ented.
   
   Yeah I noticed that too, but I think we can improve both at the same time: 
tracer and debugger by allows to capture exchange properties too. So you can 
say (true|false) to include exchange properties. If doing so, then yes. the 
root tag is different to be able to embed the exchange.
   
   


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

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

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




[GitHub] [camel-quarkus] aldettinger commented on a change in pull request #3385: POC/WIP local build setup

2021-12-15 Thread GitBox


aldettinger commented on a change in pull request #3385:
URL: https://github.com/apache/camel-quarkus/pull/3385#discussion_r769740585



##
File path: docs/pom.xml
##
@@ -85,45 +85,45 @@
 
 
 
-
-com.github.eirslett
-frontend-maven-plugin
-${frontend-maven-plugin.version}
-
-
-install node and yarn
-
-install-node-and-yarn
-
-
-v14.16.0
-v1.22.5
-
-
-
-yarn install
-
-yarn
-
-verify
-
-install --immutable
-
-
-
-
-
+

Review comment:
   This whole section is commented now. So, is it relevant to keep it ?




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

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

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




[GitHub] [camel-quarkus] aldettinger commented on pull request #3385: POC/WIP local build setup

2021-12-15 Thread GitBox


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


   @djencks I don't know the doc part that much and can't run it locally 
because of setup issues. Yet, let me do my best to review.
   One question thought, is there a simple way to double check that this PR 
does not break the doc ?


-- 
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 #724: chore: migrate to the new Algolia search app

2021-12-15 Thread GitBox


github-actions[bot] commented on pull request #724:
URL: https://github.com/apache/camel-website/pull/724#issuecomment-994889392


    Preview is available at https://pr-724--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




[GitHub] [camel-quarkus] zbendhiba commented on pull request #3388: ⬆️ Upgrade Quarkus 2.6.0.Final

2021-12-15 Thread GitBox


zbendhiba commented on pull request #3388:
URL: https://github.com/apache/camel-quarkus/pull/3388#issuecomment-994888670


   I didn't check if versions were updated in the quarkus-bom. I'm upgrading 
the kotlin version and double-check all the versions we usually sync from the 
quarkus bom


-- 
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] javaduke removed a comment on pull request #6535: [CAMEL-17341, CAMEL-17342] BacklogDebugger API enhancements

2021-12-15 Thread GitBox


javaduke removed a comment on pull request #6535:
URL: https://github.com/apache/camel/pull/6535#issuecomment-994822171


   > We need a JIRA ticket about this, and the commit messages should link to 
the JIRA ticket, eg 
[CAMEL-12345](https://issues.apache.org/jira/browse/CAMEL-12345): bla bla
   
   I don't think I have access to the Jira, can you please create one for 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] branch regen_bot updated (069cb7e -> 0bd749e)

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

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


omit 069cb7e  Regen for commit aec21bf991eff2fd6e78bc2bf587dc1d36957f0c
 add 0bd749e  Regen for commit ca1b9fe47a297fa1524687c1597da8fb23954d2e

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   (069cb7e)
\
 N -- N -- N   refs/heads/regen_bot (0bd749e)

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

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

No new revisions were added by this update.

Summary of changes:


[GitHub] [camel-quarkus] ppalaga opened a new issue #3390: camel-quarkus-integration-test-js-dsl is failing on Quarkus 2.2.4

2021-12-15 Thread GitBox


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


   Originally reported here 
https://github.com/quarkusio/quarkus-platform/pull/405#issuecomment-994803271


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

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

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




[GitHub] [camel-quarkus] ppalaga commented on issue #3389: Geocoder started returning "New York City" instead of "New York"

2021-12-15 Thread GitBox


ppalaga commented on issue #3389:
URL: https://github.com/apache/camel-quarkus/issues/3389#issuecomment-99488


   I guess it would be safer to change the test to some location where there no 
city/state ambiguity. 


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

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

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




[GitHub] [camel-quarkus] ppalaga commented on issue #3389: Geocoder started returning "New York City" instead of "New York"

2021-12-15 Thread GitBox


ppalaga commented on issue #3389:
URL: https://github.com/apache/camel-quarkus/issues/3389#issuecomment-994864602


   Could please anybody with a Google Cloud account have a look? @zbendhiba 
maybe?


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

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

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




[GitHub] [camel-quarkus] ppalaga opened a new issue #3389: Geocoder started returning "New Yurk City" instead of "New York"

2021-12-15 Thread GitBox


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


   ... and therefore our Geocoder test is failing


-- 
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 created (now 0bd749e)

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

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


  at 0bd749e  Regen for commit ca1b9fe47a297fa1524687c1597da8fb23954d2e

No new revisions were added by this update.


[camel] branch regen_bot updated (afccf1c -> 069cb7e)

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

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


omit afccf1c  Regen for commit ca1b9fe47a297fa1524687c1597da8fb23954d2e
 add aec21bf  Update doc
 add 069cb7e  Regen for commit aec21bf991eff2fd6e78bc2bf587dc1d36957f0c

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   (afccf1c)
\
 N -- N -- N   refs/heads/regen_bot (069cb7e)

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:
 docs/user-manual/modules/ROOT/pages/backlog-debugger.adoc | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)


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

2021-12-15 Thread GitBox


oscerd merged pull request #6543:
URL: https://github.com/apache/camel/pull/6543


   


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

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

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




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

2021-12-15 Thread GitBox


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


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


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

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

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




[GitHub] [camel] paulfc opened a new pull request #6542: [CAMEL-17337] - Resolve regression in FhirComponent

2021-12-15 Thread GitBox


paulfc opened a new pull request #6542:
URL: https://github.com/apache/camel/pull/6542


   PR to resolve a regression in the FhirComponent relating to the component 
not using the supplied FhirConfiguration at class instantiation for comparison 
when creating a IGenericClient instance via FhirComponent 
.getClient(FhirConfiguration endpointConfiguration)
   
   https://issues.apache.org/jira/browse/CAMEL-17337
   


-- 
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 pull request #2833: fix(e2e): Avoid nested Gomega fields matcher

2021-12-15 Thread GitBox


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


   > That's an additional issue, that's hopefully fixed with #2836.
   
   Those requeued may be the reason, altough I never managed to capture a trace 
of them during my experiments. Let's see how it goes. :crossed_fingers: 


-- 
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 #723: chore: additional check that website is up

2021-12-15 Thread GitBox


github-actions[bot] commented on pull request #723:
URL: https://github.com/apache/camel-website/pull/723#issuecomment-994839559


    Preview is available at https://pr-723--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-kamelets] branch regen_bot updated (e519fe3 -> 1af8872)

2021-12-15 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 e519fe3  Bump Maven wrapper version to 3.8.4
 add 1af8872  Update YAKS to v0.7.0

No new revisions were added by this update.

Summary of changes:
 .github/workflows/test.yaml   | 4 ++--
 test/earthquake-source/yaks-config.yaml   | 2 ++
 test/insert-field-action/yaks-config.yaml | 2 ++
 test/mail-sink/yaks-config.yaml   | 2 ++
 4 files changed, 8 insertions(+), 2 deletions(-)


[camel-kamelets] branch main updated (e519fe3 -> 1af8872)

2021-12-15 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-kamelets.git.


from e519fe3  Bump Maven wrapper version to 3.8.4
 add 1af8872  Update YAKS to v0.7.0

No new revisions were added by this update.

Summary of changes:
 .github/workflows/test.yaml   | 4 ++--
 test/earthquake-source/yaks-config.yaml   | 2 ++
 test/insert-field-action/yaks-config.yaml | 2 ++
 test/mail-sink/yaks-config.yaml   | 2 ++
 4 files changed, 8 insertions(+), 2 deletions(-)


[GitHub] [camel-kamelets] oscerd merged pull request #631: Update YAKS to v0.7.0

2021-12-15 Thread GitBox


oscerd merged pull request #631:
URL: https://github.com/apache/camel-kamelets/pull/631


   


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

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

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




[camel] branch main updated: Regen for commit ca1b9fe47a297fa1524687c1597da8fb23954d2e

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

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


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

commit 0bd749e6cb25ebd44a928bffcbd67ff8d7022b67
Author: davsclaus 
AuthorDate: Wed Dec 15 14:08:33 2021 +

Regen for commit ca1b9fe47a297fa1524687c1597da8fb23954d2e

Signed-off-by: GitHub 
---
 .../org/apache/camel/catalog/main/camel-main-configuration-metadata.json | 1 +
 1 file changed, 1 insertion(+)

diff --git 
a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/main/camel-main-configuration-metadata.json
 
b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/main/camel-main-configuration-metadata.json
index 53bbc79..6cdd85c 100644
--- 
a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/main/camel-main-configuration-metadata.json
+++ 
b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/main/camel-main-configuration-metadata.json
@@ -26,6 +26,7 @@
 { "name": "camel.main.configurationClasses", "description": "Sets classes 
names that will be used to configure the camel context as example by providing 
custom beans through org.apache.camel.BindToRegistry annotation.", 
"sourceType": "org.apache.camel.main.MainConfigurationProperties", "type": 
"string", "javaType": "java.lang.String" },
 { "name": "camel.main.configurations", "description": "Sets the 
configuration objects used to configure the camel context.", "sourceType": 
"org.apache.camel.main.MainConfigurationProperties", "type": "object", 
"javaType": "java.util.List" },
 { "name": "camel.main.consumerTemplateCacheSize", "description": "Consumer 
template endpoints cache size.", "sourceType": 
"org.apache.camel.main.DefaultConfigurationProperties", "type": "integer", 
"javaType": "int", "defaultValue": 1000 },
+{ "name": "camel.main.debugging", "description": "Sets whether debugging 
is enabled or not. Default is false.", "sourceType": 
"org.apache.camel.main.DefaultConfigurationProperties", "type": "boolean", 
"javaType": "boolean", "defaultValue": "false" },
 { "name": "camel.main.dumpRoutes", "description": "If dumping is enabled 
then Camel will during startup dump all loaded routes (incl rests and route 
templates) represented as XML DSL into the log. This is intended for trouble 
shooting or to assist during development. Sensitive information that may be 
configured in the route endpoints could potentially be included in the dump 
output and is therefore not recommended to be used for production usage. This 
requires to have camel-xml-jaxb  [...]
 { "name": "camel.main.durationHitExitCode", "description": "Sets the exit 
code for the application if duration was hit", "sourceType": 
"org.apache.camel.main.MainConfigurationProperties", "type": "integer", 
"javaType": "int" },
 { "name": "camel.main.durationMaxAction", "description": "Controls whether 
the Camel application should shutdown the JVM, or stop all routes, when 
duration max is triggered.", "sourceType": 
"org.apache.camel.main.DefaultConfigurationProperties", "type": "string", 
"javaType": "java.lang.String", "defaultValue": "shutdown", "enum": [ 
"shutdown", "stop" ] },


  1   2   3   >