[camel] branch main updated: Regen for commit 92d824d0ea0888b10e06604d90568f3a55f79958

2021-06-10 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 e70d227  Regen for commit 92d824d0ea0888b10e06604d90568f3a55f79958
e70d227 is described below

commit e70d22740b401c57fa56f8751710c7f3bd232b01
Author: davsclaus 
AuthorDate: Fri Jun 11 06:30:18 2021 +

Regen for commit 92d824d0ea0888b10e06604d90568f3a55f79958

Signed-off-by: GitHub 
---
 .../org/apache/camel/catalog/components/pubnub.json  | 12 +++-
 .../src/main/java/org/apache/camel/util/SensitiveUtils.java  |  4 
 2 files changed, 15 insertions(+), 1 deletion(-)

diff --git 
a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components/pubnub.json
 
b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components/pubnub.json
index 5c8cacd..fa81c7b 100644
--- 
a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components/pubnub.json
+++ 
b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components/pubnub.json
@@ -22,9 +22,19 @@
 "lenientProperties": false
   },
   "componentProperties": {
+"configuration": { "kind": "property", "displayName": "Configuration", 
"group": "common", "label": "", "required": false, "type": "object", 
"javaType": "org.apache.camel.component.pubnub.PubNubConfiguration", 
"deprecated": false, "autowired": false, "secret": false, "description": "The 
component configurations" },
+"uuid": { "kind": "property", "displayName": "Uuid", "group": "common", 
"label": "", "required": false, "type": "string", "javaType": 
"java.lang.String", "deprecated": false, "autowired": false, "secret": false, 
"configurationClass": "org.apache.camel.component.pubnub.PubNubConfiguration", 
"configurationField": "configuration", "description": "UUID to be used as a 
device identifier, a default UUID is generated if not passed." },
 "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 [...]
+"withPresence": { "kind": "property", "displayName": "With Presence", 
"group": "consumer", "label": "consumer", "required": false, "type": "boolean", 
"javaType": "boolean", "deprecated": false, "autowired": false, "secret": 
false, "defaultValue": false, "configurationClass": 
"org.apache.camel.component.pubnub.PubNubConfiguration", "configurationField": 
"configuration", "description": "Also subscribe to related presence 
information" },
 "lazyStartProducer": { "kind": "property", "displayName": "Lazy Start 
Producer", "group": "producer", "label": "producer", "required": false, "type": 
"boolean", "javaType": "boolean", "deprecated": false, "autowired": false, 
"secret": false, "defaultValue": false, "description": "Whether the producer 
should be started lazy (on the first message). By starting lazy you can use 
this to allow CamelContext and routes to startup in situations where a producer 
may otherwise fail during star [...]
-"autowiredEnabled": { "kind": "property", "displayName": "Autowired 
Enabled", "group": "advanced", "label": "advanced", "required": false, "type": 
"boolean", "javaType": "boolean", "deprecated": false, "autowired": false, 
"secret": false, "defaultValue": true, "description": "Whether autowiring is 
enabled. This is used for automatic autowiring options (the option must be 
marked as autowired) by looking up in the registry to find if there is a single 
instance of matching type, which t [...]
+"operation": { "kind": "property", "displayName": "Operation", "group": 
"producer", "label": "producer", "required": false, "type": "string", 
"javaType": "java.lang.String", "enum": [ "HERENOW", "WHERENOW", "GETSTATE", 
"SETSTATE", "GETHISTORY", "PUBLISH", "FIRE" ], "deprecated": false, 
"autowired": false, "secret": false, "configurationClass": 
"org.apache.camel.component.pubnub.PubNubConfiguration", "configurationField": 
"configuration", "description": "The operation to perform. PUBL [...]
+"autowiredEnabled": { "kind": "property", "displayName": "Autowired 
Enabled", "group": "advanced", "label": "advanced", "required": false, "type": 
"boolean", "javaType": "boolean", "deprecated": false, "autowired": false, 
"secret": false, "defaultValue": true, "description": "Whether autowiring is 
enabled. This is used for automatic autowiring options (the option must be 
marked as autowired) by looking up in the registry to find if there is a single 
instance of 

[camel] branch regen_bot updated (f54df46 -> 5595e93)

2021-06-10 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 f54df46  CAMEL-16706: dump-routes can create XmlConverter directly to 
avoid any reflection
 add 92d824d  CAMEL-16708: camel-pubnub - Allow to configure security on 
component level
 add 5595e93  Regen for commit 92d824d0ea0888b10e06604d90568f3a55f79958

No new revisions were added by this update.

Summary of changes:
 .../apache/camel/catalog/components/pubnub.json|  12 +-
 .../camel/catalog/docs/pubnub-component.adoc   |  12 +-
 .../pubnub/PubNubComponentConfigurer.java  |  55 +++
 .../org/apache/camel/component/pubnub/pubnub.json  |  12 +-
 .../src/main/docs/pubnub-component.adoc|  12 +-
 .../camel/component/pubnub/PubNubComponent.java|  22 ++-
 .../component/pubnub/PubNubConfiguration.java  |  24 +--
 .../component/pubnub/PubNubConfigurationTest.java  |   6 +-
 .../dsl/PubnubComponentBuilderFactory.java | 178 +
 .../java/org/apache/camel/util/SensitiveUtils.java |   4 +
 .../modules/ROOT/pages/pubnub-component.adoc   |  12 +-
 11 files changed, 325 insertions(+), 24 deletions(-)


[camel] branch regen_bot updated (8cf2b5d -> f54df46)

2021-06-10 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 8cf2b5d  Regen and sync deps
 add f54df46  CAMEL-16706: dump-routes can create XmlConverter directly to 
avoid any reflection

No new revisions were added by this update.

Summary of changes:
 .../src/main/java/org/apache/camel/xml/jaxb/JaxbHelper.java| 10 +-
 1 file changed, 1 insertion(+), 9 deletions(-)


[camel] branch regen_bot updated (866f726 -> 8cf2b5d)

2021-06-10 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 866f726  Regen
 add a50357c  Upgrade AWS SDK v2 to version 2.16.82
 add 8cf2b5d  Regen and sync deps

No new revisions were added by this update.

Summary of changes:
 camel-dependencies/pom.xml | 2 +-
 parent/pom.xml | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)


[camel] branch main updated: CAMEL-16708: camel-pubnub - Allow to configure security on component level

2021-06-10 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 92d824d  CAMEL-16708: camel-pubnub - Allow to configure security on 
component level
92d824d is described below

commit 92d824d0ea0888b10e06604d90568f3a55f79958
Author: Claus Ibsen 
AuthorDate: Fri Jun 11 07:53:13 2021 +0200

CAMEL-16708: camel-pubnub - Allow to configure security on component level
---
 .../camel/catalog/docs/pubnub-component.adoc   |  12 +-
 .../pubnub/PubNubComponentConfigurer.java  |  55 +++
 .../org/apache/camel/component/pubnub/pubnub.json  |  12 +-
 .../src/main/docs/pubnub-component.adoc|  12 +-
 .../camel/component/pubnub/PubNubComponent.java|  22 ++-
 .../component/pubnub/PubNubConfiguration.java  |  24 +--
 .../component/pubnub/PubNubConfigurationTest.java  |   6 +-
 .../dsl/PubnubComponentBuilderFactory.java | 178 +
 .../modules/ROOT/pages/pubnub-component.adoc   |  12 +-
 9 files changed, 310 insertions(+), 23 deletions(-)

diff --git 
a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/docs/pubnub-component.adoc
 
b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/docs/pubnub-component.adoc
index 508c5b9..934c6ce 100644
--- 
a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/docs/pubnub-component.adoc
+++ 
b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/docs/pubnub-component.adoc
@@ -52,16 +52,26 @@ Where *channel* is the PubNub channel to publish or 
subscribe to.
 
 
 // component options: START
-The PubNub component supports 3 options, which are listed below.
+The PubNub component supports 13 options, which are listed below.
 
 
 
 [width="100%",cols="2,5,^1,2",options="header"]
 |===
 | Name | Description | Default | Type
+| *configuration* (common) | The component configurations |  | 
PubNubConfiguration
+| *uuid* (common) | UUID to be used as a device identifier, a default UUID is 
generated if not passed. |  | String
 | *bridgeErrorHandler* (consumer) | 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 message and handled by the routing Error Handler. By default the 
consumer will use the org.apache.camel.spi.ExceptionHandler to deal with 
exceptions, that will be logged at WARN or ERROR level and ignored. | false | 
boolean
+| *withPresence* (consumer) | Also subscribe to related presence information | 
false | boolean
 | *lazyStartProducer* (producer) | 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 
starting and cause the route to fail being started. By deferring this startup 
to be lazy then the startup failure can be handled during routing messages via 
Camel's routing error handlers. Beware that when the first message is processed 
then creating and [...]
+| *operation* (producer) | The operation to perform. PUBLISH: Default. Send a 
message to all subscribers of a channel. FIRE: allows the client to send a 
message to BLOCKS Event Handlers. These messages will go directly to any Event 
Handlers registered on the channel. HERENOW: Obtain information about the 
current state of a channel including a list of unique user-ids currently 
subscribed to the channel and the total occupancy count. WHERENOW: Obtain 
information about the current list of c [...]
 | *autowiredEnabled* (advanced) | Whether autowiring is enabled. This is used 
for automatic autowiring options (the option must be marked as autowired) by 
looking up in the registry to find if there is a single instance of matching 
type, which then gets configured on the component. This can be used for 
automatic configuring JDBC data sources, JMS connection factories, AWS Clients, 
etc. | true | boolean
+| *authKey* (security) | If Access Manager is utilized, client will use this 
authKey in all restricted requests. |  | String
+| *cipherKey* (security) | If cipher is passed, all communications to/from 
PubNub will be encrypted. |  | String
+| *publishKey* (security) | The publish key obtained from your PubNub account. 
Required when publishing messages. |  | String
+| *secretKey* (security) | The secret key used for message signing. |  | String
+| *secure* (security) | Use SSL for secure transmission. | true | boolean
+| *subscribeKey* (security) | The subscribe key obtained from your PubNub 
account. Required when subscribing to channels or listening for presence events 
|  | String
 |===
 // component options: END
 
diff --git 
a/components/camel-pubnub/src/generated/java/org/apache/camel/componen

[camel] branch main updated: CAMEL-16706: dump-routes can create XmlConverter directly to avoid any reflection

2021-06-10 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 f54df46  CAMEL-16706: dump-routes can create XmlConverter directly to 
avoid any reflection
f54df46 is described below

commit f54df462f41c5f99abcaac7e10524da77ec8f854
Author: Claus Ibsen 
AuthorDate: Fri Jun 11 07:40:06 2021 +0200

CAMEL-16706: dump-routes can create XmlConverter directly to avoid any 
reflection
---
 .../src/main/java/org/apache/camel/xml/jaxb/JaxbHelper.java| 10 +-
 1 file changed, 1 insertion(+), 9 deletions(-)

diff --git 
a/core/camel-xml-jaxb/src/main/java/org/apache/camel/xml/jaxb/JaxbHelper.java 
b/core/camel-xml-jaxb/src/main/java/org/apache/camel/xml/jaxb/JaxbHelper.java
index f1347bc..f8b4789 100644
--- 
a/core/camel-xml-jaxb/src/main/java/org/apache/camel/xml/jaxb/JaxbHelper.java
+++ 
b/core/camel-xml-jaxb/src/main/java/org/apache/camel/xml/jaxb/JaxbHelper.java
@@ -48,7 +48,6 @@ import org.apache.camel.model.language.ExpressionDefinition;
 import org.apache.camel.model.rest.RestDefinition;
 import org.apache.camel.model.rest.RestsDefinition;
 import org.apache.camel.spi.NamespaceAware;
-import org.apache.camel.spi.TypeConverterRegistry;
 
 import static 
org.apache.camel.model.ProcessorDefinitionHelper.filterTypeInOutputs;
 
@@ -102,14 +101,7 @@ public final class JaxbHelper {
  * @return a new XmlConverter instance
  */
 public static XmlConverter newXmlConverter(CamelContext context) {
-XmlConverter xmlConverter;
-if (context != null) {
-TypeConverterRegistry registry = 
context.getTypeConverterRegistry();
-xmlConverter = 
registry.getInjector().newInstance(XmlConverter.class, false);
-} else {
-xmlConverter = new XmlConverter();
-}
-return xmlConverter;
+return new XmlConverter();
 }
 
 /**


[camel] branch regen_bot updated (bb2727c -> 866f726)

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

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


 discard bb2727c  Regen for commit 6ad3c0efb4f36a7fb0bdecb655b95e0bc02de7a2
 add 866f726  Regen

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (bb2727c)
\
 N -- N -- N   refs/heads/regen_bot (866f726)

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

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

No new revisions were added by this update.

Summary of changes:


[camel] 02/02: Regen and sync deps

2021-06-10 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

commit 8cf2b5d3cc51cd1cacfa39ba005c5a0d99d419bf
Author: Andrea Cosentino 
AuthorDate: Fri Jun 11 07:32:41 2021 +0200

Regen and sync deps
---
 camel-dependencies/pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/camel-dependencies/pom.xml b/camel-dependencies/pom.xml
index 5da3f34..09c0418 100644
--- a/camel-dependencies/pom.xml
+++ b/camel-dependencies/pom.xml
@@ -66,7 +66,7 @@
 1.10.2
 1.10.2
 4.1.0
-2.16.81
+2.16.82
 2.6.1
 1.2.14
 2.11.3


[camel] branch main updated (866f726 -> 8cf2b5d)

2021-06-10 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.


from 866f726  Regen
 new a50357c  Upgrade AWS SDK v2 to version 2.16.82
 new 8cf2b5d  Regen and sync deps

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-dependencies/pom.xml | 2 +-
 parent/pom.xml | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)


[camel] 01/02: Upgrade AWS SDK v2 to version 2.16.82

2021-06-10 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

commit a50357c7f157d7c35396318701313267b9238192
Author: Andrea Cosentino 
AuthorDate: Fri Jun 11 06:46:02 2021 +0200

Upgrade AWS SDK v2 to version 2.16.82
---
 parent/pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/parent/pom.xml b/parent/pom.xml
index 3ae469c..e4ba98c 100644
--- a/parent/pom.xml
+++ b/parent/pom.xml
@@ -80,7 +80,7 @@
 1.10.2
 1.10.2
 4.1.0
-2.16.81
+2.16.82
 2.6.1
 1.2.14
 1.0.3


[camel] branch regen_bot updated (f989828 -> bb2727c)

2021-06-10 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 f989828  CAMEL-16674 : More functional test cases (#5652)
 add 6ad3c0e  Camel 16134 Single DLR per long sms (#5651)
 add bb2727c  Regen for commit 6ad3c0efb4f36a7fb0bdecb655b95e0bc02de7a2

No new revisions were added by this update.

Summary of changes:
 .../org/apache/camel/catalog/components/smpp.json  |   2 +
 .../org/apache/camel/catalog/components/smpps.json |   2 +
 .../apache/camel/catalog/docs/smpp-component.adoc  |  10 +-
 .../component/smpp/SmppComponentConfigurer.java|   6 ++
 .../component/smpp/SmppEndpointConfigurer.java |   6 ++
 .../component/smpp/SmppEndpointUriFactory.java |   3 +-
 .../org/apache/camel/component/smpp/smpp.json  |   2 +
 .../org/apache/camel/component/smpp/smpps.json |   2 +
 .../camel-smpp/src/main/docs/smpp-component.adoc   |  10 +-
 .../camel/component/smpp/SmppConfiguration.java|  15 +++
 .../apache/camel/component/smpp/SmppConstants.java |   1 +
 .../apache/camel/component/smpp/SmppSmCommand.java |  14 +++
 .../component/smpp/SmppSubmitMultiCommand.java |  45 +
 .../camel/component/smpp/SmppSubmitSmCommand.java  |  36 ---
 .../component/smpp/SmppConfigurationTest.java  |   5 +
 .../component/smpp/SmppSubmitMultiCommandTest.java |  43 -
 .../component/smpp/SmppSubmitSmCommandTest.java|  36 ++-
 .../component/dsl/SmppComponentBuilderFactory.java |  18 
 .../dsl/SmppsComponentBuilderFactory.java  |  18 
 .../endpoint/dsl/SmppEndpointBuilderFactory.java   | 105 +
 .../modules/ROOT/pages/smpp-component.adoc |  10 +-
 21 files changed, 349 insertions(+), 40 deletions(-)


[camel] branch regen_bot updated (93556a8 -> f989828)

2021-06-10 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 93556a8  camel-as2 - Respect the user's intention to send content-type 
header without appended charset: (#5650)
 add f989828  CAMEL-16674 : More functional test cases (#5652)

No new revisions were added by this update.

Summary of changes:
 ...est.java => InvokeFunctionCombinedFunctionalTest.java} | 14 +-
 ...est.java => InvokeFunctionExchangeFunctionalTest.java} | 15 ---
 ...ctionalTest.java => InvokeFunctionFunctionalTest.java} |  8 
 ...t.java => InvokeFunctionServiceKeyFunctionalTest.java} | 15 +--
 4 files changed, 30 insertions(+), 22 deletions(-)
 copy 
components/camel-huawei/camel-huaweicloud-functiongraph/src/test/java/org/apache/camel/{InvokeFunctionEndpointFunctionalTest.java
 => InvokeFunctionCombinedFunctionalTest.java} (85%)
 copy 
components/camel-huawei/camel-huaweicloud-functiongraph/src/test/java/org/apache/camel/{InvokeFunctionEndpointFunctionalTest.java
 => InvokeFunctionExchangeFunctionalTest.java} (85%)
 copy 
components/camel-huawei/camel-huaweicloud-functiongraph/src/test/java/org/apache/camel/{InvokeFunctionEndpointFunctionalTest.java
 => InvokeFunctionFunctionalTest.java} (93%)
 copy 
components/camel-huawei/camel-huaweicloud-functiongraph/src/test/java/org/apache/camel/{InvokeFunctionEndpointFunctionalTest.java
 => InvokeFunctionServiceKeyFunctionalTest.java} (88%)


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

2021-06-10 Thread davsclaus
This is an automated email from the ASF dual-hosted git repository.

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


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

commit 82bd8c8eb0c006af00311ba0140915265f13c716
Author: Claus Ibsen 
AuthorDate: Fri Jun 11 07:01:38 2021 +0200

Regen
---
 .../apache/camel/springboot/catalog/components/smpp.json   |  2 ++
 .../apache/camel/springboot/catalog/components/smpps.json  |  2 ++
 .../camel-smpp-starter/src/main/docs/smpp-starter.adoc |  3 ++-
 .../smpp/springboot/SmppComponentConfiguration.java| 14 ++
 docs/modules/ROOT/pages/smpp-starter.adoc  |  3 ++-
 docs/modules/ROOT/pages/spring-boot.adoc   |  2 +-
 6 files changed, 23 insertions(+), 3 deletions(-)

diff --git 
a/catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/components/smpp.json
 
b/catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/components/smpp.json
index f2e4b69..04187cb 100644
--- 
a/catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/components/smpp.json
+++ 
b/catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/components/smpp.json
@@ -51,6 +51,7 @@
 "pduProcessorDegree": { "kind": "property", "displayName": "Pdu Processor 
Degree", "group": "advanced", "label": "advanced", "required": false, "type": 
"integer", "javaType": "java.lang.Integer", "deprecated": false, "autowired": 
false, "secret": false, "defaultValue": "3", "configurationClass": 
"org.apache.camel.component.smpp.SmppConfiguration", "configurationField": 
"configuration", "description": "Sets the number of threads which can read PDU 
and process them in parallel." },
 "pduProcessorQueueCapacity": { "kind": "property", "displayName": "Pdu 
Processor Queue Capacity", "group": "advanced", "label": "advanced", 
"required": false, "type": "integer", "javaType": "java.lang.Integer", 
"deprecated": false, "autowired": false, "secret": false, "defaultValue": 
"100", "configurationClass": 
"org.apache.camel.component.smpp.SmppConfiguration", "configurationField": 
"configuration", "description": "Sets the capacity of the working queue for PDU 
processing." },
 "sessionStateListener": { "kind": "property", "displayName": "Session 
State Listener", "group": "advanced", "label": "advanced", "required": false, 
"type": "object", "javaType": "org.jsmpp.session.SessionStateListener", 
"deprecated": false, "autowired": false, "secret": false, "configurationClass": 
"org.apache.camel.component.smpp.SmppConfiguration", "configurationField": 
"configuration", "description": "You can refer to a 
org.jsmpp.session.SessionStateListener in the Registry to rec [...]
+"singleDLR": { "kind": "property", "displayName": "Single DLR", "group": 
"advanced", "label": "advanced", "required": false, "type": "boolean", 
"javaType": "boolean", "deprecated": false, "autowired": false, "secret": 
false, "defaultValue": false, "configurationClass": 
"org.apache.camel.component.smpp.SmppConfiguration", "configurationField": 
"configuration", "description": "When true, the SMSC delivery receipt would be 
requested only for the last segment of a multi-segment (long) me [...]
 "transactionTimer": { "kind": "property", "displayName": "Transaction 
Timer", "group": "advanced", "label": "advanced", "required": false, "type": 
"integer", "javaType": "java.lang.Integer", "deprecated": false, "autowired": 
false, "secret": false, "defaultValue": "1", "configurationClass": 
"org.apache.camel.component.smpp.SmppConfiguration", "configurationField": 
"configuration", "description": "Defines the maximum period of inactivity 
allowed after a transaction, after which an [...]
 "alphabet": { "kind": "property", "displayName": "Alphabet", "group": 
"codec", "label": "codec", "required": false, "type": "integer", "javaType": 
"byte", "enum": [ "0", "4", "8" ], "deprecated": false, "autowired": false, 
"secret": false, "configurationClass": 
"org.apache.camel.component.smpp.SmppConfiguration", "configurationField": 
"configuration", "description": "Defines encoding of data according the SMPP 
3.4 specification, section 5.2.19. 0: SMSC Default Alphabet 4: 8 bit Alpha [...]
 "dataCoding": { "kind": "property", "displayName": "Data Coding", "group": 
"codec", "label": "codec", "required": false, "type": "integer", "javaType": 
"byte", "deprecated": false, "autowired": false, "secret": false, 
"configurationClass": "org.apache.camel.component.smpp.SmppConfiguration", 
"configurationField": "configuration", "description": "Defines the data coding 
according the SMPP 3.4 specification, section 5.2.19. Example data encodings 
are: 0: SMSC Default Alphabet 3: Latin  [...]
@@ -95,6 +96,7 @@
 

[camel] branch main updated: Regen

2021-06-10 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 866f726  Regen
866f726 is described below

commit 866f726c208451ba227c6e9bd51a3275c4df5d15
Author: Claus Ibsen 
AuthorDate: Fri Jun 11 06:59:15 2021 +0200

Regen
---
 .../org/apache/camel/catalog/components/smpp.json  |  2 +
 .../org/apache/camel/catalog/components/smpps.json |  2 +
 .../builder/endpoint/EndpointBuilderFactory.java   | 54 +++---
 .../camel/builder/endpoint/EndpointBuilders.java   | 54 +++---
 .../modules/ROOT/pages/smpp-component.adoc |  2 +-
 5 files changed, 59 insertions(+), 55 deletions(-)

diff --git 
a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components/smpp.json
 
b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components/smpp.json
index 0999008..e8906d4 100644
--- 
a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components/smpp.json
+++ 
b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components/smpp.json
@@ -51,6 +51,7 @@
 "pduProcessorDegree": { "kind": "property", "displayName": "Pdu Processor 
Degree", "group": "advanced", "label": "advanced", "required": false, "type": 
"integer", "javaType": "java.lang.Integer", "deprecated": false, "autowired": 
false, "secret": false, "defaultValue": "3", "configurationClass": 
"org.apache.camel.component.smpp.SmppConfiguration", "configurationField": 
"configuration", "description": "Sets the number of threads which can read PDU 
and process them in parallel." },
 "pduProcessorQueueCapacity": { "kind": "property", "displayName": "Pdu 
Processor Queue Capacity", "group": "advanced", "label": "advanced", 
"required": false, "type": "integer", "javaType": "java.lang.Integer", 
"deprecated": false, "autowired": false, "secret": false, "defaultValue": 
"100", "configurationClass": 
"org.apache.camel.component.smpp.SmppConfiguration", "configurationField": 
"configuration", "description": "Sets the capacity of the working queue for PDU 
processing." },
 "sessionStateListener": { "kind": "property", "displayName": "Session 
State Listener", "group": "advanced", "label": "advanced", "required": false, 
"type": "object", "javaType": "org.jsmpp.session.SessionStateListener", 
"deprecated": false, "autowired": false, "secret": false, "configurationClass": 
"org.apache.camel.component.smpp.SmppConfiguration", "configurationField": 
"configuration", "description": "You can refer to a 
org.jsmpp.session.SessionStateListener in the Registry to rec [...]
+"singleDLR": { "kind": "property", "displayName": "Single DLR", "group": 
"advanced", "label": "advanced", "required": false, "type": "boolean", 
"javaType": "boolean", "deprecated": false, "autowired": false, "secret": 
false, "defaultValue": false, "configurationClass": 
"org.apache.camel.component.smpp.SmppConfiguration", "configurationField": 
"configuration", "description": "When true, the SMSC delivery receipt would be 
requested only for the last segment of a multi-segment (long) me [...]
 "transactionTimer": { "kind": "property", "displayName": "Transaction 
Timer", "group": "advanced", "label": "advanced", "required": false, "type": 
"integer", "javaType": "java.lang.Integer", "deprecated": false, "autowired": 
false, "secret": false, "defaultValue": "1", "configurationClass": 
"org.apache.camel.component.smpp.SmppConfiguration", "configurationField": 
"configuration", "description": "Defines the maximum period of inactivity 
allowed after a transaction, after which an [...]
 "alphabet": { "kind": "property", "displayName": "Alphabet", "group": 
"codec", "label": "codec", "required": false, "type": "integer", "javaType": 
"byte", "enum": [ "0", "4", "8" ], "deprecated": false, "autowired": false, 
"secret": false, "configurationClass": 
"org.apache.camel.component.smpp.SmppConfiguration", "configurationField": 
"configuration", "description": "Defines encoding of data according the SMPP 
3.4 specification, section 5.2.19. 0: SMSC Default Alphabet 4: 8 bit Alpha [...]
 "dataCoding": { "kind": "property", "displayName": "Data Coding", "group": 
"codec", "label": "codec", "required": false, "type": "integer", "javaType": 
"byte", "deprecated": false, "autowired": false, "secret": false, 
"configurationClass": "org.apache.camel.component.smpp.SmppConfiguration", 
"configurationField": "configuration", "description": "Defines the data coding 
according the SMPP 3.4 specification, section 5.2.19. Example data encodings 
are: 0: SMSC Default Alphabet 3: Latin  [...]
@@ -95,6 +96,7 @@
 "pduProcessorDegree": { "kind": "parameter", "displayName": "Pdu Processor 
Degree", "group": "advanced", "label": "advanced", "required": false, "type": 
"integer", "javaType": "java.lang.Intege

[camel] branch main updated: Camel 16134 Single DLR per long sms (#5651)

2021-06-10 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 6ad3c0e  Camel 16134 Single DLR per long sms (#5651)
6ad3c0e is described below

commit 6ad3c0efb4f36a7fb0bdecb655b95e0bc02de7a2
Author: Kalouris Gerasimos 
AuthorDate: Fri Jun 11 07:29:46 2021 +0300

Camel 16134 Single DLR per long sms (#5651)

* CAMEL-16134: Small refactor

Use the same logic for ESMClass for submitSms and submitMulti commands

* CAMEL-16134: Single dlr request feature

Addition of a `singleDLR` configuration parameter and a camel-smpp
specific header `CamelSmppSingleDLR` of type boolean.

When true, multi-segment (long) messages would have their delivery
receipt flag set, only on their last segment, while the first ones
would be disabled. For short messages (1 segment) this parameter
has no effect.
---
 .../apache/camel/catalog/docs/smpp-component.adoc  |  10 +-
 .../component/smpp/SmppComponentConfigurer.java|   6 ++
 .../component/smpp/SmppEndpointConfigurer.java |   6 ++
 .../component/smpp/SmppEndpointUriFactory.java |   3 +-
 .../org/apache/camel/component/smpp/smpp.json  |   2 +
 .../org/apache/camel/component/smpp/smpps.json |   2 +
 .../camel-smpp/src/main/docs/smpp-component.adoc   |  10 +-
 .../camel/component/smpp/SmppConfiguration.java|  15 +++
 .../apache/camel/component/smpp/SmppConstants.java |   1 +
 .../apache/camel/component/smpp/SmppSmCommand.java |  14 +++
 .../component/smpp/SmppSubmitMultiCommand.java |  45 +
 .../camel/component/smpp/SmppSubmitSmCommand.java  |  36 ---
 .../component/smpp/SmppConfigurationTest.java  |   5 +
 .../component/smpp/SmppSubmitMultiCommandTest.java |  43 -
 .../component/smpp/SmppSubmitSmCommandTest.java|  36 ++-
 .../component/dsl/SmppComponentBuilderFactory.java |  18 
 .../dsl/SmppsComponentBuilderFactory.java  |  18 
 .../builder/endpoint/EndpointBuilderFactory.java   |  54 +--
 .../camel/builder/endpoint/EndpointBuilders.java   |  54 +--
 .../endpoint/dsl/SmppEndpointBuilderFactory.java   | 105 +
 .../modules/ROOT/pages/smpp-component.adoc |  12 ++-
 21 files changed, 400 insertions(+), 95 deletions(-)

diff --git 
a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/docs/smpp-component.adoc
 
b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/docs/smpp-component.adoc
index f9edbb9..3635ac6 100644
--- 
a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/docs/smpp-component.adoc
+++ 
b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/docs/smpp-component.adoc
@@ -166,7 +166,7 @@ You can append query options to the URI in the following 
format,
 
 
 // component options: START
-The SMPP component supports 40 options, which are listed below.
+The SMPP component supports 41 options, which are listed below.
 
 
 
@@ -201,6 +201,7 @@ The SMPP component supports 40 options, which are listed 
below.
 | *pduProcessorDegree* (advanced) | Sets the number of threads which can read 
PDU and process them in parallel. | 3 | Integer
 | *pduProcessorQueueCapacity* (advanced) | Sets the capacity of the working 
queue for PDU processing. | 100 | Integer
 | *sessionStateListener* (advanced) | You can refer to a 
org.jsmpp.session.SessionStateListener in the Registry to receive callbacks 
when the session state changed. |  | SessionStateListener
+| *singleDLR* (advanced) | When true, the SMSC delivery receipt would be 
requested only for the last segment of a multi-segment (long) message. For 
short messages, with only 1 segment the behaviour is unchanged. | false | 
boolean
 | *transactionTimer* (advanced) | Defines the maximum period of inactivity 
allowed after a transaction, after which an SMPP entity may assume that the 
session is no longer active. This timer may be active on either communicating 
SMPP entity (i.e. SMSC or ESME). | 1 | Integer
 | *alphabet* (codec) | Defines encoding of data according the SMPP 3.4 
specification, section 5.2.19. 0: SMSC Default Alphabet 4: 8 bit Alphabet 8: 
UCS2 Alphabet. There are 3 enums and the value can be one of: 0, 4, 8 |  | byte
 | *dataCoding* (codec) | Defines the data coding according the SMPP 3.4 
specification, section 5.2.19. Example data encodings are: 0: SMSC Default 
Alphabet 3: Latin 1 (ISO-8859-1) 4: Octet unspecified (8-bit binary) 8: UCS2 
(ISO/IEC-10646) 13: Extended Kanji JIS(X 0212-1990) |  | byte
@@ -241,7 +242,7 @@ with the following path and query parameters:
 |===
 
 
-=== Query Parameters (40 parameters):
+=== Query Parameters (41 parameters):
 
 
 [width="100%",cols="2,5,^1,2",options="header"]
@@ -275,6 +276,7 @@ with the following path and query parameters:
 | *pduProcessorDe

[camel] branch main updated (93556a8 -> f989828)

2021-06-10 Thread davsclaus
This is an automated email from the ASF dual-hosted git repository.

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


from 93556a8  camel-as2 - Respect the user's intention to send content-type 
header without appended charset: (#5650)
 add f989828  CAMEL-16674 : More functional test cases (#5652)

No new revisions were added by this update.

Summary of changes:
 ...est.java => InvokeFunctionCombinedFunctionalTest.java} | 14 +-
 ...est.java => InvokeFunctionExchangeFunctionalTest.java} | 15 ---
 ...ctionalTest.java => InvokeFunctionFunctionalTest.java} |  8 
 ...t.java => InvokeFunctionServiceKeyFunctionalTest.java} | 15 +--
 4 files changed, 30 insertions(+), 22 deletions(-)
 copy 
components/camel-huawei/camel-huaweicloud-functiongraph/src/test/java/org/apache/camel/{InvokeFunctionEndpointFunctionalTest.java
 => InvokeFunctionCombinedFunctionalTest.java} (85%)
 copy 
components/camel-huawei/camel-huaweicloud-functiongraph/src/test/java/org/apache/camel/{InvokeFunctionEndpointFunctionalTest.java
 => InvokeFunctionExchangeFunctionalTest.java} (85%)
 copy 
components/camel-huawei/camel-huaweicloud-functiongraph/src/test/java/org/apache/camel/{InvokeFunctionEndpointFunctionalTest.java
 => InvokeFunctionFunctionalTest.java} (93%)
 copy 
components/camel-huawei/camel-huaweicloud-functiongraph/src/test/java/org/apache/camel/{InvokeFunctionEndpointFunctionalTest.java
 => InvokeFunctionServiceKeyFunctionalTest.java} (88%)


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

2021-06-10 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 611ecd6  [create-pull-request] automated change
611ecd6 is described below

commit 611ecd65c43e1d781647813b394c5fee60fbd670
Author: github-actions[bot] 
<41898282+github-actions[bot]@users.noreply.github.com>
AuthorDate: Fri Jun 11 00:50:40 2021 +

[create-pull-request] automated change
---
 tooling/camel-spring-boot-dependencies/pom.xml | 62 +-
 1 file changed, 31 insertions(+), 31 deletions(-)

diff --git a/tooling/camel-spring-boot-dependencies/pom.xml 
b/tooling/camel-spring-boot-dependencies/pom.xml
index 8faec7a..e4767e7 100644
--- a/tooling/camel-spring-boot-dependencies/pom.xml
+++ b/tooling/camel-spring-boot-dependencies/pom.xml
@@ -4681,167 +4681,167 @@
   
 org.optaplanner
 optaplanner-benchmark
-8.6.0.Final
+8.7.0.Final
   
   
 org.optaplanner
 optaplanner-benchmark
-8.6.0.Final
+8.7.0.Final
 javadoc
   
   
 org.optaplanner
 optaplanner-core
-8.6.0.Final
+8.7.0.Final
   
   
 org.optaplanner
 optaplanner-core
-8.6.0.Final
+8.7.0.Final
 javadoc
   
   
 org.optaplanner
 optaplanner-distribution
-8.6.0.Final
+8.7.0.Final
 zip
   
   
 org.optaplanner
 optaplanner-docs
-8.6.0.Final
+8.7.0.Final
 zip
   
   
 org.optaplanner
 optaplanner-examples
-8.6.0.Final
+8.7.0.Final
   
   
 org.optaplanner
 optaplanner-persistence-common
-8.6.0.Final
+8.7.0.Final
   
   
 org.optaplanner
 optaplanner-persistence-common
-8.6.0.Final
+8.7.0.Final
 javadoc
   
   
 org.optaplanner
 optaplanner-persistence-jackson
-8.6.0.Final
+8.7.0.Final
   
   
 org.optaplanner
 optaplanner-persistence-jackson
-8.6.0.Final
+8.7.0.Final
 javadoc
   
   
 org.optaplanner
 optaplanner-persistence-jaxb
-8.6.0.Final
+8.7.0.Final
   
   
 org.optaplanner
 optaplanner-persistence-jaxb
-8.6.0.Final
+8.7.0.Final
 javadoc
   
   
 org.optaplanner
 optaplanner-persistence-jpa
-8.6.0.Final
+8.7.0.Final
   
   
 org.optaplanner
 optaplanner-persistence-jpa
-8.6.0.Final
+8.7.0.Final
 javadoc
   
   
 org.optaplanner
 optaplanner-persistence-jsonb
-8.6.0.Final
+8.7.0.Final
   
   
 org.optaplanner
 optaplanner-persistence-jsonb
-8.6.0.Final
+8.7.0.Final
 javadoc
   
   
 org.optaplanner
 optaplanner-persistence-xstream
-8.6.0.Final
+8.7.0.Final
   
   
 org.optaplanner
 optaplanner-persistence-xstream
-8.6.0.Final
+8.7.0.Final
 javadoc
   
   
 org.optaplanner
 optaplanner-quarkus
-8.6.0.Final
+8.7.0.Final
   
   
 org.optaplanner
 optaplanner-quarkus-deployment
-8.6.0.Final
+8.7.0.Final
   
   
 org.optaplanner
 optaplanner-quarkus-jackson
-8.6.0.Final
+8.7.0.Final
   
   
 org.optaplanner
 optaplanner-quarkus-jackson-deployment
-8.6.0.Final
+8.7.0.Final
   
   
 org.optaplanner
 optaplanner-quarkus-jackson-integration-test
-8.6.0.Final
+8.7.0.Final
   
   
 org.optaplanner
 optaplanner-quarkus-jsonb
-8.6.0.Final
+8.7.0.Final
   
   
 org.optaplanner
 optaplanner-quarkus-jsonb-deployment
-8.6.0.Final
+8.7.0.Final
   
   
 org.optaplanner
 optaplanner-quarkus-jsonb-integration-test
-8.6.0.Final
+8.7.0.Final
   
   
 org.optaplanner
 optaplanner-spring-boot-autoconfigure
-8.6.0.Final
+8.7.0.Final
   
   
 org.optaplanner
 optaplanner-spring-boot-starter
-8.6.0.Final
+8.7.0.Final
   
   
 org.optaplanner
 optaplanner-test
-8.6.0.Final
+8.7.0.Final
   
   
 org.optaplanner
 optaplanner-test
-8.6.0.Final
+8.7.0.Final
 javadoc
   
   


[camel-kafka-connector] branch main updated: [create-pull-request] automated change

2021-06-10 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-kafka-connector.git


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

commit abb297fa8ac5d031afbab25764d84765a8e9318f
Author: github-actions[bot] 
<41898282+github-actions[bot]@users.noreply.github.com>
AuthorDate: Fri Jun 11 03:42:44 2021 +

[create-pull-request] automated change
---
 .../connectors}/camel-hwcloud-functiongraph-sink.json  |  3 ++-
 .../src/generated/resources/connectors/camel-solr-sink.json|  6 +++---
 .../generated/resources/connectors/camel-solrCloud-sink.json   |  6 +++---
 .../src/generated/resources/connectors/camel-solrs-sink.json   |  6 +++---
 .../generated/resources/camel-hwcloud-functiongraph-sink.json  |  3 ++-
 .../docs/camel-hwcloud-functiongraph-kafka-sink-connector.adoc |  6 +-
 .../CamelHwcloudfunctiongraphSinkConnectorConfig.java  |  2 +-
 .../src/generated/resources/camel-solr-sink.json   |  6 +++---
 .../src/main/docs/camel-solr-kafka-sink-connector.adoc |  6 +++---
 .../kafkaconnector/solr/CamelSolrSinkConnectorConfig.java  |  6 +++---
 .../src/generated/resources/camel-solrCloud-sink.json  |  6 +++---
 .../src/main/docs/camel-solrCloud-kafka-sink-connector.adoc|  6 +++---
 .../solrcloud/CamelSolrcloudSinkConnectorConfig.java   |  6 +++---
 .../src/generated/resources/camel-solrs-sink.json  |  6 +++---
 .../src/main/docs/camel-solrs-kafka-sink-connector.adoc|  6 +++---
 .../kafkaconnector/solrs/CamelSolrsSinkConnectorConfig.java|  6 +++---
 .../camel-hwcloud-functiongraph-kafka-sink-connector.adoc  |  6 +-
 .../ROOT/pages/connectors/camel-solr-kafka-sink-connector.adoc | 10 +++---
 .../pages/connectors/camel-solrCloud-kafka-sink-connector.adoc | 10 +++---
 .../pages/connectors/camel-solrs-kafka-sink-connector.adoc | 10 +++---
 20 files changed, 52 insertions(+), 70 deletions(-)

diff --git 
a/connectors/camel-hwcloud-functiongraph-kafka-connector/src/generated/resources/camel-hwcloud-functiongraph-sink.json
 
b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-hwcloud-functiongraph-sink.json
similarity index 99%
copy from 
connectors/camel-hwcloud-functiongraph-kafka-connector/src/generated/resources/camel-hwcloud-functiongraph-sink.json
copy to 
camel-kafka-connector-catalog/src/generated/resources/connectors/camel-hwcloud-functiongraph-sink.json
index 7d87f88..897543a 100644
--- 
a/connectors/camel-hwcloud-functiongraph-kafka-connector/src/generated/resources/camel-hwcloud-functiongraph-sink.json
+++ 
b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-hwcloud-functiongraph-sink.json
@@ -30,6 +30,7 @@
"camel.sink.endpoint.functionPackage": {
"name": "camel.sink.endpoint.functionPackage",
"description": "Functions that can be logically grouped 
together",
+   "defaultValue": "\"default\"",
"priority": "MEDIUM",
"required": "false"
},
@@ -116,4 +117,4 @@
"required": "false"
}
}
-}
+}
\ No newline at end of file
diff --git 
a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-solr-sink.json
 
b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-solr-sink.json
index 52d80e1..eadccf7 100644
--- 
a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-solr-sink.json
+++ 
b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-solr-sink.json
@@ -36,7 +36,7 @@
},
"camel.sink.endpoint.httpClient": {
"name": "camel.sink.endpoint.httpClient",
-   "description": "Sets the http client to be used by the 
solrClient",
+   "description": "Sets the http client to be used by the 
solrClient. This is only applicable when solrClient is not set.",
"priority": "MEDIUM",
"required": "false"
},
@@ -67,7 +67,7 @@
},
"camel.sink.endpoint.solrClient": {
"name": "camel.sink.endpoint.solrClient",
-   "description": "Uses the provided solr client to 
connect to solr. When this parameter is not specified, camel applies the 
following rules to determine the SolrClient. A CloudSolrClient should point to 
a zookeeper endpoint. Other clients point to a Solr endpoint. 1) when zkHost or 
zkChroot (=zookeeper root) parameter is set, then the CloudSolrClient is used. 
2) when multiple hosts are specified in the uri (separated with a comma), then 
the CloudSolrClient (uri scheme i

[camel-kafka-connector] branch automatic-periodic-sync updated (6a08e08 -> 5976ea5)

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

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


omit 6a08e08  [create-pull-request] automated change
 add 9544dde  [create-pull-request] automated change
 add 5976ea5  [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   (6a08e08)
\
 N -- N -- N   refs/heads/automatic-periodic-sync (5976ea5)

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:
 .../connectors}/camel-hwcloud-functiongraph-sink.json  |  3 ++-
 .../src/generated/resources/connectors/camel-solr-sink.json|  6 +++---
 .../generated/resources/connectors/camel-solrCloud-sink.json   |  6 +++---
 .../src/generated/resources/connectors/camel-solrs-sink.json   |  6 +++---
 .../generated/resources/camel-hwcloud-functiongraph-sink.json  |  3 ++-
 .../docs/camel-hwcloud-functiongraph-kafka-sink-connector.adoc |  6 +-
 .../CamelHwcloudfunctiongraphSinkConnectorConfig.java  |  2 +-
 .../src/generated/resources/camel-solr-sink.json   |  6 +++---
 .../src/main/docs/camel-solr-kafka-sink-connector.adoc |  6 +++---
 .../kafkaconnector/solr/CamelSolrSinkConnectorConfig.java  |  6 +++---
 .../src/generated/resources/camel-solrCloud-sink.json  |  6 +++---
 .../src/main/docs/camel-solrCloud-kafka-sink-connector.adoc|  6 +++---
 .../solrcloud/CamelSolrcloudSinkConnectorConfig.java   |  6 +++---
 .../src/generated/resources/camel-solrs-sink.json  |  6 +++---
 .../src/main/docs/camel-solrs-kafka-sink-connector.adoc|  6 +++---
 .../kafkaconnector/solrs/CamelSolrsSinkConnectorConfig.java|  6 +++---
 .../camel-hwcloud-functiongraph-kafka-sink-connector.adoc  |  6 +-
 .../ROOT/pages/connectors/camel-solr-kafka-sink-connector.adoc | 10 +++---
 .../pages/connectors/camel-solrCloud-kafka-sink-connector.adoc | 10 +++---
 .../pages/connectors/camel-solrs-kafka-sink-connector.adoc | 10 +++---
 20 files changed, 52 insertions(+), 70 deletions(-)
 copy 
{connectors/camel-hwcloud-functiongraph-kafka-connector/src/generated/resources 
=> 
camel-kafka-connector-catalog/src/generated/resources/connectors}/camel-hwcloud-functiongraph-sink.json
 (99%)


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

2021-06-10 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 3e59201  Updated CHANGELOG.md
3e59201 is described below

commit 3e59201a961399fe89e271848014979ec03f8e93
Author: github-actions[bot] 
<41898282+github-actions[bot]@users.noreply.github.com>
AuthorDate: Fri Jun 11 03:42:20 2021 +

Updated CHANGELOG.md
---
 CHANGELOG.md | 120 +++
 1 file changed, 64 insertions(+), 56 deletions(-)

diff --git a/CHANGELOG.md b/CHANGELOG.md
index abf23be..8279a88 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -2,63 +2,12 @@
 
 ## [Unreleased](https://github.com/apache/camel-quarkus/tree/HEAD)
 
-[Full 
Changelog](https://github.com/apache/camel-quarkus/compare/2.0.0-M1...HEAD)
-
-**Closed issues:**
-
-- Intermittent failures in Aws2SqsSnsIT 
[\#2741](https://github.com/apache/camel-quarkus/issues/2741)
-- Unable to determine the status of the running process in LogIT without 
resteasy [\#2737](https://github.com/apache/camel-quarkus/issues/2737)
-- Resume release command needs to be performed from target/checkout directory 
[\#2736](https://github.com/apache/camel-quarkus/issues/2736)
-- Kafka SASL tests fail after the upgrade to Quarkus 2.0.0.CR3 
[\#2729](https://github.com/apache/camel-quarkus/issues/2729)
-- camel-quarkus-example : dev mode issue 
[\#2723](https://github.com/apache/camel-quarkus/issues/2723)
-- Add missing use cases into MongoDb test coverage 
[\#2715](https://github.com/apache/camel-quarkus/issues/2715)
-- \[camel-quarkus-examples\] HealthTest/TimerLogMainTest/ObservabilityTest 
failure on camel-quarkus-main branch 
[\#2711](https://github.com/apache/camel-quarkus/issues/2711)
-- Register all @JsonView array elements for reflection 
[\#2708](https://github.com/apache/camel-quarkus/issues/2708)
-- demonstrate how to configure quarkus-jackson extension's own ObjectMapper 
instance and reuse it in our jackson test 
[\#2706](https://github.com/apache/camel-quarkus/issues/2706)
-- Expand Saxon test coverage with xpath saxon tests 
[\#2702](https://github.com/apache/camel-quarkus/issues/2702)
-- Debezium: Unresolved type during parsing: org.eclipse.jetty.util.StringUtil  
[\#2695](https://github.com/apache/camel-quarkus/issues/2695)
-- Sql aggregator does not work in native mode, solve DefaultExchangeHolder 
globally. [\#2693](https://github.com/apache/camel-quarkus/issues/2693)
-- \[Quarkus 2.0.0.CR3\] ClassNotFoundException: 
com.aayushatharva.brotli4j.decoder.DecoderJNI$Wrapper in Google Storage, PubSub 
and BigQuery test [\#2692](https://github.com/apache/camel-quarkus/issues/2692)
-- Problem with dashed queryParams 
[\#2685](https://github.com/apache/camel-quarkus/issues/2685)
-- camel-quarkus-jacksonxml:JsonView annotations take no effect in native mode 
[\#2681](https://github.com/apache/camel-quarkus/issues/2681)
-- Error when using camel-quarkus-jackson in native mode: 
java.lang.ClassNotFoundException: 
com.fasterxml.jackson.module.jaxb.JaxbAnnotationModule 
[\#2677](https://github.com/apache/camel-quarkus/issues/2677)
-- GraalVM 21.1 in CryptoIT: Trying to verify a provider that was not 
registered at build time: BC version 1.68 
[\#2673](https://github.com/apache/camel-quarkus/issues/2673)
-- AWS2 test: org.apache.log4j.Priority required via netty, although netty 
should not be in the class path at all  
[\#2670](https://github.com/apache/camel-quarkus/issues/2670)
-- Error when using Camel Kinesis component - java.lang.ClassNotFoundException: 
org.apache.commons.logging.LogFactory 
[\#2666](https://github.com/apache/camel-quarkus/issues/2666)
-- camel-quarkus-master-integration-test failing after the upgrade to Camel 
3.10.0 and Quarkus 2.0.0.Alpha3 
[\#2660](https://github.com/apache/camel-quarkus/issues/2660)
-- Intermittent failures in MongoDbTest.testTailingConsumer\(\) and 
MongoDbTest.testPersistentTailingConsumer\(\) 
[\#2658](https://github.com/apache/camel-quarkus/issues/2658)
-- vert-x http client failing for HTTPS with Quarkus 2.0.0.Alpha3 
[\#2656](https://github.com/apache/camel-quarkus/issues/2656)
-- Native compilation issues on GraalVM 21.1 
[\#2653](https://github.com/apache/camel-quarkus/issues/2653)
-- \[Quarkus 2.0.0.CR1\] Stop managing kotlinx-coroutines-core once we get it 
managed from Quarkus 
[\#2646](https://github.com/apache/camel-quarkus/issues/2646)
-- Test moving and deleting files on an FTP server 
[\#2645](https://github.com/apache/camel-quarkus/issues/2645)
-- jackson: add test coverage 
[\#2634](https://github.com/apache/camel-quarkus/issues/2634)
-- jacksonxml: add test coverage 
[\#2633](https://github.com/apache/camel-quarkus/issues/2633)
-- Expand Sql test coverage 
[\#2623](https://github.com/apache/camel-quarkus/issues/2623)
-- camel-jackson-protobuf data format native support 
[\#2615](https

[camel-k] branch main updated (19fd6ee -> a81e592)

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

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


from 19fd6ee  chore(doc): Add navigation links to logging pages
 add a81e592  Updated CHANGELOG.md

No new revisions were added by this update.

Summary of changes:
 CHANGELOG.md | 4 
 1 file changed, 4 insertions(+)


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

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

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


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

commit 06df06241b3e3d235e874e6877aac23b20854424
Author: github-actions[bot] 
<41898282+github-actions[bot]@users.noreply.github.com>
AuthorDate: Fri Jun 11 03:28:53 2021 +

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

diff --git a/CHANGELOG.md b/CHANGELOG.md
index 2b4d5e2..55b4f23 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -15,6 +15,7 @@
 
 **Merged pull requests:**
 
+- \[Github Actions\] Periodic Sync Camel-kafka-connector main Branch 
[\#1202](https://github.com/apache/camel-kafka-connector/pull/1202) 
([github-actions[bot]](https://github.com/apps/github-actions))
 - Littel documentation adjustments. 
[\#1201](https://github.com/apache/camel-kafka-connector/pull/1201) 
([valdar](https://github.com/valdar))
 - Some documentation link fixes. 
[\#1199](https://github.com/apache/camel-kafka-connector/pull/1199) 
([valdar](https://github.com/valdar))
 - Added Release Documentation. 
[\#1197](https://github.com/apache/camel-kafka-connector/pull/1197) 
([valdar](https://github.com/valdar))


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

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

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


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

commit 3466df46ac7a02a53e23ea80dd9b33125c70cc21
Author: github-actions[bot] 
<41898282+github-actions[bot]@users.noreply.github.com>
AuthorDate: Fri Jun 11 03:27:45 2021 +

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

diff --git a/CHANGELOG.md b/CHANGELOG.md
index 7d54e7f..2be415c 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -9,6 +9,7 @@
 - Flaky test: KnativeEnvFromRegistryTest 
[\#704](https://github.com/apache/camel-k-runtime/issues/704)
 - Re-enable YamlSourceLoaderTest 
[\#687](https://github.com/apache/camel-k-runtime/issues/687)
 - Support for simple, linear integration definitions 
[\#659](https://github.com/apache/camel-k-runtime/issues/659)
+- SourceType should not be null 
[\#658](https://github.com/apache/camel-k-runtime/issues/658)
 - Optional parameters in Kamelet route templates 
[\#631](https://github.com/apache/camel-k-runtime/issues/631)
 - Duplicated loadUserProperties\(\) method call 
[\#625](https://github.com/apache/camel-k-runtime/issues/625)
 - Assess integration container resources layout changes impacts 
[\#614](https://github.com/apache/camel-k-runtime/issues/614)
@@ -21,6 +22,8 @@
 **Merged pull requests:**
 
 - Remove preview flag from YAML docs 
[\#710](https://github.com/apache/camel-k-runtime/pull/710) 
([heiko-braun](https://github.com/heiko-braun))
+- build\(deps\): bump jandex-maven-plugin from 1.0.8 to 1.1.0 
[\#699](https://github.com/apache/camel-k-runtime/pull/699) 
([dependabot[bot]](https://github.com/apps/dependabot))
+- fix\(core\): default SourceType as source 
[\#685](https://github.com/apache/camel-k-runtime/pull/685) 
([squakez](https://github.com/squakez))
 - build\(deps\): bump maven-javadoc-plugin from 3.2.0 to 3.3.0 
[\#680](https://github.com/apache/camel-k-runtime/pull/680) 
([dependabot[bot]](https://github.com/apps/dependabot))
 - GH action fixes [\#674](https://github.com/apache/camel-k-runtime/pull/674) 
([orpiske](https://github.com/orpiske))
 - Enable GH actions on camel-main branch 
[\#671](https://github.com/apache/camel-k-runtime/pull/671) 
([orpiske](https://github.com/orpiske))


[camel-spring-boot] branch automatic-periodic-sync created (now 28e3458)

2021-06-10 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.


  at 28e3458  [create-pull-request] automated change

No new revisions were added by this update.


[GitHub] [camel-kafka-connector] kidpollo commented on issue #1114: camel-salesforce-kafka-connector missing dependency library

2021-06-10 Thread GitBox


kidpollo commented on issue #1114:
URL: 
https://github.com/apache/camel-kafka-connector/issues/1114#issuecomment-859149202


   Never mind ^ was on v 0.10. With your snapshot I get a different error now 
and does not silently fail. I'll investigate that separately. 


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

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




[GitHub] [camel-kafka-connector] kidpollo commented on issue #1114: camel-salesforce-kafka-connector missing dependency library

2021-06-10 Thread GitBox


kidpollo commented on issue #1114:
URL: 
https://github.com/apache/camel-kafka-connector/issues/1114#issuecomment-859146095


   @valdar still broken I noticed the jetty versions dont match the error I 
have is silent was only able to access enabling debug logs but the connector 
never reports problems 
   
   ```
org.eclipse.jetty.client.HttpResponseException: HTTP protocol violation: 
bad response on 
HttpConnectionOverHTTP@6f359c5::DecryptedEndPoint@1412451a{l=/100.117.59.97:50548,r=login.salesforce.com/13.108.235.130:443,OPEN,fill=-,flush=-,to=307/1}
   erc-streams-cp-kafka-connect-d4b59f4dc-jfhmr cp-kafka-connect-server 
at 
org.eclipse.jetty.client.http.HttpReceiverOverHTTP.badMessage(HttpReceiverOverHTTP.java:391)
   erc-streams-cp-kafka-connect-d4b59f4dc-jfhmr cp-kafka-connect-server 
at org.eclipse.jetty.http.HttpParser.badMessage(HttpParser.java:1647)
   erc-streams-cp-kafka-connect-d4b59f4dc-jfhmr cp-kafka-connect-server 
at org.eclipse.jetty.http.HttpParser.parseNext(HttpParser.java:1634)
   erc-streams-cp-kafka-connect-d4b59f4dc-jfhmr cp-kafka-connect-server 
at 
org.eclipse.jetty.client.http.HttpReceiverOverHTTP.parse(HttpReceiverOverHTTP.java:204)
   erc-streams-cp-kafka-connect-d4b59f4dc-jfhmr cp-kafka-connect-server 
at 
org.eclipse.jetty.client.http.HttpReceiverOverHTTP.process(HttpReceiverOverHTTP.java:144)
   erc-streams-cp-kafka-connect-d4b59f4dc-jfhmr cp-kafka-connect-server 
at 
org.eclipse.jetty.client.http.HttpReceiverOverHTTP.receive(HttpReceiverOverHTTP.java:79)
   erc-streams-cp-kafka-connect-d4b59f4dc-jfhmr cp-kafka-connect-server 
at 
org.eclipse.jetty.client.http.HttpChannelOverHTTP.receive(HttpChannelOverHTTP.java:131)
   erc-streams-cp-kafka-connect-d4b59f4dc-jfhmr cp-kafka-connect-server 
at 
org.eclipse.jetty.client.http.HttpConnectionOverHTTP.onFillable(HttpConnectionOverHTTP.java:169)
   erc-streams-cp-kafka-connect-d4b59f4dc-jfhmr cp-kafka-connect-server 
at 
org.eclipse.jetty.io.AbstractConnection$ReadCallback.succeeded(AbstractConnection.java:311)
   erc-streams-cp-kafka-connect-d4b59f4dc-jfhmr cp-kafka-connect-server 
at org.eclipse.jetty.io.FillInterest.fillable(FillInterest.java:105)
   erc-streams-cp-kafka-connect-d4b59f4dc-jfhmr cp-kafka-connect-server 
at 
org.eclipse.jetty.io.ssl.SslConnection$DecryptedEndPoint.onFillable(SslConnection.java:540)
   erc-streams-cp-kafka-connect-d4b59f4dc-jfhmr cp-kafka-connect-server 
at org.eclipse.jetty.io.ssl.SslConnection.onFillable(SslConnection.java:395)
   erc-streams-cp-kafka-connect-d4b59f4dc-jfhmr cp-kafka-connect-server 
at org.eclipse.jetty.io.ssl.SslConnection$2.succeeded(SslConnection.java:161)
   erc-streams-cp-kafka-connect-d4b59f4dc-jfhmr cp-kafka-connect-server 
at org.eclipse.jetty.io.FillInterest.fillable(FillInterest.java:105)
   erc-streams-cp-kafka-connect-d4b59f4dc-jfhmr cp-kafka-connect-server 
at org.eclipse.jetty.io.ChannelEndPoint$1.run(ChannelEndPoint.java:104)
   erc-streams-cp-kafka-connect-d4b59f4dc-jfhmr cp-kafka-connect-server 
at 
org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.runTask(EatWhatYouKill.java:336)
   erc-streams-cp-kafka-connect-d4b59f4dc-jfhmr cp-kafka-connect-server 
at 
org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.doProduce(EatWhatYouKill.java:313)
   erc-streams-cp-kafka-connect-d4b59f4dc-jfhmr cp-kafka-connect-server 
at 
org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.tryProduce(EatWhatYouKill.java:171)
   erc-streams-cp-kafka-connect-d4b59f4dc-jfhmr cp-kafka-connect-server 
at 
org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.run(EatWhatYouKill.java:129)
   erc-streams-cp-kafka-connect-d4b59f4dc-jfhmr cp-kafka-connect-server 
at 
org.eclipse.jetty.util.thread.ReservedThreadExecutor$ReservedThread.run(ReservedThreadExecutor.java:383)
   erc-streams-cp-kafka-connect-d4b59f4dc-jfhmr cp-kafka-connect-server 
at 
org.eclipse.jetty.util.thread.QueuedThreadPool.runJob(QueuedThreadPool.java:882)
   erc-streams-cp-kafka-connect-d4b59f4dc-jfhmr cp-kafka-connect-server 
at 
org.eclipse.jetty.util.thread.QueuedThreadPool$Runner.run(QueuedThreadPool.java:1036)
   erc-streams-cp-kafka-connect-d4b59f4dc-jfhmr cp-kafka-connect-server 
at java.base/java.lang.Thread.run(Thread.java:829)
   erc-streams-cp-kafka-connect-d4b59f4dc-jfhmr cp-kafka-connect-server Caused 
by: org.eclipse.jetty.http.BadMessageException: 400: Bad Response
   erc-streams-cp-kafka-connect-d4b59f4dc-jfhmr cp-kafka-connect-server 
... 21 more
   erc-streams-cp-kafka-connect-d4b59f4dc-jfhmr cp-kafka-connect-server Caused 
by: java.lang.LinkageError: loader constraint violation: when resolving method 
'void 
org.eclipse.jetty.http.GZIPContentDecoder.(org.eclipse.jetty.io.ByteBufferPool,
 int)' the class loader 
org.apache.kafka.connect.runtime.isolation.PluginClassLoader @c3972d0 of the 
current cla

[GitHub] [camel-website] github-actions[bot] commented on pull request #588: Fixed Camel Kafka Connector links after doc refactor of the subproject.

2021-06-10 Thread GitBox


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


   🚀 Preview is available at https://pr-588--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.

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




[GitHub] [camel-website] valdar merged pull request #588: Fixed Camel Kafka Connector links after doc refactor of the subproject.

2021-06-10 Thread GitBox


valdar merged pull request #588:
URL: https://github.com/apache/camel-website/pull/588


   


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

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




[camel-website] branch main updated: Fixed Camel Kafka Connector links after doc refactor of the subproject. (#588)

2021-06-10 Thread valdar
This is an automated email from the ASF dual-hosted git repository.

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


The following commit(s) were added to refs/heads/main by this push:
 new df6f42b  Fixed Camel Kafka Connector links after doc refactor of the 
subproject. (#588)
df6f42b is described below

commit df6f42b742ef06242e1edb8a187ac254d5a3ec03
Author: Andrea Tarocchi 
AuthorDate: Thu Jun 10 22:24:56 2021 +0200

Fixed Camel Kafka Connector links after doc refactor of the subproject. 
(#588)
---
 content/blog/2020/09/Camel-kafka-connector-050-Whatsnew/index.md | 2 +-
 content/blog/2020/12/CKC-idempotency-070/index.md| 2 +-
 content/blog/2021/01/VSCode-LanguageSupport-0.0.30/index.md  | 2 +-
 data/release-categories.yaml | 2 +-
 layouts/partials/releases/camel-kafka-connector.html | 2 +-
 5 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/content/blog/2020/09/Camel-kafka-connector-050-Whatsnew/index.md 
b/content/blog/2020/09/Camel-kafka-connector-050-Whatsnew/index.md
index 2ba1f7a..615ab95 100644
--- a/content/blog/2020/09/Camel-kafka-connector-050-Whatsnew/index.md
+++ b/content/blog/2020/09/Camel-kafka-connector-050-Whatsnew/index.md
@@ -43,7 +43,7 @@ The documentation of each connector (source/sink or both) now 
contains reference
 - Aggregation Strategies list available in the connector as out of the box 
solutions
 
 On the Archetypes side: the archetype provided to extend the current 
connectors is now able to use a parameter to specify what connector you want to 
extend.
-More information available at [Camel-Kafka-connector archetype 
documentation](/camel-kafka-connector/latest/archetypes.html).
+More information available at [Camel-Kafka-connector archetype 
documentation](/camel-kafka-connector/latest/user-guide/extending-connector/index.html).
 
 We added also a troubleshooting section in our documentation, to be able to 
debug and use the connectors in the best way possible.
 
diff --git a/content/blog/2020/12/CKC-idempotency-070/index.md 
b/content/blog/2020/12/CKC-idempotency-070/index.md
index 66afab6..17f4a77 100644
--- a/content/blog/2020/12/CKC-idempotency-070/index.md
+++ b/content/blog/2020/12/CKC-idempotency-070/index.md
@@ -66,7 +66,7 @@ Some of the options can be used with their default value, in 
this example we're
 
 ### A real example
 
-The best way to show how the idempotency feature works, in 
camel-kafka-connector, it's through an example. We'll use the [AWS2-S3 Source 
connector](/camel-kafka-connector/latest/connectors/camel-aws2-s3-kafka-source-connector.html)
+The best way to show how the idempotency feature works, in 
camel-kafka-connector, it's through an example. We'll use the [AWS2-S3 Source 
connector](/camel-kafka-connector/latest/reference/connectors/camel-aws2-s3-kafka-source-connector.html)
 
 As first step you'll need to fully build the [Camel-Kafka-connector 
project](https://github.com/apache/camel-kafka-connector) and install the 
connectors/camel-aws2-s3-kafka-connector zip package in your Kafka Broker 
plugin.path. Once the connector is in the plugin.path location, just unzip it. 
We describe how to build and unpack in the next steps:
 
diff --git a/content/blog/2021/01/VSCode-LanguageSupport-0.0.30/index.md 
b/content/blog/2021/01/VSCode-LanguageSupport-0.0.30/index.md
index 6f6ad79..19a3c38 100644
--- a/content/blog/2021/01/VSCode-LanguageSupport-0.0.30/index.md
+++ b/content/blog/2021/01/VSCode-LanguageSupport-0.0.30/index.md
@@ -18,7 +18,7 @@ The Camel Kafka Connector catalog has been upgraded from 
0.6.0 to 0.7.0.
 
  Completion for Basic Configuration
 
-Some properties are not part of the Camel catalog material, neither of the 
[Kafka Connect](https://kafka.apache.org/documentation/#connectconfigs) 
framework and applies to all Camel Kafka connectors. They are the [Basic 
Configuration 
properties](/camel-kafka-connector/latest/basic-configuration.html).
+Some properties are not part of the Camel catalog material, neither of the 
[Kafka Connect](https://kafka.apache.org/documentation/#connectconfigs) 
framework and applies to all Camel Kafka connectors. They are the [Basic 
Configuration 
properties](/camel-kafka-connector/latest/user-guide/basic-configuration.html).
 
 Completion is now available for these properties:
 
diff --git a/data/release-categories.yaml b/data/release-categories.yaml
index 6158aa1..2346cb9 100644
--- a/data/release-categories.yaml
+++ b/data/release-categories.yaml
@@ -83,7 +83,7 @@ camel-kafka-connector:
   filename_format: 'camel-kafka-connector-{version}-src.zip'
 - name: 'Binaries'
   title: 'Connectors download list'
-  link: '/camel-kafka-connector/latest/connectors.html'
+  link: '/camel-kafka-connector/latest/reference/index.html'
 camel-quarkus:
   id: 'camel-quarkus'
   name: 'Apache Camel Quarkus'
diff --git a/layouts/partials/releases/ca

[GitHub] [camel] hokutor opened a new pull request #5652: CAMEL-16674 : More functional test cases

2021-06-10 Thread GitBox


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


   Added more functional test cases to HuaweiCloud FunctionGraph component.
   1. Testing functionality options through exchange properties
   2. Testing functionality options through both exchange properties and 
endpoint (exchange parameters should carry precedence over endpoint options)
   3. Testing standard functionality with region instead of endpoint url
   4. Testing authentication with service keys
   
   JIRA: https://issues.apache.org/jira/browse/CAMEL-16674
   
   
   


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

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




[camel-kafka-connector] branch camel-kafka-connector-0.10.x updated: Fixed internal doc links.

2021-06-10 Thread valdar
This is an automated email from the ASF dual-hosted git repository.

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


The following commit(s) were added to refs/heads/camel-kafka-connector-0.10.x 
by this push:
 new 11d64c6  Fixed internal doc links.
11d64c6 is described below

commit 11d64c632ea4eef30dae3d281cbc7c71dee60ebc
Author: Andrea Tarocchi 
AuthorDate: Thu Jun 10 21:22:11 2021 +0200

Fixed internal doc links.
---
 docs/modules/ROOT/pages/contributor-guide/release-guide.adoc | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/docs/modules/ROOT/pages/contributor-guide/release-guide.adoc 
b/docs/modules/ROOT/pages/contributor-guide/release-guide.adoc
index 8b550d3..2b07d69 100644
--- a/docs/modules/ROOT/pages/contributor-guide/release-guide.adoc
+++ b/docs/modules/ROOT/pages/contributor-guide/release-guide.adoc
@@ -3,10 +3,10 @@
 :page-aliases: release-guide.adoc
 
 The process is _mutatis mutandis_ the same as for the main Apache Camel 
repository - see the
-https://camel.apache.org/manual/latest/release-guide.html[Release guide] page 
of the Camel documentation.
+xref:latest@manual::release-guide.adoc[Release guide] page of the Camel 
documentation.
 
 Here, just a sketch of the repeating part, after you have performed the 
initial setup following the
-https://camel.apache.org/manual/latest/release-guide.html[Camel Release 
guide]. In particular the section about setting up your maven environment as 
described in 
https://camel.apache.org/manual/latest/release-guide.html#ReleaseGuide-MavenSetup[Camel
 Release Maven Setup].
+xref:latest@manual::release-guide.adoc[Camel Release guide]. In particular the 
section about setting up your maven environment as described in 
xref:latest@manual::release-guide.adoc#ReleaseGuide-MavenSetup[Camel Release 
Maven Setup].
 
 == Pre release tasks
 


[camel] branch regen_bot updated (602aacd -> 93556a8)

2021-06-10 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 602aacd  More osgi fixes
 add 93556a8  camel-as2 - Respect the user's intention to send content-type 
header without appended charset: (#5650)

No new revisions were added by this update.

Summary of changes:
 .../camel/component/as2/api/util/EntityUtils.java  |  7 ++--
 .../component/as2/api/util/EntityUtilsTest.java| 45 ++
 2 files changed, 49 insertions(+), 3 deletions(-)
 create mode 100644 
components/camel-as2/camel-as2-api/src/test/java/org/apache/camel/component/as2/api/util/EntityUtilsTest.java


[camel-k-runtime] branch camel-main updated: Update to camel-quarkus 2.0.0-M2

2021-06-10 Thread lburgazzoli
This is an automated email from the ASF dual-hosted git repository.

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


The following commit(s) were added to refs/heads/camel-main by this push:
 new 366c3a5  Update to camel-quarkus 2.0.0-M2
366c3a5 is described below

commit 366c3a561b690eec651b7afcb55512151ac6a948
Author: Luca Burgazzoli 
AuthorDate: Thu Jun 10 17:26:12 2021 +0200

Update to camel-quarkus 2.0.0-M2
---
 pom.xml | 10 +++---
 1 file changed, 3 insertions(+), 7 deletions(-)

diff --git a/pom.xml b/pom.xml
index c05adc2..8891e0c 100644
--- a/pom.xml
+++ b/pom.xml
@@ -41,7 +41,7 @@
 3.10.0
 
 
-2.0.0-SNAPSHOT
+2.0.0-M2
 21.1.0
 2.0.0.CR3
 
@@ -366,10 +366,9 @@
 
 
 
-
 
 apache.snapshots
 https://repository.apache.org/snapshots/
@@ -393,10 +391,9 @@
 
 
 
-
 
 apache.snapshots
 https://repository.apache.org/snapshots/


[GitHub] [camel-k-runtime] lburgazzoli merged pull request #714: Update to camel-quarkus 2.0.0-M2

2021-06-10 Thread GitBox


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


   


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

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




[GitHub] [camel] memaskal commented on pull request #5651: Camel 16134 Single DLR per long sms

2021-06-10 Thread GitBox


memaskal commented on pull request #5651:
URL: https://github.com/apache/camel/pull/5651#issuecomment-858756418


   Yeap sorry, done


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

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




[camel] branch main updated (602aacd -> 93556a8)

2021-06-10 Thread davsclaus
This is an automated email from the ASF dual-hosted git repository.

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


from 602aacd  More osgi fixes
 add 93556a8  camel-as2 - Respect the user's intention to send content-type 
header without appended charset: (#5650)

No new revisions were added by this update.

Summary of changes:
 .../camel/component/as2/api/util/EntityUtils.java  |  7 ++--
 .../component/as2/api/util/EntityUtilsTest.java| 45 ++
 2 files changed, 49 insertions(+), 3 deletions(-)
 create mode 100644 
components/camel-as2/camel-as2-api/src/test/java/org/apache/camel/component/as2/api/util/EntityUtilsTest.java


[camel-karaf] branch main updated: Regen

2021-06-10 Thread davsclaus
This is an automated email from the ASF dual-hosted git repository.

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


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

commit 696f1f2154854c9f388548059279746fb8245f65
Author: Claus Ibsen 
AuthorDate: Thu Jun 10 18:06:41 2021 +0200

Regen
---
 docs/modules/ROOT/pages/components.adoc | 5 +
 1 file changed, 1 insertion(+), 4 deletions(-)

diff --git a/docs/modules/ROOT/pages/components.adoc 
b/docs/modules/ROOT/pages/components.adoc
index 0f83a01..6006926 100644
--- a/docs/modules/ROOT/pages/components.adoc
+++ b/docs/modules/ROOT/pages/components.adoc
@@ -5,7 +5,7 @@ Apache Camel Karaf supports the following Camel artifacts as 
Karaf features
 == Camel Components
 
 // components: START
-Number of Camel components: 184 in 184 JAR artifacts (0 deprecated)
+Number of Camel components: 183 in 183 JAR artifacts (0 deprecated)
 
 [width="100%",cols="4,1,5",options="header"]
 |===
@@ -197,9 +197,6 @@ Number of Camel components: 184 in 184 JAR artifacts (0 
deprecated)
 | xref:components::graphql-component.adoc[GraphQL] (camel-graphql) +
 `graphql:httpUri` | 3.0 | Send GraphQL queries and mutations to external 
systems.
 
-| xref:components::grpc-component.adoc[gRPC] (camel-grpc) +
-`grpc:host:port/service` | 2.19 | Expose gRPC endpoints and access external 
gRPC endpoints.
-
 | xref:components::guava-eventbus-component.adoc[Guava EventBus] 
(camel-guava-eventbus) +
 `guava-eventbus:eventBusRef` | 2.10 | Send and receive messages to/from Guava 
EventBus.
 


[GitHub] [camel] davsclaus merged pull request #5650: Respect the user's intention to send content-type header without appended charset

2021-06-10 Thread GitBox


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


   


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

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




[GitHub] [camel-quarkus] davsclaus commented on issue #2761: camel.main.dump-routes = true does not work

2021-06-10 Thread GitBox


davsclaus commented on issue #2761:
URL: https://github.com/apache/camel-quarkus/issues/2761#issuecomment-858749627


   I created a general ticket to look at if we can source code generate non 
reflective FactoryFinder in camel core itself then we get this out of the box
   https://issues.apache.org/jira/browse/CAMEL-16706


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

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




[GitHub] [camel-quarkus] davsclaus commented on issue #2761: camel.main.dump-routes = true does not work

2021-06-10 Thread GitBox


davsclaus commented on issue #2761:
URL: https://github.com/apache/camel-quarkus/issues/2761#issuecomment-858747135


   We could use the FactoryFinder style which we use for other kinds, then I 
would assume Quarkus can have some build step or whatever it does to create the 
classes non reflective.
   
   


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

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




[GitHub] [camel-website] valdar opened a new pull request #588: Fixed Camel Kafka Connector links after doc refactor of the subproject.

2021-06-10 Thread GitBox


valdar opened a new pull request #588:
URL: https://github.com/apache/camel-website/pull/588


   


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

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




[GitHub] [camel-k-runtime] lburgazzoli opened a new pull request #714: Update to camel-quarkus 2.0.0-M2

2021-06-10 Thread GitBox


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


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

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




[GitHub] [camel] memaskal opened a new pull request #5651: Camel 16134 Single DLR per long sms

2021-06-10 Thread GitBox


memaskal opened a new pull request #5651:
URL: https://github.com/apache/camel/pull/5651


   When sending a long SMS (multipart) with the registered delivery receipt 
flag !=0, each and every segment would be registered with the DLR flag.
   
   This makes the SMSC send a DLR for every segment of the message and you have 
to make a bigger effort on keeping their state, so you can merge the final 
state of the whole SMS. 
   
   This PR addresses this issue, by inserting a `singleDLR` flag to the 
SMPPConfiguration. This change only affects 
   submitSm, and submitMultiSm commands, which currently support for long SMS. 
This parameter has no effect
   on short messages, and by default is turned off.
   
   Jira issue https://issues.apache.org/jira/browse/CAMEL-16134
   Zulip chat thread: 
https://camel.zulipchat.com/#narrow/stream/257298-camel/topic/camel-smpp.3A.20Reducing.20number.20of.20DLRs
   


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

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




[GitHub] [camel-quarkus] ppalaga commented on issue #2207: Upgrading to Jackson 2.12.1 via Quarkus BOM 1.12 breaks Azure SDK v12 extensions

2021-06-10 Thread GitBox


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


   This can be fixed by upgrading to azure-bom 1.0.3 - see the linked PR. Some 
native compilation issues need to get fixed there. The upgrade to azure-bom 
1.0.3 also fixes another, so far unreported problem mentioned by @llowinge. 


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

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




[GitHub] [camel] oscerd commented on pull request #5650: Respect the user's intention to send content-type header without appended charset

2021-06-10 Thread GitBox


oscerd commented on pull request #5650:
URL: https://github.com/apache/camel/pull/5650#issuecomment-858706332


   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.

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




[GitHub] [camel-quarkus] ffang commented on issue #2205: Optaplanner native integration tests fail with Quarkus 1.12

2021-06-10 Thread GitBox


ffang commented on issue #2205:
URL: https://github.com/apache/camel-quarkus/issues/2205#issuecomment-858699220


   Hi @ppalaga @zbendhiba ,
   
   Just FYI, the OptaplannerIT still consistently fails on my machine(it's 
disabled in CI now).
   Could you please re-run and confirm? Not sure if it's still a problem on 
just on my mac.
   
   Thanks!
   Freeman


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

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




[GitHub] [camel-quarkus] pivovarit commented on pull request #2747: fix hazelcast integration-test failed in native mode(On Mac) #2719

2021-06-10 Thread GitBox


pivovarit commented on pull request #2747:
URL: https://github.com/apache/camel-quarkus/pull/2747#issuecomment-858682161


   To be honest, I don't really know how to solve it so that incomplete 
classpath is somehow acceptable without `--allow-incomplete-classpath` which 
I'd like to avoid as well.
   
   Introducing the MacOS profile with the optional dependency sounds like 
something that could work, but is there anyone who could confirm that it's a 
legit solution for Quarkus?


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

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




[GitHub] [camel-quarkus] zbendhiba commented on pull request #2747: fix hazelcast integration-test failed in native mode(On Mac) #2719

2021-06-10 Thread GitBox


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


   @ffang I agree on document it at least. This workaround can benefit for 
other Mac users.


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

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




[camel-kamelets] branch regen_bot updated (d7ea3b2 -> 7572fd1)

2021-06-10 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 d7ea3b2  Header Matches Filter Action Kamelet
 add 33c2263  Added Example to has header Kamelet Filter Action
 add 7572fd1  Added Example to has header Kamelet Filter Action

No new revisions were added by this update.

Summary of changes:
 has-header-filter-action.kamelet.yaml| 1 +
 .../src/main/resources/kamelets/has-header-filter-action.kamelet.yaml| 1 +
 2 files changed, 2 insertions(+)


[GitHub] [camel-k] astefanutti commented on issue #2358: install: optional registry

2021-06-10 Thread GitBox


astefanutti commented on issue #2358:
URL: https://github.com/apache/camel-k/issues/2358#issuecomment-858654659


   > Latest implementation carries through the `--registry none` and implements 
3 changes:
   > 
   > * platform.Spec.Registry.Address = Disabled
   > * platform.Spec.BuildPublishStrategy = Disabled
   > * platform.Spec.BuildStrategy = Disabled
   > 
   > This seemed logical since the registry is required for 
`BuildPublishStrategy` and since one of the active types of 
`BuildPublishStrategy` are required for `BuildStrategy`. If this is not correct 
then can you provide an example please?
   
   That is correct.
   
   > If it is correct, can you provide a use-case where the operator is useful 
without any build capability, please?
   
   The use case it to run an Integration using a pre-built image. Obviously, 
this pre-built image has to comply with the Camel K runtime contract (that is 
not documented ;). As an easy way to write an e2e test for this, I think we 
could re-use any existing test, and add a subsequent test that would re-deploy 
the same Integration, by re-using the previously built image, and make sure 
both the operator installation and the Integration Pod run successfully.


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

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




[GitHub] [camel] dk2k opened a new pull request #5650: Respect the user's intention to send content-type header without appended charset

2021-06-10 Thread GitBox


dk2k opened a new pull request #5650:
URL: https://github.com/apache/camel/pull/5650


   I mean the string like 
   "application/edifact" as opposed to "application/edifact; charset=US-ASCII"
   
   Currently I can see the passed content-type "application/edifact" with null 
Charset gets transformed to "application/edifact; charset=US-ASCII" anyway.
   Added two unit-tests to test the cases when passed charset is null and 
non-null.
   
   


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

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




[GitHub] [camel-k] phantomjinx edited a comment on issue #2358: install: optional registry

2021-06-10 Thread GitBox


phantomjinx edited a comment on issue #2358:
URL: https://github.com/apache/camel-k/issues/2358#issuecomment-857847965


   Latest implementation carries through the `--registry none` and implements 3 
changes:
   - platform.Spec.Registry.Address = Disabled
   - platform.Spec.BuildPublishStrategy = Disabled
   - platform.Spec.BuildStrategy = Disabled
   
   This seemed logical since the registry is required for 
`BuildPublishStrategy` and since one of the active types of 
`BuildPublishStrategy` are required for `BuildStrategy`. If this is not correct 
then can you provide an example please?
   
   If it is correct, can you provide a use-case where the operator is useful 
without any build capability, please? 
   
   thx.
   
   cc @lburgazzoli @astefanutti 


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

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




[GitHub] [camel-k] astefanutti commented on a change in pull request #2284: Creates alternative kustomize installer for installation of the camel-k operator

2021-06-10 Thread GitBox


astefanutti commented on a change in pull request #2284:
URL: https://github.com/apache/camel-k/pull/2284#discussion_r649207831



##
File path: config/Makefile
##
@@ -0,0 +1,376 @@
+# 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.
+
+#
+# Allows for resources to be loaded from outside the root location of
+# the kustomize config file. Ensures that resource don't need to be
+# copied around the file system.
+#
+# See https://kubectl.docs.kubernetes.io/faq/kustomize
+#
+KOPTIONS := --load-restrictor LoadRestrictionsNone
+
+#
+# Include the main camel-k Makefile containing
+# basic common recipes like kustomize and vars
+# like VERSION
+#
+include script/Makefile
+
+#
+# Vars that can be overridden by external env vars
+#
+DEBUG ?= false
+TAG ?= $(VERSION)
+NAMESPACE ?= camel-k
+
+# Image pull policy: [IfNotPresent|Always]
+IMAGE_PULL_POLICY ?= IfNotPresent
+# Global: [true|false]
+# - On setup: will promote roles and bindings to cluster-level
+# - On operator: set namespace to all using WATCH_NAMESPACE env var
+GLOBAL ?= false
+# Monitoring: [true|false]
+# - On operator: will add the prometheus resources to install
+MONITORING ?= false
+# Monitoring Port: integer
+MONITORING_PORT ?= 8080
+# Health Port: integer
+HEALTH_PORT ?= 8081
+
+RBAC_KUBE := rbac/kubernetes
+RBAC_OS := rbac/openshift
+RBAC_CLUSTER := cluster
+RBAC_GLOBAL := global
+INFRASTRUCTURE := infrastructure
+YAML := yaml
+
+OP_PATCHES := ./operator/patches
+PLATFORM_PATCHES := ./platform/patches
+PLACEHOLDER := placeholder
+IMAGE_PULL_POLICY_PATCH := image-pull-policy-always-patch
+WATCH_NAMESPACE_PATCH := watch-namespace-global-patch
+PORTS_PATCH := ports-patch
+INT_PLATFORM_PATCH := integration-platform-patch
+
+#
+# Macro for editing kustomization to define
+# the image reference
+#
+# Parameter: directory of the kustomization.yaml
+#
+define set-kustomize-image
+   $(if $(filter $(DEFAULT_IMAGE),$(IMAGE_NAME):$(TAG)),,\
+   @cd $(1) && $(KUSTOMIZE) edit set image 
$(DEFAULT_IMAGE)=$(IMAGE_NAME):$(TAG))
+endef
+
+#
+# Macro for editing kustomization to define
+# the namespace
+#
+# Parameter: directory of the kustomization.yaml
+#
+define set-kustomize-namespace
+   @cd $(1) && $(KUSTOMIZE) edit set namespace $(NAMESPACE)
+endef
+
+#
+# Macro for swapping a resource directory to an alternative directory
+#
+# Parameters:
+# * directory of the kustomization.yaml
+# * source directory
+# * target directory
+#
+define swap-rbac
+   @cd $(1) && \
+   $(KUSTOMIZE) edit remove resource ../$(2) && \
+   $(KUSTOMIZE) edit add resource ../$(3)
+endef
+
+#
+# Add or remove a patch on a kustomization.yaml
+# targetting the deployment resource
+#
+# Parameters:
+# * directory of the kustomization.yaml
+# * [add, remove]
+# * path of patch
+#
+define add-remove-deployment-patch
+   @cd $(1) && \
+   $(KUSTOMIZE) edit $(2) patch --path patches/$(3) --kind 
Deployment --name camel-k-operator
+endef
+
+#
+# Macro for adding / removing the prometheus resources for monitoring
+#
+define add-remove-operator-monitoring
+   cd $(1) && \
+   $(KUSTOMIZE) edit $(2) resource ../prometheus
+endef
+
+.PHONY: have-platform check_admin setup-cluster .setup-kubernetes 
.setup-openshift setup
+
+#
+# Determine the platform of the cluster based on
+# either the use of querying through a go-client
+# or using an installed client, ie. oc or kubectl
+#
+find-platform:
+ifndef PLATFORM
+PLATFORM=$(shell script/check_platform.sh)
+endif
+
+#
+# Checks if the cluster platform has been defined correctly either by the user
+# or by the platform_check script.
+#
+have-platform: find-platform
+ifeq ($(PLATFORM),openshift)
+   @echo Platform identified as 'openshift'
+else ifeq ($(PLATFORM),kubernetes)
+   @echo Platform identified as 'kubernetes'
+else
+   @echo ""
+   @echo " ERROR: Cannot continue as cluster platform cannot be 
identified "
+   @echo ""
+   @exit 1
+endif
+
+#
+# Checks if the cluster user has the necessary privileges to be a cluster-admin
+# In this case if the user can list the CRDs then probably a cluster-admin
+#
+check-admin: kubectl
+   @output=$$(kubectl get crd 2>&1) || (echo "" &

[GitHub] [camel-quarkus] aldettinger opened a new pull request #2764: Camel quarkus 2652

2021-06-10 Thread GitBox


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


   


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

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




[GitHub] [camel-k] astefanutti commented on a change in pull request #2284: Creates alternative kustomize installer for installation of the camel-k operator

2021-06-10 Thread GitBox


astefanutti commented on a change in pull request #2284:
URL: https://github.com/apache/camel-k/pull/2284#discussion_r649197433



##
File path: config/manifests/bases/camel-k.clusterserviceversion.yaml
##
@@ -151,6 +151,7 @@ spec:
   minKubeVersion: 1.11.0
   provider:
 name: The Apache Software Foundation
+  replaces: camel-k-operator.v1.4.0

Review comment:
   This is the base CSV, and is only used to generate the local OLM bundle. 
It serves as the base for downstream versions, like 
https://github.com/operator-framework/community-operators and product versions, 
that have their own lineage. And that prevents developers from testing the 
local OLM bundle: 
https://github.com/apache/camel-k/issues/1923#issuecomment-763448469.
   
   So based on this, I'd be inclined to leave it unset, and let downstream 
bundles add 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.

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




[camel] branch regen_bot updated (1b76801 -> 602aacd)

2021-06-10 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 1b76801  Sync deps and regen
 add 602aacd  More osgi fixes

No new revisions were added by this update.

Summary of changes:
 .../apache/camel/opentelemetry/propagators/OpenTelemetrySetter.java   | 4 +---
 docs/user-manual/modules/ROOT/pages/camel-3x-upgrade-guide-3_11.adoc  | 3 +++
 2 files changed, 4 insertions(+), 3 deletions(-)


[camel] branch regen_bot updated (602aacd -> 1b76801)

2021-06-10 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 602aacd  More osgi fixes

This update removed existing revisions from the reference, leaving the
reference pointing at a previous point in the repository history.

 * -- * -- N   refs/heads/regen_bot (1b76801)
\
 O -- O -- O   (602aacd)

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:
 .../apache/camel/opentelemetry/propagators/OpenTelemetrySetter.java   | 4 +++-
 docs/user-manual/modules/ROOT/pages/camel-3x-upgrade-guide-3_11.adoc  | 3 ---
 2 files changed, 3 insertions(+), 4 deletions(-)


[GitHub] [camel-k] astefanutti commented on a change in pull request #2284: Creates alternative kustomize installer for installation of the camel-k operator

2021-06-10 Thread GitBox


astefanutti commented on a change in pull request #2284:
URL: https://github.com/apache/camel-k/pull/2284#discussion_r649187560



##
File path: e2e/common/kustomize/operator_test.go
##
@@ -0,0 +1,89 @@
+// +build integration
+
+// To enable compilation of this file in Goland, go to "Settings -> Go -> 
Vendoring & Build Tags -> Custom Tags" and add "integration"
+
+/*
+Licensed to the Apache Software Foundation (ASF) under one or more
+contributor license agreements.  See the NOTICE file distributed with
+this work for additional information regarding copyright ownership.
+The ASF licenses this file to You under the Apache License, Version 2.0
+(the "License"); you may not use this file except in compliance with
+the License.  You may obtain a copy of the License at
+
+   http://www.apache.org/licenses/LICENSE-2.0
+
+Unless required by applicable law or agreed to in writing, software
+distributed under the License is distributed on an "AS IS" BASIS,
+WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+See the License for the specific language governing permissions and
+limitations under the License.
+*/
+
+package kustomize
+
+import (
+   "fmt"
+   "testing"
+
+   . "github.com/apache/camel-k/e2e/support"
+   . "github.com/onsi/gomega"
+)
+
+func TestBasicOperator(t *testing.T) {
+   defer Uninstall()
+
+   WithNewTestNamespace(t, func(ns string) {
+   ExecMake(t, Make("setup-cluster", fmt.Sprintf("NAMESPACE=%s", 
ns)))

Review comment:
   > That is true, although whenever kamel install is called the 
cluster-setup functions are always carried out. kamel install --cluster-setup 
just aborts the camel-k install once the cluster resources have been applied. 
Thus, the e2e tests are in fact doing the job twice (once in the github action 
and the other in the code). I found this when executing the e2e tests locally 
on my own openshift cluster.
   
   Right. I didn't pay attention to it, indeed, CRDs existence is checked every 
time... Yet, we may have the occasion to simplify things.
   
   > This needs more thought from the perspective of RBAC. The kind cluster has 
no concern for user privilege (the e2e tests use the default admin? user) and 
so executing all commands is not a problem.
   
   Right. This is actually the major reason we maintain the execution of the 
test suite in the OpenShift 3.x workflow.
   
   So my opinion for _Kustomize_ installation is that we should be biased for 
simplicity, rather than trying to cover all the cases, or duplicate existing 
approaches. As the operator model matures, there is an inclination to deploy a 
single operator instance, cluster-wide, (hence) by administrators. I think, the 
time when a _standard_ users, with only admin role on her/his namespace project 
will be gone, if it has ever be a thing. Developers that install an operator 
either use clusters like KinD, with no RBAC, or own the cluster, making them 
de-facto cluster admins. So I'd be inclined to drop support for low-privilege 
install, given the complexity it introduces, and for no real usage 
realistically.




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

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




[camel] branch regen_bot updated (99f4a0d -> 602aacd)

2021-06-10 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 99f4a0d  Regen for commit c56bdccede80c15d16f0ebfd6118a88356b91459
 add 3d8f0f3  Upgrade Mockito to version 3.11.0
 add 1b76801  Sync deps and regen
 add 602aacd  More osgi fixes

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   (99f4a0d)
\
 N -- N -- N   refs/heads/regen_bot (602aacd)

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

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

No new revisions were added by this update.

Summary of changes:
 camel-dependencies/pom.xml| 2 +-
 .../apache/camel/opentelemetry/propagators/OpenTelemetrySetter.java   | 4 +---
 docs/user-manual/modules/ROOT/pages/camel-3x-upgrade-guide-3_11.adoc  | 3 +++
 parent/pom.xml| 2 +-
 4 files changed, 6 insertions(+), 5 deletions(-)


[GitHub] [camel-kamelets] oscerd opened a new pull request #351: Has Header Filter Example Field

2021-06-10 Thread GitBox


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


   


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

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




[GitHub] [camel-kamelets] oscerd merged pull request #351: Has Header Filter Example Field

2021-06-10 Thread GitBox


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


   


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

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




[camel-kamelets] 02/02: Added Example to has header Kamelet Filter Action

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

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

commit 7572fd1f74078fff7924e153f608804968d7fe7a
Author: Andrea Cosentino 
AuthorDate: Thu Jun 10 15:29:23 2021 +0200

Added Example to has header Kamelet Filter Action
---
 .../src/main/resources/kamelets/has-header-filter-action.kamelet.yaml| 1 +
 1 file changed, 1 insertion(+)

diff --git 
a/library/camel-kamelets-catalog/src/main/resources/kamelets/has-header-filter-action.kamelet.yaml
 
b/library/camel-kamelets-catalog/src/main/resources/kamelets/has-header-filter-action.kamelet.yaml
index a5b4121..918bbe1 100644
--- 
a/library/camel-kamelets-catalog/src/main/resources/kamelets/has-header-filter-action.kamelet.yaml
+++ 
b/library/camel-kamelets-catalog/src/main/resources/kamelets/has-header-filter-action.kamelet.yaml
@@ -21,6 +21,7 @@ spec:
 title: Header Name
 description: The header name to evaluate
 type: string
+example: headerName
 type: object
   dependencies:
   - "camel:core"


[camel-kamelets] branch main updated (d7ea3b2 -> 7572fd1)

2021-06-10 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 d7ea3b2  Header Matches Filter Action Kamelet
 new 33c2263  Added Example to has header Kamelet Filter Action
 new 7572fd1  Added Example to has header Kamelet Filter Action

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:
 has-header-filter-action.kamelet.yaml| 1 +
 .../src/main/resources/kamelets/has-header-filter-action.kamelet.yaml| 1 +
 2 files changed, 2 insertions(+)


[camel-kamelets] 01/02: Added Example to has header Kamelet Filter Action

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

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

commit 33c22631d62bb5d23f122780d1e2078ba0c79738
Author: Andrea Cosentino 
AuthorDate: Thu Jun 10 15:28:26 2021 +0200

Added Example to has header Kamelet Filter Action
---
 has-header-filter-action.kamelet.yaml | 1 +
 1 file changed, 1 insertion(+)

diff --git a/has-header-filter-action.kamelet.yaml 
b/has-header-filter-action.kamelet.yaml
index a5b4121..918bbe1 100644
--- a/has-header-filter-action.kamelet.yaml
+++ b/has-header-filter-action.kamelet.yaml
@@ -21,6 +21,7 @@ spec:
 title: Header Name
 description: The header name to evaluate
 type: string
+example: headerName
 type: object
   dependencies:
   - "camel:core"


[camel-kamelets] 02/02: Added Example to has header Kamelet Filter Action

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

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

commit 039a28b27e4b390875262e4ff6dc00c74fc109ff
Author: Andrea Cosentino 
AuthorDate: Thu Jun 10 15:29:23 2021 +0200

Added Example to has header Kamelet Filter Action
---
 .../src/main/resources/kamelets/has-header-filter-action.kamelet.yaml| 1 +
 1 file changed, 1 insertion(+)

diff --git 
a/library/camel-kamelets-catalog/src/main/resources/kamelets/has-header-filter-action.kamelet.yaml
 
b/library/camel-kamelets-catalog/src/main/resources/kamelets/has-header-filter-action.kamelet.yaml
index a5b4121..918bbe1 100644
--- 
a/library/camel-kamelets-catalog/src/main/resources/kamelets/has-header-filter-action.kamelet.yaml
+++ 
b/library/camel-kamelets-catalog/src/main/resources/kamelets/has-header-filter-action.kamelet.yaml
@@ -21,6 +21,7 @@ spec:
 title: Header Name
 description: The header name to evaluate
 type: string
+example: headerName
 type: object
   dependencies:
   - "camel:core"


[camel-kamelets] 01/02: Added Example to has header Kamelet Filter Action

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

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

commit 360cd7316bb8d5bf7b1df5782c546ee0e3bdcf31
Author: Andrea Cosentino 
AuthorDate: Thu Jun 10 15:28:26 2021 +0200

Added Example to has header Kamelet Filter Action
---
 has-header-filter-action.kamelet.yaml | 1 +
 1 file changed, 1 insertion(+)

diff --git a/has-header-filter-action.kamelet.yaml 
b/has-header-filter-action.kamelet.yaml
index a5b4121..918bbe1 100644
--- a/has-header-filter-action.kamelet.yaml
+++ b/has-header-filter-action.kamelet.yaml
@@ -21,6 +21,7 @@ spec:
 title: Header Name
 description: The header name to evaluate
 type: string
+example: headerName
 type: object
   dependencies:
   - "camel:core"


[camel-kamelets] branch fixed-example-field created (now 039a28b)

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

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


  at 039a28b  Added Example to has header Kamelet Filter Action

This branch includes the following new commits:

 new 360cd73  Added Example to has header Kamelet Filter Action
 new 039a28b  Added Example to has header Kamelet Filter Action

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.



[GitHub] [camel-quarkus] ffang commented on pull request #2747: fix hazelcast integration-test failed in native mode(On Mac) #2719

2021-06-10 Thread GitBox


ffang commented on pull request #2747:
URL: https://github.com/apache/camel-quarkus/pull/2747#issuecomment-858623803


   Thanks @zbendhiba @jamesnetherton @ppalaga for the input!
   
   I agree that we probably shouldn't put effort to support native build on mac 
or windows, very clear that nobody would use non-linux platform in production. 
Just from a developer on mac POV, I'd like to have a green native build on mac. 
So IMO, whatever the ways(DisableTests, properties configurations to 
hack/workaround, but not a real support in production, probably we can document 
this point) we can make a green build on mac, that would be a great experience 
for community developers/users on Mac.
   
   Just my 2 cents
   Freeman


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

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




[GitHub] [camel-quarkus] jamesnetherton commented on issue #2761: camel.main.dump-routes = true does not work

2021-06-10 Thread GitBox


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


   This can eventually be fixed by the work done for 
https://github.com/apache/camel-quarkus/issues/2752.
   
   Something I noticed about `JaxbHelper` is that it does this:
   
   
https://github.com/apache/camel/blob/02e553d77ff0b4dcbb9e674feddb8dcabf4e463e/core/camel-xml-jaxb/src/main/java/org/apache/camel/xml/jaxb/JaxbHelper.java#L108
   
   Meaning `XmlConverter` is instantiated reflectively. Can we avoid that?


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

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




[GitHub] [camel-quarkus] ffang commented on pull request #2739: Fix JSON Jackson jacksonConversionPojo test #2726

2021-06-10 Thread GitBox


ffang commented on pull request #2739:
URL: https://github.com/apache/camel-quarkus/pull/2739#issuecomment-858617818


   > The same kind of questions like @aldettinger asked came to my mind.
   > 
   > > > ```
   > > > 3. When testing scenarios involving globalOptions(), would it be 
better to have a new CamelContext for each subset of global options ? Maybe 
another itest project or something like a quarkus test profile ?
   > > > ```
   > > 
   > > 
   > > Definitely you are correct, a new camelcontext for each testcase should 
be more isolated and clear. but I don't know how to do it easily in 
camel-quarkus test framework. So feel free to shed light or even point me an 
existing example.
   > 
   > Yeah, having a separate itest module for each of the tested converter 
setups would probably be an overkill (although we have a couple of itest 
modules for e.g. camel-main). I wonder whether this is not a use case for a 
`io.quarkus.test.QuarkusUnitTest`. We have such tests e.g. in [Servlet 
extension](https://github.com/apache/camel-quarkus/tree/main/extensions/servlet/deployment/src/test/java/org/apache/camel/quarkus/component/servlet/test).
 A big advantage of those is that they are very lightweight and fast. You can 
have a special context setup per test class. But OTOH, they are executed only 
in JVM mode. So we maybe need to find a way how to keep a part of the scenario 
in a proper itest and move the rest to QuarkusUnitTest-style test.
   > 
   > I'd say if the second setup with 
`context.getGlobalOptions().put(JacksonConstants.TYPE_CONVERTER_MODULE_CLASS_NAMES,
 JaxbAnnotationModule.class.getName());` uncovered the need for the reflection 
registration, then that setup should stay ghere and be hardwired for the whole 
itest module. The first setup (without TYPE_CONVERTER_MODULE_CLASS_NAMES) could 
then be transformed to a separate `io.quarkus.test.QuarkusUnitTest`.
   > 
   > In that way we'd both have clean and readable tests without needing to 
configure the context in the middle of the flight and we still cover what we 
need in native mode. WDYT?
   
   Thanks @ppalaga for the input!
   
   I will take a close look at the tests used in servlet extension and see if 
we can split some of our testcases this way.
   
   Freeman


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

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




[camel-k-runtime] 02/07: Updated CHANGELOG.md

2021-06-10 Thread orpiske
This is an automated email from the ASF dual-hosted git repository.

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

commit 2fcb7d30d7759427494aa8d7573782a166ed2db9
Author: github-actions[bot] 
<41898282+github-actions[bot]@users.noreply.github.com>
AuthorDate: Tue May 25 03:41:28 2021 +

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

diff --git a/CHANGELOG.md b/CHANGELOG.md
index 947aeba..4128a1f 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -4,8 +4,22 @@
 
 [Full 
Changelog](https://github.com/apache/camel-k-runtime/compare/camel-k-runtime-project-1.7.0...HEAD)
 
+**Closed issues:**
+
+- Support for simple, linear integration definitions 
[\#659](https://github.com/apache/camel-k-runtime/issues/659)
+- Optional parameters in Kamelet route templates 
[\#631](https://github.com/apache/camel-k-runtime/issues/631)
+- Assess integration container resources layout changes impacts 
[\#614](https://github.com/apache/camel-k-runtime/issues/614)
+- Remove changelog gh action 
[\#582](https://github.com/apache/camel-k-runtime/issues/582)
+- yaml dsl: add support for component dsl 
[\#507](https://github.com/apache/camel-k-runtime/issues/507)
+- Add support for property mapping in Kamelets 
[\#495](https://github.com/apache/camel-k-runtime/issues/495)
+- yaml dsl: add json schema for endpoint-dsl 
[\#485](https://github.com/apache/camel-k-runtime/issues/485)
+- Include description for elements in Yaml schema 
[\#386](https://github.com/apache/camel-k-runtime/issues/386)
+
 **Merged pull requests:**
 
+- build\(deps\): bump maven-javadoc-plugin from 3.2.0 to 3.3.0 
[\#680](https://github.com/apache/camel-k-runtime/pull/680) 
([dependabot[bot]](https://github.com/apps/dependabot))
+- GH action fixes [\#674](https://github.com/apache/camel-k-runtime/pull/674) 
([orpiske](https://github.com/orpiske))
+- Enable GH actions on camel-main branch 
[\#671](https://github.com/apache/camel-k-runtime/pull/671) 
([orpiske](https://github.com/orpiske))
 - build\(deps\): bump spock-core from 2.0-M5-groovy-3.0 to 2.0-groovy-3.0 
[\#668](https://github.com/apache/camel-k-runtime/pull/668) 
([dependabot[bot]](https://github.com/apps/dependabot))
 - build\(deps\): bump maven-gpg-plugin from 1.6 to 3.0.1 
[\#666](https://github.com/apache/camel-k-runtime/pull/666) 
([dependabot[bot]](https://github.com/apps/dependabot))
 - build\(deps\): bump maven-plugin-annotations from 3.6.0 to 3.6.1 
[\#665](https://github.com/apache/camel-k-runtime/pull/665) 
([dependabot[bot]](https://github.com/apps/dependabot))


[camel-k-runtime] 07/07: Updated CHANGELOG.md

2021-06-10 Thread orpiske
This is an automated email from the ASF dual-hosted git repository.

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

commit 88c91bed9a39f4defaeb54b1ed13664e8745c4be
Author: github-actions[bot] 
<41898282+github-actions[bot]@users.noreply.github.com>
AuthorDate: Wed Jun 9 03:17:26 2021 +

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

diff --git a/CHANGELOG.md b/CHANGELOG.md
index e2cbf8b..7d54e7f 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -20,6 +20,7 @@
 
 **Merged pull requests:**
 
+- Remove preview flag from YAML docs 
[\#710](https://github.com/apache/camel-k-runtime/pull/710) 
([heiko-braun](https://github.com/heiko-braun))
 - build\(deps\): bump maven-javadoc-plugin from 3.2.0 to 3.3.0 
[\#680](https://github.com/apache/camel-k-runtime/pull/680) 
([dependabot[bot]](https://github.com/apps/dependabot))
 - GH action fixes [\#674](https://github.com/apache/camel-k-runtime/pull/674) 
([orpiske](https://github.com/orpiske))
 - Enable GH actions on camel-main branch 
[\#671](https://github.com/apache/camel-k-runtime/pull/671) 
([orpiske](https://github.com/orpiske))


[camel-k-runtime] 05/07: Updated CHANGELOG.md

2021-06-10 Thread orpiske
This is an automated email from the ASF dual-hosted git repository.

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

commit 45dfc6c813b033f152b20cc2eeb9046f2e4911d1
Author: github-actions[bot] 
<41898282+github-actions[bot]@users.noreply.github.com>
AuthorDate: Tue Jun 8 03:27:41 2021 +

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

diff --git a/CHANGELOG.md b/CHANGELOG.md
index 095924a..e2cbf8b 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -6,6 +6,7 @@
 
 **Closed issues:**
 
+- Flaky test: KnativeEnvFromRegistryTest 
[\#704](https://github.com/apache/camel-k-runtime/issues/704)
 - Re-enable YamlSourceLoaderTest 
[\#687](https://github.com/apache/camel-k-runtime/issues/687)
 - Support for simple, linear integration definitions 
[\#659](https://github.com/apache/camel-k-runtime/issues/659)
 - Optional parameters in Kamelet route templates 
[\#631](https://github.com/apache/camel-k-runtime/issues/631)


[camel-k-runtime] 04/07: Updated CHANGELOG.md

2021-06-10 Thread orpiske
This is an automated email from the ASF dual-hosted git repository.

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

commit f99a126cdf0276d9749b8cf30ebb26fd69a96412
Author: github-actions[bot] 
<41898282+github-actions[bot]@users.noreply.github.com>
AuthorDate: Fri Jun 4 04:37:44 2021 +

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

diff --git a/CHANGELOG.md b/CHANGELOG.md
index 67617eb..095924a 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -9,6 +9,7 @@
 - Re-enable YamlSourceLoaderTest 
[\#687](https://github.com/apache/camel-k-runtime/issues/687)
 - Support for simple, linear integration definitions 
[\#659](https://github.com/apache/camel-k-runtime/issues/659)
 - Optional parameters in Kamelet route templates 
[\#631](https://github.com/apache/camel-k-runtime/issues/631)
+- Duplicated loadUserProperties\(\) method call 
[\#625](https://github.com/apache/camel-k-runtime/issues/625)
 - Assess integration container resources layout changes impacts 
[\#614](https://github.com/apache/camel-k-runtime/issues/614)
 - Remove changelog gh action 
[\#582](https://github.com/apache/camel-k-runtime/issues/582)
 - yaml dsl: add support for component dsl 
[\#507](https://github.com/apache/camel-k-runtime/issues/507)


[camel-k-runtime] 01/07: build(deps): bump maven-javadoc-plugin from 3.2.0 to 3.3.0

2021-06-10 Thread orpiske
This is an automated email from the ASF dual-hosted git repository.

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

commit e32aca85762723ce8ee85335485a31559cc21395
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
AuthorDate: Mon May 24 19:03:06 2021 +

build(deps): bump maven-javadoc-plugin from 3.2.0 to 3.3.0

Bumps 
[maven-javadoc-plugin](https://github.com/apache/maven-javadoc-plugin) from 
3.2.0 to 3.3.0.
- [Release notes](https://github.com/apache/maven-javadoc-plugin/releases)
- 
[Commits](https://github.com/apache/maven-javadoc-plugin/compare/maven-javadoc-plugin-3.2.0...maven-javadoc-plugin-3.3.0)

Signed-off-by: dependabot[bot] 
---
 pom.xml | 2 +-
 support/camel-k-runtime-bom/pom.xml | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/pom.xml b/pom.xml
index 760217e..c05adc2 100644
--- a/pom.xml
+++ b/pom.xml
@@ -69,7 +69,7 @@
 8.26
 3.0.1
 3.0.0-M1
-3.2.0
+3.3.0
 3.2.1
 3.3.0
 1.0.8
diff --git a/support/camel-k-runtime-bom/pom.xml 
b/support/camel-k-runtime-bom/pom.xml
index d1edc5c..627773c 100644
--- a/support/camel-k-runtime-bom/pom.xml
+++ b/support/camel-k-runtime-bom/pom.xml
@@ -252,7 +252,7 @@
 
 org.apache.maven.plugins
 maven-javadoc-plugin
-3.2.0
+3.3.0
 
 
 attach-javadocs


[GitHub] [camel-k-runtime] orpiske merged pull request #712: Rebase camel-main on main

2021-06-10 Thread GitBox


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


   


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

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




[camel-k-runtime] branch camel-main updated (fdee446 -> 88c91be)

2021-06-10 Thread orpiske
This is an automated email from the ASF dual-hosted git repository.

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


from fdee446  deps: update to camel-quarkus 2.0.0-SNAPSHOT as required for 
yaml dsl
 new e32aca8  build(deps): bump maven-javadoc-plugin from 3.2.0 to 3.3.0
 new 2fcb7d3  Updated CHANGELOG.md
 new ff589c6  Updated CHANGELOG.md
 new f99a126  Updated CHANGELOG.md
 new 45dfc6c  Updated CHANGELOG.md
 new 8121f4e  Remove preview flag from YAML docs
 new 88c91be  Updated CHANGELOG.md

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


Summary of changes:
 CHANGELOG.md   | 18 ++
 docs/modules/languages/pages/yaml.adoc |  5 -
 pom.xml|  2 +-
 support/camel-k-runtime-bom/pom.xml|  2 +-
 4 files changed, 20 insertions(+), 7 deletions(-)


[camel-k-runtime] 06/07: Remove preview flag from YAML docs

2021-06-10 Thread orpiske
This is an automated email from the ASF dual-hosted git repository.

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

commit 8121f4e314b76714d29bbb95915fb2d8d44e38c1
Author: Heiko Braun 
AuthorDate: Tue Jun 8 09:27:43 2021 +0200

Remove preview flag from YAML docs
---
 docs/modules/languages/pages/yaml.adoc | 5 -
 1 file changed, 5 deletions(-)

diff --git a/docs/modules/languages/pages/yaml.adoc 
b/docs/modules/languages/pages/yaml.adoc
index e0bc16c..3dc6be5 100644
--- a/docs/modules/languages/pages/yaml.adoc
+++ b/docs/modules/languages/pages/yaml.adoc
@@ -1,10 +1,5 @@
 = Writing Integrations in YAML
 
-[WARNING]
-
-The YAML DSL is current in preview support level.
-
-
 == Defining a route
 
 A route is collection of elements defined as follows:


[camel-k-runtime] 03/07: Updated CHANGELOG.md

2021-06-10 Thread orpiske
This is an automated email from the ASF dual-hosted git repository.

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

commit ff589c65c6b8f2ce310c493ad133a38bc6c1c6de
Author: github-actions[bot] 
<41898282+github-actions[bot]@users.noreply.github.com>
AuthorDate: Wed May 26 04:08:27 2021 +

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

diff --git a/CHANGELOG.md b/CHANGELOG.md
index 4128a1f..67617eb 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -6,6 +6,7 @@
 
 **Closed issues:**
 
+- Re-enable YamlSourceLoaderTest 
[\#687](https://github.com/apache/camel-k-runtime/issues/687)
 - Support for simple, linear integration definitions 
[\#659](https://github.com/apache/camel-k-runtime/issues/659)
 - Optional parameters in Kamelet route templates 
[\#631](https://github.com/apache/camel-k-runtime/issues/631)
 - Assess integration container resources layout changes impacts 
[\#614](https://github.com/apache/camel-k-runtime/issues/614)


[GitHub] [camel-k] astefanutti commented on a change in pull request #2284: Creates alternative kustomize installer for installation of the camel-k operator

2021-06-10 Thread GitBox


astefanutti commented on a change in pull request #2284:
URL: https://github.com/apache/camel-k/pull/2284#discussion_r649166320



##
File path: config/Makefile
##
@@ -0,0 +1,376 @@
+# 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.
+
+#
+# Allows for resources to be loaded from outside the root location of
+# the kustomize config file. Ensures that resource don't need to be
+# copied around the file system.
+#
+# See https://kubectl.docs.kubernetes.io/faq/kustomize
+#
+KOPTIONS := --load-restrictor LoadRestrictionsNone
+
+#
+# Include the main camel-k Makefile containing
+# basic common recipes like kustomize and vars
+# like VERSION
+#
+include script/Makefile
+
+#
+# Vars that can be overridden by external env vars
+#
+DEBUG ?= false

Review comment:
   I'm suggesting `DRY_RUN` because `--dry-run` is the usual option from 
`kubectl` commands for that same use case. So I find it more meaningful to 
Kubernetes users than `DEBUG`.




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

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




[GitHub] [camel-k] astefanutti commented on a change in pull request #2284: Creates alternative kustomize installer for installation of the camel-k operator

2021-06-10 Thread GitBox


astefanutti commented on a change in pull request #2284:
URL: https://github.com/apache/camel-k/pull/2284#discussion_r649166320



##
File path: config/Makefile
##
@@ -0,0 +1,376 @@
+# 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.
+
+#
+# Allows for resources to be loaded from outside the root location of
+# the kustomize config file. Ensures that resource don't need to be
+# copied around the file system.
+#
+# See https://kubectl.docs.kubernetes.io/faq/kustomize
+#
+KOPTIONS := --load-restrictor LoadRestrictionsNone
+
+#
+# Include the main camel-k Makefile containing
+# basic common recipes like kustomize and vars
+# like VERSION
+#
+include script/Makefile
+
+#
+# Vars that can be overridden by external env vars
+#
+DEBUG ?= false

Review comment:
   I'm suggesting `DRY_RUN` because `--dry-run` is the usual option from 
`kubectl` commands in that precise case. So I find it more meaningful to 
Kubernetes users than `DEBUG`.




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

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




[GitHub] [camel-k] astefanutti commented on a change in pull request #2284: Creates alternative kustomize installer for installation of the camel-k operator

2021-06-10 Thread GitBox


astefanutti commented on a change in pull request #2284:
URL: https://github.com/apache/camel-k/pull/2284#discussion_r649163726



##
File path: config/rbac/kubernetes/operator-role-binding-events.yaml
##
@@ -21,6 +21,8 @@ metadata:
   name: camel-k-operator-events
   labels:
 app: "camel-k"
+  annotations:
+can-promote: "true"

Review comment:
   My point here was more, what Roles and RoleBindings are not promoted?




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

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




[GitHub] [camel-k] astefanutti commented on a change in pull request #2284: Creates alternative kustomize installer for installation of the camel-k operator

2021-06-10 Thread GitBox


astefanutti commented on a change in pull request #2284:
URL: https://github.com/apache/camel-k/pull/2284#discussion_r649161733



##
File path: config/rbac/kubernetes/kustomization.yaml
##
@@ -15,22 +15,26 @@
 # limitations under the License.
 # ---
 
+#
+# rbac resources applicable for all kubernetes platforms
+#
+apiVersion: kustomize.config.k8s.io/v1beta1
+kind: Kustomization
+
 resources:
+- user-global-kamelet-viewer-role.yaml

Review comment:
   Yes, I'd propose to move these resources out of the `config` directory. 
I find it confusing to mix operator resources and operand resources. I'd 
propose to move them into the `deploy` directory, and rename this directory to 
`resources`, to avoid confusing people that this contains deployment resources.




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

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




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

2021-06-10 Thread GitBox


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


   


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

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




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

2021-06-10 Thread GitBox


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


   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.

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




[camel] branch regen_bot updated (52a1aac -> 99f4a0d)

2021-06-10 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 52a1aac  Regen for commit df94de8604fef681cb4337eaf12aece6d2672e72
 add cf93601  Upgrade Optaplanner to version 8.7.0.Final
 add fcf3c91  Sync deps and regen
 add c56bdcc  Regen and sync
 add 99f4a0d  Regen for commit c56bdccede80c15d16f0ebfd6118a88356b91459

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   (52a1aac)
\
 N -- N -- N   refs/heads/regen_bot (99f4a0d)

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

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

No new revisions were added by this update.

Summary of changes:
 camel-dependencies/pom.xml | 2 +-
 parent/pom.xml | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)


[camel-quarkus] annotated tag 2.0.0-M2 created (now 8eda8d4)

2021-06-10 Thread ppalaga
This is an automated email from the ASF dual-hosted git repository.

ppalaga pushed a change to annotated tag 2.0.0-M2
in repository https://gitbox.apache.org/repos/asf/camel-quarkus.git.


  at 8eda8d4  (tag)
 tagging ed530e464c0e3d9a30959d2d033c9bb7d7d6b9f5 (commit)
 replaces 1.0.0-CR3
  by Peter Palaga
  on Thu Jun 10 14:58:54 2021 +0200

- Log -
[maven-release-plugin] copy for tag 2.0.0-M2
---

No new revisions were added by this update.


[GitHub] [camel-k] astefanutti commented on a change in pull request #2284: Creates alternative kustomize installer for installation of the camel-k operator

2021-06-10 Thread GitBox


astefanutti commented on a change in pull request #2284:
URL: https://github.com/apache/camel-k/pull/2284#discussion_r649157720



##
File path: config/infrastructure/rbac/kubernetes/builder-role-kubernetes.yaml
##
@@ -18,7 +18,7 @@
 kind: Role
 apiVersion: rbac.authorization.k8s.io/v1
 metadata:
-  name: camel-k-builder
+  name: camel-k-builder-kubernetes

Review comment:
   I see, I agree the _additive_ approach should be preferred in general. 
Then, I think we should take this opportunity to remove duplication, like 
between `camel-k-builder-kubernetes` and `camel-k-builder-openshift` Roles.




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

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




[camel-quarkus] branch release/2.0.0-M2 created (now ed530e4)

2021-06-10 Thread ppalaga
This is an automated email from the ASF dual-hosted git repository.

ppalaga pushed a change to branch release/2.0.0-M2
in repository https://gitbox.apache.org/repos/asf/camel-quarkus.git.


  at ed530e4  [maven-release-plugin] prepare release 2.0.0-M2

This branch includes the following new commits:

 new ed530e4  [maven-release-plugin] prepare release 2.0.0-M2

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



[GitHub] [camel-k] astefanutti commented on a change in pull request #2284: Creates alternative kustomize installer for installation of the camel-k operator

2021-06-10 Thread GitBox


astefanutti commented on a change in pull request #2284:
URL: https://github.com/apache/camel-k/pull/2284#discussion_r647285485



##
File path: config/infrastructure/rbac/kubernetes/builder-role-kubernetes.yaml
##
@@ -18,7 +18,7 @@
 kind: Role
 apiVersion: rbac.authorization.k8s.io/v1
 metadata:
-  name: camel-k-builder
+  name: camel-k-builder-kubernetes

Review comment:
   Is this really required, to have different names? Ultimately, only one 
will be applied.




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

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




[GitHub] [camel-k] astefanutti commented on a change in pull request #2284: Creates alternative kustomize installer for installation of the camel-k operator

2021-06-10 Thread GitBox


astefanutti commented on a change in pull request #2284:
URL: https://github.com/apache/camel-k/pull/2284#discussion_r649156157



##
File path: .github/workflows/builder.yml
##
@@ -32,12 +32,6 @@ on:
 branches:
   - main
   - "release-*"
-paths-ignore:

Review comment:
   I see, still that must be reverted at some point. Another option is to 
create a PR in your repository.




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

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




[GitHub] [camel-k] astefanutti commented on a change in pull request #2284: Creates alternative kustomize installer for installation of the camel-k operator

2021-06-10 Thread GitBox


astefanutti commented on a change in pull request #2284:
URL: https://github.com/apache/camel-k/pull/2284#discussion_r649155478



##
File path: e2e/builder/build_test.go
##
@@ -40,7 +40,7 @@ func TestKitKnativeFullBuild(t *testing.T) {
 
 func doKitFullBuild(t *testing.T, name string, dependencies ...string) {
WithNewTestNamespace(t, func(ns string) {
-   Expect(Kamel("install", "-n", ns).Execute()).To(Succeed())
+   Expect(Kamel("install", "-n", ns, 
"--olm=false").Execute()).To(Succeed())

Review comment:
   Yes, testing local version is cumbersome, but picking a single test 
doesn't seem like a robust solution. I think an environment variable may be 
used in that case. Also downstream execution of the test suite may make the 
assumption that the installation mode is consistent across the entire test 
suite.




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

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




[GitHub] [camel-k] astefanutti commented on a change in pull request #2284: Creates alternative kustomize installer for installation of the camel-k operator

2021-06-10 Thread GitBox


astefanutti commented on a change in pull request #2284:
URL: https://github.com/apache/camel-k/pull/2284#discussion_r649152493



##
File path: 
config/infrastructure/rbac/kubernetes/builder-role-binding-kubernetes.yaml
##
@@ -0,0 +1,30 @@
+# ---
+# 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.
+# ---
+
+kind: RoleBinding
+apiVersion: rbac.authorization.k8s.io/v1
+metadata:
+  name: camel-k-builder-kubernetes
+  labels:

Review comment:
   For the suffixing, I agree we should avoid duplication as much as 
possible. From what I see, it seems `camel-k-builder-kubernetes` and 
`camel-k-builder-openshift` Roles have duplicated rules, while being suffixed.




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

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




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

2021-06-10 Thread GitBox


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


   


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

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




[GitHub] [camel-k] astefanutti commented on a change in pull request #2284: Creates alternative kustomize installer for installation of the camel-k operator

2021-06-10 Thread GitBox


astefanutti commented on a change in pull request #2284:
URL: https://github.com/apache/camel-k/pull/2284#discussion_r649150665



##
File path: 
config/infrastructure/rbac/kubernetes/builder-role-binding-kubernetes.yaml
##
@@ -0,0 +1,30 @@
+# ---
+# 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.
+# ---
+
+kind: RoleBinding
+apiVersion: rbac.authorization.k8s.io/v1
+metadata:
+  name: camel-k-builder-kubernetes
+  labels:

Review comment:
   My comment here was about labels, and was proposing to use 
`commonLabels` instead of duplicating labels in resources, which can be 
error-prone.




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

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




[camel] branch regen_bot updated (ea943a4 -> 52a1aac)

2021-06-10 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 ea943a4  Regen for commit d23fc91394f6c2dc0b1f6b0f96397ecb53753e52
 add f10060a  CAMEL-16381: Move osgi dependencies to camel-karaf
 add df94de8  Regen
 add 52a1aac  Regen for commit df94de8604fef681cb4337eaf12aece6d2672e72

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   (ea943a4)
\
 N -- N -- N   refs/heads/regen_bot (52a1aac)

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

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

No new revisions were added by this update.

Summary of changes:
 camel-dependencies/pom.xml |  6 --
 parent/pom.xml | 13 -
 2 files changed, 19 deletions(-)


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

2021-06-10 Thread GitBox


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


   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.

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




[camel] 07/08: Sync deps and regen

2021-06-10 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

commit 1b7680106de16b4745db9534669b909f662d69a7
Author: Andrea Cosentino 
AuthorDate: Thu Jun 10 14:29:45 2021 +0200

Sync deps and regen
---
 camel-dependencies/pom.xml  | 2 +-
 .../dsl/yaml/deserializers/EndpointProducerDeserializersResolver.java   | 2 ++
 2 files changed, 3 insertions(+), 1 deletion(-)

diff --git a/camel-dependencies/pom.xml b/camel-dependencies/pom.xml
index c0c1a0a..5da3f34 100644
--- a/camel-dependencies/pom.xml
+++ b/camel-dependencies/pom.xml
@@ -414,7 +414,7 @@
 0.9.5
 8.2.1
 1.9
-3.10.0
+3.11.0
 0.1.8
 1.5.0
 4.1.0
diff --git 
a/dsl/camel-yaml-dsl/camel-yaml-dsl-deserializers/src/generated/java/org/apache/camel/dsl/yaml/deserializers/EndpointProducerDeserializersResolver.java
 
b/dsl/camel-yaml-dsl/camel-yaml-dsl-deserializers/src/generated/java/org/apache/camel/dsl/yaml/deserializers/EndpointProducerDeserializersResolver.java
index 088ed2c..fbd0abb 100644
--- 
a/dsl/camel-yaml-dsl/camel-yaml-dsl-deserializers/src/generated/java/org/apache/camel/dsl/yaml/deserializers/EndpointProducerDeserializersResolver.java
+++ 
b/dsl/camel-yaml-dsl/camel-yaml-dsl-deserializers/src/generated/java/org/apache/camel/dsl/yaml/deserializers/EndpointProducerDeserializersResolver.java
@@ -149,6 +149,8 @@ public final class EndpointProducerDeserializersResolver 
implements YamlDeserial
 case "hdfs":
 case "http":
 case "https":
+case "hwcloud-functiongraph":
+case "hwcloud-smn":
 case "iec60870-client":
 case "iec60870-server":
 case "ignite-cache":


[camel] 08/08: More osgi fixes

2021-06-10 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

commit 602aacdcf1db8e12cd021bbe562b3ebff220787b
Author: Claus Ibsen 
AuthorDate: Thu Jun 10 14:34:31 2021 +0200

More osgi fixes
---
 .../apache/camel/opentelemetry/propagators/OpenTelemetrySetter.java   | 4 +---
 docs/user-manual/modules/ROOT/pages/camel-3x-upgrade-guide-3_11.adoc  | 3 +++
 2 files changed, 4 insertions(+), 3 deletions(-)

diff --git 
a/components/camel-opentelemetry/src/main/java/org/apache/camel/opentelemetry/propagators/OpenTelemetrySetter.java
 
b/components/camel-opentelemetry/src/main/java/org/apache/camel/opentelemetry/propagators/OpenTelemetrySetter.java
index fe56dc4..78c58bd 100644
--- 
a/components/camel-opentelemetry/src/main/java/org/apache/camel/opentelemetry/propagators/OpenTelemetrySetter.java
+++ 
b/components/camel-opentelemetry/src/main/java/org/apache/camel/opentelemetry/propagators/OpenTelemetrySetter.java
@@ -16,14 +16,12 @@
  */
 package org.apache.camel.opentelemetry.propagators;
 
-import javax.annotation.Nullable;
-
 import io.opentelemetry.context.propagation.TextMapSetter;
 import org.apache.camel.tracing.InjectAdapter;
 
 public class OpenTelemetrySetter implements TextMapSetter {
 @Override
-public void set(@Nullable InjectAdapter adapter, String key, String value) 
{
+public void set(InjectAdapter adapter, String key, String value) {
 adapter.put(key, value);
 }
 }
diff --git 
a/docs/user-manual/modules/ROOT/pages/camel-3x-upgrade-guide-3_11.adoc 
b/docs/user-manual/modules/ROOT/pages/camel-3x-upgrade-guide-3_11.adoc
index 826b596..bf30a07 100644
--- a/docs/user-manual/modules/ROOT/pages/camel-3x-upgrade-guide-3_11.adoc
+++ b/docs/user-manual/modules/ROOT/pages/camel-3x-upgrade-guide-3_11.adoc
@@ -77,3 +77,6 @@ Therefore those configurations has renamed their 
configuration keys:
 | camel.cloud.consul.service-registry | camel.cloud.consul
 |
 
+=== Apache Karaf
+
+The `camel-grpc` feature has been removed.
\ No newline at end of file


[camel] 06/08: Upgrade Mockito to version 3.11.0

2021-06-10 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

commit 3d8f0f3c9f1afae7d4425387ab13753bcdcd8691
Author: Andrea Cosentino 
AuthorDate: Thu Jun 10 14:09:28 2021 +0200

Upgrade Mockito to version 3.11.0
---
 parent/pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/parent/pom.xml b/parent/pom.xml
index 8a3194a..3ae469c 100644
--- a/parent/pom.xml
+++ b/parent/pom.xml
@@ -400,7 +400,7 @@
 8.2.1
 1.9
 0.1.8
-3.10.0
+3.11.0
 4.1.0
 1.5.0
 2013.6.1


  1   2   >