Re: [PR] CAMEL-20270: Introduce JBang plugins [camel]

2023-12-22 Thread via GitHub


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


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

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

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



(camel) branch main updated: CAMEL-20270: Introduce JBang plugins (#12583)

2023-12-22 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 d5c0ea0ee10 CAMEL-20270: Introduce JBang plugins (#12583)
d5c0ea0ee10 is described below

commit d5c0ea0ee10b243c34ad5d12e4b718718992a88a
Author: Christoph Deppisch 
AuthorDate: Sat Dec 23 08:59:01 2023 +0100

CAMEL-20270: Introduce JBang plugins (#12583)

- Introduce plugin mechanism to modularize Camel JBang
- Add new plugin sub-commands (add, get, delete) to manage plugins
- Plugin configuration is stored to user home directory
- Load plugin commands on demand
- Create 1st plugin for Camel K and move commands into separate Maven 
module camel-jbang-plugin-k
---
 dsl/camel-jbang/camel-jbang-core/pom.xml   |  20 --
 .../dsl/jbang/core/commands/CamelJBangMain.java|  23 ++-
 .../dsl/jbang/core/commands/plugin/PluginAdd.java  | 112 +++
 .../PluginBaseCommand.java}|  32 +--
 .../KubeCommand.java => plugin/PluginCommand.java} |  16 +-
 .../KubeCommand.java => plugin/PluginDelete.java}  |  31 ++-
 .../dsl/jbang/core/commands/plugin/PluginGet.java  | 103 ++
 .../CamelJBangPlugin.java} |  20 +-
 .../k/TraitProfile.java => common/Plugin.java} |  18 +-
 .../camel/dsl/jbang/core/common/PluginHelper.java  | 222 +
 .../camel/dsl/jbang/core/common/PluginType.java|  57 ++
 .../jbang/core/commands/plugin/PluginAddTest.java  | 111 +++
 .../core/commands/plugin/PluginDeleteTest.java |  63 ++
 .../jbang/core/commands/plugin/PluginGetTest.java  | 133 
 dsl/camel-jbang/camel-jbang-plugin-k/pom.xml   |  77 +++
 .../camel/camel-jbang-plugin/camel-jbang-plugin-k  |   2 +
 .../jbang/core/commands/k/CompressionHelper.java   |   0
 .../jbang/core/commands/k/IntegrationDelete.java   |   0
 .../dsl/jbang/core/commands/k/IntegrationGet.java  |   0
 .../dsl/jbang/core/commands/k/IntegrationLogs.java |   0
 .../dsl/jbang/core/commands/k/IntegrationRun.java  |   0
 .../dsl/jbang/core/commands/k/KubeBaseCommand.java |   0
 .../dsl/jbang/core/commands/k/KubeCommand.java |   2 +-
 .../dsl/jbang/core/commands/k/KubePlugin.java} |  26 +--
 .../jbang/core/commands/k/KubernetesHelper.java|   0
 .../dsl/jbang/core/commands/k/SourceScheme.java|   0
 .../dsl/jbang/core/commands/k/TraitHelper.java |   0
 .../dsl/jbang/core/commands/k/TraitProfile.java|   0
 .../dsl/jbang/core/commands/StringPrinter.java |  78 
 .../core/commands/k/IntegrationDeleteTest.java |   0
 .../jbang/core/commands/k/IntegrationGetTest.java  |   0
 .../jbang/core/commands/k/IntegrationLogsTest.java |   0
 .../jbang/core/commands/k/IntegrationRunTest.java  |   0
 .../dsl/jbang/core/commands/k/KubeBaseTest.java|   6 +
 .../jbang/core/commands/k/KubeCommandMainTest.java |  12 +-
 .../dsl/jbang/core/commands/k/integration.yaml |   0
 .../src/test/resources/pod.yaml|   0
 .../src/test/resources/route.yaml  |   0
 dsl/camel-jbang/pom.xml|   1 +
 39 files changed, 1072 insertions(+), 93 deletions(-)

diff --git a/dsl/camel-jbang/camel-jbang-core/pom.xml 
b/dsl/camel-jbang/camel-jbang-core/pom.xml
index be32224ebb1..415ade86ff1 100644
--- a/dsl/camel-jbang/camel-jbang-core/pom.xml
+++ b/dsl/camel-jbang/camel-jbang-core/pom.xml
@@ -87,20 +87,6 @@
 ${ascii-table-version}
 
 
-
-
-io.fabric8
-kubernetes-client
-${kubernetes-client-version}
-
-
-
-
-org.apache.camel.k
-camel-k-crds
-${camel-k-version}
-
-
 
 
 org.jolokia
@@ -174,12 +160,6 @@
 camel-test-junit5
 test
 
-
-io.fabric8
-kubernetes-server-mock
-${kubernetes-client-version}
-test
-
 
 
 
diff --git 
a/dsl/camel-jbang/camel-jbang-core/src/main/java/org/apache/camel/dsl/jbang/core/commands/CamelJBangMain.java
 
b/dsl/camel-jbang/camel-jbang-core/src/main/java/org/apache/camel/dsl/jbang/core/commands/CamelJBangMain.java
index 5933943ce37..f66f17b4ebe 100644
--- 
a/dsl/camel-jbang/camel-jbang-core/src/main/java/org/apache/camel/dsl/jbang/core/commands/CamelJBangMain.java
+++ 
b/dsl/camel-jbang/camel-jbang-core/src/main/java/org/apache/camel/dsl/jbang/core/commands/CamelJBangMain.java
@@ -33,17 +33,17 @@ import 
org.apache.camel.dsl.jbang.core.commands.config.ConfigGet;
 import org.apache.camel.dsl.jbang.core.commands.config.ConfigList;
 import org.apache.camel.dsl.jbang.core.commands.config.ConfigSet;
 import org.apache.camel.dsl.jbang.core.commands.config.ConfigUnset;
-import org.apache.camel.dsl.jbang.core.commands.k.IntegrationDelete;
-impor

(camel) branch regen_bot updated (d79cdd4a8a1 -> 03f4cc03031)

2023-12-22 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 d79cdd4a8a1 Revert "Bump 
org.apache.maven.plugins:maven-compiler-plugin (#12571)"
 add 03f4cc03031 CAMEL-20247: Rework of dynamic router EIP component. 
(#12467)

No new revisions were added by this update.

Summary of changes:
 .../org/apache/camel/catalog/components.properties |   1 +
 .../catalog/components/dynamic-router-control.json |  49 +++
 .../camel/catalog/components/dynamic-router.json   |  47 +--
 components/camel-dynamic-router/pom.xml|  11 +-
 .../DynamicRouterControlComponentConfigurer.java}  |   8 +-
 .../DynamicRouterControlEndpointConfigurer.java|  85 
 .../DynamicRouterControlEndpointUriFactory.java}   |  28 +-
 ...icRouterControlProducerBulkConverterLoader.java |  90 +
 ...RouterControlProducerInvokeOnHeaderFactory.java |  27 ++
 .../DynamicRouterComponentConfigurer.java  |   2 +-
 .../DynamicRouterEndpointConfigurer.java   |  68 ++--
 .../DynamicRouterEndpointUriFactory.java   |  22 +-
 .../services/org/apache/camel/TypeConverterLoader  |   2 +
 .../services/org/apache/camel/component.properties |   2 +-
 .../org/apache/camel/component/dynamic-router  |   2 +-
 .../apache/camel/component/dynamic-router-control  |   2 +
 .../camel/configurer/dynamic-router-component  |   2 +-
 .../configurer/dynamic-router-control-component|   2 +
 .../configurer/dynamic-router-control-endpoint |   2 +
 .../camel/configurer/dynamic-router-endpoint   |   2 +-
 ...amicrouter.control.DynamicRouterControlProducer |   2 +
 .../camel/send-dynamic/dynamic-router-control  |   2 +
 .../urifactory/dynamic-router-control-endpoint |   2 +
 .../camel/urifactory/dynamic-router-endpoint   |   2 +-
 .../control/dynamic-router-control.json|  49 +++
 .../component/dynamicrouter/dynamic-router.json|  54 ---
 .../dynamicrouter/routing/dynamic-router.json  |  51 +++
 .../src/main/docs/dynamic-router-component.adoc| 293 +-
 .../docs/dynamic-router-control-component.adoc | 175 
 .../dynamicrouter/DynamicRouterComponent.java  | 207 --
 .../dynamicrouter/DynamicRouterConstants.java  | 116 --
 .../DynamicRouterControlChannelProcessor.java  | 199 -
 .../dynamicrouter/DynamicRouterControlMessage.java | 130 --
 .../DynamicRouterControlProducer.java  | 114 --
 .../dynamicrouter/DynamicRouterEndpoint.java   | 340 
 .../dynamicrouter/DynamicRouterFilterService.java  | 218 ++
 .../DynamicRouterMulticastProcessor.java   | 299 --
 .../DynamicRouterRecipientListHelper.java  | 243 +++
 .../component/dynamicrouter/PrioritizedFilter.java |  14 +-
 ...ynamicRouterControlChannelSendDynamicAware.java | 142 +++
 .../control/DynamicRouterControlComponent.java |  86 
 .../control/DynamicRouterControlConfiguration.java | 248 
 .../control/DynamicRouterControlConstants.java | 238 +++
 .../control/DynamicRouterControlEndpoint.java  | 216 ++
 .../control/DynamicRouterControlMessage.java   | 269 +
 .../control/DynamicRouterControlProducer.java  | 277 +
 .../routing/DynamicRouterComponent.java| 184 +
 .../{ => routing}/DynamicRouterConfiguration.java  | 356 +
 .../routing/DynamicRouterConstants.java| 121 ++
 .../routing/DynamicRouterEndpoint.java | 235 +++
 .../routing/DynamicRouterProcessor.java| 158 
 .../{ => routing}/DynamicRouterProducer.java   |  45 +--
 .../dynamicrouter/DynamicRouterComponentTest.java  |  66 ---
 .../DynamicRouterConfigurationTest.java|  48 ---
 .../DynamicRouterControlChannelProcessorTest.java  | 229 ---
 .../DynamicRouterControlMessageTest.java   |  93 -
 .../DynamicRouterControlProducerTest.java  |  47 ---
 .../dynamicrouter/DynamicRouterEndpointTest.java   |  61 ---
 .../DynamicRouterFilterServiceTest.java| 149 +++
 .../dynamicrouter/DynamicRouterProcessorTest.java  | 139 ---
 .../dynamicrouter/DynamicRouterProducerTest.java   |  53 ---
 .../dynamicrouter/DynamicRouterTestConstants.java  |  80 
 .../dynamicrouter/PrioritizedFilterTest.java   |  51 ++-
 ...icRouterControlChannelSendDynamicAwareTest.java |  97 +
 .../control/DynamicRouterControlComponentTest.java |  73 
 .../control/DynamicRouterControlEndpointTest.java  | 115 ++
 .../control/DynamicRouterControlProducerTest.java  | 175 
 .../DynamicRouterBasicSynchronousIT.java   | 217 ++
 .../DynamicRouterMultipleRecipientModeIT.java  |  88 ++--
 .../DynamicRouterSendDynamicAwareIT.java   |  68 
 .../DynamicRouterSingleRouteTwoParticipantsIT.java | 103 +++-

Re: [PR] [Github Actions] Periodic Sync Camel Spring Boot (Camel 4) [camel-spring-boot]

2023-12-22 Thread via GitHub


davsclaus closed pull request #1053: [Github Actions] Periodic Sync Camel 
Spring Boot (Camel 4)
URL: https://github.com/apache/camel-spring-boot/pull/1053


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

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

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



(camel-spring-boot) branch automatic-periodic-sync deleted (was 6bf6606be2a)

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

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


 was 6bf6606be2a Upgrade spring-boot to 2.7.18 (#1026)

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



(camel-spring-boot) branch main updated: CAMEL-20247: Updated dynamic router spring boot starter to reflect rework changes. (#1052)

2023-12-22 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 632fbd97fce CAMEL-20247: Updated dynamic router spring boot starter to 
reflect rework changes. (#1052)
632fbd97fce is described below

commit 632fbd97fcef6c76005386480833cd44266f18a4
Author: Steve Storck 
AuthorDate: Sat Dec 23 02:53:03 2023 -0500

CAMEL-20247: Updated dynamic router spring boot starter to reflect rework 
changes. (#1052)
---
 .../camel/springboot/catalog/components.properties |  1 +
 .../catalog/components/dynamic-router-control.json | 49 ++
 .../catalog/components/dynamic-router.json | 47 ++---
 .../src/main/docs/dynamic-router.json  | 48 ++---
 ...icRouterControlComponentAutoConfiguration.java} | 20 -
 ...ynamicRouterControlComponentConfiguration.java} | 15 +++
 .../DynamicRouterComponentAutoConfiguration.java   |  4 +-
 .../DynamicRouterComponentConfiguration.java   |  2 +-
 ...rk.boot.autoconfigure.AutoConfiguration.imports |  3 +-
 9 files changed, 137 insertions(+), 52 deletions(-)

diff --git 
a/catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/components.properties
 
b/catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/components.properties
index c6cc066d8f2..6616db0c13f 100644
--- 
a/catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/components.properties
+++ 
b/catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/components.properties
@@ -90,6 +90,7 @@ docker
 drill
 dropbox
 dynamic-router
+dynamic-router-control
 ehcache
 elasticsearch
 elasticsearch-rest-client
diff --git 
a/catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/components/dynamic-router-control.json
 
b/catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/components/dynamic-router-control.json
new file mode 100644
index 000..659d5759138
--- /dev/null
+++ 
b/catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/components/dynamic-router-control.json
@@ -0,0 +1,49 @@
+{
+  "component": {
+"kind": "component",
+"name": "dynamic-router-control",
+"title": "Dynamic Router Control",
+"description": "The Dynamic Router control endpoint for operations that 
allow routing participants to subscribe or unsubscribe to participate in 
dynamic message routing.",
+"deprecated": false,
+"firstVersion": "4.3.0",
+"label": "messaging",
+"javaType": 
"org.apache.camel.component.dynamicrouter.control.DynamicRouterControlComponent",
+"supportLevel": "Preview",
+"groupId": "org.apache.camel.springboot",
+"artifactId": "camel-dynamic-router-starter",
+"version": "4.4.0-SNAPSHOT",
+"scheme": "dynamic-router-control",
+"extendsScheme": "",
+"syntax": "dynamic-router-control:controlAction",
+"async": false,
+"api": false,
+"consumerOnly": false,
+"producerOnly": true,
+"lenientProperties": false
+  },
+  "componentProperties": {
+"lazyStartProducer": { "index": 0, "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 [...]
+"autowiredEnabled": { "index": 1, "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 t [...]
+  },
+  "headers": {
+"CamelDynamicRouterControlAction": { "index": 0, "kind": "header", 
"displayName": "", "group": "producer", "label": "", "required": false, 
"javaType": "String", "deprecated": false, "deprecationNote": "", "autowired": 
false, "secret": false, "description": "The control action header.", 
"constantName": 
"org.apache.camel.component.dynamicrouter.control.DynamicRouterControlConstants#CONTROL_ACTION_HEADER"
 },
+"CamelDynamicRouterSubscribeChannel": { "index": 1, "kind": "header", 
"displayName": "", "group": "producer", "label": "", "required": f

Re: [PR] CAMEL-20247: Updated dynamic router spring boot starter to reflect rework changes [camel-spring-boot]

2023-12-22 Thread via GitHub


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


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

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

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



(camel) branch main updated (d79cdd4a8a1 -> 03f4cc03031)

2023-12-22 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 d79cdd4a8a1 Revert "Bump 
org.apache.maven.plugins:maven-compiler-plugin (#12571)"
 add 03f4cc03031 CAMEL-20247: Rework of dynamic router EIP component. 
(#12467)

No new revisions were added by this update.

Summary of changes:
 .../org/apache/camel/catalog/components.properties |   1 +
 .../catalog/components/dynamic-router-control.json |  49 +++
 .../camel/catalog/components/dynamic-router.json   |  47 +--
 components/camel-dynamic-router/pom.xml|  11 +-
 .../DynamicRouterControlComponentConfigurer.java}  |   8 +-
 .../DynamicRouterControlEndpointConfigurer.java|  85 
 .../DynamicRouterControlEndpointUriFactory.java}   |  28 +-
 ...icRouterControlProducerBulkConverterLoader.java |  90 +
 ...RouterControlProducerInvokeOnHeaderFactory.java |  27 ++
 .../DynamicRouterComponentConfigurer.java  |   2 +-
 .../DynamicRouterEndpointConfigurer.java   |  68 ++--
 .../DynamicRouterEndpointUriFactory.java   |  22 +-
 .../services/org/apache/camel/TypeConverterLoader  |   2 +
 .../services/org/apache/camel/component.properties |   2 +-
 .../org/apache/camel/component/dynamic-router  |   2 +-
 .../apache/camel/component/dynamic-router-control  |   2 +
 .../camel/configurer/dynamic-router-component  |   2 +-
 .../configurer/dynamic-router-control-component|   2 +
 .../configurer/dynamic-router-control-endpoint |   2 +
 .../camel/configurer/dynamic-router-endpoint   |   2 +-
 ...amicrouter.control.DynamicRouterControlProducer |   2 +
 .../camel/send-dynamic/dynamic-router-control  |   2 +
 .../urifactory/dynamic-router-control-endpoint |   2 +
 .../camel/urifactory/dynamic-router-endpoint   |   2 +-
 .../control/dynamic-router-control.json|  49 +++
 .../component/dynamicrouter/dynamic-router.json|  54 ---
 .../dynamicrouter/routing/dynamic-router.json  |  51 +++
 .../src/main/docs/dynamic-router-component.adoc| 293 +-
 .../docs/dynamic-router-control-component.adoc | 175 
 .../dynamicrouter/DynamicRouterComponent.java  | 207 --
 .../dynamicrouter/DynamicRouterConstants.java  | 116 --
 .../DynamicRouterControlChannelProcessor.java  | 199 -
 .../dynamicrouter/DynamicRouterControlMessage.java | 130 --
 .../DynamicRouterControlProducer.java  | 114 --
 .../dynamicrouter/DynamicRouterEndpoint.java   | 340 
 .../dynamicrouter/DynamicRouterFilterService.java  | 218 ++
 .../DynamicRouterMulticastProcessor.java   | 299 --
 .../DynamicRouterRecipientListHelper.java  | 243 +++
 .../component/dynamicrouter/PrioritizedFilter.java |  14 +-
 ...ynamicRouterControlChannelSendDynamicAware.java | 142 +++
 .../control/DynamicRouterControlComponent.java |  86 
 .../control/DynamicRouterControlConfiguration.java | 248 
 .../control/DynamicRouterControlConstants.java | 238 +++
 .../control/DynamicRouterControlEndpoint.java  | 216 ++
 .../control/DynamicRouterControlMessage.java   | 269 +
 .../control/DynamicRouterControlProducer.java  | 277 +
 .../routing/DynamicRouterComponent.java| 184 +
 .../{ => routing}/DynamicRouterConfiguration.java  | 356 +
 .../routing/DynamicRouterConstants.java| 121 ++
 .../routing/DynamicRouterEndpoint.java | 235 +++
 .../routing/DynamicRouterProcessor.java| 158 
 .../{ => routing}/DynamicRouterProducer.java   |  45 +--
 .../dynamicrouter/DynamicRouterComponentTest.java  |  66 ---
 .../DynamicRouterConfigurationTest.java|  48 ---
 .../DynamicRouterControlChannelProcessorTest.java  | 229 ---
 .../DynamicRouterControlMessageTest.java   |  93 -
 .../DynamicRouterControlProducerTest.java  |  47 ---
 .../dynamicrouter/DynamicRouterEndpointTest.java   |  61 ---
 .../DynamicRouterFilterServiceTest.java| 149 +++
 .../dynamicrouter/DynamicRouterProcessorTest.java  | 139 ---
 .../dynamicrouter/DynamicRouterProducerTest.java   |  53 ---
 .../dynamicrouter/DynamicRouterTestConstants.java  |  80 
 .../dynamicrouter/PrioritizedFilterTest.java   |  51 ++-
 ...icRouterControlChannelSendDynamicAwareTest.java |  97 +
 .../control/DynamicRouterControlComponentTest.java |  73 
 .../control/DynamicRouterControlEndpointTest.java  | 115 ++
 .../control/DynamicRouterControlProducerTest.java  | 175 
 .../DynamicRouterBasicSynchronousIT.java   | 217 ++
 .../DynamicRouterMultipleRecipientModeIT.java  |  88 ++--
 .../DynamicRouterSendDynamicAwareIT.java   |  68 
 .../DynamicRouterSingleRouteTwoParticipantsIT.java | 103 +++--
 ...

Re: [PR] CAMEL-20247: Rework of dynamic router EIP component. [camel]

2023-12-22 Thread via GitHub


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


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

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

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



(camel-spring-boot) branch main updated: Regen

2023-12-22 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 c71aa6d063e Regen
c71aa6d063e is described below

commit c71aa6d063e6455b29406f91bd0d6fc92da59c5d
Author: Claus Ibsen 
AuthorDate: Sat Dec 23 08:45:52 2023 +0100

Regen
---
 .../org/apache/camel/springboot/catalog/components/azure-files.json   | 4 ++--
 .../org/apache/camel/springboot/catalog/components/file.json  | 4 ++--
 .../resources/org/apache/camel/springboot/catalog/components/ftp.json | 4 ++--
 .../org/apache/camel/springboot/catalog/components/ftps.json  | 4 ++--
 .../org/apache/camel/springboot/catalog/components/google-drive.json  | 2 +-
 .../org/apache/camel/springboot/catalog/components/sftp.json  | 4 ++--
 6 files changed, 11 insertions(+), 11 deletions(-)

diff --git 
a/catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/components/azure-files.json
 
b/catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/components/azure-files.json
index 88230383809..c46307995b8 100644
--- 
a/catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/components/azure-files.json
+++ 
b/catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/components/azure-files.json
@@ -104,7 +104,7 @@
 "move": { "index": 62, "kind": "parameter", "displayName": "Move", 
"group": "filter", "label": "consumer,filter", "required": false, "type": 
"string", "javaType": "java.lang.String", "deprecated": false, "autowired": 
false, "secret": false, "description": "Expression (such as Simple Language) 
used to dynamically set the filename when moving it after processing. To move 
files into a .done subdirectory just enter .done." },
 "exclusiveReadLockStrategy": { "index": 63, "kind": "parameter", 
"displayName": "Exclusive Read Lock Strategy", "group": "lock", "label": 
"consumer,lock", "required": false, "type": "object", "javaType": 
"org.apache.camel.component.file.GenericFileExclusiveReadLockStrategy",
 "deprecated": false, "autowired": false, "secret": false, "description": 
"Pluggable read-lock as a 
org.apache.camel.component.file.GenericFileExclusiveReadLockSt [...]
 "readLock": { "index": 64, "kind": "parameter", "displayName": "Read 
Lock", "group": "lock", "label": "consumer,lock", "required": false, "type": 
"string", "javaType": "java.lang.String", "enum": [ "none", "markerFile", 
"fileLock", "rename", "changed", "idempotent", "idempotent-changed", 
"idempotent-rename" ], "deprecated": false, "autowired": false, "secret": 
false, "defaultValue": "none", "description": "Used by consumer, to only poll 
the files if it has exclusive read-lock on the  [...]
-"readLockCheckInterval": { "index": 65, "kind": "parameter", 
"displayName": "Read Lock Check Interval", "group": "lock", "label": 
"consumer,lock", "required": false, "type": "integer", "javaType": "long", 
"deprecated": false, "autowired": false, "secret": false, "defaultValue": 1000, 
"description": "Interval in millis for the read-lock, if supported by the read 
lock. This interval is used for sleeping between attempts to acquire the read 
lock. For example when using the changed read  [...]
+"readLockCheckInterval": { "index": 65, "kind": "parameter", 
"displayName": "Read Lock Check Interval", "group": "lock", "label": 
"consumer,lock", "required": false, "type": "integer", "javaType": "long", 
"deprecated": false, "autowired": false, "secret": false, "defaultValue": 1000, 
"description": "Interval in millis for the read-lock, if supported by the read 
lock. This interval is used for sleeping between attempts to acquire the read 
lock. For example when using the changed read  [...]
 "readLockDeleteOrphanLockFiles": { "index": 66, "kind": "parameter", 
"displayName": "Read Lock Delete Orphan Lock Files", "group": "lock", "label": 
"consumer,lock", "required": false, "type": "boolean", "javaType": "boolean", 
"deprecated": false, "autowired": false, "secret": false, "defaultValue": true, 
"description": "Whether or not read lock with marker files should upon startup 
delete any orphan read lock files, which may have been left on the file system, 
if Camel was not proper [...]
 "readLockLoggingLevel": { "index": 67, "kind": "parameter", "displayName": 
"Read Lock Logging Level", "group": "lock", "label": "consumer,lock", 
"required": false, "type": "object", "javaType": 
"org.apache.camel.LoggingLevel", "enum": [ "TRACE", "DEBUG", "INFO", "WARN", 
"ERROR", "OFF" ], "deprecated": false, "autowired": false, "secret": false, 
"defaultValue": "DEBUG", "description": "Logging level used when a read lock 
could not be acquired. By default a DEBUG is logged. You can cha [...]
 "readLockMarke

(camel) branch regen_bot updated (0957c53b3e9 -> d79cdd4a8a1)

2023-12-22 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 0957c53b3e9 Bump org.cometd.java:cometd-java-client-http-jetty (#12582)
 add 00775397375 Bump org.apache.maven.plugins:maven-compiler-plugin 
(#12571)
 add d79cdd4a8a1 Revert "Bump 
org.apache.maven.plugins:maven-compiler-plugin (#12571)"

No new revisions were added by this update.

Summary of changes:



(camel) branch main updated (00775397375 -> d79cdd4a8a1)

2023-12-22 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 00775397375 Bump org.apache.maven.plugins:maven-compiler-plugin 
(#12571)
 add d79cdd4a8a1 Revert "Bump 
org.apache.maven.plugins:maven-compiler-plugin (#12571)"

No new revisions were added by this update.

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



Re: [PR] Bump org.apache.maven.plugins:maven-compiler-plugin from 3.11.0 to 3.12.0 [camel]

2023-12-22 Thread via GitHub


davsclaus commented on PR #12571:
URL: https://github.com/apache/camel/pull/12571#issuecomment-1868226596

   [ERROR] Failed to execute goal 
org.apache.maven.plugins:maven-compiler-plugin:3.12.0:compile (default-compile) 
on project camel-groovy-dsl-common: Fatal error compiling: basedir 
/Users/davsclaus/workspace/camel/dsl/camel-groovy-dsl/camel-groovy-dsl-common/target/generated-sources/annotations
 does not exist -> [Help 1]
   [ERROR]
   [ERROR] To see the full stack trace of the errors, re-run Maven with the -e 
switch.
   [ERROR] Re-run Maven using the -X switch to enable full debug logging.
   [ERROR]
   [ERROR] For more information about the errors and possible solutions, please 
read the following articles:
   [ERROR] [Help 1] 
http://cwiki.apache.org/confluence/display/MAVEN/MojoExecutionException
   [ERROR]
   [ERROR] After correcting the problems, you can resume the build with the 
command
   [ERROR]   mvn  -rf :camel-groovy-dsl-common


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

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

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



(camel) branch regen_bot updated (17bbc6cae61 -> 0957c53b3e9)

2023-12-22 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 17bbc6cae61 CAMEL-18482: Split EIP - Allow to split in single mode. 
(#12576)
 add 0957c53b3e9 Bump org.cometd.java:cometd-java-client-http-jetty (#12582)

No new revisions were added by this update.

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



(camel) branch dependabot/maven/org.apache.maven.plugins-maven-compiler-plugin-3.12.0 deleted (was 5f7d37884a5)

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

davsclaus pushed a change to branch 
dependabot/maven/org.apache.maven.plugins-maven-compiler-plugin-3.12.0
in repository https://gitbox.apache.org/repos/asf/camel.git


 was 5f7d37884a5 Bump org.apache.maven.plugins:maven-compiler-plugin

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



(camel) branch dependabot/maven/org.cometd.java-cometd-java-client-http-jetty-8.0.0.beta1 deleted (was 5fff7fcfe0a)

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

davsclaus pushed a change to branch 
dependabot/maven/org.cometd.java-cometd-java-client-http-jetty-8.0.0.beta1
in repository https://gitbox.apache.org/repos/asf/camel.git


 was 5fff7fcfe0a Bump org.cometd.java:cometd-java-client-http-jetty

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



(camel) branch main updated: Bump org.apache.maven.plugins:maven-compiler-plugin (#12571)

2023-12-22 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 00775397375 Bump org.apache.maven.plugins:maven-compiler-plugin 
(#12571)
00775397375 is described below

commit 00775397375d6ff7a69218621368bb6acec7e91b
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
AuthorDate: Sat Dec 23 07:58:11 2023 +0100

Bump org.apache.maven.plugins:maven-compiler-plugin (#12571)

Bumps 
[org.apache.maven.plugins:maven-compiler-plugin](https://github.com/apache/maven-compiler-plugin)
 from 3.11.0 to 3.12.0.
- [Release notes](https://github.com/apache/maven-compiler-plugin/releases)
- 
[Commits](https://github.com/apache/maven-compiler-plugin/compare/maven-compiler-plugin-3.11.0...maven-compiler-plugin-3.12.0)

---
updated-dependencies:
- dependency-name: org.apache.maven.plugins:maven-compiler-plugin
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] 
Co-authored-by: dependabot[bot] 
<49699333+dependabot[bot]@users.noreply.github.com>
---
 pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/pom.xml b/pom.xml
index 634f8e19aeb..4f454af8675 100644
--- a/pom.xml
+++ b/pom.xml
@@ -125,7 +125,7 @@
 2.1.0
 4.3
 3.6.0
-3.11.0
+3.12.0
 
3.6.1
 3.4.1
 3.6.0



Re: [PR] Bump org.apache.maven.plugins:maven-compiler-plugin from 3.11.0 to 3.12.0 [camel]

2023-12-22 Thread via GitHub


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


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

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

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



(camel) branch main updated (17bbc6cae61 -> 0957c53b3e9)

2023-12-22 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 17bbc6cae61 CAMEL-18482: Split EIP - Allow to split in single mode. 
(#12576)
 add 0957c53b3e9 Bump org.cometd.java:cometd-java-client-http-jetty (#12582)

No new revisions were added by this update.

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



Re: [PR] Bump org.cometd.java:cometd-java-client-http-jetty from 8.0.0.beta0 to 8.0.0.beta1 [camel]

2023-12-22 Thread via GitHub


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


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

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

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



Re: [I] [CI] - Quarkus Main Branch Build Failure [camel-quarkus]

2023-12-22 Thread via GitHub


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

   The 
[quarkus-main](https://github.com/apache/camel-quarkus/tree/quarkus-main) 
branch build has failed:
   
   * Build ID: 7305581741-1339-63a235d6-b309-46ce-aaa9-8cf77db0254a
   * Camel Quarkus Commit: 6614aa6730d99be18335c677a43a85a3926aade2
   
   * Quarkus Main Commit: 71a94baced4e5617ae09f5bc06bccb1c9144fd85
   * Link to build: 
https://github.com/apache/camel-quarkus/actions/runs/7305581741


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

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

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



(camel-k) branch release-2.2.x updated: chore: nightly SBOM update

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

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


The following commit(s) were added to refs/heads/release-2.2.x by this push:
 new 5b6b2b9d7 chore: nightly SBOM update
5b6b2b9d7 is described below

commit 5b6b2b9d79669f58d0afb2a3024da1ef24680a00
Author: github-actions[bot] 
<41898282+github-actions[bot]@users.noreply.github.com>
AuthorDate: Sat Dec 23 01:18:32 2023 +

chore: nightly SBOM update
---
 camel-k-sbom/camel-k-sbom.json | 12 ++--
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/camel-k-sbom/camel-k-sbom.json b/camel-k-sbom/camel-k-sbom.json
index 65badc868..91c5e824d 100644
--- a/camel-k-sbom/camel-k-sbom.json
+++ b/camel-k-sbom/camel-k-sbom.json
@@ -2,10 +2,10 @@
   "$schema": "http://cyclonedx.org/schema/bom-1.4.schema.json";,
   "bomFormat": "CycloneDX",
   "specVersion": "1.4",
-  "serialNumber": "urn:uuid:e354f7c3-1b9a-483a-a9b4-fd4e5cfda56d",
+  "serialNumber": "urn:uuid:bd3a39c5-51f6-4576-bd00-e89381d27077",
   "version": 1,
   "metadata": {
-"timestamp": "2023-12-22T01:06:32Z",
+"timestamp": "2023-12-23T01:18:32Z",
 "tools": [
   {
 "vendor": "CycloneDX",
@@ -46,11 +46,11 @@
   }
 ],
 "component": {
-  "bom-ref": 
"pkg:golang/github.com/apache/camel-k/v2@v0.0.0-20231222010327-366a00a6051c?type=module",
+  "bom-ref": 
"pkg:golang/github.com/apache/camel-k/v2@v0.0.0-20231222010632-2710f0deb277?type=module",
   "type": "application",
   "name": "github.com/apache/camel-k/v2",
-  "version": "v0.0.0-20231222010327-366a00a6051c",
-  "purl": 
"pkg:golang/github.com/apache/camel-k/v2@v0.0.0-20231222010327-366a00a6051c?type=module\u0026goos=linux\u0026goarch=amd64",
+  "version": "v0.0.0-20231222010632-2710f0deb277",
+  "purl": 
"pkg:golang/github.com/apache/camel-k/v2@v0.0.0-20231222010632-2710f0deb277?type=module\u0026goos=linux\u0026goarch=amd64",
   "externalReferences": [
 {
   "url": "https://github.com/apache/camel-k";,
@@ -3830,7 +3830,7 @@
   ],
   "dependencies": [
 {
-  "ref": 
"pkg:golang/github.com/apache/camel-k/v2@v0.0.0-20231222010327-366a00a6051c?type=module",
+  "ref": 
"pkg:golang/github.com/apache/camel-k/v2@v0.0.0-20231222010632-2710f0deb277?type=module",
   "dependsOn": [
 "pkg:golang/github.com/Masterminds/semver@v1.5.0?type=module",
 "pkg:golang/github.com/container-tools/spectrum@v0.6.42?type=module",



(camel-k) 02/02: chore: nightly SBOM update

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

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

commit b80b332fae4f9797810dcb4ff2073950fe0f1d4e
Author: github-actions[bot] 
<41898282+github-actions[bot]@users.noreply.github.com>
AuthorDate: Sat Dec 23 00:32:25 2023 +

chore: nightly SBOM update
---
 camel-k-sbom/camel-k-sbom.json | 12 ++--
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/camel-k-sbom/camel-k-sbom.json b/camel-k-sbom/camel-k-sbom.json
index 19d3ccd02..487ce18fe 100644
--- a/camel-k-sbom/camel-k-sbom.json
+++ b/camel-k-sbom/camel-k-sbom.json
@@ -2,10 +2,10 @@
   "$schema": "http://cyclonedx.org/schema/bom-1.4.schema.json";,
   "bomFormat": "CycloneDX",
   "specVersion": "1.4",
-  "serialNumber": "urn:uuid:4d54232a-d333-4b0c-8541-063ba326ae5f",
+  "serialNumber": "urn:uuid:7558e5ce-1309-4817-8355-1e2a248694f5",
   "version": 1,
   "metadata": {
-"timestamp": "2023-12-22T00:24:09Z",
+"timestamp": "2023-12-23T00:32:25Z",
 "tools": [
   {
 "vendor": "CycloneDX",
@@ -46,11 +46,11 @@
   }
 ],
 "component": {
-  "bom-ref": 
"pkg:golang/github.com/apache/camel-k/v2@v0.0.0-20231222002242-9df61f64dbe8?type=module",
+  "bom-ref": 
"pkg:golang/github.com/apache/camel-k/v2@v0.0.0-20231223002851-a9f4bc43e7eb?type=module",
   "type": "application",
   "name": "github.com/apache/camel-k/v2",
-  "version": "v0.0.0-20231222002242-9df61f64dbe8",
-  "purl": 
"pkg:golang/github.com/apache/camel-k/v2@v0.0.0-20231222002242-9df61f64dbe8?type=module\u0026goos=linux\u0026goarch=amd64",
+  "version": "v0.0.0-20231223002851-a9f4bc43e7eb",
+  "purl": 
"pkg:golang/github.com/apache/camel-k/v2@v0.0.0-20231223002851-a9f4bc43e7eb?type=module\u0026goos=linux\u0026goarch=amd64",
   "externalReferences": [
 {
   "url": "https://github.com/apache/camel-k";,
@@ -3853,7 +3853,7 @@
   ],
   "dependencies": [
 {
-  "ref": 
"pkg:golang/github.com/apache/camel-k/v2@v0.0.0-20231222002242-9df61f64dbe8?type=module",
+  "ref": 
"pkg:golang/github.com/apache/camel-k/v2@v0.0.0-20231223002851-a9f4bc43e7eb?type=module",
   "dependsOn": [
 "pkg:golang/github.com/Masterminds/semver@v1.5.0?type=module",
 "pkg:golang/github.com/container-tools/spectrum@v0.6.38?type=module",



(camel-k) 01/02: chore: changelog automatic update

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

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

commit a9f4bc43e7eb57e20f7ae9e241a5a32bc6d336fc
Author: github-actions[bot] 
<41898282+github-actions[bot]@users.noreply.github.com>
AuthorDate: Sat Dec 23 00:28:51 2023 +

chore: changelog automatic update
---
 CHANGELOG.md | 1 +
 1 file changed, 1 insertion(+)

diff --git a/CHANGELOG.md b/CHANGELOG.md
index a862b8793..5cc0097e4 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -11,6 +11,7 @@
 - Jitpack not working as expected 
[\#4998](https://github.com/apache/camel-k/issues/4998)
 - JDK 17 release error for Camel K CRDS artifact 
[\#4826](https://github.com/apache/camel-k/issues/4826)
 - Provide more detailed `kamel run` documentation 
[\#4713](https://github.com/apache/camel-k/issues/4713)
+- Error running integration with private registry 
[\#4694](https://github.com/apache/camel-k/issues/4694)
 - Test ARM64 architecture - operator and builder pods  
[\#4519](https://github.com/apache/camel-k/issues/4519)
 - \[Regression\] javax.xml.parsers.FactoryConfigurationError: Provider 
org.apache.xerces.jaxp.SAXParserFactoryImpl not found 
[\#4266](https://github.com/apache/camel-k/issues/4266)
 



(camel-k) branch release-2.1.x updated (f2ede7624 -> b80b332fa)

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

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


from f2ede7624 chore: nightly SBOM update
 new a9f4bc43e chore: changelog automatic update
 new b80b332fa chore: nightly SBOM update

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:
 CHANGELOG.md   |  1 +
 camel-k-sbom/camel-k-sbom.json | 12 ++--
 2 files changed, 7 insertions(+), 6 deletions(-)



[PR] [Github Actions] Periodic Sync Camel Spring Boot (Camel 4) [camel-spring-boot]

2023-12-22 Thread via GitHub


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

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


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

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

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



(camel-k) 02/03: chore: autogenerated project resource update

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

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

commit 9d69e2e8c863f9c04244140062b1f851b1821dde
Author: github-actions[bot] 
<41898282+github-actions[bot]@users.noreply.github.com>
AuthorDate: Fri Dec 22 23:46:08 2023 +

chore: autogenerated project resource update
---
 pkg/resources/resources.go | 10 +-
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/pkg/resources/resources.go b/pkg/resources/resources.go
index 259a8bd9f..72d549721 100644
--- a/pkg/resources/resources.go
+++ b/pkg/resources/resources.go
@@ -743,12 +743,12 @@ var assets = func() http.FileSystem {
 
compressedContent: 
[]byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x53\xc1\x8e\xdb\x36\x14\xbc\xf3\x2b\x06\xd6\x25\x01\xd6\x72\xdb\x53\xe1\x9e\xdc\xcd\x6e\x2b\x34\xb0\x81\x95\xd3\x20\xc7\x67\xe9\x59\x7a\x58\x8a\x54\x1f\xa9\x55\xb6\x5f\x5f\x90\x96\xbb\x0e\xda\x63\x78\xb1\x05\x8d\xe6\xcd\xbc\x19\x16\x58\x7f\xbf\x63\x0a\x7c\x94\x86\x5d\xe0\x16\xd1\x23\xf6\x8c\xdd\x48\x4d\xcf\xa8\xfd\x39\xce\xa4\x8c\x47\x3f\xb9\x96\xa2\x78\x87\x77\xbb\xfa\xf1\x3d\x26\xd7\xb2\xc2\x3b\x86\x57\x0c\x5e\x
 [...]
},
-   "/camel-catalog-3.6.0.yaml": &vfsgen۰CompressedFileInfo{
-   name: "camel-catalog-3.6.0.yaml",
+   "/camel-catalog-3.2.3.yaml": &vfsgen۰CompressedFileInfo{
+   name: "camel-catalog-3.2.3.yaml",
modTime:  time.Time{},
-   uncompressedSize: 88346,
+   uncompressedSize: 87987,
 
-   compressedContent: 
[]byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xc4\x7d\x5b\x77\xdc\xb6\xb2\xe6\xbb\x7f\x05\x57\xfc\x72\xce\x9a\x4d\x24\xdb\xc9\x9c\xcc\xca\x3c\xc9\xb2\x65\x5b\xb6\x6c\xd9\xad\x9d\x78\xef\x97\x2c\x34\x89\xee\x86\x9a\x24\x28\x00\x6c\xb5\xfc\xeb\x67\x01\x04\xaf\x4d\x15\x2f\x2a\x68\xf4\x20\xb2\x89\xc2\x57\xa8\xaf\x40\xdc\x09\xbc\x0c\x42\xbc\xbf\x17\x2f\x83\x4f\x3c\x62\x99\x62\x71\xa0\x45\xa0\x77\x2c\x38\xcb\x69\xb4\x63\xc1\x4a\x6c\xf4\x3d\x95\x2c\xb8\x10\x45\x16\x53\x
 [...]
+   compressedContent: 
[]byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xc4\xbd\x4d\x77\xdb\xb8\xb2\x2e\x3c\xcf\xaf\xe0\xea\x4c\xce\x59\xef\x26\xba\x3b\xd9\xef\xe9\x7b\xfb\x8e\x1c\x27\x4e\xe2\xd8\x89\x13\x79\xa7\xb3\xf7\xa4\x17\x44\x42\x12\x24\x92\xa0\x01\x50\x96\xf3\xeb\xef\x02\x08\x7e\x8a\x2e\x8a\x74\xc1\xd7\x03\x93\x22\x0a\x4f\xa1\x9e\x02\xf1\x4d\xe0\x65\x10\xe2\xfd\xbd\x78\x19\x5c\xf1\x88\x65\x8a\xc5\x81\x16\x81\xde\xb0\xe0\x2c\xa7\xd1\x86\x05\x0b\xb1\xd2\xf7\x54\xb2\xe0\x42\x14\x59\x
 [...]
},
"/traits.yaml": &vfsgen۰CompressedFileInfo{
name: "traits.yaml",
@@ -761,7 +761,7 @@ var assets = func() http.FileSystem {
fs["/"].(*vfsgen۰DirInfo).entries = []os.FileInfo{
fs["/addons"].(os.FileInfo),
fs["/builder"].(os.FileInfo),
-   fs["/camel-catalog-3.6.0.yaml"].(os.FileInfo),
+   fs["/camel-catalog-3.2.3.yaml"].(os.FileInfo),
fs["/crd"].(os.FileInfo),
fs["/manager"].(os.FileInfo),
fs["/prometheus"].(os.FileInfo),



(camel-k) 01/03: chore: changelog automatic update

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

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

commit a6ef5dd45b5057639d82ebf8b25e5babc787adf3
Author: github-actions[bot] 
<41898282+github-actions[bot]@users.noreply.github.com>
AuthorDate: Fri Dec 22 23:43:36 2023 +

chore: changelog automatic update
---
 CHANGELOG.md | 4 
 1 file changed, 4 insertions(+)

diff --git a/CHANGELOG.md b/CHANGELOG.md
index 87bfbfc04..faf466d4e 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -11,11 +11,15 @@
 - Jitpack not working as expected 
[\#4998](https://github.com/apache/camel-k/issues/4998)
 - JDK 17 release error for Camel K CRDS artifact 
[\#4826](https://github.com/apache/camel-k/issues/4826)
 - Provide more detailed `kamel run` documentation 
[\#4713](https://github.com/apache/camel-k/issues/4713)
+- Error running integration with private registry 
[\#4694](https://github.com/apache/camel-k/issues/4694)
 - Test ARM64 architecture - operator and builder pods  
[\#4519](https://github.com/apache/camel-k/issues/4519)
 - \[Regression\] javax.xml.parsers.FactoryConfigurationError: Provider 
org.apache.xerces.jaxp.SAXParserFactoryImpl not found 
[\#4266](https://github.com/apache/camel-k/issues/4266)
 
 **Merged pull requests:**
 
+- chore\(runtime\): default to latest LTS 
[\#5009](https://github.com/apache/camel-k/pull/5009) 
([squakez](https://github.com/squakez))
+- chore\(deps\): bump github.com/go-logr/logr from 1.3.0 to 1.4.1 
[\#5008](https://github.com/apache/camel-k/pull/5008) 
([dependabot[bot]](https://github.com/apps/dependabot))
+- fix\(core\): Fix tooling image on multi-arch 
[\#5004](https://github.com/apache/camel-k/pull/5004) 
([gansheer](https://github.com/gansheer))
 - docs\(install\): Fix advanced doc on multi-architecture ARM64 
[\#4997](https://github.com/apache/camel-k/pull/4997) 
([gansheer](https://github.com/gansheer))
 - chore\(deps\): bump knative.dev/serving from 0.39.2 to 0.39.3 
[\#4996](https://github.com/apache/camel-k/pull/4996) 
([dependabot[bot]](https://github.com/apps/dependabot))
 - chore\(java\): crds dependency compiler java 17 
[\#4995](https://github.com/apache/camel-k/pull/4995) 
([squakez](https://github.com/squakez))



(camel-k) branch main updated (2e2eca550 -> 776e9b38f)

2023-12-22 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 2e2eca550 chore(runtime): default to latest LTS (#5009)
 new a6ef5dd45 chore: changelog automatic update
 new 9d69e2e8c chore: autogenerated project resource update
 new 776e9b38f chore: nightly SBOM update

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


Summary of changes:
 CHANGELOG.md   |  4 +++
 camel-k-sbom/camel-k-sbom.json | 66 +-
 pkg/resources/resources.go | 10 +++
 3 files changed, 42 insertions(+), 38 deletions(-)



(camel-k) 03/03: chore: nightly SBOM update

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

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

commit 776e9b38f1e5e9cdcf8a53d6def8c5f51f3cb69d
Author: github-actions[bot] 
<41898282+github-actions[bot]@users.noreply.github.com>
AuthorDate: Fri Dec 22 23:46:29 2023 +

chore: nightly SBOM update
---
 camel-k-sbom/camel-k-sbom.json | 66 +-
 1 file changed, 33 insertions(+), 33 deletions(-)

diff --git a/camel-k-sbom/camel-k-sbom.json b/camel-k-sbom/camel-k-sbom.json
index e47d7271f..905c5ec53 100644
--- a/camel-k-sbom/camel-k-sbom.json
+++ b/camel-k-sbom/camel-k-sbom.json
@@ -2,10 +2,10 @@
   "$schema": "http://cyclonedx.org/schema/bom-1.4.schema.json";,
   "bomFormat": "CycloneDX",
   "specVersion": "1.4",
-  "serialNumber": "urn:uuid:acd8d933-f388-4bf6-bbea-c7c5d600ec58",
+  "serialNumber": "urn:uuid:a9552e5f-4ff9-48db-93f1-05a4d09a9025",
   "version": 1,
   "metadata": {
-"timestamp": "2023-12-21T23:42:37Z",
+"timestamp": "2023-12-22T23:46:29Z",
 "tools": [
   {
 "vendor": "CycloneDX",
@@ -46,11 +46,11 @@
   }
 ],
 "component": {
-  "bom-ref": 
"pkg:golang/github.com/apache/camel-k/v2@v0.0.0-20231221233946-6575fa205532?type=module",
+  "bom-ref": 
"pkg:golang/github.com/apache/camel-k/v2@v0.0.0-2023134608-9d69e2e8c863?type=module",
   "type": "application",
   "name": "github.com/apache/camel-k/v2",
-  "version": "v0.0.0-20231221233946-6575fa205532",
-  "purl": 
"pkg:golang/github.com/apache/camel-k/v2@v0.0.0-20231221233946-6575fa205532?type=module\u0026goos=linux\u0026goarch=amd64",
+  "version": "v0.0.0-2023134608-9d69e2e8c863",
+  "purl": 
"pkg:golang/github.com/apache/camel-k/v2@v0.0.0-2023134608-9d69e2e8c863?type=module\u0026goos=linux\u0026goarch=amd64",
   "externalReferences": [
 {
   "url": "https://github.com/apache/camel-k";,
@@ -812,18 +812,18 @@
   }
 },
 {
-  "bom-ref": "pkg:golang/github.com/go-logr/logr@v1.3.0?type=module",
+  "bom-ref": "pkg:golang/github.com/go-logr/logr@v1.4.1?type=module",
   "type": "library",
   "name": "github.com/go-logr/logr",
-  "version": "v1.3.0",
+  "version": "v1.4.1",
   "scope": "required",
   "hashes": [
 {
   "alg": "SHA-256",
-  "content": 
"db2dd20e9d195ee73afdc8cb499f90de2afe401f53fe21b9c98457aac6a05926"
+  "content": 
"a4aa2e4f913cc6ef737850b7f495d10ee91be891503d7339a7923dd75f3c5404"
 }
   ],
-  "purl": 
"pkg:golang/github.com/go-logr/logr@v1.3.0?type=module\u0026goos=linux\u0026goarch=amd64",
+  "purl": 
"pkg:golang/github.com/go-logr/logr@v1.4.1?type=module\u0026goos=linux\u0026goarch=amd64",
   "externalReferences": [
 {
   "url": "https://github.com/go-logr/logr";,
@@ -3830,14 +3830,14 @@
   ],
   "dependencies": [
 {
-  "ref": 
"pkg:golang/github.com/apache/camel-k/v2@v0.0.0-20231221233946-6575fa205532?type=module",
+  "ref": 
"pkg:golang/github.com/apache/camel-k/v2@v0.0.0-2023134608-9d69e2e8c863?type=module",
   "dependsOn": [
 "pkg:golang/github.com/Masterminds/semver@v1.5.0?type=module",
 "pkg:golang/github.com/container-tools/spectrum@v0.6.42?type=module",
 
"pkg:golang/github.com/evanphx/json-patch@v5.7.0+incompatible?type=module",
 "pkg:golang/github.com/fsnotify/fsnotify@v1.7.0?type=module",
 "pkg:golang/github.com/gertd/go-pluralize@v0.2.1?type=module",
-"pkg:golang/github.com/go-logr/logr@v1.3.0?type=module",
+"pkg:golang/github.com/go-logr/logr@v1.4.1?type=module",
 "pkg:golang/github.com/google/go-github/v52@v52.0.0?type=module",
 "pkg:golang/github.com/google/uuid@v1.5.0?type=module",
 "pkg:golang/github.com/imdario/mergo@v0.3.13?type=module",
@@ -4085,12 +4085,12 @@
   "ref": "pkg:golang/github.com/go-logfmt/logfmt@v0.5.1?type=module"
 },
 {
-  "ref": "pkg:golang/github.com/go-logr/logr@v1.3.0?type=module"
+  "ref": "pkg:golang/github.com/go-logr/logr@v1.4.1?type=module"
 },
 {
   "ref": "pkg:golang/github.com/go-logr/zapr@v1.2.4?type=module",
   "dependsOn": [
-"pkg:golang/github.com/go-logr/logr@v1.3.0?type=module",
+"pkg:golang/github.com/go-logr/logr@v1.4.1?type=module",
 "pkg:golang/github.com/pkg/errors@v0.9.1?type=module",
 "pkg:golang/github.com/stretchr/testify@v1.8.4?type=module",
 "pkg:golang/go.uber.org/zap@v1.26.0?type=module"
@@ -4304,7 +4304,7 @@
 {
   "ref": "pkg:golang/github.com/onsi/gomega@v1.30.0?type=module",
   "dependsOn": [
-"pkg:golang/github.com/go-logr/logr@v1.3.0?type=module",
+"pkg:golang/github.com/go-logr/logr@v1.4.1?type=module",
 "pkg:golang/github.com/golang/protobuf@v1.5.3?type=module",
 "pkg:golang/github.com/google/go-cmp@v0.6.0?type=module",
  

Re: [I] Integrations fail with Jib publish strategy [camel-k]

2023-12-22 Thread via GitHub


hernanDatgDev commented on issue #5007:
URL: https://github.com/apache/camel-k/issues/5007#issuecomment-1868061433

   Tried with camel-k v2.2.0 snapshot and received more information. Seems like 
a problem accessing the docker registry. The same registry secret works with 
Spectrum as the default publish strategy. I'm only seeing this when I use Jib. 
Also for more context I'm using docker-desktop as my test cluster.
   ```
   
{"level":"info","ts":"2023-12-22T18:09:19Z","logger":"camel-k.maven.build","msg":"Containerizing
 application to hguardado/camel-k-kit-cm2svndvohps73a2vhn0:2381653..."}
   
{"level":"info","ts":"2023-12-22T18:09:19Z","logger":"camel-k.maven.build","msg":"Base
 image 'eclipse-temurin:17' does not use a specific image digest - build may 
not be reproducible"}
   
{"level":"info","ts":"2023-12-22T18:09:19Z","logger":"camel-k.maven.build","msg":"Getting
 manifest for base image eclipse-temurin:17..."}
   
{"level":"info","ts":"2023-12-22T18:09:19Z","logger":"camel-k.maven.build","msg":"Building
 extra files layer..."}
   
{"level":"info","ts":"2023-12-22T18:09:20Z","logger":"camel-k.maven.build","msg":"The
 base image requires auth. Trying again for eclipse-temurin:17..."}
   
{"level":"info","ts":"2023-12-22T18:09:21Z","logger":"camel-k.maven.build","msg":"Using
 base image with digest: 
sha256:891bc1f583d287ba1f5f429e172c10ac5d692d2a02197dfef9bd6d16b2d9ed15"}
   
{"level":"error","ts":"2023-12-22T18:09:27Z","logger":"camel-k.maven.build","msg":"I/O
 error for image 
[registry-1.docker.io/hguardado/camel-k-kit-cm2svndvohps73a2vhn0]:","stacktrace":"github.com/apache/camel-k/v2/pkg/util/log.Logger.Error\n\tgithub.com/apache/camel-k/v2/pkg/util/log/log.go:81\ngithub.com/apache/camel-k/v2/pkg/util/maven.normalizeLog\n\tgithub.com/apache/camel-k/v2/pkg/util/maven/maven_log.go:83\ngithub.com/apache/camel-k/v2/pkg/util/maven.MavenLogHandler\n\tgithub.com/apache/camel-k/v2/pkg/util/maven/maven_log.go:54\ngithub.com/apache/camel-k/v2/pkg/util.scan\n\tgithub.com/apache/camel-k/v2/pkg/util/command.go:76\ngithub.com/apache/camel-k/v2/pkg/util.RunAndLog.func1\n\tgithub.com/apache/camel-k/v2/pkg/util/command.go:55\ngolang.org/x/sync/errgroup.(*Group).Go.func1\n\tgolang.org/x/sync@v0.5.0/errgroup/errgroup.go:75"}
   
{"level":"error","ts":"2023-12-22T18:09:27Z","logger":"camel-k.maven.build","msg":"

java.net.SocketException","stacktrace":"github.com/apache/camel-k/v2/pkg/util/log.Logger.Error\n\tgithub.com/apache/camel-k/v2/pkg/util/log/log.go:81\ngithub.com/apache/camel-k/v2/pkg/util/maven.normalizeLog\n\tgithub.com/apache/camel-k/v2/pkg/util/maven/maven_log.go:83\ngithub.com/apache/camel-k/v2/pkg/util/maven.MavenLogHandler\n\tgithub.com/apache/camel-k/v2/pkg/util/maven/maven_log.go:54\ngithub.com/apache/camel-k/v2/pkg/util.scan\n\tgithub.com/apache/camel-k/v2/pkg/util/command.go:76\ngithub.com/apache/camel-k/v2/pkg/util.RunAndLog.func1\n\tgithub.com/apache/camel-k/v2/pkg/util/command.go:55\ngolang.org/x/sync/errgroup.(*Group).Go.func1\n\tgolang.org/x/sync@v0.5.0/errgroup/errgroup.go:75"}
   
{"level":"error","ts":"2023-12-22T18:09:27Z","logger":"camel-k.maven.build","msg":"
Socket 
closed","stacktrace":"github.com/apache/camel-k/v2/pkg/util/log.Logger.Error\n\tgithub.com/apache/camel-k/v2/pkg/util/log/log.go:81\ngithub.com/apache/camel-k/v2/pkg/util/maven.normalizeLog\n\tgithub.com/apache/camel-k/v2/pkg/util/maven/maven_log.go:83\ngithub.com/apache/camel-k/v2/pkg/util/maven.MavenLogHandler\n\tgithub.com/apache/camel-k/v2/pkg/util/maven/maven_log.go:54\ngithub.com/apache/camel-k/v2/pkg/util.scan\n\tgithub.com/apache/camel-k/v2/pkg/util/command.go:76\ngithub.com/apache/camel-k/v2/pkg/util.RunAndLog.func1\n\tgithub.com/apache/camel-k/v2/pkg/util/command.go:55\ngolang.org/x/sync/errgroup.(*Group).Go.func1\n\tgolang.org/x/sync@v0.5.0/errgroup/errgroup.go:75"}
   
{"level":"info","ts":"2023-12-22T18:09:27Z","logger":"camel-k.maven.build","msg":""}
   
{"level":"info","ts":"2023-12-22T18:09:27Z","logger":"camel-k.maven.build","msg":"A
 new version of jib-maven-plugin (3.4.0) is available (currently using 3.3.2). 
Update your build configuration to use the latest features and fixes!"}
   
{"level":"info","ts":"2023-12-22T18:09:27Z","logger":"camel-k.maven.build","msg":"https://github.com/GoogleContainerTools/jib/blob/master/jib-maven-plugin/CHANGELOG.md"}
   
{"level":"info","ts":"2023-12-22T18:09:27Z","logger":"camel-k.maven.build","msg":""}
   
{"level":"info","ts":"2023-12-22T18:09:27Z","logger":"camel-k.maven.build","msg":"Please
 see https://github.com/GoogleContainerTools/jib/blob/master/docs/privacy.md 
for info on disabling this update check."}
   
{"level":"info","ts":"2023-12-22T18:09:27Z","logger":"camel-k.maven.build","msg":""}
   
{"level":"info","ts":"2023-12-22T18:09:27Z","logger":"camel-k.maven.build","msg":""}
   
{"level":"info","ts":"2023-12-22T18:09:27Z","logger":"camel-k.maven.build","msg":""}
   
{"lev

[PR] build(deps): bump groovy-version from 4.0.16 to 4.0.17 [camel-k-runtime]

2023-12-22 Thread via GitHub


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

   Bumps `groovy-version` from 4.0.16 to 4.0.17.
   Updates `org.apache.groovy:groovy` from 4.0.16 to 4.0.17
   
   Commits
   
   See full diff in https://github.com/apache/groovy/commits";>compare view
   
   
   
   
   Updates `org.apache.groovy:groovy-xml` from 4.0.16 to 4.0.17
   
   Commits
   
   See full diff in https://github.com/apache/groovy/commits";>compare view
   
   
   
   
   Updates `org.apache.groovy:groovy-json` from 4.0.16 to 4.0.17
   
   Commits
   
   See full diff in https://github.com/apache/groovy/commits";>compare view
   
   
   
   
   Updates `org.apache.groovy:groovy-yaml` from 4.0.16 to 4.0.17
   
   Commits
   
   See full diff in https://github.com/apache/groovy/commits";>compare view
   
   
   
   
   Updates `org.apache.groovy:groovy-test` from 4.0.16 to 4.0.17
   
   Commits
   
   See full diff in https://github.com/apache/groovy/commits";>compare view
   
   
   
   
   
   Dependabot will resolve any conflicts with this PR as long as you don't 
alter it yourself. You can also trigger a rebase manually by commenting 
`@dependabot rebase`.
   
   [//]: # (dependabot-automerge-start)
   [//]: # (dependabot-automerge-end)
   
   ---
   
   
   Dependabot commands and options
   
   
   You can trigger Dependabot actions by commenting on this PR:
   - `@dependabot rebase` will rebase this PR
   - `@dependabot recreate` will recreate this PR, overwriting any edits that 
have been made to it
   - `@dependabot merge` will merge this PR after your CI passes on it
   - `@dependabot squash and merge` will squash and merge this PR after your CI 
passes on it
   - `@dependabot cancel merge` will cancel a previously requested merge and 
block automerging
   - `@dependabot reopen` will reopen this PR if it is closed
   - `@dependabot close` will close this PR and stop Dependabot recreating it. 
You can achieve the same result by closing it manually
   - `@dependabot show  ignore conditions` will show all of 
the ignore conditions of the specified dependency
   - `@dependabot ignore this major version` will close this PR and stop 
Dependabot creating any more for this major version (unless you reopen the PR 
or upgrade to it yourself)
   - `@dependabot ignore this minor version` will close this PR and stop 
Dependabot creating any more for this minor version (unless you reopen the PR 
or upgrade to it yourself)
   - `@dependabot ignore this dependency` will close this PR and stop 
Dependabot creating any more for this dependency (unless you reopen the PR or 
upgrade to it yourself)
   
   
   


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

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

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



(camel-k-runtime) branch dependabot/maven/groovy-version-4.0.17 created (now 1d7056e1)

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

github-bot pushed a change to branch dependabot/maven/groovy-version-4.0.17
in repository https://gitbox.apache.org/repos/asf/camel-k-runtime.git


  at 1d7056e1 build(deps): bump groovy-version from 4.0.16 to 4.0.17

No new revisions were added by this update.



(camel) branch regen_bot updated (8882d6c186d -> 17bbc6cae61)

2023-12-22 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 8882d6c186d camel-salesforce: Improve test.
 add 17bbc6cae61 CAMEL-18482: Split EIP - Allow to split in single mode. 
(#12576)

No new revisions were added by this update.

Summary of changes:
 .../org/apache/camel/catalog/models/split.json |  2 +-
 .../apache/camel/catalog/schemas/camel-spring.xsd  |  4 +-
 .../resources/org/apache/camel/model/split.json|  2 +-
 .../org/apache/camel/model/SplitDefinition.java|  7 +++-
 .../camel/processor/RecipientListProcessor.java|  4 --
 .../java/org/apache/camel/processor/Splitter.java  |  7 ++--
 ...tterMapTest.java => SplitterSingleMapTest.java} | 44 +++---
 .../dsl/yaml/deserializers/ModelDeserializers.java |  2 +-
 .../generated/resources/schema/camelYamlDsl.json   |  2 +-
 9 files changed, 46 insertions(+), 28 deletions(-)
 copy 
core/camel-core/src/test/java/org/apache/camel/processor/{SplitterMapTest.java 
=> SplitterSingleMapTest.java} (66%)



(camel) branch regen_bot updated (88d10e7ab4c -> 8882d6c186d)

2023-12-22 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 88d10e7ab4c Bump maven-surefire-plugin-version from 3.2.2 to 3.2.3 
(#12584)
 add 0375ff9c705 Bump org.openapitools:openapi-generator from 7.1.0 to 
7.2.0 (#12578)
 add 8490563ba76 CAMEL-20248: camel-salesforce: Continue Jetty 12 migration
 add 5d3f4192480 CAMEL-20236: camel-salesforce: Add missing bulk job 
properties
 add e5779d198d2 camel-salesforce: Enable checkstyle
 add 8882d6c186d camel-salesforce: Improve test.

No new revisions were added by this update.

Summary of changes:
 .../codegen/AbstractSalesforceExecution.java   |   14 +-
 .../component/salesforce/PubSubApiConsumer.java|7 +-
 .../component/salesforce/SalesforceComponent.java  |   18 +-
 .../component/salesforce/SalesforceEndpoint.java   |   32 +-
 .../component/salesforce/SalesforceHttpClient.java |7 +-
 .../salesforce/api/FieldsToNullPropertyFilter.java |3 +-
 .../salesforce/api/dto/AbstractSObjectBase.java|6 +-
 .../component/salesforce/api/dto/RestError.java|5 +-
 .../component/salesforce/api/dto/bulk/Error.java   |5 +-
 .../salesforce/api/dto/bulk/ResultError.java   |   12 +-
 .../component/salesforce/api/dto/bulkv2/Job.java   |   20 +
 .../salesforce/api/dto/composite/SObjectBatch.java |3 +-
 .../api/dto/composite/SObjectComposite.java|3 +-
 .../internal/client/AbstractClientBase.java|  722 
 .../internal/client/DefaultBulkApiClient.java  |   21 +-
 .../internal/client/DefaultCompositeApiClient.java |1 -
 .../internal/client/DefaultRawClient.java  |2 +-
 .../internal/client/DefaultRestClient.java |3 +
 .../internal/client/SalesforceHttpRequest.java |   38 -
 .../internal/client/SalesforceSecurityHandler.java |   64 +-
 .../internal/processor/AnalyticsApiProcessor.java  |6 +-
 .../internal/processor/RawProcessor.java   |1 -
 .../internal/streaming/SubscriptionHelper.java |   18 +-
 .../salesforce/HttpProxyIntegrationTest.java   |  301 ++--
 .../camel/component/salesforce/PubSubApiTest.java  |   24 +-
 .../salesforce/RestApiIntegrationTest.java | 1739 ++--
 .../salesforce/StreamingApiIntegrationTest.java|3 +
 .../component/salesforce/api/dto/LimitsTest.java   |1 -
 .../api/dto/composite/SObjectCompositeTest.java|2 +-
 .../salesforce/internal/SalesforceSessionTest.java |  116 +-
 .../internal/client/AbstractClientBaseTest.java|  287 ++--
 .../pubsub/SendOneMessagePubSubServer.java |   98 +-
 .../salesforce/internal/streaming/StubServer.java  |   21 +-
 components/camel-salesforce/pom.xml|3 +-
 parent/pom.xml |2 +-
 35 files changed, 1793 insertions(+), 1815 deletions(-)
 delete mode 100644 
components/camel-salesforce/camel-salesforce-component/src/main/java/org/apache/camel/component/salesforce/internal/client/SalesforceHttpRequest.java



(camel) branch split deleted (was ce5a63e3306)

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

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


 was ce5a63e3306 CAMEL-18482: Split EIP - Allow to split in single mode.

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



(camel) branch main updated: CAMEL-18482: Split EIP - Allow to split in single mode. (#12576)

2023-12-22 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 17bbc6cae61 CAMEL-18482: Split EIP - Allow to split in single mode. 
(#12576)
17bbc6cae61 is described below

commit 17bbc6cae61efffef70ae3a916122e30c8e93f51
Author: Claus Ibsen 
AuthorDate: Fri Dec 22 19:14:21 2023 +0100

CAMEL-18482: Split EIP - Allow to split in single mode. (#12576)

* CAMEL-18482: Split EIP - Allow to split in single mode.

* CAMEL-18482: Split EIP - Allow to split in single mode.

* CAMEL-18482: Split EIP - Allow to split in single mode.
---
 .../org/apache/camel/catalog/models/split.json |  2 +-
 .../apache/camel/catalog/schemas/camel-spring.xsd  |  4 +-
 .../resources/org/apache/camel/model/split.json|  2 +-
 .../org/apache/camel/model/SplitDefinition.java|  7 +-
 .../camel/processor/RecipientListProcessor.java|  4 --
 .../java/org/apache/camel/processor/Splitter.java  |  7 +-
 .../camel/processor/SplitterSingleMapTest.java | 75 ++
 .../dsl/yaml/deserializers/ModelDeserializers.java |  2 +-
 .../generated/resources/schema/camelYamlDsl.json   |  2 +-
 9 files changed, 91 insertions(+), 14 deletions(-)

diff --git 
a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/models/split.json
 
b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/models/split.json
index ed85cd1b120..63c0043e17e 100644
--- 
a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/models/split.json
+++ 
b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/models/split.json
@@ -16,7 +16,7 @@
 "description": { "index": 1, "kind": "element", "displayName": 
"Description", "required": false, "type": "string", "javaType": 
"java.lang.String", "deprecated": false, "autowired": false, "secret": false, 
"description": "Sets the description of this node" },
 "disabled": { "index": 2, "kind": "attribute", "displayName": "Disabled", 
"label": "advanced", "required": false, "type": "boolean", "javaType": 
"java.lang.Boolean", "deprecated": false, "autowired": false, "secret": false, 
"defaultValue": false, "description": "Whether to disable this EIP from the 
route during build time. Once an EIP has been disabled then it cannot be 
enabled later at runtime." },
 "expression": { "index": 3, "kind": "expression", "displayName": 
"Expression", "required": true, "type": "object", "javaType": 
"org.apache.camel.model.language.ExpressionDefinition", "oneOf": [ "constant", 
"csimple", "datasonnet", "exchangeProperty", "groovy", "header", "hl7terser", 
"java", "joor", "jq", "js", "jsonpath", "language", "method", "mvel", "ognl", 
"python", "ref", "simple", "spel", "tokenize", "xpath", "xquery", "xtokenize" 
], "deprecated": false, "autowired": false, "sec [...]
-"delimiter": { "index": 4, "kind": "attribute", "displayName": 
"Delimiter", "required": false, "type": "string", "javaType": 
"java.lang.String", "deprecated": false, "autowired": false, "secret": false, 
"defaultValue": ",", "description": "Delimiter used in splitting messages. Can 
be turned off using the value false. The default value is ," },
+"delimiter": { "index": 4, "kind": "attribute", "displayName": 
"Delimiter", "required": false, "type": "string", "javaType": 
"java.lang.String", "deprecated": false, "autowired": false, "secret": false, 
"defaultValue": ",", "description": "Delimiter used in splitting messages. Can 
be turned off using the value false. To force not splitting then the delimiter 
can be set to single to use the value as a single list, this can be needed in 
some special situations. The default value is comma." },
 "aggregationStrategy": { "index": 5, "kind": "attribute", "displayName": 
"Aggregation Strategy", "required": false, "type": "object", "javaType": 
"org.apache.camel.AggregationStrategy", "deprecated": false, "autowired": 
false, "secret": false, "description": "Sets a reference to the 
AggregationStrategy to be used to assemble the replies from the split messages, 
into a single outgoing message from the Splitter. By default Camel will use the 
original incoming message to the splitter (l [...]
 "aggregationStrategyMethodName": { "index": 6, "kind": "attribute", 
"displayName": "Aggregation Strategy Method Name", "label": "advanced", 
"required": false, "type": "string", "javaType": "java.lang.String", 
"deprecated": false, "autowired": false, "secret": false, "description": "This 
option can be used to explicit declare the method name to use, when using POJOs 
as the AggregationStrategy." },
 "aggregationStrategyMethodAllowNull": { "index": 7, "kind": "attribute", 
"displayName": "Aggregation Strategy Method Allow Null", "label": "advanced", 
"required": false, "type": "boolean", "javaType": "java.lang.Boolean", 
"d

Re: [PR] CAMEL-18482: Split EIP - Allow to split in single mode. [camel]

2023-12-22 Thread via GitHub


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


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

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

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



(camel) branch main updated (0375ff9c705 -> 8882d6c186d)

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

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


from 0375ff9c705 Bump org.openapitools:openapi-generator from 7.1.0 to 
7.2.0 (#12578)
 add 8490563ba76 CAMEL-20248: camel-salesforce: Continue Jetty 12 migration
 add 5d3f4192480 CAMEL-20236: camel-salesforce: Add missing bulk job 
properties
 add e5779d198d2 camel-salesforce: Enable checkstyle
 add 8882d6c186d camel-salesforce: Improve test.

No new revisions were added by this update.

Summary of changes:
 .../codegen/AbstractSalesforceExecution.java   |   14 +-
 .../component/salesforce/PubSubApiConsumer.java|7 +-
 .../component/salesforce/SalesforceComponent.java  |   18 +-
 .../component/salesforce/SalesforceEndpoint.java   |   32 +-
 .../component/salesforce/SalesforceHttpClient.java |7 +-
 .../salesforce/api/FieldsToNullPropertyFilter.java |3 +-
 .../salesforce/api/dto/AbstractSObjectBase.java|6 +-
 .../component/salesforce/api/dto/RestError.java|5 +-
 .../component/salesforce/api/dto/bulk/Error.java   |5 +-
 .../salesforce/api/dto/bulk/ResultError.java   |   12 +-
 .../component/salesforce/api/dto/bulkv2/Job.java   |   20 +
 .../salesforce/api/dto/composite/SObjectBatch.java |3 +-
 .../api/dto/composite/SObjectComposite.java|3 +-
 .../internal/client/AbstractClientBase.java|  722 
 .../internal/client/DefaultBulkApiClient.java  |   21 +-
 .../internal/client/DefaultCompositeApiClient.java |1 -
 .../internal/client/DefaultRawClient.java  |2 +-
 .../internal/client/DefaultRestClient.java |3 +
 .../internal/client/SalesforceHttpRequest.java |   38 -
 .../internal/client/SalesforceSecurityHandler.java |   64 +-
 .../internal/processor/AnalyticsApiProcessor.java  |6 +-
 .../internal/processor/RawProcessor.java   |1 -
 .../internal/streaming/SubscriptionHelper.java |   18 +-
 .../salesforce/HttpProxyIntegrationTest.java   |  301 ++--
 .../camel/component/salesforce/PubSubApiTest.java  |   24 +-
 .../salesforce/RestApiIntegrationTest.java | 1739 ++--
 .../salesforce/StreamingApiIntegrationTest.java|3 +
 .../component/salesforce/api/dto/LimitsTest.java   |1 -
 .../api/dto/composite/SObjectCompositeTest.java|2 +-
 .../salesforce/internal/SalesforceSessionTest.java |  116 +-
 .../internal/client/AbstractClientBaseTest.java|  287 ++--
 .../pubsub/SendOneMessagePubSubServer.java |   98 +-
 .../salesforce/internal/streaming/StubServer.java  |   21 +-
 components/camel-salesforce/pom.xml|3 +-
 34 files changed, 1792 insertions(+), 1814 deletions(-)
 delete mode 100644 
components/camel-salesforce/camel-salesforce-component/src/main/java/org/apache/camel/component/salesforce/internal/client/SalesforceHttpRequest.java



Re: [PR] CAMEL-20270: Introduce JBang plugins [camel]

2023-12-22 Thread via GitHub


davsclaus commented on PR #12583:
URL: https://github.com/apache/camel/pull/12583#issuecomment-1867949566

   I didn't see whether there was some updates to the documentation - that is 
something we would need down the road when we have more plugins and users need 
to install them.
   
   Also it may be possible to install multiple at once
   
   camel plugin add foo bar cheese
   
   or maybe you want all out of the box
   
   camel plugin add --all


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

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

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



(camel) branch regen_bot updated (5a4c29403b6 -> 88d10e7ab4c)

2023-12-22 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 5a4c29403b6 fix typo
 add 88d10e7ab4c Bump maven-surefire-plugin-version from 3.2.2 to 3.2.3 
(#12584)

No new revisions were added by this update.

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



(camel) branch dependabot/maven/org.openapitools-openapi-generator-7.2.0 deleted (was c6934e4ffaf)

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

davsclaus pushed a change to branch 
dependabot/maven/org.openapitools-openapi-generator-7.2.0
in repository https://gitbox.apache.org/repos/asf/camel.git


 was c6934e4ffaf Bump org.openapitools:openapi-generator from 7.1.0 to 7.2.0

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



(camel) branch main updated: Bump org.openapitools:openapi-generator from 7.1.0 to 7.2.0 (#12578)

2023-12-22 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 0375ff9c705 Bump org.openapitools:openapi-generator from 7.1.0 to 
7.2.0 (#12578)
0375ff9c705 is described below

commit 0375ff9c7055fff9cf7a7bd2c0cb54f8a269ed1f
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
AuthorDate: Fri Dec 22 18:55:38 2023 +0100

Bump org.openapitools:openapi-generator from 7.1.0 to 7.2.0 (#12578)

Bumps 
[org.openapitools:openapi-generator](https://github.com/openapitools/openapi-generator)
 from 7.1.0 to 7.2.0.
- [Release 
notes](https://github.com/openapitools/openapi-generator/releases)
- 
[Changelog](https://github.com/OpenAPITools/openapi-generator/blob/master/docs/3.0.0-release-note.md)
- 
[Commits](https://github.com/openapitools/openapi-generator/compare/v7.1.0...v7.2.0)

---
updated-dependencies:
- dependency-name: org.openapitools:openapi-generator
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] 
Co-authored-by: dependabot[bot] 
<49699333+dependabot[bot]@users.noreply.github.com>
---
 parent/pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/parent/pom.xml b/parent/pom.xml
index 53bc0036057..eaede39b258 100644
--- a/parent/pom.xml
+++ b/parent/pom.xml
@@ -361,7 +361,7 @@
 2.0.13
 5.0.0
 3.4.2
-7.1.0
+7.2.0
 3.2.2
 2.11.1
 2.8.1



Re: [PR] Bump org.openapitools:openapi-generator from 7.1.0 to 7.2.0 [camel]

2023-12-22 Thread via GitHub


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


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

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

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



Re: [PR] Bump org.cometd.java:cometd-java-client-http-jetty from 8.0.0.beta0 to 8.0.0.beta1 [camel]

2023-12-22 Thread via GitHub


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

   :robot: The Apache Camel test robot will run the tests for you :+1:


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

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

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



Re: [PR] Bump org.cometd.java:cometd-java-client-http-jetty from 8.0.0.beta0 to 8.0.0.beta1 [camel]

2023-12-22 Thread via GitHub


davsclaus commented on PR #12582:
URL: https://github.com/apache/camel/pull/12582#issuecomment-1867940866

   /component-test camel-cometd camel-salesforce


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

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

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



(camel) branch main updated (5a4c29403b6 -> 88d10e7ab4c)

2023-12-22 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 5a4c29403b6 fix typo
 add 88d10e7ab4c Bump maven-surefire-plugin-version from 3.2.2 to 3.2.3 
(#12584)

No new revisions were added by this update.

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



Re: [PR] Bump maven-surefire-plugin-version from 3.2.2 to 3.2.3 [camel]

2023-12-22 Thread via GitHub


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


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

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

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



(camel) branch dependabot/maven/maven-surefire-plugin-version-3.2.3 deleted (was 39fea9a776c)

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

davsclaus pushed a change to branch 
dependabot/maven/maven-surefire-plugin-version-3.2.3
in repository https://gitbox.apache.org/repos/asf/camel.git


 was 39fea9a776c Bump maven-surefire-plugin-version from 3.2.2 to 3.2.3

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



(camel) branch split updated (6fa30fea5a6 -> ce5a63e3306)

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

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


from 6fa30fea5a6 CAMEL-18482: Split EIP - Allow to split in single mode.
 add ce5a63e3306 CAMEL-18482: Split EIP - Allow to split in single mode.

No new revisions were added by this update.

Summary of changes:
 .../resources/org/apache/camel/catalog/schemas/camel-spring.xsd   | 4 +++-
 .../org/apache/camel/dsl/yaml/deserializers/ModelDeserializers.java   | 2 +-
 .../camel-yaml-dsl/src/generated/resources/schema/camelYamlDsl.json   | 2 +-
 3 files changed, 5 insertions(+), 3 deletions(-)



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

2023-12-22 Thread Apache Infrastructure


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



(camel-website-pub) branch asf-site updated (6916431503 -> 42d485b867)

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

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


 discard 6916431503 Website updated to dd2d03f56df686b3c1e3a9d4bf424f4d97374cba
 discard 9fdf65c700 Website updated to 325e929157412b27394080f4d4dba3d821476ddf
 new ebd496c098 Website updated to 325e929157412b27394080f4d4dba3d821476ddf
 new 42d485b867 Website updated to 6df4f08be898ff71d3502782ab245ce0311309ce

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   (6916431503)
\
 N -- N -- N   refs/heads/asf-site (42d485b867)

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

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

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


Summary of changes:
 .htaccess  |   14 +-
 .well-known/security.txt   |2 +-
 camel-k/1.12.x/index.html  |2 +-
 camel-k/2.0.x/index.html   |2 +-
 camel-k/2.1.x/index.html   |2 +-
 camel-k/next/index.html|4 +-
 .../installation/advanced/multi-architecture.html  |   14 +-
 .../kamelets/aws-sts-assume-role-action.svg|1 +
 camel-kamelets/next/avro-deserialize-action.html   |2 +-
 camel-kamelets/next/avro-serialize-action.html |2 +-
 camel-kamelets/next/aws-cloudtrail-source.html |2 +-
 camel-kamelets/next/aws-cloudwatch-sink.html   |2 +-
 camel-kamelets/next/aws-ddb-sink.html  |2 +-
 camel-kamelets/next/aws-ddb-streams-source.html|2 +-
 camel-kamelets/next/aws-ec2-sink.html  |2 +-
 camel-kamelets/next/aws-eventbridge-sink.html  |2 +-
 camel-kamelets/next/aws-kinesis-firehose-sink.html |2 +-
 camel-kamelets/next/aws-kinesis-sink.html  |2 +-
 camel-kamelets/next/aws-kinesis-source.html|2 +-
 camel-kamelets/next/aws-lambda-sink.html   |2 +-
 camel-kamelets/next/aws-redshift-sink.html |2 +-
 camel-kamelets/next/aws-redshift-source.html   |2 +-
 camel-kamelets/next/aws-s3-cdc-source.html |2 +-
 camel-kamelets/next/aws-s3-sink.html   |2 +-
 camel-kamelets/next/aws-s3-source.html |2 +-
 .../next/aws-s3-streaming-upload-sink.html |2 +-
 camel-kamelets/next/aws-secrets-manager-sink.html  |2 +-
 camel-kamelets/next/aws-ses-sink.html  |2 +-
 camel-kamelets/next/aws-sns-fifo-sink.html |2 +-
 camel-kamelets/next/aws-sns-sink.html  |2 +-
 camel-kamelets/next/aws-sqs-batch-sink.html|2 +-
 camel-kamelets/next/aws-sqs-fifo-sink.html |2 +-
 camel-kamelets/next/aws-sqs-sink.html  |2 +-
 camel-kamelets/next/aws-sqs-source.html|2 +-
 ...e-sink.html => aws-sts-assume-role-action.html} |   68 +-
 camel-kamelets/next/aws-timestream-query-sink.html |2 +-
 camel-kamelets/next/aws-translate-action.html  |2 +-
 camel-kamelets/next/azure-cosmosdb-sink.html   |2 +-
 camel-kamelets/next/azure-cosmosdb-source.html |2 +-
 camel-kamelets/next/azure-eventhubs-sink.html  |2 +-
 camel-kamelets/next/azure-eventhubs-source.html|2 +-
 camel-kamelets/next/azure-functions-sink.html  |2 +-
 camel-kamelets/next/azure-servicebus-sink.html |2 +-
 camel-kamelets/next/azure-servicebus-source.html   |2 +-
 .../next/azure-storage-blob-append-sink.html   |2 +-
 .../next/azure-storage-blob-cdc-source.html|2 +-
 .../next/azure-storage-blob-changefeed-source.html |2 +-
 camel-kamelets/next/azure-storage-blob-sink.html   |2 +-
 camel-kamelets/next/azure-storage-blob-source.html |2 +-
 .../next/azure-storage-datalake-sink.html  |2 +-
 .../next/azure-storage-datalake-source.html|2 +-
 camel-kamelets/next/azure-storage-queue-sink.html  |2 +-
 .../next/azure-storage-queue-source.html   |2 +-
 camel-kamelets/next/beer-source.html   |2 +-
 camel-kamelets/next/bitcoin-source.html|2 +-
 camel-kamelets/next/caffeine-action.html   |2 +-
 camel-kamelets/next/cassandra-sink.html|2 +-

(camel) branch regen_bot updated (49dee7b3751 -> 5a4c29403b6)

2023-12-22 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 49dee7b3751 Bump com.arangodb:arangodb-java-driver from 7.3.0 to 7.4.0 
(#12581)
 add 5a4c29403b6 fix typo

No new revisions were added by this update.

Summary of changes:
 .../org/apache/camel/catalog/components/azure-files.json  | 4 ++--
 .../resources/org/apache/camel/catalog/components/file.json   | 4 ++--
 .../resources/org/apache/camel/catalog/components/ftp.json| 4 ++--
 .../resources/org/apache/camel/catalog/components/ftps.json   | 4 ++--
 .../resources/org/apache/camel/catalog/components/sftp.json   | 4 ++--
 .../org/apache/camel/component/file/azure/azure-files.json| 4 ++--
 .../generated/resources/org/apache/camel/component/file/file.json | 4 ++--
 .../java/org/apache/camel/component/file/GenericFileEndpoint.java | 8 
 .../resources/org/apache/camel/component/file/remote/ftp.json | 4 ++--
 .../resources/org/apache/camel/component/file/remote/ftps.json| 4 ++--
 .../resources/org/apache/camel/component/file/remote/sftp.json| 4 ++--
 .../camel/builder/endpoint/dsl/FileEndpointBuilderFactory.java| 8 
 .../camel/builder/endpoint/dsl/FilesEndpointBuilderFactory.java   | 8 
 .../camel/builder/endpoint/dsl/FtpEndpointBuilderFactory.java | 8 
 .../camel/builder/endpoint/dsl/FtpsEndpointBuilderFactory.java| 8 
 .../camel/builder/endpoint/dsl/SftpEndpointBuilderFactory.java| 8 
 16 files changed, 44 insertions(+), 44 deletions(-)



(camel) branch main updated: fix typo

2023-12-22 Thread aldettinger
This is an automated email from the ASF dual-hosted git repository.

aldettinger 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 5a4c29403b6 fix typo
5a4c29403b6 is described below

commit 5a4c29403b688bc53a916a2f642799b15f355cc7
Author: aldettinger 
AuthorDate: Fri Dec 22 17:28:29 2023 +0100

fix typo
---
 .../org/apache/camel/catalog/components/azure-files.json  | 4 ++--
 .../resources/org/apache/camel/catalog/components/file.json   | 4 ++--
 .../resources/org/apache/camel/catalog/components/ftp.json| 4 ++--
 .../resources/org/apache/camel/catalog/components/ftps.json   | 4 ++--
 .../resources/org/apache/camel/catalog/components/sftp.json   | 4 ++--
 .../org/apache/camel/component/file/azure/azure-files.json| 4 ++--
 .../generated/resources/org/apache/camel/component/file/file.json | 4 ++--
 .../java/org/apache/camel/component/file/GenericFileEndpoint.java | 8 
 .../resources/org/apache/camel/component/file/remote/ftp.json | 4 ++--
 .../resources/org/apache/camel/component/file/remote/ftps.json| 4 ++--
 .../resources/org/apache/camel/component/file/remote/sftp.json| 4 ++--
 .../camel/builder/endpoint/dsl/FileEndpointBuilderFactory.java| 8 
 .../camel/builder/endpoint/dsl/FilesEndpointBuilderFactory.java   | 8 
 .../camel/builder/endpoint/dsl/FtpEndpointBuilderFactory.java | 8 
 .../camel/builder/endpoint/dsl/FtpsEndpointBuilderFactory.java| 8 
 .../camel/builder/endpoint/dsl/SftpEndpointBuilderFactory.java| 8 
 16 files changed, 44 insertions(+), 44 deletions(-)

diff --git 
a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components/azure-files.json
 
b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components/azure-files.json
index 22df6774998..cad3ddfeb3c 100644
--- 
a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components/azure-files.json
+++ 
b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components/azure-files.json
@@ -104,7 +104,7 @@
 "move": { "index": 62, "kind": "parameter", "displayName": "Move", 
"group": "filter", "label": "consumer,filter", "required": false, "type": 
"string", "javaType": "java.lang.String", "deprecated": false, "autowired": 
false, "secret": false, "description": "Expression (such as Simple Language) 
used to dynamically set the filename when moving it after processing. To move 
files into a .done subdirectory just enter .done." },
 "exclusiveReadLockStrategy": { "index": 63, "kind": "parameter", 
"displayName": "Exclusive Read Lock Strategy", "group": "lock", "label": 
"consumer,lock", "required": false, "type": "object", "javaType": 
"org.apache.camel.component.file.GenericFileExclusiveReadLockStrategy",
 "deprecated": false, "autowired": false, "secret": false, "description": 
"Pluggable read-lock as a 
org.apache.camel.component.file.GenericFileExclusiveReadLockSt [...]
 "readLock": { "index": 64, "kind": "parameter", "displayName": "Read 
Lock", "group": "lock", "label": "consumer,lock", "required": false, "type": 
"string", "javaType": "java.lang.String", "enum": [ "none", "markerFile", 
"fileLock", "rename", "changed", "idempotent", "idempotent-changed", 
"idempotent-rename" ], "deprecated": false, "autowired": false, "secret": 
false, "defaultValue": "none", "description": "Used by consumer, to only poll 
the files if it has exclusive read-lock on the  [...]
-"readLockCheckInterval": { "index": 65, "kind": "parameter", 
"displayName": "Read Lock Check Interval", "group": "lock", "label": 
"consumer,lock", "required": false, "type": "integer", "javaType": "long", 
"deprecated": false, "autowired": false, "secret": false, "defaultValue": 1000, 
"description": "Interval in millis for the read-lock, if supported by the read 
lock. This interval is used for sleeping between attempts to acquire the read 
lock. For example when using the changed read  [...]
+"readLockCheckInterval": { "index": 65, "kind": "parameter", 
"displayName": "Read Lock Check Interval", "group": "lock", "label": 
"consumer,lock", "required": false, "type": "integer", "javaType": "long", 
"deprecated": false, "autowired": false, "secret": false, "defaultValue": 1000, 
"description": "Interval in millis for the read-lock, if supported by the read 
lock. This interval is used for sleeping between attempts to acquire the read 
lock. For example when using the changed read  [...]
 "readLockDeleteOrphanLockFiles": { "index": 66, "kind": "parameter", 
"displayName": "Read Lock Delete Orphan Lock Files", "group": "lock", "label": 
"consumer,lock", "required": false, "type": "boolean", "javaType": "boolean", 
"deprecated": false, "autowired": false, "secret": false, "defaultValue": true, 
"description": "Whether or not read lock with marker files sh

Re: [PR] fix typo [camel]

2023-12-22 Thread via GitHub


aldettinger merged PR #12585:
URL: https://github.com/apache/camel/pull/12585


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

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

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



Re: [PR] CAMEL-20276 fixing jms shared topic tests [camel]

2023-12-22 Thread via GitHub


kulagaIA commented on PR #12580:
URL: https://github.com/apache/camel/pull/12580#issuecomment-1867877504

   One thing that probably could be done is polling artemis for the state of 
consumers, instead of just waiting. If it is needed i can dig into it


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

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

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



Re: [I] Integrations fail with Jib publish strategy [camel-k]

2023-12-22 Thread via GitHub


hernanDatgDev commented on issue #5007:
URL: https://github.com/apache/camel-k/issues/5007#issuecomment-1867877343

   Install command camel-k v2.1.0:
   `kamel install --registry docker.io --organization hguardado 
--registry-secret dockerhub-cred --maven-settings 
configmap:aws-repo/settings.xml --build-publish-strategy Jib 
--max-running-pipelines 2`
   
   Integration Platform:
   
[ip-jib.yaml.txt](https://github.com/apache/camel-k/files/13754319/ip-jib.yaml.txt)
   
   Test integration (timer-log.groovy):
   ```
   from('timer:heartbeat?period=3000')
   .log('heartbeat: (${exchangeProperty.CamelTimerCounter})')
   ```
   Operator logs:
   ```
   
{"level":"info","ts":"2023-12-22T16:14:35Z","logger":"camel-k.controller.integrationkit","msg":"Build
 
running","request-namespace":"default","request-name":"kit-cm2rbqvrbkps73cbuidg","api-version":"camel.apache.org/v1","kind":"IntegrationKit","ns":"default","name":"kit-cm2rbqvrbkps73cbuidg"}
   
{"level":"info","ts":"2023-12-22T16:14:35Z","logger":"camel-k.maven","msg":"executing:
 ./mvnw -V --no-transfer-progress -Dstyle.color=never package 
-Dmaven.repo.local=/etc/maven/m2 --global-settings 
/tmp/kit-cm2rbqvrbkps73cbuidg-4244968166/maven/settings.xml --settings 
/tmp/kit-cm2rbqvrbkps73cbuidg-4244968166/maven/user-settings.xml 
-Dmaven.artifact.threads=6 -T 6","MAVEN_OPTS":""}
   
{"level":"info","ts":"2023-12-22T16:14:35Z","logger":"camel-k.maven.build","msg":"Executed
 command: ./mvnw -V --no-transfer-progress -Dstyle.color=never package 
-Dmaven.repo.local=/etc/maven/m2 --global-settings 
/tmp/kit-cm2rbqvrbkps73cbuidg-4244968166/maven/settings.xml --settings 
/tmp/kit-cm2rbqvrbkps73cbuidg-4244968166/maven/user-settings.xml 
-Dmaven.artifact.threads=6 -T 6"}
   
{"level":"info","ts":"2023-12-22T16:14:36Z","logger":"camel-k.maven.build","msg":"SLF4J:
 Failed to load class \"org.slf4j.impl.StaticLoggerBinder\"."}
   
{"level":"info","ts":"2023-12-22T16:14:36Z","logger":"camel-k.maven.build","msg":"SLF4J:
 Defaulting to no-operation (NOP) logger implementation"}
   
{"level":"info","ts":"2023-12-22T16:14:36Z","logger":"camel-k.maven.build","msg":"SLF4J:
 See http://www.slf4j.org/codes.html#StaticLoggerBinder for further details."}
   
{"level":"info","ts":"2023-12-22T16:14:36Z","logger":"camel-k.maven.build","msg":"Apache
 Maven 3.8.6 (84538c9988a25aec085021c365c560670ad80f63)"}
   
{"level":"info","ts":"2023-12-22T16:14:36Z","logger":"camel-k.maven.build","msg":"Maven
 home: 
/usr/share/maven/wrapper/dists/apache-maven-3.8.6-bin/5f1464e3/apache-maven-3.8.6"}
   
{"level":"info","ts":"2023-12-22T16:14:36Z","logger":"camel-k.maven.build","msg":"Java
 version: 17.0.8.1, vendor: Eclipse Adoptium, runtime: /opt/java/openjdk"}
   
{"level":"info","ts":"2023-12-22T16:14:36Z","logger":"camel-k.maven.build","msg":"Default
 locale: en_US, platform encoding: UTF-8"}
   
{"level":"info","ts":"2023-12-22T16:14:36Z","logger":"camel-k.maven.build","msg":"OS
 name: \"linux\", version: \"5.15.49-linuxkit-pr\", arch: \"amd64\", family: 
\"unix\""}
   
{"level":"info","ts":"2023-12-22T16:17:08Z","logger":"camel-k.builder","msg":"running
 builder task package in context directory: 
/tmp/kit-cm2rbqvrbkps73cbuidg-4244968166"}
   
{"level":"info","ts":"2023-12-22T16:17:08Z","logger":"camel-k.maven.build","msg":"Executed
 command: ./mvnw jib:build -V --no-transfer-progress -Dstyle.color=never 
-Dmaven.repo.local=/etc/maven/m2 --global-settings 
/tmp/kit-cm2rbqvrbkps73cbuidg-4244968166/maven/settings.xml --settings 
/tmp/kit-cm2rbqvrbkps73cbuidg-4244968166/maven/user-settings.xml 
-Dmaven.artifact.threads=6 -T 6 -P jib 
-Djib.to.image=docker.io/hguardado/camel-k-kit-cm2rbqvrbkps73cbuidg:2368668 
-Djib.from.image=eclipse-temurin:17"}
   
{"level":"info","ts":"2023-12-22T16:17:08Z","logger":"camel-k.maven.build","msg":"SLF4J:
 Failed to load class \"org.slf4j.impl.StaticLoggerBinder\"."}
   
{"level":"info","ts":"2023-12-22T16:17:08Z","logger":"camel-k.maven.build","msg":"SLF4J:
 Defaulting to no-operation (NOP) logger implementation"}
   
{"level":"info","ts":"2023-12-22T16:17:08Z","logger":"camel-k.maven.build","msg":"SLF4J:
 See http://www.slf4j.org/codes.html#StaticLoggerBinder for further details."}
   
{"level":"info","ts":"2023-12-22T16:17:08Z","logger":"camel-k.maven.build","msg":"Apache
 Maven 3.8.6 (84538c9988a25aec085021c365c560670ad80f63)"}
   
{"level":"info","ts":"2023-12-22T16:17:08Z","logger":"camel-k.maven.build","msg":"Maven
 home: 
/usr/share/maven/wrapper/dists/apache-maven-3.8.6-bin/5f1464e3/apache-maven-3.8.6"}
   
{"level":"info","ts":"2023-12-22T16:17:08Z","logger":"camel-k.maven.build","msg":"Java
 version: 17.0.8.1, vendor: Eclipse Adoptium, runtime: /opt/java/openjdk"}
   
{"level":"info","ts":"2023-12-22T16:17:08Z","logger":"camel-k.maven.build","msg":"Default
 locale: en_US, platform encoding: UTF-8"}
   
{"level":"info","ts":"2023-12-22T16:17:08Z","logger":"camel-k.maven.build","msg":"OS
 name: \"linux\", version: \"5.15.49-linuxkit-pr\", arch: \"amd

Re: [PR] fix typo [camel]

2023-12-22 Thread via GitHub


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

   :star2: Thank you for your contribution to the Apache Camel project! :star2: 
   
   :robot: CI automation will test this PR automatically.
   
   :camel: Apache Camel Committers, please review the following items:
   
   * First-time contributors **require MANUAL approval** for the GitHub Actions 
to run
   
   * You can use the command `/component-test (camel-)component-name1 
(camel-)component-name2..` to request a test from the test bot.
   
   * You can label PRs using `build-all`, `build-dependents`, `skip-tests` and 
`test-dependents` to fine-tune the checks executed by this PR.
   
   * Build and test logs are available in the Summary page. **Only** [Apache 
Camel committers](https://camel.apache.org/community/team/#committers) have 
access to the summary. 
   
   * :warning: Be careful when sharing logs. Review their contents before 
sharing them publicly.


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

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

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



[PR] fix typo [camel]

2023-12-22 Thread via GitHub


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

   # Description
   
   
   
   # Target
   
   - [ ] I checked that the commit is targeting the correct branch (note that 
Camel 3 uses `camel-3.x`, whereas Camel 4 uses the `main` branch)
   
   # Tracking
   - [ ] If this is a large change, bug fix, or code improvement, I checked 
there is a [JIRA issue](https://issues.apache.org/jira/browse/CAMEL) filed for 
the change (usually before you start working on it).
   
   
   
   # Apache Camel coding standards and style
   
   - [ ] I checked that each commit in the pull request has a meaningful 
subject line and body.
   
   
   
   - [ ] I have run `mvn clean install -DskipTests` locally and I have 
committed all auto-generated changes
   
   
   
   


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

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

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



Re: [PR] Added Camel Kamelets 4.3.0 release [camel-website]

2023-12-22 Thread via GitHub


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

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


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

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

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



(camel) branch regen_bot updated (9f71ef6bfca -> 49dee7b3751)

2023-12-22 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 9f71ef6bfca Bump com.google.cloud:google-cloud-functions-bom from 
2.33.0 to 2.34.0
 add 49dee7b3751 Bump com.arangodb:arangodb-java-driver from 7.3.0 to 7.4.0 
(#12581)

No new revisions were added by this update.

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



(camel) branch dependabot/maven/maven-surefire-plugin-version-3.2.3 created (now 39fea9a776c)

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

github-bot pushed a change to branch 
dependabot/maven/maven-surefire-plugin-version-3.2.3
in repository https://gitbox.apache.org/repos/asf/camel.git


  at 39fea9a776c Bump maven-surefire-plugin-version from 3.2.2 to 3.2.3

No new revisions were added by this update.



[PR] Bump maven-surefire-plugin-version from 3.2.2 to 3.2.3 [camel]

2023-12-22 Thread via GitHub


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

   Bumps `maven-surefire-plugin-version` from 3.2.2 to 3.2.3.
   Updates `org.apache.maven.plugins:maven-surefire-plugin` from 3.2.2 to 3.2.3
   
   Commits
   
   https://github.com/apache/maven-surefire/commit/ac9e574a9444cc825b09bae66f30155eb028da92";>ac9e574
 [maven-release-plugin] prepare release surefire-3.2.3
   https://github.com/apache/maven-surefire/commit/2d6cbc63cb8f0dc34e3556e0c5a629129d2e7d91";>2d6cbc6
 [SUREFIRE-2220] SurefireForkChannel#getForkNodeConnectionString() returns 
inv...
   https://github.com/apache/maven-surefire/commit/05322d992778dd33e2f2e41661a2e66ef7539a68";>05322d9
 [SUREFIRE-2212] OutOfMemoryError raised when parsing files with huge 
stderr/s...
   https://github.com/apache/maven-surefire/commit/55ccd06a027f1693557c2a3ec3690ac91dcc59ba";>55ccd06
 [SUREFIRE-2211] additionalClasspathElement with UNC path not working with 
Mav...
   https://github.com/apache/maven-surefire/commit/aa864f4532282100667bf3d81dc7cbd460845408";>aa864f4
 [SUREFIRE-2216] Upgrade plugins and components (in ITs)
   https://github.com/apache/maven-surefire/commit/6662e07f5957d0fa4d12dc3e331be8f93cf355f8";>6662e07
 [SUREFIRE-2215] Upgrade to Parent 41
   https://github.com/apache/maven-surefire/commit/f5b73ab3d18baa4baf244b2526d854574e51f87e";>f5b73ab
 [SUREFIRE-2214] Uprade to HtmlUnit 3.8.0
   https://github.com/apache/maven-surefire/commit/47c5816ae6d3e596d13a3253e214939f3a479b1f";>47c5816
 [SUREFIRE-2210] - Restore ordering of additional class path elements
   https://github.com/apache/maven-surefire/commit/9b7ecf141f4686c094219038272c28fecccffa30";>9b7ecf1
 [maven-release-plugin] prepare for next development iteration
   See full diff in https://github.com/apache/maven-surefire/compare/surefire-3.2.2...surefire-3.2.3";>compare
 view
   
   
   
   
   Updates `org.apache.maven.plugins:maven-failsafe-plugin` from 3.2.2 to 3.2.3
   
   Commits
   
   https://github.com/apache/maven-surefire/commit/ac9e574a9444cc825b09bae66f30155eb028da92";>ac9e574
 [maven-release-plugin] prepare release surefire-3.2.3
   https://github.com/apache/maven-surefire/commit/2d6cbc63cb8f0dc34e3556e0c5a629129d2e7d91";>2d6cbc6
 [SUREFIRE-2220] SurefireForkChannel#getForkNodeConnectionString() returns 
inv...
   https://github.com/apache/maven-surefire/commit/05322d992778dd33e2f2e41661a2e66ef7539a68";>05322d9
 [SUREFIRE-2212] OutOfMemoryError raised when parsing files with huge 
stderr/s...
   https://github.com/apache/maven-surefire/commit/55ccd06a027f1693557c2a3ec3690ac91dcc59ba";>55ccd06
 [SUREFIRE-2211] additionalClasspathElement with UNC path not working with 
Mav...
   https://github.com/apache/maven-surefire/commit/aa864f4532282100667bf3d81dc7cbd460845408";>aa864f4
 [SUREFIRE-2216] Upgrade plugins and components (in ITs)
   https://github.com/apache/maven-surefire/commit/6662e07f5957d0fa4d12dc3e331be8f93cf355f8";>6662e07
 [SUREFIRE-2215] Upgrade to Parent 41
   https://github.com/apache/maven-surefire/commit/f5b73ab3d18baa4baf244b2526d854574e51f87e";>f5b73ab
 [SUREFIRE-2214] Uprade to HtmlUnit 3.8.0
   https://github.com/apache/maven-surefire/commit/47c5816ae6d3e596d13a3253e214939f3a479b1f";>47c5816
 [SUREFIRE-2210] - Restore ordering of additional class path elements
   https://github.com/apache/maven-surefire/commit/9b7ecf141f4686c094219038272c28fecccffa30";>9b7ecf1
 [maven-release-plugin] prepare for next development iteration
   See full diff in https://github.com/apache/maven-surefire/compare/surefire-3.2.2...surefire-3.2.3";>compare
 view
   
   
   
   
   
   Dependabot will resolve any conflicts with this PR as long as you don't 
alter it yourself. You can also trigger a rebase manually by commenting 
`@dependabot rebase`.
   
   [//]: # (dependabot-automerge-start)
   [//]: # (dependabot-automerge-end)
   
   ---
   
   
   Dependabot commands and options
   
   
   You can trigger Dependabot actions by commenting on this PR:
   - `@dependabot rebase` will rebase this PR
   - `@dependabot recreate` will recreate this PR, overwriting any edits that 
have been made to it
   - `@dependabot merge` will merge this PR after your CI passes on it
   - `@dependabot squash and merge` will squash and merge this PR after your CI 
passes on it
   - `@dependabot cancel merge` will cancel a previously requested merge and 
block automerging
   - `@dependabot reopen` will reopen this PR if it is closed
   - `@dependabot close` will close this PR and stop Dependabot recreating it. 
You can achieve the same result by closing it manually
   - `@dependabot show  ignore conditions` will show all of 
the ignore conditions of the specified dependency
   - `@dependabot ignore this major version` will close this PR and stop 
Dependabot creating any more for this major version (unless you reopen the PR 
or upgrade to it yourself)
   - `@dependabot ignore this minor version` will close this PR and stop 
Dependabot creating any more for th

(camel-website) branch main updated: Added Camel Kamelets 4.3.0 release (#1111)

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

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


The following commit(s) were added to refs/heads/main by this push:
 new 6df4f08b Added Camel Kamelets 4.3.0 release (#)
6df4f08b is described below

commit 6df4f08be898ff71d3502782ab245ce0311309ce
Author: Andrea Cosentino 
AuthorDate: Fri Dec 22 17:13:16 2023 +0100

Added Camel Kamelets 4.3.0 release (#)

Signed-off-by: Andrea Cosentino 
---
 content/releases/kamelets/release-4.3.0.md | 11 +++
 1 file changed, 11 insertions(+)

diff --git a/content/releases/kamelets/release-4.3.0.md 
b/content/releases/kamelets/release-4.3.0.md
new file mode 100644
index ..1d5182cf
--- /dev/null
+++ b/content/releases/kamelets/release-4.3.0.md
@@ -0,0 +1,11 @@
+---
+url: "/releases/kamelets-4.3.0/"
+date: 2023-12-22
+type: release-note
+version: "4.3.0"
+title: "Kamelets 4.3.0"
+preview: ""
+changelog: ""
+category: "camel-kamelets"
+jdk: [17,21]
+---



Re: [PR] Added Camel Kamelets 4.3.0 release [camel-website]

2023-12-22 Thread via GitHub


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


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

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

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



(camel) branch dependabot/maven/com.arangodb-arangodb-java-driver-7.4.0 deleted (was 40b4f5cef84)

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

github-bot pushed a change to branch 
dependabot/maven/com.arangodb-arangodb-java-driver-7.4.0
in repository https://gitbox.apache.org/repos/asf/camel.git


 was 40b4f5cef84 Bump com.arangodb:arangodb-java-driver from 7.3.0 to 7.4.0

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



(camel) branch main updated: Bump com.arangodb:arangodb-java-driver from 7.3.0 to 7.4.0 (#12581)

2023-12-22 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 49dee7b3751 Bump com.arangodb:arangodb-java-driver from 7.3.0 to 7.4.0 
(#12581)
49dee7b3751 is described below

commit 49dee7b375149aca9f03b8d9b9be19cfac275c52
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
AuthorDate: Fri Dec 22 17:12:49 2023 +0100

Bump com.arangodb:arangodb-java-driver from 7.3.0 to 7.4.0 (#12581)

Bumps 
[com.arangodb:arangodb-java-driver](https://github.com/arangodb/arangodb-java-driver)
 from 7.3.0 to 7.4.0.
- [Release notes](https://github.com/arangodb/arangodb-java-driver/releases)
- 
[Changelog](https://github.com/arangodb/arangodb-java-driver/blob/main/ChangeLog.md)
- 
[Commits](https://github.com/arangodb/arangodb-java-driver/compare/v7.3.0...v7.4.0)

---
updated-dependencies:
- dependency-name: com.arangodb:arangodb-java-driver
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] 
Co-authored-by: dependabot[bot] 
<49699333+dependabot[bot]@users.noreply.github.com>
---
 parent/pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/parent/pom.xml b/parent/pom.xml
index a436bb84e01..53bc0036057 100644
--- a/parent/pom.xml
+++ b/parent/pom.xml
@@ -55,7 +55,7 @@
 2.0.0.AM26
 1.21.1
 2.0.4
-7.3.0
+7.4.0
 5.1.1
 1.8.0
 9.6



Re: [PR] Bump com.arangodb:arangodb-java-driver from 7.3.0 to 7.4.0 [camel]

2023-12-22 Thread via GitHub


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


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

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

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



Re: [PR] Bump com.arangodb:arangodb-java-driver from 7.3.0 to 7.4.0 [camel]

2023-12-22 Thread via GitHub


oscerd commented on PR #12581:
URL: https://github.com/apache/camel/pull/12581#issuecomment-1867840043

   /component-test arangodb


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

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

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



Re: [PR] Bump org.cometd.java:cometd-java-client-http-jetty from 8.0.0.beta0 to 8.0.0.beta1 [camel]

2023-12-22 Thread via GitHub


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

   :star2: Thank you for your contribution to the Apache Camel project! :star2: 
   
   :robot: CI automation will test this PR automatically.
   
   :camel: Apache Camel Committers, please review the following items:
   
   * First-time contributors **require MANUAL approval** for the GitHub Actions 
to run
   
   * You can use the command `/component-test (camel-)component-name1 
(camel-)component-name2..` to request a test from the test bot.
   
   * You can label PRs using `build-all`, `build-dependents`, `skip-tests` and 
`test-dependents` to fine-tune the checks executed by this PR.
   
   * Build and test logs are available in the Summary page. **Only** [Apache 
Camel committers](https://camel.apache.org/community/team/#committers) have 
access to the summary. 
   
   * :warning: Be careful when sharing logs. Review their contents before 
sharing them publicly.


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

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

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



Re: [PR] fix(ctrl): failing Deployment reported in Integration [camel-k]

2023-12-22 Thread via GitHub


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

   :camel: **Thank you for contributing!**
   
   Code Coverage Report :warning: - Coverage changed: 33.6% --> 33.5% (Coverage 
difference: **-.1%**)


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

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

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



Re: [PR] CAMEL-20276 fixing jms shared topic tests [camel]

2023-12-22 Thread via GitHub


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

   :robot: The Apache Camel test robot will run the tests for you :+1:


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

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

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



Re: [PR] CAMEL-20276 fixing jms shared topic tests [camel]

2023-12-22 Thread via GitHub


kulagaIA commented on PR #12580:
URL: https://github.com/apache/camel/pull/12580#issuecomment-1867843174

   /component-test camel-jms


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

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

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



[PR] CAMEL-20270: Introduce JBang plugins [camel]

2023-12-22 Thread via GitHub


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

   # Description
   
   - Introduce plugin mechanism to modularize Camel JBang
   - Add new plugin sub-commands (add, get, delete) to manage plugins
   - Plugin configuration is stored to user home directory
   - Load plugin commands on demand
   - Create 1st plugin for Camel K and move commands into separate Maven module 
camel-jbang-plugin-k
   
   PR introduces plugins for Camel JBang where each plugin is able to add 
sub-commands to the CLI. The advantage of having a plugin in a separate Maven 
module is to modularize the Camel JBang CLI and avoid stuffing all dependencies 
and functionality into `camel-jbang-core`.
   
   The PR adds a 1st plugin module `camel-jbang-plugin-k` that manages 
integrations on Kubernetes (the commands have been added to Camel JBang 
recently).
   
   Users need to enable/add plugins with the new command `camel plugin add`. 
The plugin usually gets a name, a command and a dependency (Maven GAV) that is 
added on demand when the user calls a plugin command. Once the plugin is added 
for the environment all commands of the plugin get listed in the CLI and users 
can just call the sub-commands like every other sub-command.
   
   The plugin config holding all enabled plugins for the environment is stored 
in the `user.home` directory (`.camel-jbang-plugins.json`).
   
   Users are able to list enabled plugins with `camel plugin list` (`--all` 
option to list all supported plugins in the Camel project).
   
   `camel plugin delete` will remove a plugin from the current environment so 
that the plugin commands are no longer listed in the CLI and users will not be 
able to call the plugin`s commands any more.
   
   # Follow-up actions
   
   - Update the documentation to describe new JBang plugin mechanism
   - Extract more plugins from current Camel JBang sub-commands (e.g. sbom, 
hawtio, jolokia)
   
   # Target
   
   - [x] I checked that the commit is targeting the correct branch (note that 
Camel 3 uses `camel-3.x`, whereas Camel 4 uses the `main` branch)
   
   # Tracking
   
   Relates to CAMEL-20270
   
   # Apache Camel coding standards and style
   
   - [x] I checked that each commit in the pull request has a meaningful 
subject line and body.
   - [x] I have run `mvn clean install -DskipTests` locally and I have 
committed all auto-generated changes
   


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

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

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



Re: [PR] Bump com.arangodb:arangodb-java-driver from 7.3.0 to 7.4.0 [camel]

2023-12-22 Thread via GitHub


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

   :robot: The Apache Camel test robot will run the tests for you :+1:


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

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

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



[PR] Bump org.cometd.java:cometd-java-client-http-jetty from 8.0.0.beta0 to 8.0.0.beta1 [camel]

2023-12-22 Thread via GitHub


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

   Bumps org.cometd.java:cometd-java-client-http-jetty from 8.0.0.beta0 to 
8.0.0.beta1.
   
   
   [![Dependabot compatibility 
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=org.cometd.java:cometd-java-client-http-jetty&package-manager=maven&previous-version=8.0.0.beta0&new-version=8.0.0.beta1)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)
   
   Dependabot will resolve any conflicts with this PR as long as you don't 
alter it yourself. You can also trigger a rebase manually by commenting 
`@dependabot rebase`.
   
   [//]: # (dependabot-automerge-start)
   [//]: # (dependabot-automerge-end)
   
   ---
   
   
   Dependabot commands and options
   
   
   You can trigger Dependabot actions by commenting on this PR:
   - `@dependabot rebase` will rebase this PR
   - `@dependabot recreate` will recreate this PR, overwriting any edits that 
have been made to it
   - `@dependabot merge` will merge this PR after your CI passes on it
   - `@dependabot squash and merge` will squash and merge this PR after your CI 
passes on it
   - `@dependabot cancel merge` will cancel a previously requested merge and 
block automerging
   - `@dependabot reopen` will reopen this PR if it is closed
   - `@dependabot close` will close this PR and stop Dependabot recreating it. 
You can achieve the same result by closing it manually
   - `@dependabot show  ignore conditions` will show all of 
the ignore conditions of the specified dependency
   - `@dependabot ignore this major version` will close this PR and stop 
Dependabot creating any more for this major version (unless you reopen the PR 
or upgrade to it yourself)
   - `@dependabot ignore this minor version` will close this PR and stop 
Dependabot creating any more for this minor version (unless you reopen the PR 
or upgrade to it yourself)
   - `@dependabot ignore this dependency` will close this PR and stop 
Dependabot creating any more for this dependency (unless you reopen the PR or 
upgrade to it yourself)
   
   
   


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

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

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



(camel) branch dependabot/maven/org.cometd.java-cometd-java-client-http-jetty-8.0.0.beta1 created (now 5fff7fcfe0a)

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

github-bot pushed a change to branch 
dependabot/maven/org.cometd.java-cometd-java-client-http-jetty-8.0.0.beta1
in repository https://gitbox.apache.org/repos/asf/camel.git


  at 5fff7fcfe0a Bump org.cometd.java:cometd-java-client-http-jetty

No new revisions were added by this update.



(camel) branch regen_bot updated (9db0bc008dc -> 9f71ef6bfca)

2023-12-22 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 9db0bc008dc Bump org.apache.jackrabbit:jackrabbit-core from 2.21.20 to 
2.21.22
 add 9f71ef6bfca Bump com.google.cloud:google-cloud-functions-bom from 
2.33.0 to 2.34.0

No new revisions were added by this update.

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



Re: [PR] Bump com.arangodb:arangodb-java-driver from 7.3.0 to 7.4.0 [camel]

2023-12-22 Thread via GitHub


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

   :star2: Thank you for your contribution to the Apache Camel project! :star2: 
   
   :robot: CI automation will test this PR automatically.
   
   :camel: Apache Camel Committers, please review the following items:
   
   * First-time contributors **require MANUAL approval** for the GitHub Actions 
to run
   
   * You can use the command `/component-test (camel-)component-name1 
(camel-)component-name2..` to request a test from the test bot.
   
   * You can label PRs using `build-all`, `build-dependents`, `skip-tests` and 
`test-dependents` to fine-tune the checks executed by this PR.
   
   * Build and test logs are available in the Summary page. **Only** [Apache 
Camel committers](https://camel.apache.org/community/team/#committers) have 
access to the summary. 
   
   * :warning: Be careful when sharing logs. Review their contents before 
sharing them publicly.


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

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

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



(camel) branch dependabot/maven/com.arangodb-arangodb-java-driver-7.4.0 created (now 40b4f5cef84)

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

github-bot pushed a change to branch 
dependabot/maven/com.arangodb-arangodb-java-driver-7.4.0
in repository https://gitbox.apache.org/repos/asf/camel.git


  at 40b4f5cef84 Bump com.arangodb:arangodb-java-driver from 7.3.0 to 7.4.0

No new revisions were added by this update.



[PR] Bump com.arangodb:arangodb-java-driver from 7.3.0 to 7.4.0 [camel]

2023-12-22 Thread via GitHub


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

   Bumps 
[com.arangodb:arangodb-java-driver](https://github.com/arangodb/arangodb-java-driver)
 from 7.3.0 to 7.4.0.
   
   Release notes
   Sourced from https://github.com/arangodb/arangodb-java-driver/releases";>com.arangodb:arangodb-java-driver's
 releases.
   
   Version 7.4.0
   Added
   
   added new methods to remove graph definitions and vertex collections, to 
align the naming with the documentation (DE-729)
   added support to Jackson 2.16 (DE-735)
   
   Changed
   
   deprecated ArangoDB.Builder.asyncExecutor() (DE-726)
   retry requests on response code 503 (DE-55, https://redirect.github.com/arangodb/arangodb-java-driver/issues/530";>#530)
   changed ArangoCursor#close() and 
ArangoCursorAsync#close() to be idempotent (DE-727, https://redirect.github.com/arangodb/arangodb-java-driver/issues/528";>#528)
   changed default Jackson dependencies versions to 2.16 (DE-735)
   
   Fixed
   
   fixed exception handling on sending HTTP requests
   fixed management of hosts marked for deletion (DE-723, https://redirect.github.com/arangodb/arangodb-java-driver/issues/384";>#384)
   fixed VST resilience (https://redirect.github.com/arangodb/arangodb-java-driver/issues/529";>#529,
 DE-725)
   fixed failover with round-robin load balancing (DE-724)
   fixed init cause of ArangoDBException
   
   
   
   
   Changelog
   Sourced from https://github.com/arangodb/arangodb-java-driver/blob/main/ChangeLog.md";>com.arangodb:arangodb-java-driver's
 changelog.
   
   [7.4.0] - 2023-12-20
   Added
   
   added new methods to remove graph definitions and vertex collections, to 
align the naming with the documentation (DE-729)
   added support to Jackson 2.16 (DE-735)
   
   Changed
   
   deprecated ArangoDB.Builder.asyncExecutor() (DE-726)
   retry requests on response code 503 (DE-55, https://redirect.github.com/arangodb/arangodb-java-driver/issues/530";>#530)
   changed ArangoCursor#close() and 
ArangoCursorAsync#close() to be idempotent (DE-727, https://redirect.github.com/arangodb/arangodb-java-driver/issues/528";>#528)
   changed default Jackson dependencies versions to 2.16 (DE-735)
   
   Fixed
   
   fixed exception handling on sending HTTP requests
   fixed management of hosts marked for deletion (DE-723, https://redirect.github.com/arangodb/arangodb-java-driver/issues/384";>#384)
   fixed VST resilience (https://redirect.github.com/arangodb/arangodb-java-driver/issues/529";>#529,
 DE-725)
   fixed failover with round-robin load balancing (DE-724)
   fixed init cause of ArangoDBException
   
   
   
   
   Commits
   
   https://github.com/arangodb/arangodb-java-driver/commit/a2cd8550e512ddb26bf43d9bea1b460e3f7a9121";>a2cd855
 v7.4.0
   https://github.com/arangodb/arangodb-java-driver/commit/a278e5b3c7a9651b650509dd50d83afcc860fa93";>a278e5b
 CI fix
   https://github.com/arangodb/arangodb-java-driver/commit/81a15993e20b2e49b01060fe095d6e7a16e70eeb";>81a1599
 deprecated ArangoDB.Builder.asyncExecutor() (DE-726)
   https://github.com/arangodb/arangodb-java-driver/commit/55fd45ac96fbadce468c46dcd6f109b93974361b";>55fd45a
 fixed exception handling on sending HTTP requests
   https://github.com/arangodb/arangodb-java-driver/commit/0d9df1684d67b76d8681121f9cde06162d6adca4";>0d9df16
 align Graph API naming to documentation (DE-729)
   https://github.com/arangodb/arangodb-java-driver/commit/aa5ee8aa1b744ba154146d4d53b8b96738e7dc4e";>aa5ee8a
 updated CI config
   https://github.com/arangodb/arangodb-java-driver/commit/98d6b780c5b863d77956d790fcb2293fe6e76047";>98d6b78
 fixed management of hosts marked for deletion (DE-723, https://redirect.github.com/arangodb/arangodb-java-driver/issues/384";>#384)
   https://github.com/arangodb/arangodb-java-driver/commit/2a09dfaefd1d6863ccffac51f5e8a3a8d8f79c45";>2a09dfa
 retry on error 503 (DE-55, https://redirect.github.com/arangodb/arangodb-java-driver/issues/530";>#530)
   https://github.com/arangodb/arangodb-java-driver/commit/17cfc2fef3ed9617a59ac4b6bf89745c9c529930";>17cfc2f
 idempotent close cursor (DE-727, https://redirect.github.com/arangodb/arangodb-java-driver/issues/528";>#528)
   https://github.com/arangodb/arangodb-java-driver/commit/a0175ac756e0c61a5586a8b07810fc9dfc1c05aa";>a0175ac
 support Jackson version 2.16 (DE-735)
   Additional commits viewable in https://github.com/arangodb/arangodb-java-driver/compare/v7.3.0...v7.4.0";>compare
 view
   
   
   
   
   
   [![Dependabot compatibility 
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=com.arangodb:arangodb-java-driver&package-manager=maven&previous-version=7.3.0&new-version=7.4.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)
   
   Dependabot will resolve any conflicts with this PR as long as you don't 
alter it yourself. You can also trigger a rebase manually by commenting 
`@depen

Re: [PR] Bump com.google.cloud:google-cloud-functions-bom from 2.33.0 to 2.34.0 [camel]

2023-12-22 Thread via GitHub


apupier merged PR #12577:
URL: https://github.com/apache/camel/pull/12577


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

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

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



(camel) branch dependabot/maven/com.google.cloud-google-cloud-functions-bom-2.34.0 deleted (was 660b0aa4efe)

2023-12-22 Thread apupier
This is an automated email from the ASF dual-hosted git repository.

apupier pushed a change to branch 
dependabot/maven/com.google.cloud-google-cloud-functions-bom-2.34.0
in repository https://gitbox.apache.org/repos/asf/camel.git


 was 660b0aa4efe Bump com.google.cloud:google-cloud-functions-bom from 
2.33.0 to 2.34.0

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



(camel) branch main updated (9db0bc008dc -> 9f71ef6bfca)

2023-12-22 Thread apupier
This is an automated email from the ASF dual-hosted git repository.

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


from 9db0bc008dc Bump org.apache.jackrabbit:jackrabbit-core from 2.21.20 to 
2.21.22
 add 9f71ef6bfca Bump com.google.cloud:google-cloud-functions-bom from 
2.33.0 to 2.34.0

No new revisions were added by this update.

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



Re: [PR] CAMEL-20276 fixing jms shared topic tests [camel]

2023-12-22 Thread via GitHub


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

   :robot: The Apache Camel test robot will run the tests for you :+1:


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

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

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



Re: [PR] CAMEL-20276 fixing jms shared topic tests [camel]

2023-12-22 Thread via GitHub


kulagaIA commented on PR #12580:
URL: https://github.com/apache/camel/pull/12580#issuecomment-1867822060

   /component-test camel-jms


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

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

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



Re: [PR] CAMEL-20276 fixing jms shared topic tests [camel]

2023-12-22 Thread via GitHub


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

   :star2: Thank you for your contribution to the Apache Camel project! :star2: 
   
   :robot: CI automation will test this PR automatically.
   
   :camel: Apache Camel Committers, please review the following items:
   
   * First-time contributors **require MANUAL approval** for the GitHub Actions 
to run
   
   * You can use the command `/component-test (camel-)component-name1 
(camel-)component-name2..` to request a test from the test bot.
   
   * You can label PRs using `build-all`, `build-dependents`, `skip-tests` and 
`test-dependents` to fine-tune the checks executed by this PR.
   
   * Build and test logs are available in the Summary page. **Only** [Apache 
Camel committers](https://camel.apache.org/community/team/#committers) have 
access to the summary. 
   
   * :warning: Be careful when sharing logs. Review their contents before 
sharing them publicly.


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

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

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



(camel) branch regen_bot updated (73a70e454bf -> 9db0bc008dc)

2023-12-22 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 73a70e454bf Bump xyz.rogfam:littleproxy from 2.1.0 to 2.1.1 (#12575)
 add 9db0bc008dc Bump org.apache.jackrabbit:jackrabbit-core from 2.21.20 to 
2.21.22

No new revisions were added by this update.

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



Re: [PR] Bump com.google.cloud:google-cloud-functions-bom from 2.33.0 to 2.34.0 [camel]

2023-12-22 Thread via GitHub


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

   :robot: The Apache Camel test robot will run the tests for you :+1:


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

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

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



Re: [PR] Bump com.google.cloud:google-cloud-functions-bom from 2.33.0 to 2.34.0 [camel]

2023-12-22 Thread via GitHub


apupier commented on PR #12577:
URL: https://github.com/apache/camel/pull/12577#issuecomment-1867792228

   /component-test google


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

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

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



(camel) branch dependabot/maven/org.apache.jackrabbit-jackrabbit-core-2.21.22 deleted (was 758bec6d4a9)

2023-12-22 Thread apupier
This is an automated email from the ASF dual-hosted git repository.

apupier pushed a change to branch 
dependabot/maven/org.apache.jackrabbit-jackrabbit-core-2.21.22
in repository https://gitbox.apache.org/repos/asf/camel.git


 was 758bec6d4a9 Bump org.apache.jackrabbit:jackrabbit-core from 2.21.20 to 
2.21.22

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



(camel) branch main updated: Bump org.apache.jackrabbit:jackrabbit-core from 2.21.20 to 2.21.22

2023-12-22 Thread apupier
This is an automated email from the ASF dual-hosted git repository.

apupier 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 9db0bc008dc Bump org.apache.jackrabbit:jackrabbit-core from 2.21.20 to 
2.21.22
9db0bc008dc is described below

commit 9db0bc008dc5cf6435e8ff50d31cc812da2ebdc0
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
AuthorDate: Fri Dec 22 14:45:55 2023 +

Bump org.apache.jackrabbit:jackrabbit-core from 2.21.20 to 2.21.22

Bumps org.apache.jackrabbit:jackrabbit-core from 2.21.20 to 2.21.22.

---
updated-dependencies:
- dependency-name: org.apache.jackrabbit:jackrabbit-core
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] 
---
 parent/pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/parent/pom.xml b/parent/pom.xml
index 371742ee6be..4b66cc36144 100644
--- a/parent/pom.xml
+++ b/parent/pom.xml
@@ -221,7 +221,7 @@
 2.5.2
 1.0.0-preview.20230409
 2.15.3
-2.21.20
+2.21.22
 0.13
 3.1.6
 2.4.1



Re: [PR] Bump org.apache.jackrabbit:jackrabbit-core from 2.21.20 to 2.21.22 [camel]

2023-12-22 Thread via GitHub


apupier merged PR #12579:
URL: https://github.com/apache/camel/pull/12579


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

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

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



Re: [PR] Bump org.apache.jackrabbit:jackrabbit-core from 2.21.20 to 2.21.22 [camel]

2023-12-22 Thread via GitHub


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

   :robot: The Apache Camel test robot will run the tests for you :+1:


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

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

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



Re: [PR] Bump org.apache.jackrabbit:jackrabbit-core from 2.21.20 to 2.21.22 [camel]

2023-12-22 Thread via GitHub


apupier commented on PR #12579:
URL: https://github.com/apache/camel/pull/12579#issuecomment-1867787570

   /component-test jcr


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

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

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



(camel-k) branch main updated: chore(runtime): default to latest LTS (#5009)

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

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


The following commit(s) were added to refs/heads/main by this push:
 new 2e2eca550 chore(runtime): default to latest LTS (#5009)
2e2eca550 is described below

commit 2e2eca550fe4a82c6a622b5d9bc72b403ba5a290
Author: Pasquale Congiusti 
AuthorDate: Fri Dec 22 15:57:16 2023 +0100

chore(runtime): default to latest LTS (#5009)
---
 docs/antora.yml| 16 ++---
 pkg/util/defaults/defaults.go  |  2 +-
 ...catalog-3.6.0.yaml => camel-catalog-3.2.3.yaml} | 27 +++---
 script/Makefile|  4 ++--
 4 files changed, 19 insertions(+), 30 deletions(-)

diff --git a/docs/antora.yml b/docs/antora.yml
index 8e368cf8e..03dfef953 100644
--- a/docs/antora.yml
+++ b/docs/antora.yml
@@ -30,15 +30,15 @@ asciidoc:
   attributes:
 requires: "'util=camel-website-util,ck=xref:js/ck.js'"
 prerelease: true
-camel-kamelets-version: '4.2.0'
-camel-kamelets-docs-version: 4.2.x
-camel-k-runtime-version: 3.6.0
+camel-kamelets-version: '4.0.1'
+camel-kamelets-docs-version: 4.0.x
+camel-k-runtime-version: 3.2.3
 camel-api-versions: camel.apache.org/v1 camel.apache.org/v1alpha1 # from 
Makefile BUNDLE_CAMEL_APIS
-camel-version: 4.2.0
-camel-docs-version: 4.2.x
-camel-quarkus-version: 3.6.0
-camel-quarkus-docs-version: 3.6.x
-quarkus-version: 3.6.0
+camel-version: 4.0.3
+camel-docs-version: 4.0.x
+camel-quarkus-version: 3.2.3
+camel-quarkus-docs-version: 3.2.x
+quarkus-version: 3.2.9.Final
 buildah-version: 1.30.0
 kaniko-version: 1.9.1
 kustomize-version: 4.5.4
diff --git a/pkg/util/defaults/defaults.go b/pkg/util/defaults/defaults.go
index cbc823e01..b5c6d2001 100644
--- a/pkg/util/defaults/defaults.go
+++ b/pkg/util/defaults/defaults.go
@@ -26,7 +26,7 @@ const (
Version = "2.2.0-SNAPSHOT"
 
// DefaultRuntimeVersion --
-   DefaultRuntimeVersion = "3.6.0"
+   DefaultRuntimeVersion = "3.2.3"
 
// BuildahVersion --
BuildahVersion = "1.30.0"
diff --git a/resources/camel-catalog-3.6.0.yaml 
b/resources/camel-catalog-3.2.3.yaml
similarity index 99%
rename from resources/camel-catalog-3.6.0.yaml
rename to resources/camel-catalog-3.2.3.yaml
index 6f6b5ce5b..0c9bbb903 100644
--- a/resources/camel-catalog-3.6.0.yaml
+++ b/resources/camel-catalog-3.2.3.yaml
@@ -18,24 +18,22 @@
 apiVersion: camel.apache.org/v1
 kind: CamelCatalog
 metadata:
-  name: camel-catalog-3.6.0
+  name: camel-catalog-3.2.3
   labels:
 app: camel-k
-camel.apache.org/catalog.loader.version: 4.2.0
-camel.apache.org/catalog.version: 4.2.0
-camel.apache.org/runtime.version: 3.6.0
+camel.apache.org/catalog.loader.version: 4.0.3
+camel.apache.org/catalog.version: 4.0.3
+camel.apache.org/runtime.version: 3.2.3
 spec:
   runtime:
-version: 3.6.0
+version: 3.2.3
 provider: quarkus
 applicationClass: io.quarkus.bootstrap.runner.QuarkusEntryPoint
 metadata:
-  camel-quarkus.version: 3.6.0
-  camel.version: 4.2.0
-  jib.layer-filter-extension-maven.version: 0.3.0
-  jib.maven-plugin.version: 3.4.0
+  camel-quarkus.version: 3.2.3
+  camel.version: 4.0.3
   quarkus.native-builder-image: 
quay.io/quarkus/ubi-quarkus-mandrel-builder-image:23.0-jdk-17
-  quarkus.version: 3.6.0
+  quarkus.version: 3.2.9.Final
 dependencies:
 - groupId: org.apache.camel.k
   artifactId: camel-k-runtime
@@ -2404,15 +2402,6 @@ spec:
 passive: false
   javaTypes:
   - org.apache.camel.component.springrabbit.SpringRabbitMQComponent
-camel-quarkus-spring-redis:
-  groupId: org.apache.camel.quarkus
-  artifactId: camel-quarkus-spring-redis
-  schemes:
-  - id: spring-redis
-http: false
-passive: false
-  javaTypes:
-  - org.apache.camel.component.redis.RedisComponent
 camel-quarkus-sql:
   groupId: org.apache.camel.quarkus
   artifactId: camel-quarkus-sql
diff --git a/script/Makefile b/script/Makefile
index 634b03152..5e41283e2 100644
--- a/script/Makefile
+++ b/script/Makefile
@@ -23,7 +23,7 @@ VERSIONFILE := pkg/util/defaults/defaults.go
 VERSION ?= 2.2.0-SNAPSHOT
 LAST_RELEASED_IMAGE_NAME := camel-k-operator
 LAST_RELEASED_VERSION ?= 2.1.0
-DEFAULT_RUNTIME_VERSION := 3.6.0
+DEFAULT_RUNTIME_VERSION := 3.2.3
 BUILDAH_VERSION := 1.30.0
 KANIKO_VERSION := 1.9.1
 CONTROLLER_GEN_VERSION := v0.6.1
@@ -86,7 +86,7 @@ STAGING_RUNTIME_REPO :=
 INSTALL_DEFAULT_KAMELETS ?= true
 KAMELET_CATALOG_REPO := https://github.com/apache/camel-kamelets.git
 # Make sure to use a released tag or empty if you want to get the latest 
development bits
-KAMELET_CATALOG_REPO_TAG := v4.2.0
+KAMELET_CATALOG_REPO_TAG := v4.0.1
 
 # When performing integration tests, it is 

Re: [PR] chore(runtime): default to latest LTS [camel-k]

2023-12-22 Thread via GitHub


oscerd merged PR #5009:
URL: https://github.com/apache/camel-k/pull/5009


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

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

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



(camel) branch dependabot/maven/org.apache.jackrabbit-jackrabbit-core-2.21.22 created (now 758bec6d4a9)

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

github-bot pushed a change to branch 
dependabot/maven/org.apache.jackrabbit-jackrabbit-core-2.21.22
in repository https://gitbox.apache.org/repos/asf/camel.git


  at 758bec6d4a9 Bump org.apache.jackrabbit:jackrabbit-core from 2.21.20 to 
2.21.22

No new revisions were added by this update.



Re: [PR] Bump org.apache.jackrabbit:jackrabbit-core from 2.21.20 to 2.21.22 [camel]

2023-12-22 Thread via GitHub


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

   :star2: Thank you for your contribution to the Apache Camel project! :star2: 
   
   :robot: CI automation will test this PR automatically.
   
   :camel: Apache Camel Committers, please review the following items:
   
   * First-time contributors **require MANUAL approval** for the GitHub Actions 
to run
   
   * You can use the command `/component-test (camel-)component-name1 
(camel-)component-name2..` to request a test from the test bot.
   
   * You can label PRs using `build-all`, `build-dependents`, `skip-tests` and 
`test-dependents` to fine-tune the checks executed by this PR.
   
   * Build and test logs are available in the Summary page. **Only** [Apache 
Camel committers](https://camel.apache.org/community/team/#committers) have 
access to the summary. 
   
   * :warning: Be careful when sharing logs. Review their contents before 
sharing them publicly.


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

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

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



[PR] Bump org.apache.jackrabbit:jackrabbit-core from 2.21.20 to 2.21.22 [camel]

2023-12-22 Thread via GitHub


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

   Bumps org.apache.jackrabbit:jackrabbit-core from 2.21.20 to 2.21.22.
   
   
   [![Dependabot compatibility 
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=org.apache.jackrabbit:jackrabbit-core&package-manager=maven&previous-version=2.21.20&new-version=2.21.22)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)
   
   Dependabot will resolve any conflicts with this PR as long as you don't 
alter it yourself. You can also trigger a rebase manually by commenting 
`@dependabot rebase`.
   
   [//]: # (dependabot-automerge-start)
   [//]: # (dependabot-automerge-end)
   
   ---
   
   
   Dependabot commands and options
   
   
   You can trigger Dependabot actions by commenting on this PR:
   - `@dependabot rebase` will rebase this PR
   - `@dependabot recreate` will recreate this PR, overwriting any edits that 
have been made to it
   - `@dependabot merge` will merge this PR after your CI passes on it
   - `@dependabot squash and merge` will squash and merge this PR after your CI 
passes on it
   - `@dependabot cancel merge` will cancel a previously requested merge and 
block automerging
   - `@dependabot reopen` will reopen this PR if it is closed
   - `@dependabot close` will close this PR and stop Dependabot recreating it. 
You can achieve the same result by closing it manually
   - `@dependabot show  ignore conditions` will show all of 
the ignore conditions of the specified dependency
   - `@dependabot ignore this major version` will close this PR and stop 
Dependabot creating any more for this major version (unless you reopen the PR 
or upgrade to it yourself)
   - `@dependabot ignore this minor version` will close this PR and stop 
Dependabot creating any more for this minor version (unless you reopen the PR 
or upgrade to it yourself)
   - `@dependabot ignore this dependency` will close this PR and stop 
Dependabot creating any more for this dependency (unless you reopen the PR or 
upgrade to it yourself)
   
   
   


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

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

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



  1   2   3   >