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

2024-05-24 Thread via GitHub


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

   The [camel-main](https://github.com/apache/camel-quarkus/tree/camel-main) 
branch build has failed:
   
   * Build ID: 9231313246-1389-52f297af-1e36-4497-92b0-cb4cdfc7331f
   * Camel Quarkus Commit: e4010a7f19e2ca34e53d0e80702492bfdf16145a
   
   * Camel Main Commit: a8f4527157769cc01e7f03282d97328b712e31a2
   * Link to build: 
https://github.com/apache/camel-quarkus/actions/runs/9231313246


-- 
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] [Github Actions] Periodic Sync Camel Spring Boot (Camel 4) [camel-spring-boot]

2024-05-24 Thread via GitHub


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

   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



Re: [I] Designer UI crashed when new Direct Component added if existing has no URI [camel-karavan]

2024-05-24 Thread via GitHub


mgubaidullin closed issue #1297: Designer UI crashed when new Direct Component 
added if existing has no URI
URL: https://github.com/apache/camel-karavan/issues/1297


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



[I] Designer UI crashed when new Direct Component added if existing has no URI [camel-karavan]

2024-05-24 Thread via GitHub


mgubaidullin opened a new issue, #1297:
URL: https://github.com/apache/camel-karavan/issues/1297

   ### Describe the bug
   
   Designer UI crashed when new Direct Component added if existing has no URI
   
   ### Steps to reproduce the behavior
   
   1. Go to '...'a
   2. Click on ''
   3. Scroll down to ''
   4. See error
   
   
   ### Variant
   
   Web Application
   
   ### Container Management (if applicable)
   
   None
   
   ### Operating System (if applicable)
   
   None
   
   ### Version
   
   4.7.0
   
   ### Relevant log output
   
   _No response_


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

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

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



(camel-karavan) branch main updated: Fix #1297

2024-05-24 Thread marat
This is an automated email from the ASF dual-hosted git repository.

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


The following commit(s) were added to refs/heads/main by this push:
 new e4a9d77d Fix #1297
e4a9d77d is described below

commit e4a9d77d8da87e30e1c19ff68ad08d90d8e174a5
Author: Marat Gubaidullin 
AuthorDate: Fri May 24 18:20:04 2024 -0400

Fix #1297
---
 .../src/main/webui/src/designer/utils/CamelUi.tsx   |  7 +--
 karavan-designer/public/example/demo.camel.yaml | 17 -
 karavan-designer/src/designer/utils/CamelUi.tsx |  7 +--
 karavan-space/src/designer/utils/CamelUi.tsx|  7 +--
 4 files changed, 19 insertions(+), 19 deletions(-)

diff --git a/karavan-app/src/main/webui/src/designer/utils/CamelUi.tsx 
b/karavan-app/src/main/webui/src/designer/utils/CamelUi.tsx
index e824a895..a556fffe 100644
--- a/karavan-app/src/main/webui/src/designer/utils/CamelUi.tsx
+++ b/karavan-app/src/main/webui/src/designer/utils/CamelUi.tsx
@@ -339,8 +339,11 @@ export class CamelUi {
 .forEach((r: RouteDefinition) => {
 const uri = r.from.uri;
 const name = r.from.parameters.name;
-if (showComponentName) result.push(uri + ":" + name);
-else result.push(name);
+if (showComponentName && name) {
+result.push(uri + ":" + name);
+} else if (name){
+result.push(name);
+}
 });
 return result;
 }
diff --git a/karavan-designer/public/example/demo.camel.yaml 
b/karavan-designer/public/example/demo.camel.yaml
index 57f6252a..2c843d16 100644
--- a/karavan-designer/public/example/demo.camel.yaml
+++ b/karavan-designer/public/example/demo.camel.yaml
@@ -1,18 +1,9 @@
 - route:
-id: route-3d00
-nodePrefixId: route-01c
+id: route-d1dc
+nodePrefixId: route-0f1
 from:
-  id: from-4a08
+  id: from-852d
   uri: direct
-  parameters:
-name: adsdasdas
   steps:
 - loadBalance:
-id: loadBalance-55de
-steps:
-  - to:
-  id: to-87b5
-  uri: direct
-  - to:
-  id: to-f061
-  uri: direct
+id: loadBalance-d8f0
diff --git a/karavan-designer/src/designer/utils/CamelUi.tsx 
b/karavan-designer/src/designer/utils/CamelUi.tsx
index e824a895..a556fffe 100644
--- a/karavan-designer/src/designer/utils/CamelUi.tsx
+++ b/karavan-designer/src/designer/utils/CamelUi.tsx
@@ -339,8 +339,11 @@ export class CamelUi {
 .forEach((r: RouteDefinition) => {
 const uri = r.from.uri;
 const name = r.from.parameters.name;
-if (showComponentName) result.push(uri + ":" + name);
-else result.push(name);
+if (showComponentName && name) {
+result.push(uri + ":" + name);
+} else if (name){
+result.push(name);
+}
 });
 return result;
 }
diff --git a/karavan-space/src/designer/utils/CamelUi.tsx 
b/karavan-space/src/designer/utils/CamelUi.tsx
index e824a895..a556fffe 100644
--- a/karavan-space/src/designer/utils/CamelUi.tsx
+++ b/karavan-space/src/designer/utils/CamelUi.tsx
@@ -339,8 +339,11 @@ export class CamelUi {
 .forEach((r: RouteDefinition) => {
 const uri = r.from.uri;
 const name = r.from.parameters.name;
-if (showComponentName) result.push(uri + ":" + name);
-else result.push(name);
+if (showComponentName && name) {
+result.push(uri + ":" + name);
+} else if (name){
+result.push(name);
+}
 });
 return result;
 }



(camel-karavan) branch main updated: Fix #1296

2024-05-24 Thread marat
This is an automated email from the ASF dual-hosted git repository.

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


The following commit(s) were added to refs/heads/main by this push:
 new e70e9eb9 Fix #1296
e70e9eb9 is described below

commit e70e9eb975bfa400cd5fff0aa345c02ed60d36e8
Author: Marat Gubaidullin 
AuthorDate: Fri May 24 18:12:21 2024 -0400

Fix #1296
---
 .../main/webui/src/designer/route/DslConnections.tsx  | 16 +---
 .../webui/src/designer/route/element/DslElement.tsx   |  5 ++---
 .../src/designer/route/element/DslElementHeader.tsx   |  5 +++--
 karavan-designer/public/example/demo.camel.yaml   | 19 ++-
 .../src/designer/route/DslConnections.tsx | 16 +---
 .../src/designer/route/element/DslElement.tsx |  5 ++---
 .../src/designer/route/element/DslElementHeader.tsx   |  5 +++--
 karavan-space/src/designer/route/DslConnections.tsx   | 16 +---
 .../src/designer/route/element/DslElement.tsx |  5 ++---
 .../src/designer/route/element/DslElementHeader.tsx   |  5 +++--
 10 files changed, 60 insertions(+), 37 deletions(-)

diff --git a/karavan-app/src/main/webui/src/designer/route/DslConnections.tsx 
b/karavan-app/src/main/webui/src/designer/route/DslConnections.tsx
index 0b5dead4..718f60be 100644
--- a/karavan-app/src/main/webui/src/designer/route/DslConnections.tsx
+++ b/karavan-app/src/main/webui/src/designer/route/DslConnections.tsx
@@ -285,7 +285,7 @@ export function DslConnections() {
 }
 
 function isSpecial(pos: DslPosition): boolean {
-return ['ChoiceDefinition', 'MulticastDefinition', 'TryDefinition', 
'RouteConfigurationDefinition'].includes(pos.step.dslName);
+return ['ChoiceDefinition', 'MulticastDefinition', 
'LoadBalanceDefinition', 'TryDefinition', 
'RouteConfigurationDefinition'].includes(pos.step.dslName);
 }
 
 function addArrowToList(list: JSX.Element[], from?: DslPosition, to?: 
DslPosition, fromHeader?: boolean, toHeader?: boolean): JSX.Element[]  {
@@ -309,7 +309,7 @@ export function DslConnections() {
 if (pos.parent && pos.parent.dslName === 'TryDefinition' && 
pos.position === 0) {
 const parent = steps.get(pos.parent.uuid);
 list.push(...addArrowToList(list, parent, pos, true, false))
-} else if (pos.parent && ['RouteConfigurationDefinition', 
'MulticastDefinition'].includes(pos.parent.dslName)) {
+} else if (pos.parent && ['RouteConfigurationDefinition', 
'MulticastDefinition', 'LoadBalanceDefinition'].includes(pos.parent.dslName)) {
 const parent = steps.get(pos.parent.uuid);
 list.push(...addArrowToList(list, parent, pos, true, false))
 if (parent?.nextstep) {
@@ -327,7 +327,7 @@ export function DslConnections() {
 if (pos.position === (pos.inStepsLength - 1) && !isSpecial(pos)) {
 const nextElement = getNext(pos);
 const parentDsl1 = getParentDsl(nextElement?.uuid);
-if (parentDsl1 && ['RouteConfigurationDefinition', 
'MulticastDefinition'].includes(parentDsl1)) {
+if (parentDsl1 && ['RouteConfigurationDefinition', 
'MulticastDefinition', 'LoadBalanceDefinition'].includes(parentDsl1)) {
 // do nothing
 } else if (nextElement) {
 const next = steps.get(nextElement.uuid);
@@ -349,7 +349,7 @@ export function DslConnections() {
 
 if (['WhenDefinition', 
'OtherwiseDefinition'].includes(pos.step.dslName) && pos.step.hasSteps() && 
(pos.step as any).steps.length === 0) {
 const parentDsl = getParentDsl(pos?.nextstep?.uuid);
-if (parentDsl && ['RouteConfigurationDefinition', 
'MulticastDefinition'].includes(parentDsl)) {
+if (parentDsl && ['RouteConfigurationDefinition', 
'MulticastDefinition', 'LoadBalanceDefinition'].includes(parentDsl)) {
 // do nothing
 } else if (pos.nextstep) {
 const to = steps.get(pos.nextstep.uuid);
@@ -357,7 +357,7 @@ export function DslConnections() {
 } else {
 const next = getNext(pos);
 const parentDsl1 = getParentDsl(next?.uuid);
-if (parentDsl1 && ['RouteConfigurationDefinition', 
'MulticastDefinition'].includes(parentDsl1)) {
+if (parentDsl1 && ['RouteConfigurationDefinition', 
'MulticastDefinition', 'LoadBalanceDefinition'].includes(parentDsl1)) {
 // do nothing
 } else if (next) {
 const to = steps.get(next.uuid);
@@ -374,7 +374,8 @@ export function DslConnections() {
 }
 }
 
-if (!isSpecial(pos) && pos.inSteps && pos.nextstep && 
pos.parent?.dslName !== 'MulticastDefinition') {
+if (!isSpecial(pos) && pos.inSteps && pos.nextstep && 
(pos.parent?.dslName &&
+!['MulticastDefinition', 

Re: [I] LoadBalance children elements should be horizontal like Multicast [camel-karavan]

2024-05-24 Thread via GitHub


mgubaidullin closed issue #1296: LoadBalance children elements should be 
horizontal like Multicast
URL: https://github.com/apache/camel-karavan/issues/1296


-- 
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] Karavan 4.6.0 [camel-website]

2024-05-24 Thread via GitHub


mgubaidullin opened a new pull request, #1186:
URL: https://github.com/apache/camel-website/pull/1186

   (no comment)


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

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

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



(camel-karavan) branch main updated: Fix #1295

2024-05-24 Thread marat
This is an automated email from the ASF dual-hosted git repository.

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


The following commit(s) were added to refs/heads/main by this push:
 new 6c4120a8 Fix #1295
6c4120a8 is described below

commit 6c4120a8cd98df51b1d2bf94b24c211855729283
Author: Marat Gubaidullin 
AuthorDate: Fri May 24 17:04:03 2024 -0400

Fix #1295
---
 karavan-app/src/main/webui/src/projects/CreateProjectModal.tsx | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/karavan-app/src/main/webui/src/projects/CreateProjectModal.tsx 
b/karavan-app/src/main/webui/src/projects/CreateProjectModal.tsx
index be05a643..180a5122 100644
--- a/karavan-app/src/main/webui/src/projects/CreateProjectModal.tsx
+++ b/karavan-app/src/main/webui/src/projects/CreateProjectModal.tsx
@@ -64,7 +64,7 @@ export function CreateProjectModal() {
 
 const onSubmit: SubmitHandler = (data) => {
 if (operation === 'copy') {
-KaravanApi.copyProject(data.projectId, project, after)
+KaravanApi.copyProject(project.projectId, data, after)
 } else {
 KaravanApi.postProject(data, after)
 }



Re: [I] Unable to make a copy of a project - Error from existing project id [camel-karavan]

2024-05-24 Thread via GitHub


mgubaidullin closed issue #1295: Unable to make a copy of a project - Error 
from existing project id
URL: https://github.com/apache/camel-karavan/issues/1295


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

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

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



svn commit: r69378 - in /release/camel/camel-karavan/4.6.0: ./ camel-karavan-4.6.0.zip camel-karavan-4.6.0.zip.asc camel-karavan-4.6.0.zip.sha512

2024-05-24 Thread marat
Author: marat
Date: Fri May 24 20:53:22 2024
New Revision: 69378

Log:
Import camel-karavan release

Added:
release/camel/camel-karavan/4.6.0/
release/camel/camel-karavan/4.6.0/camel-karavan-4.6.0.zip   (with props)
release/camel/camel-karavan/4.6.0/camel-karavan-4.6.0.zip.asc
release/camel/camel-karavan/4.6.0/camel-karavan-4.6.0.zip.sha512

Added: release/camel/camel-karavan/4.6.0/camel-karavan-4.6.0.zip
==
Binary file - no diff available.

Propchange: release/camel/camel-karavan/4.6.0/camel-karavan-4.6.0.zip
--
svn:mime-type = application/octet-stream

Added: release/camel/camel-karavan/4.6.0/camel-karavan-4.6.0.zip.asc
==
--- release/camel/camel-karavan/4.6.0/camel-karavan-4.6.0.zip.asc (added)
+++ release/camel/camel-karavan/4.6.0/camel-karavan-4.6.0.zip.asc Fri May 24 
20:53:22 2024
@@ -0,0 +1,16 @@
+-BEGIN PGP SIGNATURE-
+
+iQIzBAABCAAdFiEE7hC6duO+UDoHt1ULCeTRn4/SWEgFAmZM5gEACgkQCeTRn4/S
+WEh5Zw/9HJosvbd8eCYMxOjny17Ft+vyDxqbJVVDUFnvohLT/+LKpb4fj0UtkrCQ
+2Y7I/Cx9UflP1K94EoHO1Nk8ByO0BecBJFx9jefuhy5YdnnW6k9+2/9tEli16kuF
+ZCxjvloWHgYIeYyzQ2R1kdeiQiauCWeMZL96gbzJl/JLyJ/hEkkf8EHzISZ1gWV2
+2y5ksggwUkwjJKRVbmZA4VdX5OfVka1kQcfYamghM7H1m8iq2wHMRuz145bQfpzT
+t8SEXVFw+VyxnR8ipBSnIUKcazwm4TjQTi8iDZZWI7kxv9Lyw3PjiyRQXxQulkQw
+Oe3mY+FVSgyUWY/AiEGz3qFEKa17gqohewI1KlLOi101ZK188qLQbZfLQd+4LWkv
+fP0q/qMNPVmprP3o320yXxpllDzA/1SC3Ip893vF+Uuk50OBV27Gh5iQ+Jx2Hf5z
+VKD36os9c9Y8c6L0idy/bWPCPx4Zbcp2DsoLmbMlvE2aQSSEYa2FDe08f6rNNLA6
+wXUghiZEakonUZTiQQcrEtGqUb5ZZsYqVHsmAtyztlgrod9umxc4nuEd9DLas2kh
+BWExKT3edeQ4anhGmtVDM8PlUexjK1NX4HDc1a92ZrRzAcHgeqMTQHGHEinqMdDN
+mlUxwIY5jZWEAGQ8s3hx7qkVRx4/Qc8Scusb+PJ8rsvEbGJLSqA=
+=999E
+-END PGP SIGNATURE-

Added: release/camel/camel-karavan/4.6.0/camel-karavan-4.6.0.zip.sha512
==
--- release/camel/camel-karavan/4.6.0/camel-karavan-4.6.0.zip.sha512 (added)
+++ release/camel/camel-karavan/4.6.0/camel-karavan-4.6.0.zip.sha512 Fri May 24 
20:53:22 2024
@@ -0,0 +1,3 @@
+camel-karavan-4.6.0.zip: 1F9362BF F4FBC03D 17487946 45D882DF 5B58009B 1DB4C9F7
+ 39CED791 66BBA744 CC1B79C9 DCC89FF4 0A981A21 1AA563D3
+ FC3E9701 B1B6DD29 240673FB BDA7955D




[PR] (chores) multiple small cleanups [camel]

2024-05-24 Thread via GitHub


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

   (no comment)


-- 
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] (chores) multiple small cleanups [camel]

2024-05-24 Thread via GitHub


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

   :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 (0624099ad8e -> d19a62947a7)

2024-05-24 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 0624099ad8e Bump jakarta.persistence:jakarta.persistence-api from 
3.1.0 to 3.2.0 (#14236)
 add 40872012b19 CAMEL-20785: stop allowing overriding the context setup 
method
 add 42b09e19b91 CAMEL-20785: cleanup checks for single-instance context 
tests
 add d19a62947a7 CAMEL-20785: mark createCamelRegistry as deprecated and 
cleanup abuses of the API

No new revisions were added by this update.

Summary of changes:
 .../google/calendar/CalendarConfigurationTest.java   |  4 ++--
 .../integration/PulsarConcurrentConsumerInIT.java| 20 +++-
 .../integration/PulsarConcurrentProducerInIT.java| 20 +++-
 .../integration/PulsarConsumerAcknowledgementIT.java | 19 +++
 .../PulsarConsumerDeadLetterPolicyIT.java| 18 +++---
 .../integration/PulsarConsumerInAsynchronousIT.java  | 20 +++-
 .../pulsar/integration/PulsarConsumerInIT.java   | 19 +++
 .../PulsarConsumerNegativeAcknowledgementIT.java |  9 ++---
 .../PulsarConsumerNoAcknowledgementIT.java   |  9 ++---
 .../integration/PulsarConsumerPatternInIT.java   | 19 +++
 .../integration/PulsarConsumerReadCompactedIT.java   | 19 +++
 .../integration/PulsarCustomMessageReceiptIT.java|  9 ++---
 .../pulsar/integration/PulsarITSupport.java  | 15 +++
 .../integration/PulsarProducerHeadersInIT.java   | 19 +++
 .../pulsar/integration/PulsarProducerInIT.java   | 19 +++
 .../PulsarProducerUndefinedProducerNameInIT.java | 16 ++--
 ...ulsarSharedSubscriptionMessageDistributionIT.java | 19 +++
 .../pulsar/integration/PulsarSuspendRouteIT.java | 17 +++--
 .../spring/batch/SpringBatchEndpointTest.java|  4 +---
 .../apache/camel/component/redis/RedisHashTest.java  |  5 +
 .../apache/camel/component/redis/RedisListTest.java  |  5 +
 .../component/redis/RedisRemoveEndpointTest.java |  5 +
 .../camel/component/redis/RedisRemoveRouteTest.java  |  5 +
 .../apache/camel/component/redis/RedisSetTest.java   |  5 +
 .../camel/component/redis/RedisSortedSetTest.java|  5 +
 .../camel/component/redis/RedisStringTest.java   |  5 +
 .../redis/integration/RedisConsumerManualIT.java |  6 +-
 .../redis/integration/RedisProducerManualIT.java |  5 +
 .../RedisStringIdempotentRepositoryManualIT.java |  5 +
 .../spring/ws/ConsumerBreadcrumbIdTest.java  |  5 +
 .../ws/ConsumerExceptionPropagationRouteTest.java|  5 +
 .../spring/ws/ConsumerMarshallingRouteTest.java  |  5 +
 .../apache/camel/spring/SpringMDCTransactedTest.java |  9 -
 .../camel/component/sql/SqlDataSourceRefTest.java|  8 ++--
 .../camel/component/sql/SqlDataSourceTest.java   |  8 ++--
 .../camel/component/sql/SqlEndpointLikeTest.java |  7 ++-
 .../camel/component/sql/SqlTransactedRouteTest.java  | 13 -
 .../sql/stored/SqlStoredDataSourceTest.java  |  9 ++---
 .../apache/camel/component/stomp/StompBaseTest.java  |  6 +-
 .../apache/camel/test/junit5/CamelTestSupport.java   | 12 +++-
 .../junit5/CamelTestSupportOneContextForAllTest.java |  7 ---
 .../component/thrift/ThriftConsumerSecurityTest.java |  7 ++-
 .../component/thrift/ThriftProducerSecurityTest.java |  7 ++-
 .../apache/camel/component/tika/TikaParseTest.java   |  7 ++-
 .../component/xmlsecurity/ECDSASignatureTest.java|  7 +--
 .../xmlsecurity/SignatureAlgorithmTest.java  |  7 +--
 .../xmlsecurity/SignatureDigestMethodTest.java   |  7 +--
 .../xmlsecurity/XAdESSignaturePropertiesTest.java|  6 +-
 .../component/xmlsecurity/XmlSignatureTest.java  |  7 +--
 .../camel/component/xmpp/XmppBaseContainerTest.java  |  6 +-
 .../camel/component/xmpp/integration/XmppBaseIT.java |  6 +-
 51 files changed, 112 insertions(+), 394 deletions(-)



[PR] CAMEL-20794: AWS2 Kinesis producer supports async client [camel]

2024-05-24 Thread via GitHub


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

   # Description
   
   Current kinesis producer can only send on record each time. It neither 
supports sending records in batch, nor supports async sending. Therefore, the 
throughput of kinesis producer is extremely low.
   
   This PR adds async sending for kinesi producer. To void data lose caused by 
exception, upstream data source needs to verify that putting is completed by 
checking the exchange message. If upstream data source sends data in batch, it 
needs to check each record in current batch before sending next batch.
   
   # 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] CAMEL-20794: AWS2 Kinesis producer supports async client [camel]

2024-05-24 Thread via GitHub


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

   :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 main updated (0624099ad8e -> d19a62947a7)

2024-05-24 Thread orpiske
This is an automated email from the ASF dual-hosted git repository.

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


from 0624099ad8e Bump jakarta.persistence:jakarta.persistence-api from 
3.1.0 to 3.2.0 (#14236)
 new 40872012b19 CAMEL-20785: stop allowing overriding the context setup 
method
 new 42b09e19b91 CAMEL-20785: cleanup checks for single-instance context 
tests
 new d19a62947a7 CAMEL-20785: mark createCamelRegistry as deprecated and 
cleanup abuses of the API

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:
 .../google/calendar/CalendarConfigurationTest.java   |  4 ++--
 .../integration/PulsarConcurrentConsumerInIT.java| 20 +++-
 .../integration/PulsarConcurrentProducerInIT.java| 20 +++-
 .../integration/PulsarConsumerAcknowledgementIT.java | 19 +++
 .../PulsarConsumerDeadLetterPolicyIT.java| 18 +++---
 .../integration/PulsarConsumerInAsynchronousIT.java  | 20 +++-
 .../pulsar/integration/PulsarConsumerInIT.java   | 19 +++
 .../PulsarConsumerNegativeAcknowledgementIT.java |  9 ++---
 .../PulsarConsumerNoAcknowledgementIT.java   |  9 ++---
 .../integration/PulsarConsumerPatternInIT.java   | 19 +++
 .../integration/PulsarConsumerReadCompactedIT.java   | 19 +++
 .../integration/PulsarCustomMessageReceiptIT.java|  9 ++---
 .../pulsar/integration/PulsarITSupport.java  | 15 +++
 .../integration/PulsarProducerHeadersInIT.java   | 19 +++
 .../pulsar/integration/PulsarProducerInIT.java   | 19 +++
 .../PulsarProducerUndefinedProducerNameInIT.java | 16 ++--
 ...ulsarSharedSubscriptionMessageDistributionIT.java | 19 +++
 .../pulsar/integration/PulsarSuspendRouteIT.java | 17 +++--
 .../spring/batch/SpringBatchEndpointTest.java|  4 +---
 .../apache/camel/component/redis/RedisHashTest.java  |  5 +
 .../apache/camel/component/redis/RedisListTest.java  |  5 +
 .../component/redis/RedisRemoveEndpointTest.java |  5 +
 .../camel/component/redis/RedisRemoveRouteTest.java  |  5 +
 .../apache/camel/component/redis/RedisSetTest.java   |  5 +
 .../camel/component/redis/RedisSortedSetTest.java|  5 +
 .../camel/component/redis/RedisStringTest.java   |  5 +
 .../redis/integration/RedisConsumerManualIT.java |  6 +-
 .../redis/integration/RedisProducerManualIT.java |  5 +
 .../RedisStringIdempotentRepositoryManualIT.java |  5 +
 .../spring/ws/ConsumerBreadcrumbIdTest.java  |  5 +
 .../ws/ConsumerExceptionPropagationRouteTest.java|  5 +
 .../spring/ws/ConsumerMarshallingRouteTest.java  |  5 +
 .../apache/camel/spring/SpringMDCTransactedTest.java |  9 -
 .../camel/component/sql/SqlDataSourceRefTest.java|  8 ++--
 .../camel/component/sql/SqlDataSourceTest.java   |  8 ++--
 .../camel/component/sql/SqlEndpointLikeTest.java |  7 ++-
 .../camel/component/sql/SqlTransactedRouteTest.java  | 13 -
 .../sql/stored/SqlStoredDataSourceTest.java  |  9 ++---
 .../apache/camel/component/stomp/StompBaseTest.java  |  6 +-
 .../apache/camel/test/junit5/CamelTestSupport.java   | 12 +++-
 .../junit5/CamelTestSupportOneContextForAllTest.java |  7 ---
 .../component/thrift/ThriftConsumerSecurityTest.java |  7 ++-
 .../component/thrift/ThriftProducerSecurityTest.java |  7 ++-
 .../apache/camel/component/tika/TikaParseTest.java   |  7 ++-
 .../component/xmlsecurity/ECDSASignatureTest.java|  7 +--
 .../xmlsecurity/SignatureAlgorithmTest.java  |  7 +--
 .../xmlsecurity/SignatureDigestMethodTest.java   |  7 +--
 .../xmlsecurity/XAdESSignaturePropertiesTest.java|  6 +-
 .../component/xmlsecurity/XmlSignatureTest.java  |  7 +--
 .../camel/component/xmpp/XmppBaseContainerTest.java  |  6 +-
 .../camel/component/xmpp/integration/XmppBaseIT.java |  6 +-
 51 files changed, 112 insertions(+), 394 deletions(-)



(camel) 03/03: CAMEL-20785: mark createCamelRegistry as deprecated and cleanup abuses of the API

2024-05-24 Thread orpiske
This is an automated email from the ASF dual-hosted git repository.

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

commit d19a62947a715e88cbe6085247feb07ec52ce212
Author: Otavio Rodolfo Piske 
AuthorDate: Thu May 23 11:29:07 2024 +0200

CAMEL-20785: mark createCamelRegistry as deprecated and cleanup abuses of 
the API
---
 .../google/calendar/CalendarConfigurationTest.java   |  4 ++--
 .../integration/PulsarConcurrentConsumerInIT.java| 20 +++-
 .../integration/PulsarConcurrentProducerInIT.java| 20 +++-
 .../integration/PulsarConsumerAcknowledgementIT.java | 19 +++
 .../PulsarConsumerDeadLetterPolicyIT.java| 18 +++---
 .../integration/PulsarConsumerInAsynchronousIT.java  | 20 +++-
 .../pulsar/integration/PulsarConsumerInIT.java   | 19 +++
 .../PulsarConsumerNegativeAcknowledgementIT.java |  9 ++---
 .../PulsarConsumerNoAcknowledgementIT.java   |  9 ++---
 .../integration/PulsarConsumerPatternInIT.java   | 19 +++
 .../integration/PulsarConsumerReadCompactedIT.java   | 19 +++
 .../integration/PulsarCustomMessageReceiptIT.java|  9 ++---
 .../pulsar/integration/PulsarITSupport.java  | 15 +++
 .../integration/PulsarProducerHeadersInIT.java   | 19 +++
 .../pulsar/integration/PulsarProducerInIT.java   | 19 +++
 .../PulsarProducerUndefinedProducerNameInIT.java | 16 ++--
 ...ulsarSharedSubscriptionMessageDistributionIT.java | 19 +++
 .../pulsar/integration/PulsarSuspendRouteIT.java | 17 +++--
 .../spring/batch/SpringBatchEndpointTest.java|  4 +---
 .../apache/camel/component/redis/RedisHashTest.java  |  5 +
 .../apache/camel/component/redis/RedisListTest.java  |  5 +
 .../component/redis/RedisRemoveEndpointTest.java |  5 +
 .../camel/component/redis/RedisRemoveRouteTest.java  |  5 +
 .../apache/camel/component/redis/RedisSetTest.java   |  5 +
 .../camel/component/redis/RedisSortedSetTest.java|  5 +
 .../camel/component/redis/RedisStringTest.java   |  5 +
 .../redis/integration/RedisConsumerManualIT.java |  6 +-
 .../redis/integration/RedisProducerManualIT.java |  5 +
 .../RedisStringIdempotentRepositoryManualIT.java |  5 +
 .../spring/ws/ConsumerBreadcrumbIdTest.java  |  5 +
 .../ws/ConsumerExceptionPropagationRouteTest.java|  5 +
 .../spring/ws/ConsumerMarshallingRouteTest.java  |  5 +
 .../apache/camel/spring/SpringMDCTransactedTest.java |  9 -
 .../camel/component/sql/SqlDataSourceRefTest.java|  8 ++--
 .../camel/component/sql/SqlDataSourceTest.java   |  8 ++--
 .../camel/component/sql/SqlEndpointLikeTest.java |  7 ++-
 .../camel/component/sql/SqlTransactedRouteTest.java  | 13 -
 .../sql/stored/SqlStoredDataSourceTest.java  |  9 ++---
 .../apache/camel/component/stomp/StompBaseTest.java  |  6 +-
 .../apache/camel/test/junit5/CamelTestSupport.java   |  1 +
 .../component/thrift/ThriftConsumerSecurityTest.java |  7 ++-
 .../component/thrift/ThriftProducerSecurityTest.java |  7 ++-
 .../apache/camel/component/tika/TikaParseTest.java   |  7 ++-
 .../component/xmlsecurity/ECDSASignatureTest.java|  7 +--
 .../xmlsecurity/SignatureAlgorithmTest.java  |  7 +--
 .../xmlsecurity/SignatureDigestMethodTest.java   |  7 +--
 .../xmlsecurity/XAdESSignaturePropertiesTest.java|  6 +-
 .../component/xmlsecurity/XmlSignatureTest.java  |  7 +--
 .../camel/component/xmpp/XmppBaseContainerTest.java  |  6 +-
 .../camel/component/xmpp/integration/XmppBaseIT.java |  6 +-
 50 files changed, 106 insertions(+), 382 deletions(-)

diff --git 
a/components/camel-google/camel-google-calendar/src/test/java/org/apache/camel/component/google/calendar/CalendarConfigurationTest.java
 
b/components/camel-google/camel-google-calendar/src/test/java/org/apache/camel/component/google/calendar/CalendarConfigurationTest.java
index 456bb19a228..e112f3f01f6 100644
--- 
a/components/camel-google/camel-google-calendar/src/test/java/org/apache/camel/component/google/calendar/CalendarConfigurationTest.java
+++ 
b/components/camel-google/camel-google-calendar/src/test/java/org/apache/camel/component/google/calendar/CalendarConfigurationTest.java
@@ -49,8 +49,8 @@ public class CalendarConfigurationTest extends 
AbstractGoogleCalendarTestSupport
 }
 
 @Override
-protected CamelContext createCamelContext() throws Exception {
-final CamelContext context = new 
DefaultCamelContext(createCamelRegistry());
+protected CamelContext createCamelContext() {
+final CamelContext context = new DefaultCamelContext();
 
 // add GoogleCalendarComponent to Camel context but don't 

(camel) 01/03: CAMEL-20785: stop allowing overriding the context setup method

2024-05-24 Thread orpiske
This is an automated email from the ASF dual-hosted git repository.

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

commit 40872012b1991ac30eb561d5d4d3843e7058f1fc
Author: Otavio Rodolfo Piske 
AuthorDate: Thu May 23 10:44:25 2024 +0200

CAMEL-20785: stop allowing overriding the context setup method
---
 .../main/java/org/apache/camel/test/junit5/CamelTestSupport.java   | 3 ++-
 .../camel/test/junit5/CamelTestSupportOneContextForAllTest.java| 7 ---
 2 files changed, 2 insertions(+), 8 deletions(-)

diff --git 
a/components/camel-test/camel-test-junit5/src/main/java/org/apache/camel/test/junit5/CamelTestSupport.java
 
b/components/camel-test/camel-test-junit5/src/main/java/org/apache/camel/test/junit5/CamelTestSupport.java
index cda6d716887..c39b2d2e829 100644
--- 
a/components/camel-test/camel-test-junit5/src/main/java/org/apache/camel/test/junit5/CamelTestSupport.java
+++ 
b/components/camel-test/camel-test-junit5/src/main/java/org/apache/camel/test/junit5/CamelTestSupport.java
@@ -413,7 +413,8 @@ public abstract class CamelTestSupport
 }
 }
 
-protected void doSetUp() throws Exception {
+@Deprecated(since = "4.7.0")
+protected final void doSetUp() throws Exception {
 LOG.debug("setUp test");
 // jmx is enabled if we have configured to use it, if dump route 
coverage is enabled (it requires JMX) or if
 // the component camel-debug is in the classpath
diff --git 
a/components/camel-test/camel-test-junit5/src/test/java/org/apache/camel/test/junit5/CamelTestSupportOneContextForAllTest.java
 
b/components/camel-test/camel-test-junit5/src/test/java/org/apache/camel/test/junit5/CamelTestSupportOneContextForAllTest.java
index 58d1340608e..06f2d13acbc 100644
--- 
a/components/camel-test/camel-test-junit5/src/test/java/org/apache/camel/test/junit5/CamelTestSupportOneContextForAllTest.java
+++ 
b/components/camel-test/camel-test-junit5/src/test/java/org/apache/camel/test/junit5/CamelTestSupportOneContextForAllTest.java
@@ -54,13 +54,6 @@ class CamelTestSupportOneContextForAllTest extends 
CamelTestSupport {
 //don't stop
 }
 
-@Override
-protected void doSetUp() throws Exception {
-if (context == null) {
-super.doSetUp();
-}
-}
-
 @Test
 @Order(1)
 void initContextTest() throws Exception {



(camel) 02/03: CAMEL-20785: cleanup checks for single-instance context tests

2024-05-24 Thread orpiske
This is an automated email from the ASF dual-hosted git repository.

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

commit 42b09e19b91b10f7bf2d859ea806489e4e8b2e60
Author: Otavio Rodolfo Piske 
AuthorDate: Thu May 23 11:28:39 2024 +0200

CAMEL-20785: cleanup checks for single-instance context tests
---
 .../main/java/org/apache/camel/test/junit5/CamelTestSupport.java  | 8 
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git 
a/components/camel-test/camel-test-junit5/src/main/java/org/apache/camel/test/junit5/CamelTestSupport.java
 
b/components/camel-test/camel-test-junit5/src/main/java/org/apache/camel/test/junit5/CamelTestSupport.java
index c39b2d2e829..61c134b9240 100644
--- 
a/components/camel-test/camel-test-junit5/src/main/java/org/apache/camel/test/junit5/CamelTestSupport.java
+++ 
b/components/camel-test/camel-test-junit5/src/main/java/org/apache/camel/test/junit5/CamelTestSupport.java
@@ -143,7 +143,7 @@ public abstract class CamelTestSupport
 @Override
 public void afterAll(ExtensionContext context) {
 CamelTestSupport support = INSTANCE.get();
-if (support != null && support.isCreateCamelContextPerClass()) {
+if (support != null && support.isCreateCamelContextPerClass) {
 try {
 support.tearDownCreateCamelContextPerClass();
 } catch (Exception e) {
@@ -211,7 +211,7 @@ public abstract class CamelTestSupport
  *
  * @return true per class, false per test.
  */
-public final boolean isCreateCamelContextPerClass() {
+protected final boolean isCreateCamelContextPerClass() {
 return isCreateCamelContextPerClass;
 }
 
@@ -334,7 +334,7 @@ public abstract class CamelTestSupport
 
 ExtensionHelper.hasUnsupported(getClass());
 
-if (isCreateCamelContextPerClass()) {
+if (isCreateCamelContextPerClass) {
 createCamelContextPerClass();
 } else {
 // test is per test so always setup
@@ -526,7 +526,7 @@ public abstract class CamelTestSupport
 ExtensionHelper.testEndFooter(getClass(), currentTestName, time);
 }
 
-if (isCreateCamelContextPerClass()) {
+if (isCreateCamelContextPerClass) {
 // will tear down test specially in afterAll callback
 return;
 }



Re: [PR] CAMEL-20785: more ground work on CamelTestSupport and affected tests [camel]

2024-05-24 Thread via GitHub


orpiske merged PR #14232:
URL: https://github.com/apache/camel/pull/14232


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

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

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



(camel-karaf) branch 276/integration-test-framework updated (3784abdd -> 2a6b444f)

2024-05-24 Thread nfilotto
This is an automated email from the ASF dual-hosted git repository.

nfilotto pushed a change to branch 276/integration-test-framework
in repository https://gitbox.apache.org/repos/asf/camel-karaf.git


from 3784abdd Add multi camel context support
 add 2a6b444f Move camel-seda and camel-file into the same class

No new revisions were added by this update.

Summary of changes:
 .../camel/{itests => itest}/CamelAmqpITest.java|  6 +++-
 .../apache/karaf/camel/test/CamelFileITest.java| 33 -
 .../apache/karaf/camel/test/CamelSedaITest.java| 34 --
 .../camel/{itests => itest}/CamelCoreITest.java| 33 +++--
 .../{itests => itest}/CamelElasticsearchITest.java |  7 -
 .../camel/{itests => itest}/CamelJettyITest.java   |  3 +-
 6 files changed, 43 insertions(+), 73 deletions(-)
 rename 
tests/components/camel-amqp/src/test/java/org/apache/karaf/camel/{itests => 
itest}/CamelAmqpITest.java (89%)
 delete mode 100644 
tests/components/camel-core/src/main/java/org/apache/karaf/camel/test/CamelFileITest.java
 delete mode 100644 
tests/components/camel-core/src/main/java/org/apache/karaf/camel/test/CamelSedaITest.java
 rename 
tests/components/camel-core/src/test/java/org/apache/karaf/camel/{itests => 
itest}/CamelCoreITest.java (55%)
 rename 
tests/components/camel-elasticsearch/src/test/java/org/apache/karaf/camel/{itests
 => itest}/CamelElasticsearchITest.java (90%)
 rename 
tests/components/camel-jetty/src/test/java/org/apache/karaf/camel/{itests => 
itest}/CamelJettyITest.java (90%)



[I] Unable to make a copy of a project - Error from existing project id [camel-karavan]

2024-05-24 Thread via GitHub


MrJuha opened a new issue, #1295:
URL: https://github.com/apache/camel-karavan/issues/1295

   ### Describe the bug
   
   When you are trying to create a copy of a project and give a completely 
different ProjectID, you still get an error of existing project id with the id 
of the original project.
   
   ### Steps to reproduce the behavior
   
   1. Go to projects-page
   2. Copy project
   3. Enter new name, description and id
   4. You get an error message with the original project id
   
   https://github.com/apache/camel-karavan/assets/38987766/d0ef3f1f-926e-4f61-b74e-6490c9c7f88c;>
   
   
   
   ### Variant
   
   Web Application
   
   ### Container Management (if applicable)
   
   Kubernetes
   
   ### Operating System (if applicable)
   
   Windows
   
   ### Version
   
   4.5.0
   
   ### Relevant log output
   
   _No response_


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

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

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



(camel-karaf) branch 276/integration-test-framework updated (edbc8413 -> 3784abdd)

2024-05-24 Thread nfilotto
This is an automated email from the ASF dual-hosted git repository.

nfilotto pushed a change to branch 276/integration-test-framework
in repository https://gitbox.apache.org/repos/asf/camel-karaf.git


from edbc8413 Allow to provide additional required features using the 
annotation
 add 3784abdd Add multi camel context support

No new revisions were added by this update.

Summary of changes:
 .../camel/itests/AbstractCamelRouteITest.java  | 91 +++---
 .../camel/itests/AbstractCamelRouteLauncher.java   | 24 --
 ...ctCamelSingleComponentResultFileBasedRoute.java | 12 ++-
 ...ctCamelSingleComponentResultMockBasedRoute.java | 12 ++-
 .../AbstractCamelSingleComponentRouteITest.java| 13 
 .../karaf/camel/itests/CamelContextProvider.java   | 19 +
 .../karaf/camel/itests/CamelKarafTestHint.java |  5 ++
 .../camel/itests/CamelSuppliedRouteLauncher.java   | 12 +--
 .../java/org/apache/karaf/camel/itests/Utils.java  | 14 
 .../apache/karaf/camel/test/CamelFileITest.java|  7 +-
 .../apache/karaf/camel/test/CamelSedaITest.java|  7 +-
 .../apache/karaf/camel/itests/CamelCoreITest.java  |  4 +-
 12 files changed, 152 insertions(+), 68 deletions(-)
 create mode 100644 
tests/camel-integration-test/src/main/java/org/apache/karaf/camel/itests/CamelContextProvider.java



[I] Add a canonical script that installs Knative [camel-k]

2024-05-24 Thread via GitHub


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

   ### Requirement
   
   Installing Knative serving/eventing is a multistep process. It would help to 
have a common script that can be executed by users and tests.
   
   ### Problem
   
   above
   
   ### Proposal
   
   _No response_
   
   ### Open questions
   
   _No response_


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

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

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



(camel-karaf) branch 276/integration-test-framework updated (a82ca87d -> edbc8413)

2024-05-24 Thread nfilotto
This is an automated email from the ASF dual-hosted git repository.

nfilotto pushed a change to branch 276/integration-test-framework
in repository https://gitbox.apache.org/repos/asf/camel-karaf.git


from a82ca87d Use a common annotation for static hints
 add edbc8413 Allow to provide additional required features using the 
annotation

No new revisions were added by this update.

Summary of changes:
 .../karaf/camel/itests/AbstractCamelRouteITest.java   | 19 +--
 .../AbstractCamelSingleComponentRouteITest.java   |  6 +-
 .../apache/karaf/camel/itests/CamelKarafTestHint.java |  6 ++
 3 files changed, 28 insertions(+), 3 deletions(-)



[I] Add message producer route to kafka example [camel-k-examples]

2024-05-24 Thread via GitHub


tdiesler opened a new issue, #99:
URL: https://github.com/apache/camel-k-examples/issues/99

   Currently we start a consumer route and then create messages like this
   
   ```
   kubectl -n kafka run kafka-producer -ti 
--image=quay.io/strimzi/kafka:0.30.0-kafka-3.2.0 --rm --restart=Never -- 
bin/kafka-console-producer.sh --bootstrap-server 
my-cluster-kafka-bootstrap:9092 --topic my-topic
   ``` 
   
   Ideally we'd like to create these messages with camel-k


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

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

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



Re: [I] NettySecureServer example cannot access keystore [camel-k-examples]

2024-05-24 Thread via GitHub


tdiesler commented on issue #98:
URL: 
https://github.com/apache/camel-k-examples/issues/98#issuecomment-2129083582

   This fails very early in the camel context lifecycle, do we perhaps have 
something that allows us to hook into that context lifecycle and examine the 
filesystem?
   
   ```
   [1] 2024-05-24 09:29:00,393 ERROR [org.apa.cam.qua.mai.CamelMainRuntime] 
(main) Failed to start application: 
org.apache.camel.FailedToStartRouteException: Failed to start route route1 
because of java.io.IOException: Could not open /tmp/ssl/keystore.jks as a file, 
class path resource, or URL.
   [1]  at 
org.apache.camel.impl.engine.RouteService.setUp(RouteService.java:131)
   [1]  at 
org.apache.camel.impl.engine.InternalRouteStartupManager.doInitRoutes(InternalRouteStartupManager.java:88)
   [1]  at 
org.apache.camel.impl.engine.AbstractCamelContext.doInit(AbstractCamelContext.java:2387)
   [1]  at 
org.apache.camel.quarkus.core.FastCamelContext.doInit(FastCamelContext.java:194)
   [1]  at 
org.apache.camel.support.service.BaseService.init(BaseService.java:78)
   [1]  at 
org.apache.camel.impl.engine.AbstractCamelContext.init(AbstractCamelContext.java:2021)
   [1]  at 
org.apache.camel.support.service.BaseService.start(BaseService.java:105)
   [1]  at 
org.apache.camel.impl.engine.AbstractCamelContext.start(AbstractCamelContext.java:2040)
   [1]  at 
org.apache.camel.impl.DefaultCamelContext.start(DefaultCamelContext.java:212)
   ```


-- 
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] NettySecureServer example cannot access keystore [camel-k-examples]

2024-05-24 Thread via GitHub


tdiesler commented on issue #98:
URL: 
https://github.com/apache/camel-k-examples/issues/98#issuecomment-2129072166

   nope ...
   
   ```
   [1] Caused by: org.apache.camel.RuntimeCamelException: java.io.IOException: 
Could not open /tmp/ssl/keystore.jks as a file, class path resource, or URL.
   [1]  at 
org.apache.camel.RuntimeCamelException.wrapRuntimeCamelException(RuntimeCamelException.java:51)
   [1]  at 
org.apache.camel.component.netty.http.HttpServerInitializerFactory.(HttpServerInitializerFactory.java:67)
   [1]  at 
org.apache.camel.component.netty.http.NettyHttpComponent.newHttpServerBootstrapFactory(NettyHttpComponent.java:352)
   [1]  at 
org.apache.camel.component.netty.http.NettyHttpComponent.lambda$getOrCreateHttpNettyServerBootstrapFactory$1(NettyHttpComponent.java:344)
   [1]  at java.base/java.util.HashMap.computeIfAbsent(HashMap.java:1220)
   [1]  at 
org.apache.camel.component.netty.http.NettyHttpComponent.getOrCreateHttpNettyServerBootstrapFactory(NettyHttpComponent.java:344)
   [1]  at 
org.apache.camel.component.netty.http.NettyHttpEndpoint.createConsumer(NettyHttpEndpoint.java:98)
   [1]  at 
org.apache.camel.impl.engine.DefaultRoute.gatherRootServices(DefaultRoute.java:640)
   [1]  at 
org.apache.camel.impl.engine.DefaultRoute.gatherServices(DefaultRoute.java:624)
   [1]  at 
org.apache.camel.impl.engine.DefaultRoute.initializeServices(DefaultRoute.java:209)
   [1]  at 
org.apache.camel.impl.engine.RouteService.doSetup(RouteService.java:150)
   [1]  at 
org.apache.camel.impl.engine.RouteService.setUp(RouteService.java:129)
   [1]  ... 28 more
   [1] Caused by: java.io.IOException: Could not open /tmp/ssl/keystore.jks as 
a file, class path resource, or URL.
   [1]  at 
org.apache.camel.support.jsse.JsseParameters.resolveResource(JsseParameters.java:120)
   [1]  at 
org.apache.camel.support.jsse.KeyStoreParameters.createKeyStore(KeyStoreParameters.java:192)
   [1]  at 
org.apache.camel.support.jsse.KeyManagersParameters.createKeyManagers(KeyManagersParameters.java:102)
   [1]  at 
org.apache.camel.support.jsse.SSLContextParameters.createSSLContext(SSLContextParameters.java:269)
   [1]  at 
org.apache.camel.component.netty.http.HttpServerInitializerFactory.createSSLContext(HttpServerInitializerFactory.java:150)
   [1]  at 
org.apache.camel.component.netty.http.HttpServerInitializerFactory.(HttpServerInitializerFactory.java:65)
   [1]  ... 38 more
   ```


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

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

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



(camel-karaf) branch 276/integration-test-framework updated (a115fa5e -> a82ca87d)

2024-05-24 Thread nfilotto
This is an automated email from the ASF dual-hosted git repository.

nfilotto pushed a change to branch 276/integration-test-framework
in repository https://gitbox.apache.org/repos/asf/camel-karaf.git


 discard a115fa5e Use a common annotation for static hints
 add a82ca87d Use a common annotation for static hints

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   (a115fa5e)
\
 N -- N -- N   refs/heads/276/integration-test-framework (a82ca87d)

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

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

No new revisions were added by this update.

Summary of changes:
 .../java/org/apache/karaf/camel/itests/CamelSuppliedRouteLauncher.java  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)



(camel-karaf) branch 276/integration-test-framework updated (94217a12 -> a115fa5e)

2024-05-24 Thread nfilotto
This is an automated email from the ASF dual-hosted git repository.

nfilotto pushed a change to branch 276/integration-test-framework
in repository https://gitbox.apache.org/repos/asf/camel-karaf.git


omit 94217a12 Add support of integration tests with blueprint
omit 9edd4911 Move camel-seda and camel-file into same module
omit 2bad511e Add the CamelRouteSupplier
omit 27d599ec Ref #276: Propose an integration test framework
omit ade50998 Add camel jetty integration test (#276)
 add d809af99 Add Francois as Collaborator
 add 6ffda2ba Add the rest of the team as collaborators
 add 39376cfe camel-http wrapper - integration test fix (#279)
 add 6ae6d013 GH-264: Add camel:* shell commands (#282)
 add 0b75fee2 camel-influxdb wrapper - integration test fix (#283)
 add 3afe2aaf Ref #264: Add a command name for ContextStart
 add 66cc9c3a Ref #264: Add a command name for EndpointStats
 add 4a9f4c47 Cleanup
 add fb63411a GH-284: Upgrade to ActiveMQ 6.1.2 (#285)
 add f096a4bd Add camel-google-storage wrapper (#290)
 add 0e69d7f9 Add missing bundles for camel-google-pubsub feature (#292)
 add 65b14521 camel-influxdb2 - missing dependencies added after 
integration test (#293)
 add e3c28a67 Add camel jetty integration test (#276)
 add d2b28542 Ref #276: Propose an integration test framework
 add 00890d8c Add the CamelRouteSupplier
 add 8bfd0360 Move camel-seda and camel-file into same module
 add f279e7b9 Add support of integration tests with blueprint
 add a115fa5e Use a common annotation for static hints

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   (94217a12)
\
 N -- N -- N   refs/heads/276/integration-test-framework (a115fa5e)

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

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

No new revisions were added by this update.

Summary of changes:
 .asf.yaml  |   4 +
 components/camel-activemq/pom.xml  |   1 +
 .../blueprint/handler/CamelNamespaceHandler.java   |   1 -
 .../core/AbstractOsgiDefaultCamelContext.java  |   1 -
 features/src/main/feature/camel-features.xml   | 101 +++--
 pom.xml|  14 ++-
 {core/camel-core-osgi => shell}/pom.xml|  55 +-
 .../camel/karaf/shell/CamelCommandSupport.java |  74 +
 .../apache/camel/karaf/shell/ContextInflight.java  |  94 
 .../org/apache/camel/karaf/shell/ContextList.java  |  66 +++
 .../apache/camel/karaf/shell/ContextResume.java|  48 
 .../org/apache/camel/karaf/shell/ContextStart.java |  54 +
 .../org/apache/camel/karaf/shell/ContextStop.java  |  49 +
 .../apache/camel/karaf/shell/ContextSuspend.java   |  49 +
 .../org/apache/camel/karaf/shell/EndpointList.java |  95 
 .../apache/camel/karaf/shell/EndpointStats.java| 122 +
 .../org/apache/camel/karaf/shell/RestApiDoc.java   |  53 +
 .../apache/camel/karaf/shell/RestRegistryList.java |  87 +++
 .../org/apache/camel/karaf/shell/RouteList.java|  91 +++
 .../apache/camel/karaf/shell/RouteResetStats.java  |  67 +++
 .../org/apache/camel/karaf/shell/RouteResume.java  |  53 +
 .../org/apache/camel/karaf/shell/RouteStart.java   |  53 +
 .../org/apache/camel/karaf/shell/RouteStop.java|  53 +
 .../org/apache/camel/karaf/shell/RouteSuspend.java |  53 +
 .../shell/completers/CamelContextCompleter.java|  47 
 .../karaf/shell/completers/RouteCompleter.java |  55 ++
 .../camel/itests/AbstractCamelRouteITest.java  |   8 +-
 .../karaf/camel/itests/CamelKarafTestHint.java |  33 ++
 .../camel/itests/PaxExamWithExternalResource.java  |  13 ++-
 .../camel/itests/UseExternalResourceProvider.java  |  42 ---
 .../apache/karaf/camel/itests/CamelAmqpITest.java  |   9 +-
 .../camel/itests/CamelElasticsearchITest.java  |   2 +-
 tests/pom.xml  |   1 -
 33 files changed, 1445 insertions(+), 103 deletions(-)
 copy {core/camel-core-osgi => shell}/pom.xml (60%)
 create mode 100644 
shell/src/main/java/org/apache/camel/karaf/shell/CamelCommandSupport.java
 create mode 100644 
shell/src/main/java/org/apache/camel/karaf/shell/ContextInflight.java
 create mode 100644 
shell/src/main/java/org/apache/camel/karaf/shell/ContextList.java
 

(camel) branch regen_bot updated (6d55587a391 -> 0624099ad8e)

2024-05-24 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 6d55587a391 Bump aws-java-sdk2-version from 2.25.58 to 2.25.59 (#14234)
 add 0624099ad8e Bump jakarta.persistence:jakarta.persistence-api from 
3.1.0 to 3.2.0 (#14236)

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/jakarta.persistence-jakarta.persistence-api-3.2.0 deleted (was 34e2374110f)

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

github-bot pushed a change to branch 
dependabot/maven/jakarta.persistence-jakarta.persistence-api-3.2.0
in repository https://gitbox.apache.org/repos/asf/camel.git


 was 34e2374110f Bump jakarta.persistence:jakarta.persistence-api from 
3.1.0 to 3.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 jakarta.persistence:jakarta.persistence-api from 3.1.0 to 3.2.0 (#14236)

2024-05-24 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 0624099ad8e Bump jakarta.persistence:jakarta.persistence-api from 
3.1.0 to 3.2.0 (#14236)
0624099ad8e is described below

commit 0624099ad8e8c9a2e13b8c46886f25cd5a8f20cf
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
AuthorDate: Fri May 24 10:11:26 2024 +0200

Bump jakarta.persistence:jakarta.persistence-api from 3.1.0 to 3.2.0 
(#14236)

Bumps 
[jakarta.persistence:jakarta.persistence-api](https://github.com/jakartaee/persistence)
 from 3.1.0 to 3.2.0.
- [Release notes](https://github.com/jakartaee/persistence/releases)
- [Commits](https://github.com/jakartaee/persistence/commits)

---
updated-dependencies:
- dependency-name: jakarta.persistence:jakarta.persistence-api
  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 5735cda4edd..b393dc045a9 100644
--- a/parent/pom.xml
+++ b/parent/pom.xml
@@ -171,7 +171,7 @@
 1.0
 1.0
 3.1.0
-
3.1.0
+
3.2.0
 2.1.3
 3.0.1
 
2.0.1



Re: [PR] Bump jakarta.persistence:jakarta.persistence-api from 3.1.0 to 3.2.0 [camel]

2024-05-24 Thread via GitHub


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


-- 
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 (7360f88aeb1 -> 6d55587a391)

2024-05-24 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 7360f88aeb1 Bump huaweicloud-sdk-version from 3.1.96 to 3.1.97 (#14235)
 add 6d55587a391 Bump aws-java-sdk2-version from 2.25.58 to 2.25.59 (#14234)

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 protobuf-version from 3.25.3 to 4.27.0 [camel]

2024-05-24 Thread via GitHub


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

   :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



(camel-karaf) branch 276/integration-test-framework updated (1512fc7e -> 94217a12)

2024-05-24 Thread nfilotto
This is an automated email from the ASF dual-hosted git repository.

nfilotto pushed a change to branch 276/integration-test-framework
in repository https://gitbox.apache.org/repos/asf/camel-karaf.git


 discard 1512fc7e Add support of integration tests with blueprint
 add 94217a12 Add support of integration tests with blueprint

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   (1512fc7e)
\
 N -- N -- N   refs/heads/276/integration-test-framework (94217a12)

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

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

No new revisions were added by this update.

Summary of changes:
 tests/components/camel-amqp/pom.xml | 26 --
 1 file changed, 26 deletions(-)



Re: [PR] Bump protobuf-version from 3.25.3 to 4.27.0 [camel]

2024-05-24 Thread via GitHub


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

   /component-test camel-protobuf camel-jackson-protobuf


-- 
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 jakarta.persistence:jakarta.persistence-api from 3.1.0 to 3.2.0 [camel]

2024-05-24 Thread via GitHub


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

   :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 jakarta.persistence:jakarta.persistence-api from 3.1.0 to 3.2.0 [camel]

2024-05-24 Thread via GitHub


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

   /component-test camel-jpa


-- 
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 aws-java-sdk2-version from 2.25.58 to 2.25.59 [camel]

2024-05-24 Thread via GitHub


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


-- 
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/aws-java-sdk2-version-2.25.59 deleted (was 339d46ba695)

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

github-bot pushed a change to branch 
dependabot/maven/aws-java-sdk2-version-2.25.59
in repository https://gitbox.apache.org/repos/asf/camel.git


 was 339d46ba695 Bump aws-java-sdk2-version from 2.25.58 to 2.25.59

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 (7360f88aeb1 -> 6d55587a391)

2024-05-24 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 7360f88aeb1 Bump huaweicloud-sdk-version from 3.1.96 to 3.1.97 (#14235)
 add 6d55587a391 Bump aws-java-sdk2-version from 2.25.58 to 2.25.59 (#14234)

No new revisions were added by this update.

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



(camel) branch regen_bot updated (6950b960043 -> 7360f88aeb1)

2024-05-24 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 6950b960043 Bump org.jgroups:jgroups from 5.3.4.Final to 5.3.7.Final
 add 21e51b4c8bc Bump io.grpc:grpc-bom from 1.63.0 to 1.64.0
 add a2a3b03e932 CAMEL-20800: Revert GSon upgrade
 add 7360f88aeb1 Bump huaweicloud-sdk-version from 3.1.96 to 3.1.97 (#14235)

No new revisions were added by this update.

Summary of changes:
 parent/pom.xml | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)



(camel) branch dependabot/maven/huaweicloud-sdk-version-3.1.97 deleted (was 35abaf0263d)

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

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


 was 35abaf0263d Bump huaweicloud-sdk-version from 3.1.96 to 3.1.97

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



Re: [PR] Bump protobuf-version from 3.25.3 to 4.27.0 [camel]

2024-05-24 Thread via GitHub


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

   :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/protobuf-version-4.27.0 created (now 747b4863b74)

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

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


  at 747b4863b74 Bump protobuf-version from 3.25.3 to 4.27.0

No new revisions were added by this update.



[PR] Bump protobuf-version from 3.25.3 to 4.27.0 [camel]

2024-05-24 Thread via GitHub


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

   Bumps `protobuf-version` from 3.25.3 to 4.27.0.
   Updates `com.google.protobuf:protobuf-java` from 3.25.3 to 4.27.0
   
   Commits
   
   See full diff in https://github.com/protocolbuffers/protobuf/commits;>compare view
   
   
   
   
   Updates `com.google.protobuf:protobuf-java-util` from 3.25.3 to 4.27.0
   
   
   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 main updated (a2a3b03e932 -> 7360f88aeb1)

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

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


from a2a3b03e932 CAMEL-20800: Revert GSon upgrade
 add 7360f88aeb1 Bump huaweicloud-sdk-version from 3.1.96 to 3.1.97 (#14235)

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 huaweicloud-sdk-version from 3.1.96 to 3.1.97 [camel]

2024-05-24 Thread via GitHub


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


-- 
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 huaweicloud-sdk-version from 3.1.96 to 3.1.97 [camel]

2024-05-24 Thread via GitHub


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

   :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 huaweicloud-sdk-version from 3.1.96 to 3.1.97 [camel]

2024-05-24 Thread via GitHub


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

   /component-test huawei


-- 
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 jakarta.persistence:jakarta.persistence-api from 3.1.0 to 3.2.0 [camel]

2024-05-24 Thread via GitHub


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

   :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/jakarta.persistence-jakarta.persistence-api-3.2.0 created (now 34e2374110f)

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

github-bot pushed a change to branch 
dependabot/maven/jakarta.persistence-jakarta.persistence-api-3.2.0
in repository https://gitbox.apache.org/repos/asf/camel.git


  at 34e2374110f Bump jakarta.persistence:jakarta.persistence-api from 
3.1.0 to 3.2.0

No new revisions were added by this update.



[PR] Bump jakarta.persistence:jakarta.persistence-api from 3.1.0 to 3.2.0 [camel]

2024-05-24 Thread via GitHub


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

   Bumps 
[jakarta.persistence:jakarta.persistence-api](https://github.com/jakartaee/persistence)
 from 3.1.0 to 3.2.0.
   
   Release notes
   Sourced from https://github.com/jakartaee/persistence/releases;>jakarta.persistence:jakarta.persistence-api's
 releases.
   
   Jakarta Persistence 3.2.0-M01
   This release contains following changes:
   
   Adds factory-level access to named queries and named entity graphs
   Updates orm schema for 3.2
   
   Full Changelog: https://github.com/jakartaee/persistence/compare/3.2-DRAFT01-3.2.0-B02-RELEASE...3.2-M1-3.2.0-M1-RELEASE;>https://github.com/jakartaee/persistence/compare/3.2-DRAFT01-3.2.0-B02-RELEASE...3.2-M1-3.2.0-M1-RELEASE
   Jakarta Persistence 3.1.0 API
   This release contains following changes:
   
   EntityManagerFactory and EntityManager interfaces extends 
java.lang.AutoCloseable interface
   Fixes ClassTransformer.transform to throw Persistence API specific 
exception
   Adds support for java.util.UUID and GenerationType.UUID
   Adds CEILING, EXP, FLOOR, LN, POWER, ROUND, and SIGN numeric functions 
to Jakarta Persistence QL and ceiling(), exp(), floor(), ln(), power(),  
round(), and sign() to Criteria API
   Adds LOCAL DATE, LOCAL DATETIME, and LOCAL TIME functions to Jakarta 
Persistence QL and corresponding localDate(), localDateTime(), and localTime() 
to Criteria API
   Adds EXTRACT function to Jakarta Persistence QL
   Adds support for Expressions as conditions in Criteria CASE 
expressions
   Adds missing definition of single_valued_embeddable_object_field in 
Jakarta Persistence QL BNF
   Clarifies mixing types of query input parameters
   Clarifies definition of the Basic type
   Clarifies the order of parameters in the LOCATE function
   Clarifies SqlResultSetMapping with multiple EntityResults and 
conflicting aliases
   
   New Contributors
   
   https://github.com/scottmarlow;>@​scottmarlow
   https://github.com/m0mus;>@​m0mus
   https://github.com/pzygielo;>@​pzygielo
   https://github.com/hebo6;>@​hebo6
   https://github.com/moghaddam;>@​moghaddam
   https://github.com/manouti;>@​manouti
   https://github.com/jbescos;>@​jbescos
   https://github.com/gavinking;>@​gavinking
   https://github.com/dazey3;>@​dazey3
   https://github.com/DmitriGit;>@​DmitriGit
   https://github.com/sebersole;>@​sebersole
   
   Project Board: https://github.com/eclipse-ee4j/jpa-api/projects/2;>https://github.com/eclipse-ee4j/jpa-api/projects/2
   Full Changelog: https://github.com/eclipse-ee4j/jpa-api/commits/3.1-3.1.0-RELEASE;>https://github.com/eclipse-ee4j/jpa-api/commits/3.1-3.1.0-RELEASE
   
   
   
   Commits
   
   See full diff in https://github.com/jakartaee/persistence/commits;>compare view
   
   
   
   
   
   [![Dependabot compatibility 
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=jakarta.persistence:jakarta.persistence-api=maven=3.1.0=3.2.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 
`@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: 

Re: [PR] Bump huaweicloud-sdk-version from 3.1.96 to 3.1.97 [camel]

2024-05-24 Thread via GitHub


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

   :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/huaweicloud-sdk-version-3.1.97 created (now 35abaf0263d)

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

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


  at 35abaf0263d Bump huaweicloud-sdk-version from 3.1.96 to 3.1.97

No new revisions were added by this update.



[PR] Bump huaweicloud-sdk-version from 3.1.96 to 3.1.97 [camel]

2024-05-24 Thread via GitHub


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

   Bumps `huaweicloud-sdk-version` from 3.1.96 to 3.1.97.
   Updates `com.huaweicloud.sdk:huaweicloud-sdk-core` from 3.1.96 to 3.1.97
   
   Release notes
   Sourced from https://github.com/huaweicloud/huaweicloud-sdk-java-v3/releases;>com.huaweicloud.sdk:huaweicloud-sdk-core's
 releases.
   
   v3.1.97
   Release 3.1.97
   
   
   
   Commits
   
   https://github.com/huaweicloud/huaweicloud-sdk-java-v3/commit/339ebaec8becac69c91cf0f96f45c4e8c0a9a0fd;>339ebae
 release 3.1.97 source code
   See full diff in https://github.com/huaweicloud/huaweicloud-sdk-java-v3/compare/v3.1.96...v3.1.97;>compare
 view
   
   
   
   
   Updates `com.huaweicloud.sdk:huaweicloud-sdk-frs` from 3.1.96 to 3.1.97
   
   Updates `com.huaweicloud.sdk:huaweicloud-sdk-functiongraph` from 3.1.96 to 
3.1.97
   
   Updates `com.huaweicloud.sdk:huaweicloud-sdk-iam` from 3.1.96 to 3.1.97
   
   Updates `com.huaweicloud.sdk:huaweicloud-sdk-image` from 3.1.96 to 3.1.97
   
   Updates `com.huaweicloud.sdk:huaweicloud-sdk-smn` from 3.1.96 to 3.1.97
   
   
   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



Re: [PR] Bump aws-java-sdk2-version from 2.25.58 to 2.25.59 [camel]

2024-05-24 Thread via GitHub


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

   :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/aws-java-sdk2-version-2.25.59 created (now 339d46ba695)

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

github-bot pushed a change to branch 
dependabot/maven/aws-java-sdk2-version-2.25.59
in repository https://gitbox.apache.org/repos/asf/camel.git


  at 339d46ba695 Bump aws-java-sdk2-version from 2.25.58 to 2.25.59

No new revisions were added by this update.



[PR] Bump aws-java-sdk2-version from 2.25.58 to 2.25.59 [camel]

2024-05-24 Thread via GitHub


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

   Bumps `aws-java-sdk2-version` from 2.25.58 to 2.25.59.
   Updates `software.amazon.awssdk:sqs` from 2.25.58 to 2.25.59
   
   Updates `software.amazon.awssdk:kinesis` from 2.25.58 to 2.25.59
   
   Updates `software.amazon.awssdk:s3` from 2.25.58 to 2.25.59
   
   Updates `software.amazon.awssdk:sns` from 2.25.58 to 2.25.59
   
   Updates `software.amazon.awssdk:cloudwatch` from 2.25.58 to 2.25.59
   
   Updates `software.amazon.awssdk:ec2` from 2.25.58 to 2.25.59
   
   Updates `software.amazon.awssdk:eventbridge` from 2.25.58 to 2.25.59
   
   Updates `software.amazon.awssdk:iam` from 2.25.58 to 2.25.59
   
   Updates `software.amazon.awssdk:kms` from 2.25.58 to 2.25.59
   
   Updates `software.amazon.awssdk:lambda` from 2.25.58 to 2.25.59
   
   Updates `software.amazon.awssdk:secretsmanager` from 2.25.58 to 2.25.59
   
   Updates `software.amazon.awssdk:sts` from 2.25.58 to 2.25.59
   
   Updates `software.amazon.awssdk:dynamodb` from 2.25.58 to 2.25.59
   
   Updates `software.amazon.awssdk:config` from 2.25.58 to 2.25.59
   
   Updates `software.amazon.awssdk:apache-client` from 2.25.58 to 2.25.59
   
   Updates `software.amazon.awssdk:athena` from 2.25.58 to 2.25.59
   
   Updates `software.amazon.awssdk:bedrock` from 2.25.58 to 2.25.59
   
   Updates `software.amazon.awssdk:bedrockruntime` from 2.25.58 to 2.25.59
   
   Updates `software.amazon.awssdk:bedrockagent` from 2.25.58 to 2.25.59
   
   Updates `software.amazon.awssdk:bedrockagentruntime` from 2.25.58 to 2.25.59
   
   Updates `software.amazon.awssdk:cloudtrail` from 2.25.58 to 2.25.59
   
   Updates `software.amazon.awssdk:ecs` from 2.25.58 to 2.25.59
   
   Updates `software.amazon.awssdk:eks` from 2.25.58 to 2.25.59
   
   Updates `software.amazon.awssdk:netty-nio-client` from 2.25.58 to 2.25.59
   
   Updates `software.amazon.awssdk:firehose` from 2.25.58 to 2.25.59
   
   Updates `software.amazon.awssdk:kafka` from 2.25.58 to 2.25.59
   
   Updates `software.amazon.awssdk:mq` from 2.25.58 to 2.25.59
   
   Updates `software.amazon.awssdk:redshiftdata` from 2.25.58 to 2.25.59
   
   Updates `software.amazon.awssdk:ses` from 2.25.58 to 2.25.59
   
   Updates `software.amazon.awssdk:sfn` from 2.25.58 to 2.25.59
   
   Updates `software.amazon.awssdk:timestreamquery` from 2.25.58 to 2.25.59
   
   Updates `software.amazon.awssdk:timestreamwrite` from 2.25.58 to 2.25.59
   
   Updates `software.amazon.awssdk:translate` from 2.25.58 to 2.25.59
   
   
   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-karaf) branch 276/integration-test-framework updated (9edd4911 -> 1512fc7e)

2024-05-24 Thread nfilotto
This is an automated email from the ASF dual-hosted git repository.

nfilotto pushed a change to branch 276/integration-test-framework
in repository https://gitbox.apache.org/repos/asf/camel-karaf.git


from 9edd4911 Move camel-seda and camel-file into same module
 add 1512fc7e Add support of integration tests with blueprint

No new revisions were added by this update.

Summary of changes:
 components/camel-blueprint/pom.xml |  4 +-
 tests/camel-integration-test/pom.xml   |  7 +++
 .../camel/itests/AbstractCamelRouteITest.java  | 70 --
 .../{camel-elasticsearch => camel-amqp}/pom.xml| 40 +
 .../main/resources/OSGI-INF/blueprint/route.xml| 59 ++
 .../apache/karaf/camel/itests/CamelAmqpITest.java  | 66 
 tests/components/pom.xml   |  1 +
 7 files changed, 230 insertions(+), 17 deletions(-)
 copy tests/components/{camel-elasticsearch => camel-amqp}/pom.xml (55%)
 create mode 100644 
tests/components/camel-amqp/src/main/resources/OSGI-INF/blueprint/route.xml
 create mode 100644 
tests/components/camel-amqp/src/test/java/org/apache/karaf/camel/itests/CamelAmqpITest.java