Re: [PR] Bump groovy-version from 4.0.19 to 4.0.20 [camel]

2024-03-27 Thread via GitHub


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

   :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/groovy-version-4.0.20 created (now 0e68768ca84)

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

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


  at 0e68768ca84 Bump groovy-version from 4.0.19 to 4.0.20

No new revisions were added by this update.



[PR] Bump groovy-version from 4.0.19 to 4.0.20 [camel]

2024-03-27 Thread via GitHub


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

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


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

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

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



Re: [PR] CAMEL-20625: Create a camel-google-pubsub-lite component [camel]

2024-03-27 Thread via GitHub


oscerd commented on code in PR #13630:
URL: https://github.com/apache/camel/pull/13630#discussion_r1542340660


##
components/camel-google/camel-google-pubsub-lite/src/main/java/org/apache/camel/component/google/pubsublite/GooglePubsubLiteProducer.java:
##
@@ -0,0 +1,120 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License.  You may obtain a copy of the License at
+ *
+ *  http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.apache.camel.component.google.pubsublite;
+
+import java.util.List;
+import java.util.Map;
+
+import com.google.api.core.ApiFuture;
+import com.google.cloud.pubsublite.cloudpubsub.Publisher;
+import com.google.common.base.Strings;
+import com.google.protobuf.ByteString;
+import com.google.pubsub.v1.PubsubMessage;
+import org.apache.camel.Exchange;
+import org.apache.camel.support.DefaultProducer;
+import org.slf4j.Logger;
+import org.slf4j.LoggerFactory;
+
+import static 
org.apache.camel.component.google.pubsublite.GooglePubsubLiteConstants.ATTRIBUTES;
+import static 
org.apache.camel.component.google.pubsublite.GooglePubsubLiteConstants.ORDERING_KEY;
+import static 
org.apache.camel.component.google.pubsublite.GooglePubsubLiteConstants.RESERVED_GOOGLE_CLIENT_ATTRIBUTE_PREFIX;
+
+/**
+ * Generic PubSub Lite Producer
+ */
+public class GooglePubsubLiteProducer extends DefaultProducer {
+
+public Logger logger;
+
+public GooglePubsubLiteProducer(GooglePubsubLiteEndpoint endpoint) {
+super(endpoint);
+
+String loggerId = endpoint.getLoggerId();
+
+if (Strings.isNullOrEmpty(loggerId)) {
+loggerId = this.getClass().getName();
+}
+
+logger = LoggerFactory.getLogger(loggerId);
+}
+
+/**
+ * The incoming message is expected to be either - a List of Exchanges 
(aggregated) - an Exchange
+ */
+@Override
+public void process(Exchange exchange) throws Exception {
+
+if (logger.isDebugEnabled()) {
+logger.debug("uploader thread/id: {} / {}. api call completed.", 
Thread.currentThread().getId(),
+exchange.getExchangeId());
+}
+
+if (exchange.getIn().getBody() instanceof List) {
+boolean groupedExchanges = false;
+for (Object body : exchange.getIn().getBody(List.class)) {
+if (body instanceof Exchange) {
+send((Exchange) body);
+groupedExchanges = true;
+}
+}
+if (!groupedExchanges) {
+send(exchange);
+}
+} else {
+send(exchange);
+}
+}
+
+private void send(Exchange exchange) throws Exception {
+
+GooglePubsubLiteEndpoint endpoint = (GooglePubsubLiteEndpoint) 
getEndpoint();
+String topicName = String.format("projects/%s/locations/%s/topics/%s", 
endpoint.getProjectId(), endpoint.getLocation(),
+endpoint.getDestinationName());
+
+Publisher publisher = endpoint.getComponent().getPublisher(topicName, 
endpoint);
+
+Object body = exchange.getIn().getBody();
+ByteString byteString;
+
+if (body instanceof String) {
+byteString = ByteString.copyFromUtf8((String) body);
+} else if (body instanceof byte[]) {
+byteString = ByteString.copyFrom((byte[]) body);
+} else {
+byteString = 
ByteString.copyFrom(endpoint.getSerializer().serialize(body));
+}
+
+PubsubMessage.Builder messageBuilder = 
PubsubMessage.newBuilder().setData(byteString);
+Map attributes = 
exchange.getIn().getHeader(ATTRIBUTES, Map.class);
+if (attributes != null) {
+for (Map.Entry attribute : attributes.entrySet()) {
+if 
(!attribute.getKey().startsWith(RESERVED_GOOGLE_CLIENT_ATTRIBUTE_PREFIX)) {
+messageBuilder.putAttributes(attribute.getKey(), 
attribute.getValue());
+}
+}
+}
+String orderingKey = exchange.getIn().getHeader(ORDERING_KEY, 
String.class);
+if (orderingKey != null) {
+messageBuilder.setOrderingKey(orderingKey);
+}
+
+PubsubMessage message = messageBuilder.build();
+
+ApiFuture messageIdFuture = publisher.publish(message);
+

(camel-kamelets) branch main updated: Updated CHANGELOG.md

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

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


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

commit 1de12f376f3903a566c64394659201dbd34c8c09
Author: github-actions[bot] 
<41898282+github-actions[bot]@users.noreply.github.com>
AuthorDate: Thu Mar 28 03:08:23 2024 +

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

diff --git a/CHANGELOG.md b/CHANGELOG.md
index 1c09348d..f80de9bc 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -7,8 +7,13 @@
 **Closed issues:**
 
 - Update Camel to 4.4.1 
[\#1948](https://github.com/apache/camel-kamelets/issues/1948)
+- Release 4.4.1 [\#1947](https://github.com/apache/camel-kamelets/issues/1947)
 - Slack Source: Expose Kamelet data type information 
[\#1945](https://github.com/apache/camel-kamelets/issues/1945)
+- Azure Storage Datalake Source: Expose Kamelet data type information 
[\#1927](https://github.com/apache/camel-kamelets/issues/1927)
+- Azure Eventhubs Source: Expose Kamelet data type information 
[\#1925](https://github.com/apache/camel-kamelets/issues/1925)
+- Azure CosmosDB Source: Expose Kamelet data type information 
[\#1924](https://github.com/apache/camel-kamelets/issues/1924)
 - Azure Storage Files Source: Expose Kamelet data type information 
[\#1914](https://github.com/apache/camel-kamelets/issues/1914)
+- AWS DDB Stream Source: Expose Kamelet data type information 
[\#1909](https://github.com/apache/camel-kamelets/issues/1909)
 - AWS Cloudtrail Source: Expose Kamelet data type information 
[\#1887](https://github.com/apache/camel-kamelets/issues/1887)
 
 ## [v4.4.1](https://github.com/apache/camel-kamelets/tree/v4.4.1) (2024-03-22)



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

2024-03-27 Thread via GitHub


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

   The 
[quarkus-main](https://github.com/apache/camel-quarkus/tree/quarkus-main) 
branch build has failed:
   
   * Build ID: 8461427219-1435-05b71efc-4076-4a2d-b264-a192d379d1b2
   * Camel Quarkus Commit: 7263dc761d1afc1cde7858375115b9b218488083
   
   * Quarkus Main Commit: 5775113393f269dbeb8622027c60d009c670919f
   * Link to build: 
https://github.com/apache/camel-quarkus/actions/runs/8461427219


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

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

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



(camel-k) branch release-2.2.x updated: chore: changelog automatic update

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

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


The following commit(s) were added to refs/heads/release-2.2.x by this push:
 new e8b6c785f chore: changelog automatic update
e8b6c785f is described below

commit e8b6c785f5e357c88ccc2a1cde06b93847e691dc
Author: github-actions[bot] 
<41898282+github-actions[bot]@users.noreply.github.com>
AuthorDate: Thu Mar 28 01:10:00 2024 +

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

diff --git a/CHANGELOG.md b/CHANGELOG.md
index aabd12ee9..577bbccc9 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -6,6 +6,8 @@
 
 **Closed issues:**
 
+- Could not determine source URI: cluster "camel-ai-kafka" has no listeners of 
type "plain" [\#5295](https://github.com/apache/camel-k/issues/5295)
+- OS platform not considered during "make build" 
[\#5288](https://github.com/apache/camel-k/issues/5288)
 - Camelk | AtlasMap Support 
[\#5261](https://github.com/apache/camel-k/issues/5261)
 - release-nightly does not build/push multiarch manifest 
[\#5252](https://github.com/apache/camel-k/issues/5252)
 - XSD might be wrong [\#5250](https://github.com/apache/camel-k/issues/5250)
@@ -37,7 +39,9 @@
 - Include the operator node-selector in the helm chart 
[\#5103](https://github.com/apache/camel-k/issues/5103)
 - TestCreateCatalog fail when DEFAULT\_RUNTIME\_VERSION=3.6.0-SNAPSHOT 
[\#5099](https://github.com/apache/camel-k/issues/5099)
 - Remove secondary IntegrationPlatform in favor of using IntegrationProfile 
settings [\#5097](https://github.com/apache/camel-k/issues/5097)
+- Basic example fails on Docker Desktop MacOS 
[\#5095](https://github.com/apache/camel-k/issues/5095)
 - Quartz builds failing to start when using native builds 
[\#5088](https://github.com/apache/camel-k/issues/5088)
+- Operator is stuck in a "deploying" phase loop when internal deployment fails 
indefinitely  [\#5084](https://github.com/apache/camel-k/issues/5084)
 - Ability to set different resources for jvm and native containers when both 
are used in the same Integration 
[\#5065](https://github.com/apache/camel-k/issues/5065)
 - Don't run dependabot on forked repos 
[\#5063](https://github.com/apache/camel-k/issues/5063)
 - Operator 2.2.0 does not spawn builder pod with strategy: pod 
[\#5060](https://github.com/apache/camel-k/issues/5060)
@@ -47,6 +51,7 @@
 - Nightly check against latest runtime failure 
[\#5042](https://github.com/apache/camel-k/issues/5042)
 - Provide a page linking to Camel DSLs 
[\#5037](https://github.com/apache/camel-k/issues/5037)
 - Nightly SBOM procedure should not run if there are no changes 
[\#5033](https://github.com/apache/camel-k/issues/5033)
+- Mac github actions failing 
[\#5028](https://github.com/apache/camel-k/issues/5028)
 - Polish trait conditions 
[\#5027](https://github.com/apache/camel-k/issues/5027)
 - Nightly release soft failure 
[\#5023](https://github.com/apache/camel-k/issues/5023)
 - \[Discussion\] Camel K 2024 roadmap 
[\#5019](https://github.com/apache/camel-k/issues/5019)
@@ -63,9 +68,11 @@
 - Pointer to an external schema/CRD 
[\#4788](https://github.com/apache/camel-k/issues/4788)
 - Pipe using simple language expressions causing failure 
[\#4777](https://github.com/apache/camel-k/issues/4777)
 - 1st Integration after Camel K runtime version update failing 
[\#4776](https://github.com/apache/camel-k/issues/4776)
+- KameletBinding could not find a topic with a different `metadata.name` and 
`topicName`. [\#4759](https://github.com/apache/camel-k/issues/4759)
 - Provide alternative publishing strategy via pipeline 
[\#4747](https://github.com/apache/camel-k/issues/4747)
 - Quarkus native checks failure 
[\#4723](https://github.com/apache/camel-k/issues/4723)
 - Build waiting condition 
[\#4542](https://github.com/apache/camel-k/issues/4542)
+- Add support for Strimzi Kafka in KameletBinding/Pipe 
[\#4337](https://github.com/apache/camel-k/issues/4337)
 - Add DataTypeRegistry as bean in Camel context 
[\#3845](https://github.com/apache/camel-k/issues/3845)
 - Remove duplication of the default platform creation 
[\#3433](https://github.com/apache/camel-k/issues/3433)
 - Use `go:embed` instead of vfsgen for embedded resources handling 
[\#3384](https://github.com/apache/camel-k/issues/3384)



(camel-karavan) branch main updated: Upgrade deps

2024-03-27 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 618e1a2d Upgrade deps
618e1a2d is described below

commit 618e1a2d535b26882a25bf64ac9e4f01a39662a0
Author: Marat Gubaidullin 
AuthorDate: Wed Mar 27 20:42:09 2024 -0400

Upgrade deps
---
 karavan-app/pom.xml  |   6 +-
 karavan-app/src/main/webui/package-lock.json | 431 ++-
 karavan-app/src/main/webui/package.json  |  40 +--
 3 files changed, 249 insertions(+), 228 deletions(-)

diff --git a/karavan-app/pom.xml b/karavan-app/pom.xml
index c3c0f6a8..94785a20 100644
--- a/karavan-app/pom.xml
+++ b/karavan-app/pom.xml
@@ -33,12 +33,12 @@
 
UTF-8
 
quarkus-bom
 
io.quarkus.platform
-3.8.1
+3.8.2
 4.4.0
 4.4.0
 3.1.0
-3.0.7
-2.3.4
+3.1.0
+2.3.6
 3.3.0
 3.3.5
 
diff --git a/karavan-app/src/main/webui/package-lock.json 
b/karavan-app/src/main/webui/package-lock.json
index 5ed37c02..2ec1e4f6 100644
--- a/karavan-app/src/main/webui/package-lock.json
+++ b/karavan-app/src/main/webui/package-lock.json
@@ -9,45 +9,45 @@
   "version": "4.4.1",
   "dependencies": {
 "@hookform/error-message": "^2.0.1",
-"@hookform/resolvers": "^2.9.10",
+"@hookform/resolvers": "^3.3.4",
 "@microsoft/fetch-event-source": "^2.0.1",
 "@monaco-editor/react": "4.6.0",
-"@patternfly/patternfly": "^5.2.0",
-"@patternfly/react-charts": "^7.2.0",
-"@patternfly/react-core": "^5.2.0",
+"@patternfly/patternfly": "^5.2.1",
+"@patternfly/react-charts": "^7.2.2",
+"@patternfly/react-core": "^5.2.3",
 "@patternfly/react-log-viewer": "^5.1.0",
-"@patternfly/react-table": "^5.2.0",
+"@patternfly/react-table": "^5.2.4",
 "@patternfly/react-topology": "^5.2.0",
 "@types/js-yaml": "4.0.9",
-"@types/node": "20.11.16",
+"@types/node": "20.11.30",
 "@types/uuid": "9.0.8",
-"@uiw/react-markdown-preview": "^5.0.7",
-"axios": "1.6.7",
+"@uiw/react-markdown-preview": "^5.1.1",
+"axios": "1.6.8",
 "buffer": "6.0.3",
 "file-saver": "2.0.5",
 "html-to-image": "1.11.11",
 "karavan-core": "file:../../../../karavan-core",
-"keycloak-js": "23.0.6",
+"keycloak-js": "24.0.2",
 "react": "18.2.0",
 "react-dom": "18.2.0",
-"react-hook-form": "^7.49.1",
-"react-router-dom": "^6.15.0",
+"react-hook-form": "^7.51.2",
+"react-router-dom": "^6.22.3",
 "rxjs": "7.8.1",
 "uuid": "9.0.1",
-"yup": "^1.3.2",
-"zustand": "^4.5.0"
+"yup": "^1.4.0",
+"zustand": "^4.5.2"
   },
   "devDependencies": {
 "@babel/plugin-proposal-private-property-in-object": "^7.21.11",
-"@svgr/webpack": "^7.0.0",
-"@types/dagre": "^0.7.48",
-"@types/file-saver": "^2.0.5",
-"@types/react": "^18.2.0",
-"@types/react-dom": "^18.2.1",
+"@svgr/webpack": "^8.1.0",
+"@types/dagre": "^0.7.52",
+"@types/file-saver": "^2.0.7",
+"@types/react": "^18.2.73",
+"@types/react-dom": "^18.2.22",
 "@typescript-eslint/eslint-plugin": "^5.51.0",
 "@typescript-eslint/parser": "^5.51.0",
-"eslint": "^8.33.0",
-"monaco-editor": "0.41.0",
+"eslint": "^8.57.0",
+"monaco-editor": "0.47.0",
 "react-scripts": "^5.0.1",
 "typescript": "^4.9.5"
   }
@@ -2549,9 +2549,9 @@
   }
 },
 "node_modules/@eslint/js": {
-  "version": "8.55.0",
-  "resolved": "https://registry.npmjs.org/@eslint/js/-/js-8.55.0.tgz;,
-  "integrity": 
"sha512-qQfo2mxH5yVom1kacMtZZJFVdW+E70mqHMJvVg6WTLo+VBuQJ4TojZlfWBjK0ve5BdEeNAVxOsl/nvNMpJOaJA==",
+  "version": "8.57.0",
+  "resolved": "https://registry.npmjs.org/@eslint/js/-/js-8.57.0.tgz;,
+  "integrity": 
"sha512-Ys+3g2TaW7gADOJzPt83SJtCDhMjndcDMFVQ/Tj9iA1BfJzFKD9mAUXT3OenpuPHbI6P/myECxRJrofUsDx/5g==",
   "dev": true,
   "engines": {
 "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
@@ -2568,21 +2568,21 @@
   }
 },
 "node_modules/@hookform/resolvers": {
-  "version": "2.9.11",
-  "resolved": 
"https://registry.npmjs.org/@hookform/resolvers/-/resolvers-2.9.11.tgz;,
-  "integrity": 
"sha512-bA3aZ79UgcHj7tFV7RlgThzwSSHZgvfbt2wprldRkYBcMopdMvHyO17Wwp/twcJasNFischFfS7oz8Katz8DdQ==",
+  "version": "3.3.4",
+  "resolved": 
"https://registry.npmjs.org/@hookform/resolvers/-/resolvers-3.3.4.tgz;,
+  "integrity": 
"sha512-o5cgpGOuJYrd+iMKvkttOclgwRW86EsWJZZRC23prf0uU2i48Htq4PuT73AVb9ionFyZrwYEITuOFGF+BydEtQ==",
   "peerDependencies": {
  

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

2024-03-27 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 0aac6a84 Fix #1196
0aac6a84 is described below

commit 0aac6a844534e774c39502614e701f11b8a33716
Author: Marat Gubaidullin 
AuthorDate: Wed Mar 27 20:37:21 2024 -0400

Fix #1196
---
 .../src/main/webui/src/project/files/FilesToolbar.tsx  | 14 +-
 1 file changed, 13 insertions(+), 1 deletion(-)

diff --git a/karavan-app/src/main/webui/src/project/files/FilesToolbar.tsx 
b/karavan-app/src/main/webui/src/project/files/FilesToolbar.tsx
index 7a69c373..3545aeaf 100644
--- a/karavan-app/src/main/webui/src/project/files/FilesToolbar.tsx
+++ b/karavan-app/src/main/webui/src/project/files/FilesToolbar.tsx
@@ -41,6 +41,7 @@ import UpdateIcon from 
"@patternfly/react-icons/dist/esm/icons/cog-icon";
 import {ProjectType} from "../../api/ProjectModels";
 import {KaravanApi} from "../../api/KaravanApi";
 import {EventBus} from "../../designer/utils/EventBus";
+import {isEmpty} from "../../util/StringUtils";
 
 export function FileToolbar () {
 
@@ -82,6 +83,16 @@ export function FileToolbar () {
 return project.projectId === 'templates' && project.type === 
ProjectType.templates;
 }
 
+function onKeyDown(event: React.KeyboardEvent): void {
+event.stopPropagation();
+if (event.key === 'Enter') {
+event.preventDefault();
+if (!isEmpty(commitMessage)) {
+push();
+}
+}
+}
+
 function getCommitModal() {
 return (
  setCommitMessageIsOpen(false)}
+onKeyDown={onKeyDown}
 actions={[
- 
push()}>Commit and push,
+ push()}>Commit and 
push,
  
setCommitMessageIsOpen(false)}>Cancel
 ]}
 >



Re: [I] Commit Modal does not process Enter [camel-karavan]

2024-03-27 Thread via GitHub


mgubaidullin closed issue #1196: Commit Modal does not process Enter
URL: https://github.com/apache/camel-karavan/issues/1196


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

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

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



(camel-k) branch release-2.1.x updated: chore: changelog automatic update

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

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


The following commit(s) were added to refs/heads/release-2.1.x by this push:
 new 6320ffc91 chore: changelog automatic update
6320ffc91 is described below

commit 6320ffc917cc04286fa81a35be335dc6c410c601
Author: github-actions[bot] 
<41898282+github-actions[bot]@users.noreply.github.com>
AuthorDate: Thu Mar 28 00:26:30 2024 +

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

diff --git a/CHANGELOG.md b/CHANGELOG.md
index ef7477041..577bbccc9 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -6,6 +6,8 @@
 
 **Closed issues:**
 
+- Could not determine source URI: cluster "camel-ai-kafka" has no listeners of 
type "plain" [\#5295](https://github.com/apache/camel-k/issues/5295)
+- OS platform not considered during "make build" 
[\#5288](https://github.com/apache/camel-k/issues/5288)
 - Camelk | AtlasMap Support 
[\#5261](https://github.com/apache/camel-k/issues/5261)
 - release-nightly does not build/push multiarch manifest 
[\#5252](https://github.com/apache/camel-k/issues/5252)
 - XSD might be wrong [\#5250](https://github.com/apache/camel-k/issues/5250)
@@ -37,7 +39,9 @@
 - Include the operator node-selector in the helm chart 
[\#5103](https://github.com/apache/camel-k/issues/5103)
 - TestCreateCatalog fail when DEFAULT\_RUNTIME\_VERSION=3.6.0-SNAPSHOT 
[\#5099](https://github.com/apache/camel-k/issues/5099)
 - Remove secondary IntegrationPlatform in favor of using IntegrationProfile 
settings [\#5097](https://github.com/apache/camel-k/issues/5097)
+- Basic example fails on Docker Desktop MacOS 
[\#5095](https://github.com/apache/camel-k/issues/5095)
 - Quartz builds failing to start when using native builds 
[\#5088](https://github.com/apache/camel-k/issues/5088)
+- Operator is stuck in a "deploying" phase loop when internal deployment fails 
indefinitely  [\#5084](https://github.com/apache/camel-k/issues/5084)
 - Ability to set different resources for jvm and native containers when both 
are used in the same Integration 
[\#5065](https://github.com/apache/camel-k/issues/5065)
 - Don't run dependabot on forked repos 
[\#5063](https://github.com/apache/camel-k/issues/5063)
 - Operator 2.2.0 does not spawn builder pod with strategy: pod 
[\#5060](https://github.com/apache/camel-k/issues/5060)
@@ -68,6 +72,7 @@
 - Provide alternative publishing strategy via pipeline 
[\#4747](https://github.com/apache/camel-k/issues/4747)
 - Quarkus native checks failure 
[\#4723](https://github.com/apache/camel-k/issues/4723)
 - Build waiting condition 
[\#4542](https://github.com/apache/camel-k/issues/4542)
+- Add support for Strimzi Kafka in KameletBinding/Pipe 
[\#4337](https://github.com/apache/camel-k/issues/4337)
 - Add DataTypeRegistry as bean in Camel context 
[\#3845](https://github.com/apache/camel-k/issues/3845)
 - Remove duplication of the default platform creation 
[\#3433](https://github.com/apache/camel-k/issues/3433)
 - Use `go:embed` instead of vfsgen for embedded resources handling 
[\#3384](https://github.com/apache/camel-k/issues/3384)



(camel-k) branch main updated: chore: nightly automatic updates

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

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


The following commit(s) were added to refs/heads/main by this push:
 new 4f2db43f6 chore: nightly automatic updates
4f2db43f6 is described below

commit 4f2db43f64e8c69bd2406c22518a927d8a3a9e60
Author: github-actions[bot] 
<41898282+github-actions[bot]@users.noreply.github.com>
AuthorDate: Wed Mar 27 23:45:32 2024 +

chore: nightly automatic updates
---
 CHANGELOG.md | 10 +
 README.adoc  |  2 +-
 badge.out|  2 +-
 coverage |  2 +-
 coverage.out | 71 +++-
 5 files changed, 50 insertions(+), 37 deletions(-)

diff --git a/CHANGELOG.md b/CHANGELOG.md
index ffcd9c180..ce656c6c2 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -6,6 +6,8 @@
 
 **Closed issues:**
 
+- Could not determine source URI: cluster "camel-ai-kafka" has no listeners of 
type "plain" [\#5295](https://github.com/apache/camel-k/issues/5295)
+- OS platform not considered during "make build" 
[\#5288](https://github.com/apache/camel-k/issues/5288)
 - Camelk | AtlasMap Support 
[\#5261](https://github.com/apache/camel-k/issues/5261)
 - release-nightly does not build/push multiarch manifest 
[\#5252](https://github.com/apache/camel-k/issues/5252)
 - XSD might be wrong [\#5250](https://github.com/apache/camel-k/issues/5250)
@@ -37,7 +39,9 @@
 - Include the operator node-selector in the helm chart 
[\#5103](https://github.com/apache/camel-k/issues/5103)
 - TestCreateCatalog fail when DEFAULT\_RUNTIME\_VERSION=3.6.0-SNAPSHOT 
[\#5099](https://github.com/apache/camel-k/issues/5099)
 - Remove secondary IntegrationPlatform in favor of using IntegrationProfile 
settings [\#5097](https://github.com/apache/camel-k/issues/5097)
+- Basic example fails on Docker Desktop MacOS 
[\#5095](https://github.com/apache/camel-k/issues/5095)
 - Quartz builds failing to start when using native builds 
[\#5088](https://github.com/apache/camel-k/issues/5088)
+- Operator is stuck in a "deploying" phase loop when internal deployment fails 
indefinitely  [\#5084](https://github.com/apache/camel-k/issues/5084)
 - Ability to set different resources for jvm and native containers when both 
are used in the same Integration 
[\#5065](https://github.com/apache/camel-k/issues/5065)
 - Don't run dependabot on forked repos 
[\#5063](https://github.com/apache/camel-k/issues/5063)
 - Operator 2.2.0 does not spawn builder pod with strategy: pod 
[\#5060](https://github.com/apache/camel-k/issues/5060)
@@ -68,6 +72,7 @@
 - Provide alternative publishing strategy via pipeline 
[\#4747](https://github.com/apache/camel-k/issues/4747)
 - Quarkus native checks failure 
[\#4723](https://github.com/apache/camel-k/issues/4723)
 - Build waiting condition 
[\#4542](https://github.com/apache/camel-k/issues/4542)
+- Add support for Strimzi Kafka in KameletBinding/Pipe 
[\#4337](https://github.com/apache/camel-k/issues/4337)
 - Add DataTypeRegistry as bean in Camel context 
[\#3845](https://github.com/apache/camel-k/issues/3845)
 - Remove duplication of the default platform creation 
[\#3433](https://github.com/apache/camel-k/issues/3433)
 - Use `go:embed` instead of vfsgen for embedded resources handling 
[\#3384](https://github.com/apache/camel-k/issues/3384)
@@ -76,6 +81,11 @@
 
 **Merged pull requests:**
 
+- fix\(\#5238\): Fix Jib integration build 
[\#5294](https://github.com/apache/camel-k/pull/5294) 
([christophd](https://github.com/christophd))
+- fix\(knative\): enable service container port 
[\#5291](https://github.com/apache/camel-k/pull/5291) 
([squakez](https://github.com/squakez))
+- fix\(\#5288\): Makefile building platform specific kamel CLI binary 
[\#5290](https://github.com/apache/camel-k/pull/5290) 
([christophd](https://github.com/christophd))
+- fix\(ctrl\): report error on traits failure 
[\#5285](https://github.com/apache/camel-k/pull/5285) 
([squakez](https://github.com/squakez))
+- feat\(kafka\): support Kafka binding resource 
[\#5284](https://github.com/apache/camel-k/pull/5284) 
([squakez](https://github.com/squakez))
 - feat\(strimzi\): bind to either KafkaTopic name or topicName 
[\#5281](https://github.com/apache/camel-k/pull/5281) 
([squakez](https://github.com/squakez))
 - Add optional install to tests 
[\#5278](https://github.com/apache/camel-k/pull/5278) 
([lfabriko](https://github.com/lfabriko))
 - chore\(deps\): bump github.com/prometheus/common from 0.51.0 to 0.51.1 
[\#5276](https://github.com/apache/camel-k/pull/5276) 
([dependabot[bot]](https://github.com/apps/dependabot))
diff --git a/README.adoc b/README.adoc
index dc4f1ed5a..f6a64aa81 100644
--- a/README.adoc
+++ b/README.adoc
@@ -11,7 +11,7 @@ 
image:https://github.com/apache/camel-k/workflows/kubernetes/badge.svg["Kubernet
 image:https://github.com/apache/camel-k/workflows/knative/badge.svg["Knative;, 

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

2024-03-27 Thread Apache Infrastructure


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



(camel-website) branch regen_bot updated (247515ce -> 3733155d)

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

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


from 247515ce Added Camel Kamelets 4.4.1 release (#1164)
 add 3733155d Camel Quarkus 3.9.0 announcement blog post

No new revisions were added by this update.

Summary of changes:
 antora-playbook-snippets/antora-playbook.yml   |   1 +
 .../camel-featured.jpeg| Bin
 .../2024/03/camel-quarkus-release-3.9.0/index.md   |  24 +
 content/releases/q/release-3.9.0.md|  12 +++
 4 files changed, 37 insertions(+)
 copy content/blog/{2021/03/camel-quarkus-release-1.8.0 => 
2024/03/camel-quarkus-release-3.9.0}/camel-featured.jpeg (100%)
 create mode 100644 content/blog/2024/03/camel-quarkus-release-3.9.0/index.md
 create mode 100644 content/releases/q/release-3.9.0.md



Re: [PR] Camel Quarkus 3.9.0 announcement blog post [camel-website]

2024-03-27 Thread via GitHub


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


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

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

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



(camel-website) branch main updated: Camel Quarkus 3.9.0 announcement blog post

2024-03-27 Thread aldettinger
This is an automated email from the ASF dual-hosted git repository.

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


The following commit(s) were added to refs/heads/main by this push:
 new 3733155d Camel Quarkus 3.9.0 announcement blog post
3733155d is described below

commit 3733155d392229dd19935a8a61f27ac75a338522
Author: aldettinger 
AuthorDate: Wed Mar 27 17:28:55 2024 +0100

Camel Quarkus 3.9.0 announcement blog post
---
 antora-playbook-snippets/antora-playbook.yml   |   1 +
 .../camel-featured.jpeg| Bin 0 -> 625206 bytes
 .../2024/03/camel-quarkus-release-3.9.0/index.md   |  24 +
 content/releases/q/release-3.9.0.md|  12 +++
 4 files changed, 37 insertions(+)

diff --git a/antora-playbook-snippets/antora-playbook.yml 
b/antora-playbook-snippets/antora-playbook.yml
index 42783d8d..c2725377 100644
--- a/antora-playbook-snippets/antora-playbook.yml
+++ b/antora-playbook-snippets/antora-playbook.yml
@@ -51,6 +51,7 @@ content:
 - url: https://github.com/apache/camel-quarkus.git
   branches:
 - main
+- 3.9.x
 - 3.8.x
 - 3.2.x
   start_path: docs
diff --git 
a/content/blog/2024/03/camel-quarkus-release-3.9.0/camel-featured.jpeg 
b/content/blog/2024/03/camel-quarkus-release-3.9.0/camel-featured.jpeg
new file mode 100644
index ..36c23a02
Binary files /dev/null and 
b/content/blog/2024/03/camel-quarkus-release-3.9.0/camel-featured.jpeg differ
diff --git a/content/blog/2024/03/camel-quarkus-release-3.9.0/index.md 
b/content/blog/2024/03/camel-quarkus-release-3.9.0/index.md
new file mode 100644
index ..db2a76d2
--- /dev/null
+++ b/content/blog/2024/03/camel-quarkus-release-3.9.0/index.md
@@ -0,0 +1,24 @@
+---
+title: "Camel Quarkus 3.9.0 Released"
+date: 2024-03-27
+authors: ["aldettinger"]
+categories: ["Releases", "Camel Quarkus"]
+preview: "Camel Quarkus 3.9.0 Released"
+summary: "Camel Quarkus 3.9.0 release"
+---
+
+Image by https://www.flickr.com/photos/lanzen/5984113332;>Anders Lanzen https://creativecommons.org/licenses/by-nc-sa/2.0;>CC BY-NC-SA 
2.0
+
+We are pleased to announce the 3.9.0 release of Camel Quarkus.
+
+Camel Quarkus 3.9.0 aligns with Camel 4.4.1 LTS and Quarkus 3.9.0 releases.
+
+For more information, please check the [Release notes](/releases/q-3.9.0/).
+
+## Camel 4.4.1
+
+Please refer to the [Camel 4.4.1 announcement](/blog/2024/03/RELEASE-4.4.1/) 
for more details.
+
+## Quarkus 3.9.0
+
+Please refer to the [Quarkus 
3.9.0](https://github.com/quarkusio/quarkus/releases/tag/3.9.0) release notes 
for more details.
diff --git a/content/releases/q/release-3.9.0.md 
b/content/releases/q/release-3.9.0.md
new file mode 100644
index ..e7dead4b
--- /dev/null
+++ b/content/releases/q/release-3.9.0.md
@@ -0,0 +1,12 @@
+---
+url: "/releases/q-3.9.0/"
+date: 2024-03-27
+type: release-note
+version: 3.9.0
+title: "Camel Quarkus release 3.9.0"
+preview: ""
+changelog: ""
+category: "camel-quarkus"
+milestone: 55
+jdk: [17, 21]
+---



(camel-quarkus-examples) branch camel-quarkus-main updated (9f14668 -> 9e958a7)

2024-03-27 Thread aldettinger
This is an automated email from the ASF dual-hosted git repository.

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


omit 9f14668  Upgrade to Quarkus Platform 3.9.1
omit 2e23c59  Next is 3.9.0
 add 317efed  Next is 3.9.0
 add 6c54100  Upgrade to Quarkus Platform 3.9.1
 add ef1f680  Tag 3.9.0
 new 9e958a7  Next is 3.9.1

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   (9f14668)
\
 N -- N -- N   refs/heads/camel-quarkus-main (9e958a7)

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

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

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


Summary of changes:
 aws-lambda/pom.xml   | 12 ++--
 cluster-leader-election/pom.xml  | 12 ++--
 cxf-soap/pom.xml | 12 ++--
 file-bindy-ftp/pom.xml   | 12 ++--
 file-bindy-ftp/src/main/kubernetes/kubernetes.yml| 12 ++--
 file-bindy-ftp/src/main/kubernetes/openshift.yml | 12 ++--
 file-split-log-xml/pom.xml   | 12 ++--
 health/pom.xml   | 12 ++--
 http-log/pom.xml | 12 ++--
 jdbc-datasource/pom.xml  | 12 ++--
 jms-jpa/pom.xml  | 12 ++--
 jpa-idempotent-repository/pom.xml| 12 ++--
 .../src/main/kubernetes/kubernetes.yml   | 12 ++--
 .../src/main/kubernetes/openshift.yml| 16 
 jta-jpa/pom.xml  | 12 ++--
 kafka/pom.xml| 12 ++--
 kamelet-chucknorris/pom.xml  | 14 +++---
 message-bridge/pom.xml   | 12 ++--
 observability/pom.xml| 12 ++--
 platform-http-security-keycloak/pom.xml  | 12 ++--
 rest-json/pom.xml| 12 ++--
 timer-log-kotlin/pom.xml | 12 ++--
 timer-log-main/pom.xml   | 14 +++---
 timer-log/pom.xml| 12 ++--
 24 files changed, 148 insertions(+), 148 deletions(-)



(camel-quarkus-examples) 01/01: Next is 3.9.1

2024-03-27 Thread aldettinger
This is an automated email from the ASF dual-hosted git repository.

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

commit 9e958a755d1f907784b35a48d1213694d4f4d1ad
Author: aldettinger 
AuthorDate: Wed Mar 27 19:08:23 2024 +0100

Next is 3.9.1
---
 aws-lambda/pom.xml | 12 ++--
 cluster-leader-election/pom.xml| 12 ++--
 cxf-soap/pom.xml   | 12 ++--
 file-bindy-ftp/pom.xml | 12 ++--
 file-bindy-ftp/src/main/kubernetes/kubernetes.yml  | 12 ++--
 file-bindy-ftp/src/main/kubernetes/openshift.yml   | 12 ++--
 file-split-log-xml/pom.xml | 12 ++--
 health/pom.xml | 12 ++--
 http-log/pom.xml   | 12 ++--
 jdbc-datasource/pom.xml| 12 ++--
 jms-jpa/pom.xml| 12 ++--
 jpa-idempotent-repository/pom.xml  | 12 ++--
 .../src/main/kubernetes/kubernetes.yml | 12 ++--
 .../src/main/kubernetes/openshift.yml  | 14 +++---
 jta-jpa/pom.xml| 12 ++--
 kafka/pom.xml  | 12 ++--
 kamelet-chucknorris/pom.xml| 14 +++---
 message-bridge/pom.xml | 12 ++--
 observability/pom.xml  | 12 ++--
 platform-http-security-keycloak/pom.xml| 12 ++--
 rest-json/pom.xml  | 12 ++--
 timer-log-kotlin/pom.xml   | 12 ++--
 timer-log-main/pom.xml | 14 +++---
 timer-log/pom.xml  | 12 ++--
 24 files changed, 147 insertions(+), 147 deletions(-)

diff --git a/aws-lambda/pom.xml b/aws-lambda/pom.xml
index 0a91886..a1f2f57 100644
--- a/aws-lambda/pom.xml
+++ b/aws-lambda/pom.xml
@@ -21,19 +21,19 @@
 4.0.0
 org.apache.camel.quarkus.examples
 camel-quarkus-examples-aws-lambda
-3.9.0
+3.9.1-SNAPSHOT
 
 Camel Quarkus :: Examples :: AWS Lambda
 Camel Quarkus Example :: Deploying a Camel Route in AWS 
Lambda
 
 
-3.9.1
-
${quarkus.platform.version}
+3.9.0
+
3.9.1-SNAPSHOT
 
-
io.quarkus.platform
+io.quarkus
 
quarkus-bom
-
${quarkus.platform.group-id}
-
quarkus-camel-bom
+
org.apache.camel.quarkus
+
camel-quarkus-bom
 
 UTF-8
 
UTF-8
diff --git a/cluster-leader-election/pom.xml b/cluster-leader-election/pom.xml
index 7089272..2e669a1 100644
--- a/cluster-leader-election/pom.xml
+++ b/cluster-leader-election/pom.xml
@@ -23,19 +23,19 @@
 
 camel-quarkus-examples-cluster-leader-election
 org.apache.camel.quarkus.examples
-3.9.0
+3.9.1-SNAPSHOT
 
 Camel Quarkus :: Examples :: Cluster leader election
 Camel Quarkus Example :: Cluster leader election
 
 
-3.9.1
-
${quarkus.platform.version}
+3.9.0
+
3.9.1-SNAPSHOT
 
-
io.quarkus.platform
+io.quarkus
 
quarkus-bom
-
${quarkus.platform.group-id}
-
quarkus-camel-bom
+
org.apache.camel.quarkus
+
camel-quarkus-bom
 
 UTF-8
 
UTF-8
diff --git a/cxf-soap/pom.xml b/cxf-soap/pom.xml
index fa71d6a..f48f1e9 100644
--- a/cxf-soap/pom.xml
+++ b/cxf-soap/pom.xml
@@ -23,19 +23,19 @@
 
 camel-quarkus-examples-cxf-soap
 org.apache.camel.quarkus.examples
-3.9.0
+3.9.1-SNAPSHOT
 
 Camel Quarkus :: Examples :: CXF SOAP
 Camel Quarkus Example :: CXF SOAP
 
 
-3.9.1
-
${quarkus.platform.version}
+3.9.0
+
3.9.1-SNAPSHOT
 
-
io.quarkus.platform
+io.quarkus
 
quarkus-bom
-
${quarkus.platform.group-id}
-
quarkus-camel-bom
+
org.apache.camel.quarkus
+
camel-quarkus-bom
 
 UTF-8
 
UTF-8
diff --git a/file-bindy-ftp/pom.xml b/file-bindy-ftp/pom.xml
index 917a2b2..1db1716 100644
--- a/file-bindy-ftp/pom.xml
+++ b/file-bindy-ftp/pom.xml
@@ -22,19 +22,19 @@
 
 camel-quarkus-examples-file-bindy-ftp
 org.apache.camel.quarkus.examples
-3.9.0
+3.9.1-SNAPSHOT
 
 Camel Quarkus :: Examples :: File Bindy FTP
 Camel Quarkus Example :: File Bindy FTP
 
 
-3.9.1
-
${quarkus.platform.version}
+3.9.0
+
3.9.1-SNAPSHOT
 
-
io.quarkus.platform
+io.quarkus
 

(camel-quarkus-examples) branch 3.9.x created (now ef1f680)

2024-03-27 Thread aldettinger
This is an automated email from the ASF dual-hosted git repository.

aldettinger pushed a change to branch 3.9.x
in repository https://gitbox.apache.org/repos/asf/camel-quarkus-examples.git


  at ef1f680  Tag 3.9.0

No new revisions were added by this update.



(camel-quarkus-examples) branch main updated: Tag 3.9.0

2024-03-27 Thread aldettinger
This is an automated email from the ASF dual-hosted git repository.

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


The following commit(s) were added to refs/heads/main by this push:
 new ef1f680  Tag 3.9.0
ef1f680 is described below

commit ef1f680090ac17204e679cabe6f566eb8ae8cb5e
Author: aldettinger 
AuthorDate: Wed Mar 27 19:00:57 2024 +0100

Tag 3.9.0
---
 aws-lambda/pom.xml   |  2 +-
 cluster-leader-election/pom.xml  |  2 +-
 cxf-soap/pom.xml |  2 +-
 file-bindy-ftp/pom.xml   |  2 +-
 file-bindy-ftp/src/main/kubernetes/kubernetes.yml| 12 ++--
 file-bindy-ftp/src/main/kubernetes/openshift.yml | 12 ++--
 file-split-log-xml/pom.xml   |  2 +-
 health/pom.xml   |  2 +-
 http-log/pom.xml |  2 +-
 jdbc-datasource/pom.xml  |  2 +-
 jms-jpa/pom.xml  |  2 +-
 jpa-idempotent-repository/pom.xml|  2 +-
 .../src/main/kubernetes/kubernetes.yml   | 12 ++--
 .../src/main/kubernetes/openshift.yml| 16 
 jta-jpa/pom.xml  |  2 +-
 kafka/pom.xml|  2 +-
 kamelet-chucknorris/pom.xml  |  2 +-
 message-bridge/pom.xml   |  2 +-
 observability/pom.xml|  2 +-
 platform-http-security-keycloak/pom.xml  |  2 +-
 rest-json/pom.xml|  2 +-
 timer-log-kotlin/pom.xml |  2 +-
 timer-log-main/pom.xml   |  2 +-
 timer-log/pom.xml|  2 +-
 24 files changed, 46 insertions(+), 46 deletions(-)

diff --git a/aws-lambda/pom.xml b/aws-lambda/pom.xml
index 48891d0..0a91886 100644
--- a/aws-lambda/pom.xml
+++ b/aws-lambda/pom.xml
@@ -21,7 +21,7 @@
 4.0.0
 org.apache.camel.quarkus.examples
 camel-quarkus-examples-aws-lambda
-3.9.0-SNAPSHOT
+3.9.0
 
 Camel Quarkus :: Examples :: AWS Lambda
 Camel Quarkus Example :: Deploying a Camel Route in AWS 
Lambda
diff --git a/cluster-leader-election/pom.xml b/cluster-leader-election/pom.xml
index ca4275b..7089272 100644
--- a/cluster-leader-election/pom.xml
+++ b/cluster-leader-election/pom.xml
@@ -23,7 +23,7 @@
 
 camel-quarkus-examples-cluster-leader-election
 org.apache.camel.quarkus.examples
-3.9.0-SNAPSHOT
+3.9.0
 
 Camel Quarkus :: Examples :: Cluster leader election
 Camel Quarkus Example :: Cluster leader election
diff --git a/cxf-soap/pom.xml b/cxf-soap/pom.xml
index 1079108..fa71d6a 100644
--- a/cxf-soap/pom.xml
+++ b/cxf-soap/pom.xml
@@ -23,7 +23,7 @@
 
 camel-quarkus-examples-cxf-soap
 org.apache.camel.quarkus.examples
-3.9.0-SNAPSHOT
+3.9.0
 
 Camel Quarkus :: Examples :: CXF SOAP
 Camel Quarkus Example :: CXF SOAP
diff --git a/file-bindy-ftp/pom.xml b/file-bindy-ftp/pom.xml
index bad643c..917a2b2 100644
--- a/file-bindy-ftp/pom.xml
+++ b/file-bindy-ftp/pom.xml
@@ -22,7 +22,7 @@
 
 camel-quarkus-examples-file-bindy-ftp
 org.apache.camel.quarkus.examples
-3.9.0-SNAPSHOT
+3.9.0
 
 Camel Quarkus :: Examples :: File Bindy FTP
 Camel Quarkus Example :: File Bindy FTP
diff --git a/file-bindy-ftp/src/main/kubernetes/kubernetes.yml 
b/file-bindy-ftp/src/main/kubernetes/kubernetes.yml
index ba7afce..d6b8333 100644
--- a/file-bindy-ftp/src/main/kubernetes/kubernetes.yml
+++ b/file-bindy-ftp/src/main/kubernetes/kubernetes.yml
@@ -21,18 +21,18 @@ metadata:
   name: ssh-server-deployment
   labels:
 app.kubernetes.io/name: camel-quarkus-examples-file-bindy-ftp
-app.kubernetes.io/version: 3.9.0-SNAPSHOT
+app.kubernetes.io/version: 3.9.0
 spec:
   replicas: 1
   selector:
 matchLabels:
   app.kubernetes.io/name: camel-quarkus-examples-file-bindy-ftp
-  app.kubernetes.io/version: 3.9.0-SNAPSHOT
+  app.kubernetes.io/version: 3.9.0
   template:
 metadata:
   labels:
 app.kubernetes.io/name: camel-quarkus-examples-file-bindy-ftp
-app.kubernetes.io/version: 3.9.0-SNAPSHOT
+app.kubernetes.io/version: 3.9.0
 spec:
   containers:
 - name: openssh-server
@@ -57,7 +57,7 @@ kind: Service
 metadata:
   labels:
 app.kubernetes.io/name: camel-quarkus-examples-file-bindy-ftp
-app.kubernetes.io/version: 3.9.0-SNAPSHOT
+app.kubernetes.io/version: 3.9.0
   name: ftp-server
 spec:
   ports:
@@ -66,7 +66,7 @@ spec:
   targetPort: 
   selector:
 app.kubernetes.io/name: 

(camel-quarkus-examples) tag 3.9.0 created (now ef1f680)

2024-03-27 Thread aldettinger
This is an automated email from the ASF dual-hosted git repository.

aldettinger pushed a change to tag 3.9.0
in repository https://gitbox.apache.org/repos/asf/camel-quarkus-examples.git


  at ef1f680  (commit)
No new revisions were added by this update.



(camel) branch main updated: CAMEL-20459: fix Split EIP documentation

2024-03-27 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


The following commit(s) were added to refs/heads/main by this push:
 new ea19dd0bc4f CAMEL-20459: fix Split EIP documentation
ea19dd0bc4f is described below

commit ea19dd0bc4fc68db4ee891b2f8b0a60ddfc0de7d
Author: Otavio Rodolfo Piske 
AuthorDate: Wed Mar 27 17:44:59 2024 +0100

CAMEL-20459: fix Split EIP documentation
---
 .../src/main/docs/modules/eips/pages/split-eip.adoc | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git 
a/core/camel-core-engine/src/main/docs/modules/eips/pages/split-eip.adoc 
b/core/camel-core-engine/src/main/docs/modules/eips/pages/split-eip.adoc
index 8d194ba1871..c2fd7a66ae0 100644
--- a/core/camel-core-engine/src/main/docs/modules/eips/pages/split-eip.adoc
+++ b/core/camel-core-engine/src/main/docs/modules/eips/pages/split-eip.adoc
@@ -143,7 +143,7 @@ from("direct:splitUsingBody")
 XML::
 +
 In XML, you use xref:components:languages:simple-language.adoc[Simple] to 
refer to the message body:
-
++
 [source,xml]
 
 
@@ -226,7 +226,7 @@ from("direct:a")
 XML::
 +
 And in XML its intuitive as `` marks the end of the block:
-
++
 [source,xml]
 
 
@@ -273,7 +273,7 @@ from("direct:start")
 XML::
 +
 And in XML we can refer to the FQN class name with `#class:` syntax as shown 
below:
-
++
 [source,xml]
 
 



Re: [PR] CAMEL-20459: fix Split EIP documentation [camel]

2024-03-27 Thread via GitHub


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


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

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

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



(camel-quarkus-examples) 02/02: Upgrade to Quarkus Platform 3.9.1

2024-03-27 Thread aldettinger
This is an automated email from the ASF dual-hosted git repository.

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

commit 6c5410027f5e264fd80fd93c175337761cd1fe73
Author: aldettinger 
AuthorDate: Wed Mar 27 16:23:05 2024 +0100

Upgrade to Quarkus Platform 3.9.1
---
 aws-lambda/pom.xml  | 10 +-
 cluster-leader-election/pom.xml | 10 +-
 cxf-soap/pom.xml| 10 +-
 file-bindy-ftp/pom.xml  | 10 +-
 file-split-log-xml/pom.xml  | 10 +-
 health/pom.xml  | 10 +-
 http-log/pom.xml| 10 +-
 jdbc-datasource/pom.xml | 10 +-
 jms-jpa/pom.xml | 10 +-
 jpa-idempotent-repository/pom.xml   | 10 +-
 jta-jpa/pom.xml | 10 +-
 kafka/pom.xml   | 10 +-
 kamelet-chucknorris/pom.xml | 12 ++--
 message-bridge/pom.xml  | 10 +-
 observability/pom.xml   | 10 +-
 platform-http-security-keycloak/pom.xml | 10 +-
 rest-json/pom.xml   | 10 +-
 timer-log-kotlin/pom.xml| 10 +-
 timer-log-main/pom.xml  | 12 ++--
 timer-log/pom.xml   | 10 +-
 20 files changed, 102 insertions(+), 102 deletions(-)

diff --git a/aws-lambda/pom.xml b/aws-lambda/pom.xml
index 182ec85..48891d0 100644
--- a/aws-lambda/pom.xml
+++ b/aws-lambda/pom.xml
@@ -27,13 +27,13 @@
 Camel Quarkus Example :: Deploying a Camel Route in AWS 
Lambda
 
 
-3.8.1
-
3.9.0-SNAPSHOT
+3.9.1
+
${quarkus.platform.version}
 
-io.quarkus
+
io.quarkus.platform
 
quarkus-bom
-
org.apache.camel.quarkus
-
camel-quarkus-bom
+
${quarkus.platform.group-id}
+
quarkus-camel-bom
 
 UTF-8
 
UTF-8
diff --git a/cluster-leader-election/pom.xml b/cluster-leader-election/pom.xml
index 3dd0076..ca4275b 100644
--- a/cluster-leader-election/pom.xml
+++ b/cluster-leader-election/pom.xml
@@ -29,13 +29,13 @@
 Camel Quarkus Example :: Cluster leader election
 
 
-3.8.1
-
3.9.0-SNAPSHOT
+3.9.1
+
${quarkus.platform.version}
 
-io.quarkus
+
io.quarkus.platform
 
quarkus-bom
-
org.apache.camel.quarkus
-
camel-quarkus-bom
+
${quarkus.platform.group-id}
+
quarkus-camel-bom
 
 UTF-8
 
UTF-8
diff --git a/cxf-soap/pom.xml b/cxf-soap/pom.xml
index cec9c4a..1079108 100644
--- a/cxf-soap/pom.xml
+++ b/cxf-soap/pom.xml
@@ -29,13 +29,13 @@
 Camel Quarkus Example :: CXF SOAP
 
 
-3.8.1
-
3.9.0-SNAPSHOT
+3.9.1
+
${quarkus.platform.version}
 
-io.quarkus
+
io.quarkus.platform
 
quarkus-bom
-
org.apache.camel.quarkus
-
camel-quarkus-bom
+
${quarkus.platform.group-id}
+
quarkus-camel-bom
 
 UTF-8
 
UTF-8
diff --git a/file-bindy-ftp/pom.xml b/file-bindy-ftp/pom.xml
index d790670..bad643c 100644
--- a/file-bindy-ftp/pom.xml
+++ b/file-bindy-ftp/pom.xml
@@ -28,13 +28,13 @@
 Camel Quarkus Example :: File Bindy FTP
 
 
-3.8.1
-
3.9.0-SNAPSHOT
+3.9.1
+
${quarkus.platform.version}
 
-io.quarkus
+
io.quarkus.platform
 
quarkus-bom
-
org.apache.camel.quarkus
-
camel-quarkus-bom
+
${quarkus.platform.group-id}
+
quarkus-camel-bom
 
 UTF-8
 
UTF-8
diff --git a/file-split-log-xml/pom.xml b/file-split-log-xml/pom.xml
index beed925..100783a 100644
--- a/file-split-log-xml/pom.xml
+++ b/file-split-log-xml/pom.xml
@@ -28,13 +28,13 @@
 Camel Quarkus Example :: File To Log XML DSL
 
 
-3.8.1
-
3.9.0-SNAPSHOT
+3.9.1
+
${quarkus.platform.version}
 
-io.quarkus
+
io.quarkus.platform
 
quarkus-bom
-
org.apache.camel.quarkus
-
camel-quarkus-bom
+
${quarkus.platform.group-id}
+
quarkus-camel-bom
 
 UTF-8
 
UTF-8
diff --git a/health/pom.xml b/health/pom.xml
index 6d4c8e4..999ea32 100644
--- a/health/pom.xml
+++ b/health/pom.xml
@@ -28,13 +28,13 @@
 Camel Quarkus Example :: Health Check
 
 
-3.8.1
-
3.9.0-SNAPSHOT
+3.9.1
+
${quarkus.platform.version}
 
-io.quarkus
+
io.quarkus.platform
 
quarkus-bom
-
org.apache.camel.quarkus
-
camel-quarkus-bom
+
${quarkus.platform.group-id}
+
quarkus-camel-bom
 
 UTF-8
 
UTF-8
diff --git a/http-log/pom.xml b/http-log/pom.xml
index 5364029..7f3c947 100644
--- a/http-log/pom.xml
+++ b/http-log/pom.xml
@@ 

(camel-quarkus-examples) branch main updated (10387fc -> 6c54100)

2024-03-27 Thread aldettinger
This is an automated email from the ASF dual-hosted git repository.

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


from 10387fc  Tag 3.8.0
 new 317efed  Next is 3.9.0
 new 6c54100  Upgrade to Quarkus Platform 3.9.1

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


Summary of changes:
 aws-lambda/pom.xml |  4 ++--
 cluster-leader-election/pom.xml|  4 ++--
 cxf-soap/pom.xml   |  4 ++--
 file-bindy-ftp/pom.xml |  4 ++--
 file-bindy-ftp/src/main/kubernetes/kubernetes.yml  | 12 ++--
 file-bindy-ftp/src/main/kubernetes/openshift.yml   | 12 ++--
 file-split-log-xml/pom.xml |  4 ++--
 health/pom.xml |  4 ++--
 http-log/pom.xml   |  4 ++--
 jdbc-datasource/pom.xml|  4 ++--
 jms-jpa/pom.xml|  4 ++--
 jpa-idempotent-repository/pom.xml  |  4 ++--
 .../src/main/kubernetes/kubernetes.yml | 12 ++--
 .../src/main/kubernetes/openshift.yml  | 14 +++---
 jta-jpa/pom.xml|  4 ++--
 kafka/pom.xml  |  4 ++--
 kamelet-chucknorris/pom.xml|  6 +++---
 message-bridge/pom.xml |  4 ++--
 observability/pom.xml  |  4 ++--
 platform-http-security-keycloak/pom.xml|  4 ++--
 rest-json/pom.xml  |  4 ++--
 timer-log-kotlin/pom.xml   |  4 ++--
 timer-log-main/pom.xml |  6 +++---
 timer-log/pom.xml  |  4 ++--
 24 files changed, 67 insertions(+), 67 deletions(-)



(camel-quarkus-examples) 01/02: Next is 3.9.0

2024-03-27 Thread aldettinger
This is an automated email from the ASF dual-hosted git repository.

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

commit 317efed22f5bb57ec7905d7253784a7e84737134
Author: James Netherton 
AuthorDate: Wed Mar 6 09:32:25 2024 +

Next is 3.9.0
---
 aws-lambda/pom.xml | 10 +-
 cluster-leader-election/pom.xml| 10 +-
 cxf-soap/pom.xml   | 10 +-
 file-bindy-ftp/pom.xml | 10 +-
 file-bindy-ftp/src/main/kubernetes/kubernetes.yml  | 12 ++--
 file-bindy-ftp/src/main/kubernetes/openshift.yml   | 12 ++--
 file-split-log-xml/pom.xml | 10 +-
 health/pom.xml | 10 +-
 http-log/pom.xml   | 10 +-
 jdbc-datasource/pom.xml| 10 +-
 jms-jpa/pom.xml| 10 +-
 jpa-idempotent-repository/pom.xml  | 10 +-
 .../src/main/kubernetes/kubernetes.yml | 12 ++--
 .../src/main/kubernetes/openshift.yml  | 14 +++---
 jta-jpa/pom.xml| 10 +-
 kafka/pom.xml  | 10 +-
 kamelet-chucknorris/pom.xml| 12 ++--
 message-bridge/pom.xml | 10 +-
 observability/pom.xml  | 10 +-
 platform-http-security-keycloak/pom.xml| 10 +-
 rest-json/pom.xml  | 10 +-
 timer-log-kotlin/pom.xml   | 10 +-
 timer-log-main/pom.xml | 12 ++--
 timer-log/pom.xml  | 10 +-
 24 files changed, 127 insertions(+), 127 deletions(-)

diff --git a/aws-lambda/pom.xml b/aws-lambda/pom.xml
index a8345fd..182ec85 100644
--- a/aws-lambda/pom.xml
+++ b/aws-lambda/pom.xml
@@ -21,19 +21,19 @@
 4.0.0
 org.apache.camel.quarkus.examples
 camel-quarkus-examples-aws-lambda
-3.8.0
+3.9.0-SNAPSHOT
 
 Camel Quarkus :: Examples :: AWS Lambda
 Camel Quarkus Example :: Deploying a Camel Route in AWS 
Lambda
 
 
 3.8.1
-
${quarkus.platform.version}
+
3.9.0-SNAPSHOT
 
-
io.quarkus.platform
+io.quarkus
 
quarkus-bom
-
${quarkus.platform.group-id}
-
quarkus-camel-bom
+
org.apache.camel.quarkus
+
camel-quarkus-bom
 
 UTF-8
 
UTF-8
diff --git a/cluster-leader-election/pom.xml b/cluster-leader-election/pom.xml
index 527fcb7..3dd0076 100644
--- a/cluster-leader-election/pom.xml
+++ b/cluster-leader-election/pom.xml
@@ -23,19 +23,19 @@
 
 camel-quarkus-examples-cluster-leader-election
 org.apache.camel.quarkus.examples
-3.8.0
+3.9.0-SNAPSHOT
 
 Camel Quarkus :: Examples :: Cluster leader election
 Camel Quarkus Example :: Cluster leader election
 
 
 3.8.1
-
${quarkus.platform.version}
+
3.9.0-SNAPSHOT
 
-
io.quarkus.platform
+io.quarkus
 
quarkus-bom
-
${quarkus.platform.group-id}
-
quarkus-camel-bom
+
org.apache.camel.quarkus
+
camel-quarkus-bom
 
 UTF-8
 
UTF-8
diff --git a/cxf-soap/pom.xml b/cxf-soap/pom.xml
index 7218dc6..cec9c4a 100644
--- a/cxf-soap/pom.xml
+++ b/cxf-soap/pom.xml
@@ -23,19 +23,19 @@
 
 camel-quarkus-examples-cxf-soap
 org.apache.camel.quarkus.examples
-3.8.0
+3.9.0-SNAPSHOT
 
 Camel Quarkus :: Examples :: CXF SOAP
 Camel Quarkus Example :: CXF SOAP
 
 
 3.8.1
-
${quarkus.platform.version}
+
3.9.0-SNAPSHOT
 
-
io.quarkus.platform
+io.quarkus
 
quarkus-bom
-
${quarkus.platform.group-id}
-
quarkus-camel-bom
+
org.apache.camel.quarkus
+
camel-quarkus-bom
 
 UTF-8
 
UTF-8
diff --git a/file-bindy-ftp/pom.xml b/file-bindy-ftp/pom.xml
index 3fdbfa5..d790670 100644
--- a/file-bindy-ftp/pom.xml
+++ b/file-bindy-ftp/pom.xml
@@ -22,19 +22,19 @@
 
 camel-quarkus-examples-file-bindy-ftp
 org.apache.camel.quarkus.examples
-3.8.0
+3.9.0-SNAPSHOT
 
 Camel Quarkus :: Examples :: File Bindy FTP
 Camel Quarkus Example :: File Bindy FTP
 
 
 3.8.1
-
${quarkus.platform.version}
+
3.9.0-SNAPSHOT
 
-
io.quarkus.platform
+io.quarkus
 
quarkus-bom
-
${quarkus.platform.group-id}
-
quarkus-camel-bom
+

Re: [PR] Camel quarkus main [camel-quarkus-examples]

2024-03-27 Thread via GitHub


aldettinger merged PR #202:
URL: https://github.com/apache/camel-quarkus-examples/pull/202


-- 
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-20459: fix Split EIP documentation [camel]

2024-03-27 Thread via GitHub


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

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


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

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

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



[PR] CAMEL-20459: fix Split EIP documentation [camel]

2024-03-27 Thread via GitHub


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

   (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] Camel quarkus main [camel-quarkus-examples]

2024-03-27 Thread via GitHub


aldettinger commented on PR #202:
URL: 
https://github.com/apache/camel-quarkus-examples/pull/202#issuecomment-2023235846

   Failing `Camel Quarkus CI / Integration Tests JDK - 21 (pull_request)` seems 
just transient issue.


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

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

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



[PR] Camel Quarkus 3.9.0 announcement blog post [camel-website]

2024-03-27 Thread via GitHub


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

   (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] Camel Quarkus 3.9.0 announcement blog post [camel-website]

2024-03-27 Thread via GitHub


aldettinger commented on PR #1165:
URL: https://github.com/apache/camel-website/pull/1165#issuecomment-2023229766

   @spatnity This is what blog post announcement pr looks like


-- 
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] Could not determine source URI: cluster "camel-ai-kafka" has no listeners of type "plain" [camel-k]

2024-03-27 Thread via GitHub


squakez closed issue #5295: Could not determine source URI: cluster 
"camel-ai-kafka" has no listeners of type "plain"
URL: https://github.com/apache/camel-k/issues/5295


-- 
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] Could not determine source URI: cluster "camel-ai-kafka" has no listeners of type "plain" [camel-k]

2024-03-27 Thread via GitHub


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

   Yeah, I bumped into this one as well :)
   
   Already fixed by https://github.com/apache/camel-k/pull/5284


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

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

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



[PR] Camel quarkus main [camel-quarkus-examples]

2024-03-27 Thread via GitHub


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

   Note that the `main` branch points at the latest stable Camel Quarkus 
release.
   Pull requests should be generally send against the `camel-quarkus-main` 
branch pointing at the current Camel Quarkus SNAPSHOT.


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

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

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



(camel-quarkus-examples) branch camel-quarkus-main updated: Upgrade to Quarkus Platform 3.9.1

2024-03-27 Thread aldettinger
This is an automated email from the ASF dual-hosted git repository.

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


The following commit(s) were added to refs/heads/camel-quarkus-main by this 
push:
 new 9f14668  Upgrade to Quarkus Platform 3.9.1
9f14668 is described below

commit 9f1466803e07ca73376ff139497e085757ca8f6f
Author: aldettinger 
AuthorDate: Wed Mar 27 16:23:05 2024 +0100

Upgrade to Quarkus Platform 3.9.1
---
 aws-lambda/pom.xml  | 10 +-
 cluster-leader-election/pom.xml | 10 +-
 cxf-soap/pom.xml| 10 +-
 file-bindy-ftp/pom.xml  | 10 +-
 file-split-log-xml/pom.xml  | 10 +-
 health/pom.xml  | 10 +-
 http-log/pom.xml| 10 +-
 jdbc-datasource/pom.xml | 10 +-
 jms-jpa/pom.xml | 10 +-
 jpa-idempotent-repository/pom.xml   | 10 +-
 jta-jpa/pom.xml | 10 +-
 kafka/pom.xml   | 10 +-
 kamelet-chucknorris/pom.xml | 12 ++--
 message-bridge/pom.xml  | 10 +-
 observability/pom.xml   | 10 +-
 platform-http-security-keycloak/pom.xml | 10 +-
 rest-json/pom.xml   | 10 +-
 timer-log-kotlin/pom.xml| 10 +-
 timer-log-main/pom.xml  | 12 ++--
 timer-log/pom.xml   | 10 +-
 20 files changed, 102 insertions(+), 102 deletions(-)

diff --git a/aws-lambda/pom.xml b/aws-lambda/pom.xml
index 182ec85..48891d0 100644
--- a/aws-lambda/pom.xml
+++ b/aws-lambda/pom.xml
@@ -27,13 +27,13 @@
 Camel Quarkus Example :: Deploying a Camel Route in AWS 
Lambda
 
 
-3.8.1
-
3.9.0-SNAPSHOT
+3.9.1
+
${quarkus.platform.version}
 
-io.quarkus
+
io.quarkus.platform
 
quarkus-bom
-
org.apache.camel.quarkus
-
camel-quarkus-bom
+
${quarkus.platform.group-id}
+
quarkus-camel-bom
 
 UTF-8
 
UTF-8
diff --git a/cluster-leader-election/pom.xml b/cluster-leader-election/pom.xml
index 3dd0076..ca4275b 100644
--- a/cluster-leader-election/pom.xml
+++ b/cluster-leader-election/pom.xml
@@ -29,13 +29,13 @@
 Camel Quarkus Example :: Cluster leader election
 
 
-3.8.1
-
3.9.0-SNAPSHOT
+3.9.1
+
${quarkus.platform.version}
 
-io.quarkus
+
io.quarkus.platform
 
quarkus-bom
-
org.apache.camel.quarkus
-
camel-quarkus-bom
+
${quarkus.platform.group-id}
+
quarkus-camel-bom
 
 UTF-8
 
UTF-8
diff --git a/cxf-soap/pom.xml b/cxf-soap/pom.xml
index cec9c4a..1079108 100644
--- a/cxf-soap/pom.xml
+++ b/cxf-soap/pom.xml
@@ -29,13 +29,13 @@
 Camel Quarkus Example :: CXF SOAP
 
 
-3.8.1
-
3.9.0-SNAPSHOT
+3.9.1
+
${quarkus.platform.version}
 
-io.quarkus
+
io.quarkus.platform
 
quarkus-bom
-
org.apache.camel.quarkus
-
camel-quarkus-bom
+
${quarkus.platform.group-id}
+
quarkus-camel-bom
 
 UTF-8
 
UTF-8
diff --git a/file-bindy-ftp/pom.xml b/file-bindy-ftp/pom.xml
index d790670..bad643c 100644
--- a/file-bindy-ftp/pom.xml
+++ b/file-bindy-ftp/pom.xml
@@ -28,13 +28,13 @@
 Camel Quarkus Example :: File Bindy FTP
 
 
-3.8.1
-
3.9.0-SNAPSHOT
+3.9.1
+
${quarkus.platform.version}
 
-io.quarkus
+
io.quarkus.platform
 
quarkus-bom
-
org.apache.camel.quarkus
-
camel-quarkus-bom
+
${quarkus.platform.group-id}
+
quarkus-camel-bom
 
 UTF-8
 
UTF-8
diff --git a/file-split-log-xml/pom.xml b/file-split-log-xml/pom.xml
index beed925..100783a 100644
--- a/file-split-log-xml/pom.xml
+++ b/file-split-log-xml/pom.xml
@@ -28,13 +28,13 @@
 Camel Quarkus Example :: File To Log XML DSL
 
 
-3.8.1
-
3.9.0-SNAPSHOT
+3.9.1
+
${quarkus.platform.version}
 
-io.quarkus
+
io.quarkus.platform
 
quarkus-bom
-
org.apache.camel.quarkus
-
camel-quarkus-bom
+
${quarkus.platform.group-id}
+
quarkus-camel-bom
 
 UTF-8
 
UTF-8
diff --git a/health/pom.xml b/health/pom.xml
index 6d4c8e4..999ea32 100644
--- a/health/pom.xml
+++ b/health/pom.xml
@@ -28,13 +28,13 @@
 Camel Quarkus Example :: Health Check
 
 
-3.8.1
-
3.9.0-SNAPSHOT
+3.9.1
+
${quarkus.platform.version}
 
-io.quarkus
+
io.quarkus.platform
 
quarkus-bom
-
org.apache.camel.quarkus
-
camel-quarkus-bom
+
${quarkus.platform.group-id}
+

Re: [PR] Upgrade to Quarkus Platform 3.9.1 [camel-quarkus-examples]

2024-03-27 Thread via GitHub


aldettinger merged PR #201:
URL: https://github.com/apache/camel-quarkus-examples/pull/201


-- 
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] Variables example [camel-quarkus-examples]

2024-03-27 Thread via GitHub


aldettinger commented on PR #194:
URL: 
https://github.com/apache/camel-quarkus-examples/pull/194#issuecomment-2023162421

   @JiriOndrusek This pr might need to be rebased after the adoption of quarkus 
platform release 3.9.1


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

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

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



Re: [PR] CAMEL-20625: Create a camel-google-pubsub-lite component [camel]

2024-03-27 Thread via GitHub


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

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


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

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

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



[PR] CAMEL-20625: Create a camel-google-pubsub-lite component [camel]

2024-03-27 Thread via GitHub


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

   # Description
   
   
   
   # Target
   
   - [x] I checked that the commit is targeting the correct branch (note that 
Camel 3 uses `camel-3.x`, whereas Camel 4 uses the `main` branch)
   
   # Tracking
   - [x] 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
   
   - [x] I checked that each commit in the pull request has a meaningful 
subject line and body.
   
   
   
   - [x] I have run `mvn clean install -DskipTests` locally and I have 
committed all auto-generated changes
   
   
   
   


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

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

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



Re: [I] Knative default secure settings [camel-k]

2024-03-27 Thread via GitHub


claudio4j commented on issue #5287:
URL: https://github.com/apache/camel-k/issues/5287#issuecomment-2023132674

   For context, this message is printed when the route contains a source http 
endpoint: `from("rest:get:hello")`


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

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

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



(camel-k) branch release-2.2.x updated: Add optional install to tests - branch 2.2.x

2024-03-27 Thread pcongiusti
This is an automated email from the ASF dual-hosted git repository.

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


The following commit(s) were added to refs/heads/release-2.2.x by this push:
 new a24184b8d Add optional install to tests - branch 2.2.x
a24184b8d is described below

commit a24184b8dbf5e63394b1db911a33c9d3a0866e11
Author: Lucie Krejcirova 
AuthorDate: Mon Mar 25 15:15:16 2024 +0100

Add optional install to tests - branch 2.2.x
---
 e2e/support/test_support.go | 28 +++-
 1 file changed, 27 insertions(+), 1 deletion(-)

diff --git a/e2e/support/test_support.go b/e2e/support/test_support.go
index 434d5ecd8..ac9a211ec 100644
--- a/e2e/support/test_support.go
+++ b/e2e/support/test_support.go
@@ -27,6 +27,7 @@ import (
"bytes"
"context"
"encoding/json"
+   "encoding/pem"
"errors"
"fmt"
"io"
@@ -321,7 +322,13 @@ func kamelInstallWithContext(ctx context.Context, 
operatorID string, namespace s
fmt.Printf("Setting operator image pull policy to %s\n", 
opImagePullPolicy)
installArgs = append(installArgs, 
"--operator-image-pull-policy", opImagePullPolicy)
}
-
+   if len(os.Getenv("CAMEL_K_TEST_MAVEN_CA_PEM_PATH")) > 0 {
+   certName := "myCert"
+   secretName := "maven-ca-certs"
+   CreateSecretDecoded(namespace, 
os.Getenv("CAMEL_K_TEST_MAVEN_CA_PEM_PATH"), secretName, certName)
+   installArgs = append(installArgs, "--maven-repository", 
os.Getenv("KAMEL_INSTALL_MAVEN_REPOSITORIES"),
+   "--maven-ca-secret", secretName+"/"+certName)
+   }
installArgs = append(installArgs, args...)
return KamelWithContext(ctx, installArgs...)
 }
@@ -1714,6 +1721,25 @@ func DeleteSecret(ns string, name string) error {
}
return TestClient().Delete(TestContext, )
 }
+func CreateSecretDecoded(ns string, pathToFile string, secretName string, 
certName string) error {
+   bytes, _ := os.ReadFile(pathToFile)
+   block, _ := pem.Decode(bytes)
+
+   secret := corev1.Secret{
+   TypeMeta: metav1.TypeMeta{
+   Kind:   "Secret",
+   APIVersion: corev1.SchemeGroupVersion.String(),
+   },
+   ObjectMeta: metav1.ObjectMeta{
+   Namespace: ns,
+   Name:  secretName,
+   },
+   Data: map[string][]byte{
+   certName: block.Bytes,
+   },
+   }
+   return TestClient().Create(TestContext, )
+}
 
 func KnativeService(ns string, name string) func() *servingv1.Service {
return func() *servingv1.Service {



Re: [PR] Add optional install to tests - branch 2.2.x [camel-k]

2024-03-27 Thread via GitHub


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


-- 
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] Add optional install to tests - branch 2.2.x [camel-k]

2024-03-27 Thread via GitHub


squakez commented on PR #5282:
URL: https://github.com/apache/camel-k/pull/5282#issuecomment-2023062098

   Security check will be fixed by #5297, merging.


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

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

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



Re: [PR] (fix#5280): Basic integration fails on ARM64 [camel-k]

2024-03-27 Thread via GitHub


christophd commented on PR #5286:
URL: https://github.com/apache/camel-k/pull/5286#issuecomment-2023017174

   yes, the documented way did work for me IIRC


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

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

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



(camel) branch dependabot/maven/org.apache.maven.plugins-maven-remote-resources-plugin-3.2.0 deleted (was f4774a0386f)

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

github-bot pushed a change to branch 
dependabot/maven/org.apache.maven.plugins-maven-remote-resources-plugin-3.2.0
in repository https://gitbox.apache.org/repos/asf/camel.git


 was f4774a0386f Bump org.apache.maven.plugins:maven-remote-resources-plugin

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



(camel) branch main updated (9f9e1f632eb -> 9484a4e0233)

2024-03-27 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 9f9e1f632eb Bump org.graalvm.js:js-language from 23.1.2 to 24.0.0 
(#13624)
 add 9484a4e0233 Bump 
org.apache.maven.plugins:maven-remote-resources-plugin (#13614)

No new revisions were added by this update.

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



(camel) branch dependabot/maven/org.graalvm.js-js-language-24.0.0 deleted (was 9a2a6f236c4)

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

github-bot pushed a change to branch 
dependabot/maven/org.graalvm.js-js-language-24.0.0
in repository https://gitbox.apache.org/repos/asf/camel.git


 was 9a2a6f236c4 Bump org.graalvm.js:js-language from 23.1.2 to 24.0.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.



Re: [PR] Bump org.apache.maven.plugins:maven-remote-resources-plugin from 3.1.0 to 3.2.0 [camel]

2024-03-27 Thread via GitHub


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


-- 
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: Bump org.graalvm.js:js-language from 23.1.2 to 24.0.0 (#13624)

2024-03-27 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 9f9e1f632eb Bump org.graalvm.js:js-language from 23.1.2 to 24.0.0 
(#13624)
9f9e1f632eb is described below

commit 9f9e1f632eb1c7d3b4b9dfa841b3f1ce40c77e7e
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
AuthorDate: Wed Mar 27 16:08:48 2024 +0100

Bump org.graalvm.js:js-language from 23.1.2 to 24.0.0 (#13624)

Bumps [org.graalvm.js:js-language](https://github.com/graalvm/graaljs) from 
23.1.2 to 24.0.0.
- [Release notes](https://github.com/graalvm/graaljs/releases)
- [Changelog](https://github.com/oracle/graaljs/blob/master/CHANGELOG.md)
- 
[Commits](https://github.com/graalvm/graaljs/compare/vm-23.1.2...vm-24.0.0)

---
updated-dependencies:
- dependency-name: org.graalvm.js:js-language
  dependency-type: direct:production
  update-type: version-update:semver-major
...

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 ce11713c8ea..06f7b973a82 100644
--- a/parent/pom.xml
+++ b/parent/pom.xml
@@ -185,7 +185,7 @@
 
2.39.0
 
1.44.1
 
2.36.0
-23.1.2
+24.0.0
 21.4
 2.0.1
 2.4.4



Re: [PR] Bump org.graalvm.js:js-language from 23.1.2 to 24.0.0 [camel]

2024-03-27 Thread via GitHub


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


-- 
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) 01/02: Fix #1204

2024-03-27 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

commit 55635ee5382c9cec75bef93e54e1b284c177f78d
Author: Marat Gubaidullin 
AuthorDate: Wed Mar 27 09:51:26 2024 -0400

Fix #1204
---
 karavan-generator/pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/karavan-generator/pom.xml b/karavan-generator/pom.xml
index d59b06de..496f71d6 100644
--- a/karavan-generator/pom.xml
+++ b/karavan-generator/pom.xml
@@ -29,7 +29,7 @@
 
UTF-8
 3.0.0-M5
 4.4.1
-4.4.0
+4.4.1
 6.7.2
 4.5.3
 



(camel-karavan) branch main updated (4aad79f2 -> e2526752)

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

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


from 4aad79f2 Bump express from 4.18.2 to 4.19.2 in /karavan-designer 
(#1200)
 new 55635ee5 Fix #1204
 new e2526752 Fix #1204

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


Summary of changes:
 karavan-app/src/main/webui/src/expression/ExpressionModalEditor.tsx | 2 +-
 karavan-designer/src/expression/ExpressionModalEditor.tsx   | 2 +-
 karavan-generator/pom.xml   | 2 +-
 karavan-space/src/expression/ExpressionModalEditor.tsx  | 2 +-
 4 files changed, 4 insertions(+), 4 deletions(-)



(camel-karavan) 02/02: Fix #1204

2024-03-27 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

commit e25267527b3848d42a67bf528bbfb0b7c2502ed3
Author: Marat Gubaidullin 
AuthorDate: Wed Mar 27 10:54:03 2024 -0400

Fix #1204
---
 karavan-app/src/main/webui/src/expression/ExpressionModalEditor.tsx | 2 +-
 karavan-designer/src/expression/ExpressionModalEditor.tsx   | 2 +-
 karavan-space/src/expression/ExpressionModalEditor.tsx  | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git 
a/karavan-app/src/main/webui/src/expression/ExpressionModalEditor.tsx 
b/karavan-app/src/main/webui/src/expression/ExpressionModalEditor.tsx
index 3a96ce7a..038c4010 100644
--- a/karavan-app/src/main/webui/src/expression/ExpressionModalEditor.tsx
+++ b/karavan-app/src/main/webui/src/expression/ExpressionModalEditor.tsx
@@ -80,7 +80,7 @@ export function ExpressionModalEditor(props: Props) {
 
 
 
 
 
 
 

Re: [PR] (fix#5280): Basic integration fails on ARM64 [camel-k]

2024-03-27 Thread via GitHub


tdiesler commented on PR #5286:
URL: https://github.com/apache/camel-k/pull/5286#issuecomment-2022966596

   It depends on the scope of fix you'd like. IMHO, what we have in main is not 
mature enough to remain as is let alone ready to be backported to 2.2.x. In 
2.2.x. there is a [documented 
way](https://camel.apache.org/camel-k/2.2.x/installation/advanced/multi-architecture.html#multi-architecture-install)
 on how to get an integration running on arm64, but it doesn't work (at least 
not on MacOS). It may work on Raspi4, but I haven't tried that. Did this ever 
work for you on your Mac?


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

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

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



[PR] CAMEL-20624: Fix bug in camel-http to avoid duplicate OAuth2 Authorization headers [camel]

2024-03-27 Thread via GitHub


joshuagrisham-karolinska opened a new pull request, #13629:
URL: https://github.com/apache/camel/pull/13629

   # Description
   
   Uses HttpRequest `setHeader` instead of `addHeader` to ensure that duplicate 
of "Authorization" header will not be created when using camel-http's OAuth2 
support.  See: 
https://hc.apache.org/httpcomponents-core-5.1.x/current/httpcore5/apidocs/org/apache/hc/core5/http/HttpMessage.html#setHeader(org.apache.hc.core5.http.Header)
   
   
   
   # 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-20624: Fix bug in camel-http to avoid duplicate OAuth2 Authorization headers [camel]

2024-03-27 Thread via GitHub


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

   :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-k) branch main updated: fix(#5288): Makefile building platform specific kamel CLI binary

2024-03-27 Thread cdeppisch
This is an automated email from the ASF dual-hosted git repository.

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


The following commit(s) were added to refs/heads/main by this push:
 new 195770ef2 fix(#5288): Makefile building platform specific kamel CLI 
binary
195770ef2 is described below

commit 195770ef2a6731e66c9210853cf48af9b1fc65dd
Author: Christoph Deppisch 
AuthorDate: Wed Mar 27 10:16:52 2024 +0100

fix(#5288): Makefile building platform specific kamel CLI binary

- Add Makefile build-platform to build the platform specific kamel CLI 
binary (e.g. darwin/arm64)
- Image build statically builds the linux binary for the Docker image and 
additionally builds platform specific kamel CLI binary if running on host other 
than linux
- Enables developers running on platforms other than linux to directly use 
the built kamel CLI binary
---
 script/Makefile | 17 +++--
 1 file changed, 15 insertions(+), 2 deletions(-)

diff --git a/script/Makefile b/script/Makefile
index a63e165cf..b960d013c 100644
--- a/script/Makefile
+++ b/script/Makefile
@@ -226,6 +226,8 @@ codegen-tools-install: controller-gen
 
 build: codegen build-resources test build-kamel build-compile-integration-tests
 
+build-platform: build build-kamel-platform
+
 ci-build: clean codegen set-version check-licenses dir-licenses build-kamel 
cross-compile
 
 do-build: gotestfmt-install
@@ -353,6 +355,15 @@ build-kamel:
# Symbolic link to a local CLI
ln -sf build/_output/bin/kamel-$(IMAGE_ARCH) ./kamel
 
+build-kamel-platform:
+   # Perform only when running on OS other than linux
+ifneq ($(shell uname -s 2>/dev/null || echo Unknown),Linux)
+   @echo "### Building platform specific kamel CLI for $(IMAGE_ARCH) 
architecture..."
+   CGO_ENABLED=0 GOARCH=$(IMAGE_ARCH) go build $(GOFLAGS) -o 
build/_output/bin/kamel-$(IMAGE_ARCH) ./cmd/kamel/*.go
+   # Symbolic link to a local CLI
+   ln -sf build/_output/bin/kamel-$(IMAGE_ARCH) ./kamel
+endif
+
 build-resources:
./script/get_catalog.sh $(DEFAULT_RUNTIME_VERSION) 
$(STAGING_RUNTIME_REPO)
 
@@ -430,7 +441,9 @@ endif
 
 DOCKER_TAG := $(CUSTOM_IMAGE):$(CUSTOM_VERSION)-$(IMAGE_ARCH)
 
-images: build maven-overlay bundle-kamelets
+images: build maven-overlay bundle-kamelets image-build build-kamel-platform
+
+image-build:
 ifneq (,$(findstring SNAPSHOT,$(DEFAULT_RUNTIME_VERSION)))
./script/package_maven_artifacts.sh -s "$(STAGING_RUNTIME_REPO)" -d 
"$(CAMEL_K_RUNTIME_DIR)" $(DEFAULT_RUNTIME_VERSION)
 endif
@@ -536,7 +549,7 @@ release-kustomize:
 get-staging-repo:
@echo $(or 
${STAGING_RUNTIME_REPO},https://repository.apache.org/content/repositories/snapshots@id=apache-snapshots@snapshots)
 
-.PHONY: do-build build build-kamel build-resources dep codegen images 
images-push images-push-staging test check clean release cross-compile 
package-examples set-version git-tag check-licenses build-resources 
release-helm release-staging release-nightly get-staging-repo get-version 
bundle-kamelets
+.PHONY: do-build build build-kamel build-kamel-platform build-resources dep 
codegen images images-push images-push-staging image-build test check clean 
release cross-compile package-examples set-version git-tag check-licenses 
build-resources release-helm release-staging release-nightly get-staging-repo 
get-version bundle-kamelets
 .PHONY: controller-gen kubectl kustomize operator-sdk opm
 
 # find or download controller-gen if necessary



Re: [PR] fix(#5288): Makefile building platform specific kamel CLI binary [camel-k]

2024-03-27 Thread via GitHub


christophd merged PR #5290:
URL: https://github.com/apache/camel-k/pull/5290


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

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

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



(camel-k) branch main updated: fix(#5238): Fix Jib integration build

2024-03-27 Thread gfournier
This is an automated email from the ASF dual-hosted git repository.

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


The following commit(s) were added to refs/heads/main by this push:
 new 31d18a7d9 fix(#5238): Fix Jib integration build
31d18a7d9 is described below

commit 31d18a7d9ede176f077718c8a452a603a1a182b7
Author: Christoph Deppisch 
AuthorDate: Wed Mar 27 12:33:02 2024 +0100

fix(#5238): Fix Jib integration build

- Set proper Jib config home env var to writable directory in the Docker 
image
- Set proper Jib cache directory to writable directory in the Docker image
---
 pkg/builder/jib.go| 5 +
 pkg/util/jib/configuration.go | 1 +
 2 files changed, 6 insertions(+)

diff --git a/pkg/builder/jib.go b/pkg/builder/jib.go
index 0c2f071fa..8285c907e 100644
--- a/pkg/builder/jib.go
+++ b/pkg/builder/jib.go
@@ -19,6 +19,7 @@ package builder
 
 import (
"context"
+   "fmt"
"os"
"os/exec"
"path/filepath"
@@ -109,6 +110,7 @@ func (t *jibTask) Do(ctx context.Context) v1.BuildStatus {
mavenArgs = append(mavenArgs, "-P", "jib")
mavenArgs = append(mavenArgs, jib.JibMavenToImageParam+t.task.Image)
mavenArgs = append(mavenArgs, jib.JibMavenFromImageParam+baseImage)
+   mavenArgs = append(mavenArgs, 
jib.JibMavenBaseImageCache+mavenDir+"/jib")
if t.task.Configuration.ImagePlatforms != nil {
platforms := strings.Join(t.task.Configuration.ImagePlatforms, 
",")
mavenArgs = append(mavenArgs, 
jib.JibMavenFromPlatforms+platforms)
@@ -122,6 +124,9 @@ func (t *jibTask) Do(ctx context.Context) v1.BuildStatus {
mvnCmd = c
}
cmd := exec.CommandContext(ctx, mvnCmd, mavenArgs...)
+   cmd.Env = os.Environ()
+   // Set Jib config directory to a writable directory within the image, 
Jib will create a default config file
+   cmd.Env = append(cmd.Env, fmt.Sprintf("XDG_CONFIG_HOME=%s/jib", 
mavenDir))
cmd.Dir = mavenDir
 
myerror := util.RunAndLog(ctx, cmd, maven.MavenLogHandler, 
maven.MavenLogHandler)
diff --git a/pkg/util/jib/configuration.go b/pkg/util/jib/configuration.go
index 2b483f3cf..8a74ce003 100644
--- a/pkg/util/jib/configuration.go
+++ b/pkg/util/jib/configuration.go
@@ -37,6 +37,7 @@ const JibMavenGoal = "jib:build"
 const JibMavenToImageParam = "-Djib.to.image="
 const JibMavenFromImageParam = "-Djib.from.image="
 const JibMavenFromPlatforms = "-Djib.from.platforms="
+const JibMavenBaseImageCache = "-Djib.baseImageCache="
 const JibMavenInsecureRegistries = "-Djib.allowInsecureRegistries="
 const JibDigestFile = "target/jib-image.digest"
 const JibMavenPluginVersionDefault = "3.4.1"



Re: [I] Integration builds fail with arm64 base image [camel-k]

2024-03-27 Thread via GitHub


gansheer closed issue #5238: Integration builds fail with arm64 base image
URL: https://github.com/apache/camel-k/issues/5238


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

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

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



Re: [PR] fix(#5238): Fix Jib integration build [camel-k]

2024-03-27 Thread via GitHub


gansheer merged PR #5294:
URL: https://github.com/apache/camel-k/pull/5294


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

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

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



Re: [PR] fix(#5238): Fix Jib integration build [camel-k]

2024-03-27 Thread via GitHub


gansheer commented on PR #5294:
URL: https://github.com/apache/camel-k/pull/5294#issuecomment-2022916787

   > @gansheer I did a manual test with `pod` strategy. looks good, the builder 
pod was successful and the integration kit has been built as expected 
   
   That's good. Thanks you.


-- 
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] [Backport 2.2.x] fix(cmd): cannot load catalog on CLI [camel-k]

2024-03-27 Thread via GitHub


squakez opened a new pull request, #5297:
URL: https://github.com/apache/camel-k/pull/5297

   
   
   
   
   
   
   
   **Release Note**
   ```release-note
   NONE
   ```
   


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

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

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



Re: [PR] fix(#5238): Fix Jib integration build [camel-k]

2024-03-27 Thread via GitHub


christophd commented on PR #5294:
URL: https://github.com/apache/camel-k/pull/5294#issuecomment-2022906423

   @gansheer I did a manual test with `pod` strategy. looks good, the builder 
pod was successful and the integration kit has been built as expected  


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

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

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



(camel-k) branch main updated: fix(knative): enable service container port

2024-03-27 Thread pcongiusti
This is an automated email from the ASF dual-hosted git repository.

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


The following commit(s) were added to refs/heads/main by this push:
 new 58c4fdac8 fix(knative): enable service container port
58c4fdac8 is described below

commit 58c4fdac889eaccb938aa4b26b24116842d37ed6
Author: Pasquale Congiusti 
AuthorDate: Wed Mar 27 10:57:17 2024 +0100

fix(knative): enable service container port

The container port was skipped in case of a Knative service, as the Service 
resource is missing in such case.
---
 pkg/trait/container.go  | 100 +++---
 pkg/trait/container_test.go | 127 
 2 files changed, 169 insertions(+), 58 deletions(-)

diff --git a/pkg/trait/container.go b/pkg/trait/container.go
index b58842df1..7d32a06d6 100644
--- a/pkg/trait/container.go
+++ b/pkg/trait/container.go
@@ -176,57 +176,36 @@ func (t *containerTrait) configureContainer(e 
*Environment) error {
if e.ApplicationProperties == nil {
e.ApplicationProperties = make(map[string]string)
}
-
container := corev1.Container{
Name:  t.Name,
Image: e.Integration.Status.Image,
Env:   make([]corev1.EnvVar, 0),
}
-
if t.ImagePullPolicy != "" {
container.ImagePullPolicy = t.ImagePullPolicy
}
-
// combine Environment of integration with platform, kit, integration
for _, env := range e.collectConfigurationPairs("env") {
envvar.SetVal(, env.Name, env.Value)
}
-
envvar.SetVal(, digest.IntegrationDigestEnvVar, 
e.Integration.Status.Digest)
envvar.SetVal(, "CAMEL_K_CONF", 
filepath.Join(camel.BasePath, "application.properties"))
envvar.SetVal(, "CAMEL_K_CONF_D", camel.ConfDPath)
 
-   e.addSourcesProperties()
-   if props, err := e.computeApplicationProperties(); err != nil {
-   return err
-   } else if props != nil {
-   e.Resources.Add(props)
-   }
-
-   t.configureResources()
-   if pointer.BoolDeref(t.Expose, false) {
-   t.configureService(e, )
-   }
-   t.configureCapabilities(e)
-
-   t.configureSecurityContext(e, )
-
var containers *[]corev1.Container
visited := false
-
+   knative := false
// Deployment
if err := e.Resources.VisitDeploymentE(func(deployment 
*appsv1.Deployment) error {
for _, envVar := range e.EnvVars {
envvar.SetVar(, envVar)
}
-
containers = 
visited = true
return nil
}); err != nil {
return err
}
-
// Knative Service
if err := e.Resources.VisitKnativeServiceE(func(service 
*serving.Service) error {
for _, env := range e.EnvVars {
@@ -236,34 +215,43 @@ func (t *containerTrait) configureContainer(e 
*Environment) error {
case env.ValueFrom.FieldRef != nil && 
env.ValueFrom.FieldRef.FieldPath == "metadata.namespace":
envvar.SetVar(, 
corev1.EnvVar{Name: env.Name, Value: e.Integration.Namespace})
case env.ValueFrom.FieldRef != nil:
-   t.L.Infof("Skipping environment variable %s 
(fieldRef)", env.Name)
+   t.L.Debugf("Skipping environment variable %s 
(fieldRef)", env.Name)
case env.ValueFrom.ResourceFieldRef != nil:
-   t.L.Infof("Skipping environment variable %s 
(resourceFieldRef)", env.Name)
+   t.L.Debugf("Skipping environment variable %s 
(resourceFieldRef)", env.Name)
default:
envvar.SetVar(, env)
}
}
-
containers = 

visited = true
+   knative = true
return nil
}); err != nil {
return err
}
-
// CronJob
if err := e.Resources.VisitCronJobE(func(cron *batchv1.CronJob) error {
for _, envVar := range e.EnvVars {
envvar.SetVar(, envVar)
}
-
containers = 

visited = true
return nil
}); err != nil {
return err
}
-
+   e.addSourcesProperties()
+   if props, err := e.computeApplicationProperties(); err != nil {
+   return err
+   } else if props != nil {
+   e.Resources.Add(props)
+   }
+   t.configureResources()
+   if knative || pointer.BoolDeref(t.Expose, false) {
+   t.configureService(e, , knative)
+   }
+   t.configureCapabilities(e)
+   

Re: [PR] fix(knative): enable service container port [camel-k]

2024-03-27 Thread via GitHub


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


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

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

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



(camel-quarkus) branch main updated: Update CHANGELOG.md for Camel Quarkus 3.9.0 release

2024-03-27 Thread aldettinger
This is an automated email from the ASF dual-hosted git repository.

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


The following commit(s) were added to refs/heads/main by this push:
 new 5775113393 Update CHANGELOG.md for Camel Quarkus 3.9.0 release
5775113393 is described below

commit 5775113393f269dbeb8622027c60d009c670919f
Author: aldettinger 
AuthorDate: Wed Mar 27 14:54:23 2024 +0100

Update CHANGELOG.md for Camel Quarkus 3.9.0 release
---
 CHANGELOG.md | 70 
 1 file changed, 70 insertions(+)

diff --git a/CHANGELOG.md b/CHANGELOG.md
index 23c34a78d1..7d735427bb 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,75 @@
 # Changelog
 
+## 3.9.0
+
+* Avoid updating quarkus.version in antora.yml on the quarkus-main branch by 
@jamesnetherton in https://github.com/apache/camel-quarkus/pull/5787
+* Update release guide by @aldettinger in 
https://github.com/apache/camel-quarkus/pull/5790
+* Next is 3.9.0-SNAPSHOT by @aldettinger in 
https://github.com/apache/camel-quarkus/pull/5789
+* Add JUnit conditions for FIPS mode by @jamesnetherton in 
https://github.com/apache/camel-quarkus/pull/5791
+* Remove maven-deploy-plugin configuration deprecated since maven 3 by 
@aldettinger in https://github.com/apache/camel-quarkus/pull/5793
+* Add a Jasypt test profile for FIPS by @jamesnetherton in 
https://github.com/apache/camel-quarkus/pull/5794
+* feat(camel-k): add options to override some aspects of a route by 
@lburgazzoli in https://github.com/apache/camel-quarkus/pull/5792
+* Generated sources regen for SBOM by @github-actions in 
https://github.com/apache/camel-quarkus/pull/5797
+* update quarkus metadata #5803 by @aldettinger in 
https://github.com/apache/camel-quarkus/pull/5805
+* Bump org.codehaus.mojo:exec-maven-plugin from 3.1.1 to 3.2.0 by @dependabot 
in https://github.com/apache/camel-quarkus/pull/5796
+* Move com.squareup.okhttp3:mockwebserver into camel-quarkus-bom by 
@jamesnetherton in https://github.com/apache/camel-quarkus/pull/5806
+* Use correct quarkus-extension-maven-plugin in beanio extension by 
@jamesnetherton in https://github.com/apache/camel-quarkus/pull/5807
+* Upgrade quarkus-amazon-services to 2.12.1 by @jamesnetherton in 
https://github.com/apache/camel-quarkus/pull/5811
+* Avoid hard coded use of localhost in Google cloud extension tests by 
@jamesnetherton in https://github.com/apache/camel-quarkus/pull/5808
+* Update release changelog and associated process step by @aldettinger in 
https://github.com/apache/camel-quarkus/pull/5817
+* Upgrade Quarkus to 3.8.1 by @jamesnetherton in 
https://github.com/apache/camel-quarkus/pull/5818
+* jt400 mock coverage + native fixes by @JiriOndrusek in 
https://github.com/apache/camel-quarkus/pull/5812
+* Add jolokia and okhttp to dependabot config by @jamesnetherton in 
https://github.com/apache/camel-quarkus/pull/5820
+* Manage software.amazon.awssdk:endpoints-spi by @ppalaga in 
https://github.com/apache/camel-quarkus/pull/5821
+* Clean up camel-k extension leftovers by @lburgazzoli in 
https://github.com/apache/camel-quarkus/pull/5802
+* Remove xerces:xercesImpl from the BOM by @jamesnetherton in 
https://github.com/apache/camel-quarkus/pull/5822
+* Bump io.quarkiverse.artemis:quarkus-artemis-bom from 3.1.4 to 3.2.0 by 
@dependabot in https://github.com/apache/camel-quarkus/pull/5826
+* Bump quarkiverse-groovy.version from 3.7.1 to 3.8.0 by @dependabot in 
https://github.com/apache/camel-quarkus/pull/5825
+* Upgrade cq-maven-plugin to 4.5.0 by @jamesnetherton in 
https://github.com/apache/camel-quarkus/pull/5827
+* Rebalance native test category group-13 by @jamesnetherton in 
https://github.com/apache/camel-quarkus/pull/5829
+* Add multipart configuration options to servlet extension by @jamesnetherton 
in https://github.com/apache/camel-quarkus/pull/5328
+* Remove registration of Servlet classes with AdditionalBeanBuildItem by 
@jamesnetherton in https://github.com/apache/camel-quarkus/pull/5831
+* Generated sources regen for SBOM by @github-actions in 
https://github.com/apache/camel-quarkus/pull/5833
+* Bump quarkiverse-pooled-jms.version from 2.3.0 to 2.3.1 by @dependabot in 
https://github.com/apache/camel-quarkus/pull/5836
+* Servlet extension improvements by @jamesnetherton in 
https://github.com/apache/camel-quarkus/pull/5837
+* Upgrade cq-maven-plugin to 4.6.1 by @jamesnetherton in 
https://github.com/apache/camel-quarkus/pull/5838
+* Migrate file watch tests to new harness #3584 by @aldettinger in 
https://github.com/apache/camel-quarkus/pull/5840
+* Bump quarkiverse-jgit.version from 3.0.6 to 3.0.7 by @dependabot in 
https://github.com/apache/camel-quarkus/pull/5841
+* Bump quarkiverse-jsch.version from 3.0.6 to 3.0.7 by @dependabot in 
https://github.com/apache/camel-quarkus/pull/5842
+* Bump quarkiverse-mybatis.version from 2.2.1 to 2.2.2 by @dependabot in 

Re: [PR] Update CHANGELOG.md for Camel Quarkus 3.9.0 release [camel-quarkus]

2024-03-27 Thread via GitHub


aldettinger merged PR #5931:
URL: https://github.com/apache/camel-quarkus/pull/5931


-- 
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] Update CHANGELOG.md for Camel Quarkus 3.9.0 release [camel-quarkus]

2024-03-27 Thread via GitHub


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

   


-- 
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 dependabot/npm_and_yarn/karavan-space/express-4.19.2 deleted (was 3e1099bb)

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

github-bot pushed a change to branch 
dependabot/npm_and_yarn/karavan-space/express-4.19.2
in repository https://gitbox.apache.org/repos/asf/camel-karavan.git


 was 3e1099bb Bump express from 4.18.2 to 4.19.2 in /karavan-space

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-karavan) branch main updated: Bump express from 4.18.2 to 4.19.2 in /karavan-designer (#1200)

2024-03-27 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 4aad79f2 Bump express from 4.18.2 to 4.19.2 in /karavan-designer 
(#1200)
4aad79f2 is described below

commit 4aad79f263b89a8bb544c6d568c4a09f01cc89aa
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
AuthorDate: Wed Mar 27 09:48:21 2024 -0400

Bump express from 4.18.2 to 4.19.2 in /karavan-designer (#1200)

Bumps [express](https://github.com/expressjs/express) from 4.18.2 to 4.19.2.
- [Release notes](https://github.com/expressjs/express/releases)
- [Changelog](https://github.com/expressjs/express/blob/master/History.md)
- [Commits](https://github.com/expressjs/express/compare/4.18.2...4.19.2)

---
updated-dependencies:
- dependency-name: express
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] 
Co-authored-by: dependabot[bot] 
<49699333+dependabot[bot]@users.noreply.github.com>
---
 karavan-designer/package-lock.json | 32 
 1 file changed, 16 insertions(+), 16 deletions(-)

diff --git a/karavan-designer/package-lock.json 
b/karavan-designer/package-lock.json
index a088ecd3..1631ba22 100644
--- a/karavan-designer/package-lock.json
+++ b/karavan-designer/package-lock.json
@@ -5926,13 +5926,13 @@
   "dev": true
 },
 "node_modules/body-parser": {
-  "version": "1.20.1",
-  "resolved": 
"https://registry.npmjs.org/body-parser/-/body-parser-1.20.1.tgz;,
-  "integrity": 
"sha512-jWi7abTbYwajOytWCQc37VulmWiRae5RyTpaCyDcS5/lMdtwSz5lOpDE67srw/HYe35f1z3fDQw+3txg7gNtWw==",
+  "version": "1.20.2",
+  "resolved": 
"https://registry.npmjs.org/body-parser/-/body-parser-1.20.2.tgz;,
+  "integrity": 
"sha512-ml9pReCu3M61kGlqoTm2umSXTlRTuGTx0bfYj+uIUKKYycG5NtSbeetV3faSU6R7ajOPw0g/J1PvK4qNy7s5bA==",
   "dev": true,
   "dependencies": {
 "bytes": "3.1.2",
-"content-type": "~1.0.4",
+"content-type": "~1.0.5",
 "debug": "2.6.9",
 "depd": "2.0.0",
 "destroy": "1.2.0",
@@ -5940,7 +5940,7 @@
 "iconv-lite": "0.4.24",
 "on-finished": "2.4.1",
 "qs": "6.11.0",
-"raw-body": "2.5.1",
+"raw-body": "2.5.2",
 "type-is": "~1.6.18",
 "unpipe": "1.0.0"
   },
@@ -6506,9 +6506,9 @@
   "dev": true
 },
 "node_modules/cookie": {
-  "version": "0.5.0",
-  "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.5.0.tgz;,
-  "integrity": 
"sha512-YZ3GUyn/o8gfKJlnlX7g7xq4gyO6OSuhGPKaaGssGB2qgDUS0gPgtTvoyZLTt9Ab6dC4hfc9dV5arkvc/OCmrw==",
+  "version": "0.6.0",
+  "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.6.0.tgz;,
+  "integrity": 
"sha512-U71cyTamuh1CRNCfpGY6to28lxvNwPG4Guz/EVjgf3Jmzv0vlDp1atT9eS5dDjMYHucpHbWns6Lwf3BKz6svdw==",
   "dev": true,
   "engines": {
 "node": ">= 0.6"
@@ -8885,17 +8885,17 @@
   }
 },
 "node_modules/express": {
-  "version": "4.18.2",
-  "resolved": "https://registry.npmjs.org/express/-/express-4.18.2.tgz;,
-  "integrity": 
"sha512-5/PsL6iGPdfQ/lKM1UuielYgv3BUoJfz1aUwU9vHZ+J7gyvwdQXFEBIEIaxeGf0GIcreATNyBExtalisDbuMqQ==",
+  "version": "4.19.2",
+  "resolved": "https://registry.npmjs.org/express/-/express-4.19.2.tgz;,
+  "integrity": 
"sha512-5T6nhjsT+EOMzuck8JjBHARTHfMht0POzlA60WV2pMD3gyXw2LZnZ+ueGdNxG+0calOJcWKbpFcuzLZ91YWq9Q==",
   "dev": true,
   "dependencies": {
 "accepts": "~1.3.8",
 "array-flatten": "1.1.1",
-"body-parser": "1.20.1",
+"body-parser": "1.20.2",
 "content-disposition": "0.5.4",
 "content-type": "~1.0.4",
-"cookie": "0.5.0",
+"cookie": "0.6.0",
 "cookie-signature": "1.0.6",
 "debug": "2.6.9",
 "depd": "2.0.0",
@@ -16068,9 +16068,9 @@
   }
 },
 "node_modules/raw-body": {
-  "version": "2.5.1",
-  "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.5.1.tgz;,
-  "integrity": 
"sha512-qqJBtEyVgS0ZmPGdCFPWJ3FreoqvG4MVQln/kCgF7Olq95IbOp0/BWyMwbdtn4VTvkM8Y7khCQ2Xgk/tcrCXig==",
+  "version": "2.5.2",
+  "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.5.2.tgz;,
+  "integrity": 
"sha512-8zGqypfENjCIqGhgXToC8aB2r7YrBX+AQAfIPs/Mlk+BtPTztOvTS01NRW/3Eh60J+a48lt8qsCzirQ6loCVfA==",
   "dev": true,
   "dependencies": {
 "bytes": "3.1.2",



(camel-karavan) branch main updated (a3f4786e -> 2fc11287)

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

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


from a3f4786e Bump express from 4.18.2 to 4.19.2 in 
/karavan-app/src/main/webui (#1202)
 add 2fc11287 Bump express from 4.18.2 to 4.19.2 in /karavan-space (#1201)

No new revisions were added by this update.

Summary of changes:
 karavan-space/package-lock.json | 32 
 1 file changed, 16 insertions(+), 16 deletions(-)



Re: [PR] Bump express from 4.18.2 to 4.19.2 in /karavan-designer [camel-karavan]

2024-03-27 Thread via GitHub


mgubaidullin merged PR #1200:
URL: https://github.com/apache/camel-karavan/pull/1200


-- 
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 express from 4.18.2 to 4.19.2 in /karavan-space [camel-karavan]

2024-03-27 Thread via GitHub


mgubaidullin merged PR #1201:
URL: https://github.com/apache/camel-karavan/pull/1201


-- 
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 dependabot/npm_and_yarn/karavan-app/src/main/webui/express-4.19.2 deleted (was 2e9d99cc)

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

github-bot pushed a change to branch 
dependabot/npm_and_yarn/karavan-app/src/main/webui/express-4.19.2
in repository https://gitbox.apache.org/repos/asf/camel-karavan.git


 was 2e9d99cc Bump express from 4.18.2 to 4.19.2 in 
/karavan-app/src/main/webui

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-karavan) branch main updated: Bump express from 4.18.2 to 4.19.2 in /karavan-app/src/main/webui (#1202)

2024-03-27 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 a3f4786e Bump express from 4.18.2 to 4.19.2 in 
/karavan-app/src/main/webui (#1202)
a3f4786e is described below

commit a3f4786e724c99acbc8ce8b0634c54296e914df2
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
AuthorDate: Wed Mar 27 09:48:00 2024 -0400

Bump express from 4.18.2 to 4.19.2 in /karavan-app/src/main/webui (#1202)

Bumps [express](https://github.com/expressjs/express) from 4.18.2 to 4.19.2.
- [Release notes](https://github.com/expressjs/express/releases)
- [Changelog](https://github.com/expressjs/express/blob/master/History.md)
- [Commits](https://github.com/expressjs/express/compare/4.18.2...4.19.2)

---
updated-dependencies:
- dependency-name: express
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] 
Co-authored-by: dependabot[bot] 
<49699333+dependabot[bot]@users.noreply.github.com>
---
 karavan-app/src/main/webui/package-lock.json | 32 ++--
 1 file changed, 16 insertions(+), 16 deletions(-)

diff --git a/karavan-app/src/main/webui/package-lock.json 
b/karavan-app/src/main/webui/package-lock.json
index 85c6894e..5ed37c02 100644
--- a/karavan-app/src/main/webui/package-lock.json
+++ b/karavan-app/src/main/webui/package-lock.json
@@ -6192,13 +6192,13 @@
   "dev": true
 },
 "node_modules/body-parser": {
-  "version": "1.20.1",
-  "resolved": 
"https://registry.npmjs.org/body-parser/-/body-parser-1.20.1.tgz;,
-  "integrity": 
"sha512-jWi7abTbYwajOytWCQc37VulmWiRae5RyTpaCyDcS5/lMdtwSz5lOpDE67srw/HYe35f1z3fDQw+3txg7gNtWw==",
+  "version": "1.20.2",
+  "resolved": 
"https://registry.npmjs.org/body-parser/-/body-parser-1.20.2.tgz;,
+  "integrity": 
"sha512-ml9pReCu3M61kGlqoTm2umSXTlRTuGTx0bfYj+uIUKKYycG5NtSbeetV3faSU6R7ajOPw0g/J1PvK4qNy7s5bA==",
   "dev": true,
   "dependencies": {
 "bytes": "3.1.2",
-"content-type": "~1.0.4",
+"content-type": "~1.0.5",
 "debug": "2.6.9",
 "depd": "2.0.0",
 "destroy": "1.2.0",
@@ -6206,7 +6206,7 @@
 "iconv-lite": "0.4.24",
 "on-finished": "2.4.1",
 "qs": "6.11.0",
-"raw-body": "2.5.1",
+"raw-body": "2.5.2",
 "type-is": "~1.6.18",
 "unpipe": "1.0.0"
   },
@@ -6849,9 +6849,9 @@
   "dev": true
 },
 "node_modules/cookie": {
-  "version": "0.5.0",
-  "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.5.0.tgz;,
-  "integrity": 
"sha512-YZ3GUyn/o8gfKJlnlX7g7xq4gyO6OSuhGPKaaGssGB2qgDUS0gPgtTvoyZLTt9Ab6dC4hfc9dV5arkvc/OCmrw==",
+  "version": "0.6.0",
+  "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.6.0.tgz;,
+  "integrity": 
"sha512-U71cyTamuh1CRNCfpGY6to28lxvNwPG4Guz/EVjgf3Jmzv0vlDp1atT9eS5dDjMYHucpHbWns6Lwf3BKz6svdw==",
   "dev": true,
   "engines": {
 "node": ">= 0.6"
@@ -9300,17 +9300,17 @@
   }
 },
 "node_modules/express": {
-  "version": "4.18.2",
-  "resolved": "https://registry.npmjs.org/express/-/express-4.18.2.tgz;,
-  "integrity": 
"sha512-5/PsL6iGPdfQ/lKM1UuielYgv3BUoJfz1aUwU9vHZ+J7gyvwdQXFEBIEIaxeGf0GIcreATNyBExtalisDbuMqQ==",
+  "version": "4.19.2",
+  "resolved": "https://registry.npmjs.org/express/-/express-4.19.2.tgz;,
+  "integrity": 
"sha512-5T6nhjsT+EOMzuck8JjBHARTHfMht0POzlA60WV2pMD3gyXw2LZnZ+ueGdNxG+0calOJcWKbpFcuzLZ91YWq9Q==",
   "dev": true,
   "dependencies": {
 "accepts": "~1.3.8",
 "array-flatten": "1.1.1",
-"body-parser": "1.20.1",
+"body-parser": "1.20.2",
 "content-disposition": "0.5.4",
 "content-type": "~1.0.4",
-"cookie": "0.5.0",
+"cookie": "0.6.0",
 "cookie-signature": "1.0.6",
 "debug": "2.6.9",
 "depd": "2.0.0",
@@ -17812,9 +17812,9 @@
   }
 },
 "node_modules/raw-body": {
-  "version": "2.5.1",
-  "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.5.1.tgz;,
-  "integrity": 
"sha512-qqJBtEyVgS0ZmPGdCFPWJ3FreoqvG4MVQln/kCgF7Olq95IbOp0/BWyMwbdtn4VTvkM8Y7khCQ2Xgk/tcrCXig==",
+  "version": "2.5.2",
+  "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.5.2.tgz;,
+  "integrity": 
"sha512-8zGqypfENjCIqGhgXToC8aB2r7YrBX+AQAfIPs/Mlk+BtPTztOvTS01NRW/3Eh60J+a48lt8qsCzirQ6loCVfA==",
   "dev": true,
   "dependencies": {
 "bytes": "3.1.2",



(camel-karavan) branch dependabot/npm_and_yarn/karavan-designer/express-4.19.2 deleted (was 8f779b44)

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

github-bot pushed a change to branch 
dependabot/npm_and_yarn/karavan-designer/express-4.19.2
in repository https://gitbox.apache.org/repos/asf/camel-karavan.git


 was 8f779b44 Bump express from 4.18.2 to 4.19.2 in /karavan-designer

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 express from 4.18.2 to 4.19.2 in /karavan-app/src/main/webui [camel-karavan]

2024-03-27 Thread via GitHub


mgubaidullin merged PR #1202:
URL: https://github.com/apache/camel-karavan/pull/1202


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

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

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



[PR] fix(cmd): cannot load catalog on CLI [camel-k]

2024-03-27 Thread via GitHub


squakez opened a new pull request, #5296:
URL: https://github.com/apache/camel-k/pull/5296

   
   
   
   
   
   
   
   **Release Note**
   ```release-note
   fix(cmd): cannot load catalog on CLI
   ```
   


-- 
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] Could not determine source URI: cluster "camel-ai-kafka" has no listeners of type "plain" [camel-k]

2024-03-27 Thread via GitHub


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

   ### What happened?
   
   I have a pipe to move data from a kafka topic to a vector database:
   
   ```yaml
   apiVersion: camel.apache.org/v1
   kind: Pipe
   metadata:
 annotations:
   trait.camel.apache.org/container.image: 
quay.io/megacamelus/assistant-ingestion-sink:latest
   trait.camel.apache.org/dependencies.enabled: "false"
   trait.camel.apache.org/jvm.enabled: "false"
   trait.camel.apache.org/kamelets.enabled: "false"
 name: camel-ai-ingestion-siknk
 namespace: camel-ai
   spec:
 sink:
   properties:
 collection: cai
 qdrantHost: camel-ai
 qdrantPort: "6334"
   ref:
 apiVersion: camel.apache.org/v1
 kind: Kamelet
 name: qdrant-upsert-sink
 source:
   ref:
 apiVersion: kafka.strimzi.io/v1beta2
 kind: KafkaTopic
 name: camel-ai-ingestion
 steps:
 - properties:
 embeddingId: camel-ai-ingestion-siknk
   ref:
 apiVersion: camel.apache.org/v1
 kind: Kamelet
 name: langchain-embeddings-action
```
   
   And the a `Kafka`  resource as follow:
   
   ```yaml
   apiVersion: kafka.strimzi.io/v1beta2
   kind: Kafka
   metadata:
 name: camel-ai-kafka
   spec:
 entityOperator:
   topicOperator: {}
   userOperator: {}
 kafka:
   config:
 default.replication.factor: 3
 inter.broker.protocol.version: "3.6"
 min.insync.replicas: 2
 offsets.topic.replication.factor: 3
 transaction.state.log.min.isr: 2
 transaction.state.log.replication.factor: 3
   listeners:
   - name: plain
 port: 9092
 tls: false
 type: internal
   - name: tls
 port: 9093
 tls: true
 type: internal
   replicas: 3
   storage:
 deleteClaim: true
 size: 10Gi
 type: persistent-claim
   version: 3.6.0
 zookeeper:
   replicas: 3
   storage:
 deleteClaim: true
 size: 5Gi
 type: persistent-claim
   status:
 clusterId: cRS2lQFkRwGaDeXtT90rWw
 conditions:
 - lastTransitionTime: "2024-03-27T08:37:54.609806285Z"
   status: "True"
   type: Ready
 kafkaVersion: 3.6.0
 listeners:
 - addresses:
   - host: camel-ai-kafka-kafka-bootstrap.camel-ai.svc
 port: 9092
   bootstrapServers: camel-ai-kafka-kafka-bootstrap.camel-ai.svc:9092
   name: plain
 - addresses:
   - host: camel-ai-kafka-kafka-bootstrap.camel-ai.svc
 port: 9093
   bootstrapServers: camel-ai-kafka-kafka-bootstrap.camel-ai.svc:9093
   ```
   
   Then the pipe reports the following error:
   
   ```
   Status:
 Conditions:
   Last Transition Time:  2024-03-27T12:31:56Z
   Last Update Time:  2024-03-27T12:31:56Z
   Message:   could not determine source URI: cluster 
"camel-ai-kafka" has no listeners of type "plain"
   Reason:Couldn't create an Integration custom resource
   Status:False
   Type:  IntegrationError
   ```
   
   ### Steps to reproduce
   
   _No response_
   
   ### Relevant log output
   
   _No response_
   
   ### Camel K version
   
   2.2.0


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



[PR] fix(#5238): Fix Jib integration build [camel-k]

2024-03-27 Thread via GitHub


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

   Fixes #5238 
   
   - Set proper Jib config home env var to writable directory in the Docker 
image
   - Set proper Jib cache directory to writable directory in the Docker image
   
   **Release Note**
   ```release-note
   NONE
   ```
   


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

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

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



(camel) branch ddb-transform deleted (was 1597f04f692)

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

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


 was 1597f04f692 Fixed DDB Stream transform prefix for event source

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: Fixed DDB Stream transform prefix for event source (#13628)

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

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


The following commit(s) were added to refs/heads/main by this push:
 new ff63db20423 Fixed DDB Stream transform prefix for event source (#13628)
ff63db20423 is described below

commit ff63db20423162434aaed271109df1ea487d4efb
Author: Andrea Cosentino 
AuthorDate: Wed Mar 27 12:21:49 2024 +0100

Fixed DDB Stream transform prefix for event source (#13628)

Signed-off-by: Andrea Cosentino 
---
 .../ddbstream/transform/Ddb2StreamCloudEventDataTypeTransformer.java| 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/components/camel-aws/camel-aws2-ddb/src/main/java/org/apache/camel/component/aws2/ddbstream/transform/Ddb2StreamCloudEventDataTypeTransformer.java
 
b/components/camel-aws/camel-aws2-ddb/src/main/java/org/apache/camel/component/aws2/ddbstream/transform/Ddb2StreamCloudEventDataTypeTransformer.java
index 4952822e0f8..8960169079c 100644
--- 
a/components/camel-aws/camel-aws2-ddb/src/main/java/org/apache/camel/component/aws2/ddbstream/transform/Ddb2StreamCloudEventDataTypeTransformer.java
+++ 
b/components/camel-aws/camel-aws2-ddb/src/main/java/org/apache/camel/component/aws2/ddbstream/transform/Ddb2StreamCloudEventDataTypeTransformer.java
@@ -46,7 +46,7 @@ public class Ddb2StreamCloudEventDataTypeTransformer extends 
Transformer {
 
 if 
(message.getHeaders().containsKey(Ddb2StreamConstants.EVENT_SOURCE)) {
 headers.put(CloudEvent.CAMEL_CLOUD_EVENT_SOURCE,
-"aws.s3.ddbstream." + 
message.getHeader(Ddb2StreamConstants.EVENT_SOURCE, String.class));
+"aws.ddbstream." + 
message.getHeader(Ddb2StreamConstants.EVENT_SOURCE, String.class));
 }
 
 headers.put(CloudEvent.CAMEL_CLOUD_EVENT_SUBJECT, 
message.getHeader(Ddb2StreamConstants.EVENT_ID, String.class));



Re: [PR] Fixed DDB Stream transform prefix for event source [camel]

2024-03-27 Thread via GitHub


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


-- 
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] Fixed DDB Stream transform prefix for event source [camel]

2024-03-27 Thread via GitHub


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

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


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

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

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



[PR] Fixed DDB Stream transform prefix for event source [camel]

2024-03-27 Thread via GitHub


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

   # Description
   
   
   
   # Target
   
   - [x] I checked that the commit is targeting the correct branch (note that 
Camel 3 uses `camel-3.x`, whereas Camel 4 uses the `main` branch)
   
   # Tracking
   - [ ] 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
   
   - [x] I checked that each commit in the pull request has a meaningful 
subject line and body.
   
   
   
   - [x] I have run `mvn clean install -DskipTests` locally and I have 
committed all auto-generated changes
   
   
   
   


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

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

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



(camel) 01/01: Fixed DDB Stream transform prefix for event source

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

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

commit 1597f04f69243098ed6877109e8ee4365c23898f
Author: Andrea Cosentino 
AuthorDate: Wed Mar 27 11:56:54 2024 +0100

Fixed DDB Stream transform prefix for event source

Signed-off-by: Andrea Cosentino 
---
 .../ddbstream/transform/Ddb2StreamCloudEventDataTypeTransformer.java| 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/components/camel-aws/camel-aws2-ddb/src/main/java/org/apache/camel/component/aws2/ddbstream/transform/Ddb2StreamCloudEventDataTypeTransformer.java
 
b/components/camel-aws/camel-aws2-ddb/src/main/java/org/apache/camel/component/aws2/ddbstream/transform/Ddb2StreamCloudEventDataTypeTransformer.java
index 4952822e0f8..8960169079c 100644
--- 
a/components/camel-aws/camel-aws2-ddb/src/main/java/org/apache/camel/component/aws2/ddbstream/transform/Ddb2StreamCloudEventDataTypeTransformer.java
+++ 
b/components/camel-aws/camel-aws2-ddb/src/main/java/org/apache/camel/component/aws2/ddbstream/transform/Ddb2StreamCloudEventDataTypeTransformer.java
@@ -46,7 +46,7 @@ public class Ddb2StreamCloudEventDataTypeTransformer extends 
Transformer {
 
 if 
(message.getHeaders().containsKey(Ddb2StreamConstants.EVENT_SOURCE)) {
 headers.put(CloudEvent.CAMEL_CLOUD_EVENT_SOURCE,
-"aws.s3.ddbstream." + 
message.getHeader(Ddb2StreamConstants.EVENT_SOURCE, String.class));
+"aws.ddbstream." + 
message.getHeader(Ddb2StreamConstants.EVENT_SOURCE, String.class));
 }
 
 headers.put(CloudEvent.CAMEL_CLOUD_EVENT_SUBJECT, 
message.getHeader(Ddb2StreamConstants.EVENT_ID, String.class));



(camel) branch ddb-transform created (now 1597f04f692)

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

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


  at 1597f04f692 Fixed DDB Stream transform prefix for event source

This branch includes the following new commits:

 new 1597f04f692 Fixed DDB Stream transform prefix for event source

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




[PR] -- investigate GHA failure with -Djib.from.platforms=linux/amd64,linu… [camel-k]

2024-03-27 Thread via GitHub


tdiesler opened a new pull request, #5293:
URL: https://github.com/apache/camel-k/pull/5293

   …x/arm64
   
   Don't merge. This is to investigate a possible GHA issue


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

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

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



(camel-kamelets) branch regen_bot updated (ed6f620e -> 60ae014c)

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

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


from ed6f620e AWS DDB Stream Source: Expose Kamelet data type information 
(#1971)
 add 60ae014c Azure Storage Datalake Source: Expose Kamelet data type 
information (#1972)

No new revisions were added by this update.

Summary of changes:
 .../azure-storage-datalake-source.kamelet.yaml | 141 +
 .../azure-storage-datalake-source.kamelet.yaml | 141 +
 2 files changed, 282 insertions(+)



Re: [I] Azure Storage Datalake Source: Expose Kamelet data type information [camel-kamelets]

2024-03-27 Thread via GitHub


oscerd closed issue #1927: Azure Storage Datalake Source: Expose Kamelet data 
type information
URL: https://github.com/apache/camel-kamelets/issues/1927


-- 
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] Azure Storage Datalake Source: Expose Kamelet data type information [camel-kamelets]

2024-03-27 Thread via GitHub


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


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

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

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



(camel-kamelets) branch main updated: Azure Storage Datalake Source: Expose Kamelet data type information (#1972)

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

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


The following commit(s) were added to refs/heads/main by this push:
 new 60ae014c Azure Storage Datalake Source: Expose Kamelet data type 
information (#1972)
60ae014c is described below

commit 60ae014cbad8794592796d0ab5929a45e42fb7a7
Author: Andrea Cosentino 
AuthorDate: Wed Mar 27 11:49:21 2024 +0100

Azure Storage Datalake Source: Expose Kamelet data type information (#1972)

Signed-off-by: Andrea Cosentino 
---
 .../azure-storage-datalake-source.kamelet.yaml | 141 +
 .../azure-storage-datalake-source.kamelet.yaml | 141 +
 2 files changed, 282 insertions(+)

diff --git a/kamelets/azure-storage-datalake-source.kamelet.yaml 
b/kamelets/azure-storage-datalake-source.kamelet.yaml
index 0a9027d9..7a8dc69f 100644
--- a/kamelets/azure-storage-datalake-source.kamelet.yaml
+++ b/kamelets/azure-storage-datalake-source.kamelet.yaml
@@ -85,6 +85,147 @@ spec:
 type: string
 enum: ["CLIENT_SECRET", "SHARED_KEY_CREDENTIAL", "AZURE_IDENTITY", 
"AZURE_SAS", "SERVICE_CLIENT_INSTANCE"]
 default: "CLIENT_SECRET"
+  dataTypes:
+out:
+  default: binary
+  headers:
+CamelAzureStorageDataLakeFileName:
+  title: Azure Storage Datalake File Name
+  description: The name of the file retrieved
+  type: string
+CamelAzureStorageDataLakeRawHttpHeaders:
+  title: Azure Storage Data Lake Raw Http Headers
+  description: Non parsed http headers that can be used by the user.
+  type: object
+CamelAzureStorageDataLakeAccessTier:
+  title: Azure Storage Data Lake File Access Tier
+  description: Access tier of file.
+  type: object
+CamelAzureStorageDataLakeAccessTierChangeTime:
+  title: Azure Storage Data Lake Access Tier Change Time.
+  description: |-
+Datetime when the access tier of the blob last changed.
+  type: object
+CamelAzureStorageDataLakeArchiveStatus:
+  title: Azure Storage Data Lake Archive Status
+  description: Archive status of file
+  type: object
+CamelAzureStorageDataLakeCacheControl:
+  title: Azure Storage Data Lake File Cache Control
+  description: Cache control specified for the file.
+  type: string
+CamelAzureStorageDataLakeContentDisposition:
+  title: Azure Storage Data Lake File Content Disposition
+  description: Content disposition specified for the file.
+  type: string
+CamelAzureStorageDataLakeContentEncoding:
+  title: Azure Storage Data Lake File Content Encoding
+  description: Content encoding specified for the file.
+  type: string
+CamelAzureStorageDataLakeContentLanguage:
+  title: Azure Storage Data Lake File Content Language
+  description: Content language specified for the file.
+  type: string
+CamelAzureStorageDataLakeContentType:
+  title: Azure Storage Data Lake File Content Type
+  description: Content Type specified for the file.
+  type: string
+CamelAzureStorageDataLakeCopyCompletionTime:
+  title: Azure Storage Data Lake File Copy Completion time
+  description: Conclusion time of the last attempted Copy Blob 
operation where this file was the destination file.
+  type: object
+CamelAzureStorageDataLakeCopyId:
+  title: Azure Storage Data Lake File Copy Id
+  description: String identifier for this copy operation.
+  type: string
+amelAzureStorageDataLakeCopyProgress:
+  title: Azure Storage Data Lake File Copy Progress
+  description: Contains the number of bytes copied and the total bytes 
in the source in the last attempted Copy Blob operation where this file was the 
destination file.
+  type: string
+CamelAzureStorageDataLakeCopySource:
+  title: Azure Storage Data Lake File Copy Source
+  description: URL up to 2 KB in length that specifies the source file 
or file used in the last attempted Copy Blob operation where this file was the 
destination file.
+  type: string
+CamelAzureStorageDataLakeCopyStatus:
+  title: Azure Storage Data Lake File Copy Status
+  description: Status of the last copy operation performed on the file.
+  type: object
+CamelAzureStorageDataLakeCopyStatusDescription:
+  title: Azure Storage Data Lake File Copy Status Description
+  description: The description of the copy’s status.
+  type: string
+CamelAzureStorageDataLakeCreationTime:
+  title: Azure Storage Data Lake File Creation Time.
+  description: Creation time of the file.
+  

(camel-kamelets) branch 1927 created (now 3caa3ec7)

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

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


  at 3caa3ec7 Azure Storage Datalake Source: Expose Kamelet data type 
information

This branch includes the following new commits:

 new 3caa3ec7 Azure Storage Datalake Source: Expose Kamelet data type 
information

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




(camel-kamelets) 01/01: Azure Storage Datalake Source: Expose Kamelet data type information

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

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

commit 3caa3ec76bfd68d4008ad5bedf8e8f8a5dcd57b0
Author: Andrea Cosentino 
AuthorDate: Wed Mar 27 11:46:44 2024 +0100

Azure Storage Datalake Source: Expose Kamelet data type information

Signed-off-by: Andrea Cosentino 
---
 .../azure-storage-datalake-source.kamelet.yaml | 141 +
 .../azure-storage-datalake-source.kamelet.yaml | 141 +
 2 files changed, 282 insertions(+)

diff --git a/kamelets/azure-storage-datalake-source.kamelet.yaml 
b/kamelets/azure-storage-datalake-source.kamelet.yaml
index 0a9027d9..7a8dc69f 100644
--- a/kamelets/azure-storage-datalake-source.kamelet.yaml
+++ b/kamelets/azure-storage-datalake-source.kamelet.yaml
@@ -85,6 +85,147 @@ spec:
 type: string
 enum: ["CLIENT_SECRET", "SHARED_KEY_CREDENTIAL", "AZURE_IDENTITY", 
"AZURE_SAS", "SERVICE_CLIENT_INSTANCE"]
 default: "CLIENT_SECRET"
+  dataTypes:
+out:
+  default: binary
+  headers:
+CamelAzureStorageDataLakeFileName:
+  title: Azure Storage Datalake File Name
+  description: The name of the file retrieved
+  type: string
+CamelAzureStorageDataLakeRawHttpHeaders:
+  title: Azure Storage Data Lake Raw Http Headers
+  description: Non parsed http headers that can be used by the user.
+  type: object
+CamelAzureStorageDataLakeAccessTier:
+  title: Azure Storage Data Lake File Access Tier
+  description: Access tier of file.
+  type: object
+CamelAzureStorageDataLakeAccessTierChangeTime:
+  title: Azure Storage Data Lake Access Tier Change Time.
+  description: |-
+Datetime when the access tier of the blob last changed.
+  type: object
+CamelAzureStorageDataLakeArchiveStatus:
+  title: Azure Storage Data Lake Archive Status
+  description: Archive status of file
+  type: object
+CamelAzureStorageDataLakeCacheControl:
+  title: Azure Storage Data Lake File Cache Control
+  description: Cache control specified for the file.
+  type: string
+CamelAzureStorageDataLakeContentDisposition:
+  title: Azure Storage Data Lake File Content Disposition
+  description: Content disposition specified for the file.
+  type: string
+CamelAzureStorageDataLakeContentEncoding:
+  title: Azure Storage Data Lake File Content Encoding
+  description: Content encoding specified for the file.
+  type: string
+CamelAzureStorageDataLakeContentLanguage:
+  title: Azure Storage Data Lake File Content Language
+  description: Content language specified for the file.
+  type: string
+CamelAzureStorageDataLakeContentType:
+  title: Azure Storage Data Lake File Content Type
+  description: Content Type specified for the file.
+  type: string
+CamelAzureStorageDataLakeCopyCompletionTime:
+  title: Azure Storage Data Lake File Copy Completion time
+  description: Conclusion time of the last attempted Copy Blob 
operation where this file was the destination file.
+  type: object
+CamelAzureStorageDataLakeCopyId:
+  title: Azure Storage Data Lake File Copy Id
+  description: String identifier for this copy operation.
+  type: string
+amelAzureStorageDataLakeCopyProgress:
+  title: Azure Storage Data Lake File Copy Progress
+  description: Contains the number of bytes copied and the total bytes 
in the source in the last attempted Copy Blob operation where this file was the 
destination file.
+  type: string
+CamelAzureStorageDataLakeCopySource:
+  title: Azure Storage Data Lake File Copy Source
+  description: URL up to 2 KB in length that specifies the source file 
or file used in the last attempted Copy Blob operation where this file was the 
destination file.
+  type: string
+CamelAzureStorageDataLakeCopyStatus:
+  title: Azure Storage Data Lake File Copy Status
+  description: Status of the last copy operation performed on the file.
+  type: object
+CamelAzureStorageDataLakeCopyStatusDescription:
+  title: Azure Storage Data Lake File Copy Status Description
+  description: The description of the copy’s status.
+  type: string
+CamelAzureStorageDataLakeCreationTime:
+  title: Azure Storage Data Lake File Creation Time.
+  description: Creation time of the file.
+  type: object
+CamelAzureStorageDataLakeEncryptionKeySha256:
+  title: Azure Storage Data Lake File SHA-256 Hash
+  description: The SHA-256 hash of the encryption key 

Re: [I] Basic example fails on Docker Desktop MacOS [camel-k]

2024-03-27 Thread via GitHub


tdiesler commented on issue #5095:
URL: https://github.com/apache/camel-k/issues/5095#issuecomment-2022437211

   More investigation about this in 
https://github.com/apache/camel-k/issues/5292


-- 
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] Basic example fails on Docker Desktop MacOS [camel-k]

2024-03-27 Thread via GitHub


tdiesler closed issue #5095: Basic example fails on Docker Desktop MacOS
URL: https://github.com/apache/camel-k/issues/5095


-- 
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] Review integration digest computation and projection to the integration container as env var [camel-k]

2024-03-27 Thread via GitHub


lburgazzoli commented on issue #5192:
URL: https://github.com/apache/camel-k/issues/5192#issuecomment-2022422791

   > > I know that a reconciliation is triggered but does the integration 
filter apply ? because if so, then the previous and current integration object 
would have been the same (i.e. same checksum), so the filter would "skip" the 
event isn't it ?
   > 
   > Yes, what it would happen is that the Integration would stick in the 
`Running` phase, so, only applying the traits expected for such execution. 
Conversely, if there is a change in the digest, the Integration would start 
from `Initialization` phase, passing through all the phases (rebuilding, if the 
kit is no longer matching the expected configuration). If we remove the digest 
"optimization", we'd need to run every time this second flow.
   
   I don't think I follow 100% but it's been long time since I had a look at 
all those internals and I may be completely wrong, so please, bear with me:
   - if an owned resource changes, I don't think we should get back to the 
initialization phase, as none of the generated resources should change the 
behavior of an integration: it is the other way around, so we should re-apply 
the manifests
   - if the spec changes directly or indirectly (i.e when the integration 
platform / integration profile changes) then yes we must move the integration 
to the initialization phase so I'd rather try to improve on how we can detect 
such drifts.
   
   Now I understand that this may require some more radical changes but in 
general I'd really like we move toward reducing  our dependency on the 
integration status as it can quickly get out of date. 
   
   So @squakez for the time being, I'm fine with your proposed solution.
   


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

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

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



(camel) branch main updated: CAMEL-20622: added documentation

2024-03-27 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


The following commit(s) were added to refs/heads/main by this push:
 new 70b3837f150 CAMEL-20622: added documentation
70b3837f150 is described below

commit 70b3837f150bf0c6c29d7e09fa67f8f7ad995bc2
Author: Otavio Rodolfo Piske 
AuthorDate: Wed Mar 27 11:30:18 2024 +0100

CAMEL-20622: added documentation
---
 .../src/main/docs/qdrant-component.adoc| 25 ++
 1 file changed, 25 insertions(+)

diff --git a/components/camel-qdrant/src/main/docs/qdrant-component.adoc 
b/components/camel-qdrant/src/main/docs/qdrant-component.adoc
index 35a089ca5ad..043f62aa18c 100644
--- a/components/camel-qdrant/src/main/docs/qdrant-component.adoc
+++ b/components/camel-qdrant/src/main/docs/qdrant-component.adoc
@@ -131,4 +131,29 @@ from("direct:in")
 
 
 
+=== INFO
+
+In the route below, we use the qdrant component to get information about the 
collection named `myCollection`:
+
+[tabs]
+
+Java::
++
+[source,java]
+
+from("direct:in")
+.setHeader(Qdrant.Headers.ACTION)
+.constant(QdrantAction.COLLECTION_INFO)
+.to("qdrant:myCollection")
+.process(this::process);
+
+
+If there is a collection, you will receive a reply of type 
`Collections.CollectionInfo`.
+If there is not, the exchange will contain an exception of type 
`QdrantActionException` with a cause of type
+`StatusRuntimeException statusRuntimeException` and status `Status.NOT_FOUND`.
+
+
+
+
+
 include::spring-boot:partial$starter.adoc[]



  1   2   >