Re: [PR] CAMEL-20717 Throw created exception in TcpSocketConsumerRunnable [camel]

2024-04-30 Thread via GitHub


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

   You need to remove this line too
   
   ```
   import org.apache.camel.component.mllp.MllpInvalidMessageException;
   ```


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

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

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



(camel) branch regen_bot updated (f7f74776351 -> 10982f76e8b)

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

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


from f7f74776351 Camel-15279: allow receipt-delivery-option for async 
AS2-MDN (#13994)
 add 10982f76e8b CAMEL-20724: camel-saxon - Fix xquery namespaces usage 
(#13996)

No new revisions were added by this update.

Summary of changes:
 .../main/java/org/apache/camel/language/xquery/XQueryLanguage.java  | 6 ++
 .../builder/saxon/XQueryHeaderNameResultTypeAndNamespaceTest.java   | 5 -
 .../org/apache/camel/reifier/language/XQueryExpressionReifier.java  | 3 ++-
 3 files changed, 12 insertions(+), 2 deletions(-)



(camel) branch camel-4.4.x updated: CAMEL-20724: camel-saxon - Fix xquery namespaces usage (#13996)

2024-04-30 Thread davsclaus
This is an automated email from the ASF dual-hosted git repository.

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


The following commit(s) were added to refs/heads/camel-4.4.x by this push:
 new e6c684cd492 CAMEL-20724: camel-saxon - Fix xquery namespaces usage 
(#13996)
e6c684cd492 is described below

commit e6c684cd49266db6573cdbb7b782768d5214b9af
Author: Denis Istomin 
AuthorDate: Wed May 1 09:11:31 2024 +0500

CAMEL-20724: camel-saxon - Fix xquery namespaces usage (#13996)
---
 .../main/java/org/apache/camel/language/xquery/XQueryLanguage.java  | 6 ++
 .../builder/saxon/XQueryHeaderNameResultTypeAndNamespaceTest.java   | 5 -
 .../org/apache/camel/reifier/language/XQueryExpressionReifier.java  | 3 ++-
 3 files changed, 12 insertions(+), 2 deletions(-)

diff --git 
a/components/camel-saxon/src/main/java/org/apache/camel/language/xquery/XQueryLanguage.java
 
b/components/camel-saxon/src/main/java/org/apache/camel/language/xquery/XQueryLanguage.java
index cf1554b837c..dfa1ec77594 100644
--- 
a/components/camel-saxon/src/main/java/org/apache/camel/language/xquery/XQueryLanguage.java
+++ 
b/components/camel-saxon/src/main/java/org/apache/camel/language/xquery/XQueryLanguage.java
@@ -16,6 +16,8 @@
  */
 package org.apache.camel.language.xquery;
 
+import java.util.Map;
+
 import net.sf.saxon.Configuration;
 import org.apache.camel.CamelContext;
 import org.apache.camel.Expression;
@@ -57,6 +59,10 @@ public class XQueryLanguage extends 
SingleInputTypedLanguageSupport implements P
 if (clazz != null) {
 builder.setResultType(clazz);
 }
+Map ns = property(Map.class, properties, 2, null);
+if (ns != null && !ns.isEmpty()) {
+builder.setNamespaces(ns);
+}
 if (configuration != null) {
 builder.setConfiguration(configuration);
 }
diff --git 
a/components/camel-saxon/src/test/java/org/apache/camel/builder/saxon/XQueryHeaderNameResultTypeAndNamespaceTest.java
 
b/components/camel-saxon/src/test/java/org/apache/camel/builder/saxon/XQueryHeaderNameResultTypeAndNamespaceTest.java
index f77262723fc..83bc485738e 100644
--- 
a/components/camel-saxon/src/test/java/org/apache/camel/builder/saxon/XQueryHeaderNameResultTypeAndNamespaceTest.java
+++ 
b/components/camel-saxon/src/test/java/org/apache/camel/builder/saxon/XQueryHeaderNameResultTypeAndNamespaceTest.java
@@ -32,6 +32,7 @@ public class XQueryHeaderNameResultTypeAndNamespaceTest 
extends CamelTestSupport
 MockEndpoint mock = getMockEndpoint("mock:55");
 mock.expectedBodiesReceived("body");
 mock.expectedHeaderReceived("cheeseDetails", "http://acme.com/cheese\;>55");
+mock.expectedHeaderReceived("numberExists", "true");
 
 template.sendBodyAndHeader("direct:in", "body", "cheeseDetails",
 "http://acme.com/cheese\;>55");
@@ -46,9 +47,11 @@ public class XQueryHeaderNameResultTypeAndNamespaceTest 
extends CamelTestSupport
 Namespaces ns = new Namespaces("c", "http://acme.com/cheese;);
 var xq = expression().xquery().expression("/c:number = 
55").namespaces(ns).resultType(Integer.class)
 .source("header:cheeseDetails").end();
-
+var xqExist = 
expression().xquery().expression("exists(/c:number)").namespaces(ns).resultType(String.class)
+.source("header:cheeseDetails").end();
 from("direct:in").choice()
 .when(xq)
+.setHeader("numberExists", xqExist)
 .to("mock:55")
 .otherwise()
 .to("mock:other")
diff --git 
a/core/camel-core-reifier/src/main/java/org/apache/camel/reifier/language/XQueryExpressionReifier.java
 
b/core/camel-core-reifier/src/main/java/org/apache/camel/reifier/language/XQueryExpressionReifier.java
index cc13d1248ed..60a7bef8f0a 100644
--- 
a/core/camel-core-reifier/src/main/java/org/apache/camel/reifier/language/XQueryExpressionReifier.java
+++ 
b/core/camel-core-reifier/src/main/java/org/apache/camel/reifier/language/XQueryExpressionReifier.java
@@ -48,9 +48,10 @@ public class XQueryExpressionReifier extends 
SingleInputTypedExpressionReifier

(camel) branch main updated: CAMEL-20724: camel-saxon - Fix xquery namespaces usage (#13996)

2024-04-30 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 10982f76e8b CAMEL-20724: camel-saxon - Fix xquery namespaces usage 
(#13996)
10982f76e8b is described below

commit 10982f76e8b9db64a69a76e283f1f0afed071fa2
Author: Denis Istomin 
AuthorDate: Wed May 1 09:11:31 2024 +0500

CAMEL-20724: camel-saxon - Fix xquery namespaces usage (#13996)
---
 .../main/java/org/apache/camel/language/xquery/XQueryLanguage.java  | 6 ++
 .../builder/saxon/XQueryHeaderNameResultTypeAndNamespaceTest.java   | 5 -
 .../org/apache/camel/reifier/language/XQueryExpressionReifier.java  | 3 ++-
 3 files changed, 12 insertions(+), 2 deletions(-)

diff --git 
a/components/camel-saxon/src/main/java/org/apache/camel/language/xquery/XQueryLanguage.java
 
b/components/camel-saxon/src/main/java/org/apache/camel/language/xquery/XQueryLanguage.java
index cf1554b837c..dfa1ec77594 100644
--- 
a/components/camel-saxon/src/main/java/org/apache/camel/language/xquery/XQueryLanguage.java
+++ 
b/components/camel-saxon/src/main/java/org/apache/camel/language/xquery/XQueryLanguage.java
@@ -16,6 +16,8 @@
  */
 package org.apache.camel.language.xquery;
 
+import java.util.Map;
+
 import net.sf.saxon.Configuration;
 import org.apache.camel.CamelContext;
 import org.apache.camel.Expression;
@@ -57,6 +59,10 @@ public class XQueryLanguage extends 
SingleInputTypedLanguageSupport implements P
 if (clazz != null) {
 builder.setResultType(clazz);
 }
+Map ns = property(Map.class, properties, 2, null);
+if (ns != null && !ns.isEmpty()) {
+builder.setNamespaces(ns);
+}
 if (configuration != null) {
 builder.setConfiguration(configuration);
 }
diff --git 
a/components/camel-saxon/src/test/java/org/apache/camel/builder/saxon/XQueryHeaderNameResultTypeAndNamespaceTest.java
 
b/components/camel-saxon/src/test/java/org/apache/camel/builder/saxon/XQueryHeaderNameResultTypeAndNamespaceTest.java
index f77262723fc..83bc485738e 100644
--- 
a/components/camel-saxon/src/test/java/org/apache/camel/builder/saxon/XQueryHeaderNameResultTypeAndNamespaceTest.java
+++ 
b/components/camel-saxon/src/test/java/org/apache/camel/builder/saxon/XQueryHeaderNameResultTypeAndNamespaceTest.java
@@ -32,6 +32,7 @@ public class XQueryHeaderNameResultTypeAndNamespaceTest 
extends CamelTestSupport
 MockEndpoint mock = getMockEndpoint("mock:55");
 mock.expectedBodiesReceived("body");
 mock.expectedHeaderReceived("cheeseDetails", "http://acme.com/cheese\;>55");
+mock.expectedHeaderReceived("numberExists", "true");
 
 template.sendBodyAndHeader("direct:in", "body", "cheeseDetails",
 "http://acme.com/cheese\;>55");
@@ -46,9 +47,11 @@ public class XQueryHeaderNameResultTypeAndNamespaceTest 
extends CamelTestSupport
 Namespaces ns = new Namespaces("c", "http://acme.com/cheese;);
 var xq = expression().xquery().expression("/c:number = 
55").namespaces(ns).resultType(Integer.class)
 .source("header:cheeseDetails").end();
-
+var xqExist = 
expression().xquery().expression("exists(/c:number)").namespaces(ns).resultType(String.class)
+.source("header:cheeseDetails").end();
 from("direct:in").choice()
 .when(xq)
+.setHeader("numberExists", xqExist)
 .to("mock:55")
 .otherwise()
 .to("mock:other")
diff --git 
a/core/camel-core-reifier/src/main/java/org/apache/camel/reifier/language/XQueryExpressionReifier.java
 
b/core/camel-core-reifier/src/main/java/org/apache/camel/reifier/language/XQueryExpressionReifier.java
index 5f9554f526f..e85a06e9d85 100644
--- 
a/core/camel-core-reifier/src/main/java/org/apache/camel/reifier/language/XQueryExpressionReifier.java
+++ 
b/core/camel-core-reifier/src/main/java/org/apache/camel/reifier/language/XQueryExpressionReifier.java
@@ -48,9 +48,10 @@ public class XQueryExpressionReifier extends 
SingleInputTypedExpressionReifier

Re: [PR] CAMEL-20724: camel-saxon - Fix xquery namespaces usage [camel]

2024-04-30 Thread via GitHub


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


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

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

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



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

2024-04-30 Thread via GitHub


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

   The 
[quarkus-main](https://github.com/apache/camel-quarkus/tree/quarkus-main) 
branch build has failed:
   
   * Build ID: 8904393315-1469-f05c3a1c-e0b3-43a2-b344-1e93ae99c58a
   * Camel Quarkus Commit: 40b31797e806c433620c51b0a337687ce865962d
   
   * Quarkus Main Commit: d84dd280b7cfeb49a7a86a32c2048bedf24a5da1
   * Link to build: 
https://github.com/apache/camel-quarkus/actions/runs/8904393315


-- 
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 quarkus-main updated (ba8cceeecf -> f7ae12f526)

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

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


 discard ba8cceeecf Upgrade Quarkus to 3.11.0.CR1
 add 26fb3289dd Bump quarkiverse-groovy.version from 3.9.3 to 3.10.0
 add 7e223c51dd Add xml-jaxb extension back to management extension
 add c5d4323a5a Move slow Splunk tests to separate test categories
 add d84dd280b7 Add changelog for 3.10.0
 new f7ae12f526 Upgrade Quarkus to 3.11.0.CR1

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   (ba8cceeecf)
\
 N -- N -- N   refs/heads/quarkus-main (f7ae12f526)

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:
 CHANGELOG.md   | 74 ++
 extensions-core/xml-jaxb/runtime/pom.xml   |  6 ++
 extensions/jaxb/runtime/pom.xml|  6 ++
 extensions/management/deployment/pom.xml   |  4 ++
 extensions/management/runtime/pom.xml  |  4 ++
 extensions/soap/runtime/pom.xml|  6 --
 .../management/it/ManagementResource.java  | 19 ++
 .../src/main/resources/application.properties  |  3 +
 .../component/management/it/ManagementTest.java| 53 +++-
 pom.xml|  2 +-
 poms/bom/pom.xml   | 20 ++
 poms/bom/src/main/generated/flattened-full-pom.xml | 24 ++-
 .../src/main/generated/flattened-reduced-pom.xml   | 24 ++-
 .../generated/flattened-reduced-verbose-pom.xml| 24 ++-
 tooling/scripts/test-categories.yaml   |  4 +-
 15 files changed, 257 insertions(+), 16 deletions(-)



(camel-quarkus) 01/01: Upgrade Quarkus to 3.11.0.CR1

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

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

commit f7ae12f526506d16276292c655241d0de313bb15
Author: James Netherton 
AuthorDate: Wed Apr 24 16:02:20 2024 +0100

Upgrade Quarkus to 3.11.0.CR1
---
 pom.xml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/pom.xml b/pom.xml
index d5ea7058f5..9d7066a73e 100644
--- a/pom.xml
+++ b/pom.xml
@@ -61,7 +61,7 @@
 2.2.2
 
2.3.1
 2.0.2
-3.10.0
+999-SNAPSHOT
 
4.0.0
 2.6.1
 
@@ -104,7 +104,7 @@
 23.1.2
 jdk21
 4.0.21
-1.62.2
+1.63.0
 ${hapi-version}
 ${hapi-base-version}
 ${hapi-fhir-version}



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

2024-04-30 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 b6cdc8f1 Updated CHANGELOG.md
b6cdc8f1 is described below

commit b6cdc8f14bae8a9e542ab67dd82645b225f3f4c0
Author: github-actions[bot] 
<41898282+github-actions[bot]@users.noreply.github.com>
AuthorDate: Wed May 1 03:07:26 2024 +

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

diff --git a/CHANGELOG.md b/CHANGELOG.md
index d6256f26..54c6b80b 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,11 +1,12 @@
 # Changelog
 
-## [Unreleased](https://github.com/apache/camel-kamelets/tree/HEAD)
+## [v4.4.2](https://github.com/apache/camel-kamelets/tree/v4.4.2) (2024-04-30)
 
-[Full 
Changelog](https://github.com/apache/camel-kamelets/compare/v4.5.0...HEAD)
+[Full 
Changelog](https://github.com/apache/camel-kamelets/compare/v4.5.0...v4.4.2)
 
 **Closed issues:**
 
+- Upgrade 4.4.x to Camel 4.4.2 
[\#2016](https://github.com/apache/camel-kamelets/issues/2016)
 - Kamelet Catalog: Provide a method in the catalog API to get DataType 
information for a Kamelet 
[\#1984](https://github.com/apache/camel-kamelets/issues/1984)
 - Support Camel AWS Bedrock Agent Runtime as Sink 
[\#1935](https://github.com/apache/camel-kamelets/issues/1935)
 - DataTypes: Initial list of Kamelets to enrich 
[\#1343](https://github.com/apache/camel-kamelets/issues/1343)



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

2024-04-30 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 a1687b01e chore: changelog automatic update
a1687b01e is described below

commit a1687b01e7e1526162c18b6928e3e8227cb80485
Author: github-actions[bot] 
<41898282+github-actions[bot]@users.noreply.github.com>
AuthorDate: Wed May 1 00:36:23 2024 +

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

diff --git a/CHANGELOG.md b/CHANGELOG.md
index 9ed6099d3..6e742b27c 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,13 @@
 # Changelog
 
+## [Unreleased](https://github.com/apache/camel-k/tree/HEAD)
+
+[Full Changelog](https://github.com/apache/camel-k/compare/v2.3.1...HEAD)
+
+**Closed issues:**
+
+- Missing license header files 
[\#5433](https://github.com/apache/camel-k/issues/5433)
+
 ## [v2.3.1](https://github.com/apache/camel-k/tree/v2.3.1) (2024-04-29)
 
 [Full 
Changelog](https://github.com/apache/camel-k/compare/camel-k-crds-2.3.1...v2.3.1)



[PR] chore(deps): bump github.com/onsi/gomega from 1.33.0 to 1.33.1 [camel-k]

2024-04-30 Thread via GitHub


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

   Bumps [github.com/onsi/gomega](https://github.com/onsi/gomega) from 1.33.0 
to 1.33.1.
   
   Release notes
   Sourced from https://github.com/onsi/gomega/releases;>github.com/onsi/gomega's 
releases.
   
   v1.33.1
   1.33.1
   Fixes
   
   fix confusing eventually docs [3a66379]
   
   Maintenance
   
   Bump github.com/onsi/ginkgo/v2 from 2.17.1 to 2.17.2 [e9bc35a]
   
   
   
   
   Changelog
   Sourced from https://github.com/onsi/gomega/blob/master/CHANGELOG.md;>github.com/onsi/gomega's
 changelog.
   
   1.33.1
   Fixes
   
   fix confusing eventually docs [3a66379]
   
   Maintenance
   
   Bump github.com/onsi/ginkgo/v2 from 2.17.1 to 2.17.2 [e9bc35a]
   
   
   
   
   Commits
   
   https://github.com/onsi/gomega/commit/8a658bb7156446ddd3f4c99b219fcac3e6154935;>8a658bb
 v1.33.1
   https://github.com/onsi/gomega/commit/e9bc35a40c70f449d8ec5ea52ccf5f6267dc04c4;>e9bc35a
 Bump github.com/onsi/ginkgo/v2 from 2.17.1 to 2.17.2
   https://github.com/onsi/gomega/commit/3a663791d2fb9a4177b4a84fed87b4d1f28950bf;>3a66379
 fix confusing eventually docs
   See full diff in https://github.com/onsi/gomega/compare/v1.33.0...v1.33.1;>compare 
view
   
   
   
   
   
   [![Dependabot compatibility 
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=github.com/onsi/gomega=go_modules=1.33.0=1.33.1)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)
   
   Dependabot will resolve any conflicts with this PR as long as you don't 
alter it yourself. You can also trigger a rebase manually by commenting 
`@dependabot rebase`.
   
   [//]: # (dependabot-automerge-start)
   [//]: # (dependabot-automerge-end)
   
   ---
   
   
   Dependabot commands and options
   
   
   You can trigger Dependabot actions by commenting on this PR:
   - `@dependabot rebase` will rebase this PR
   - `@dependabot recreate` will recreate this PR, overwriting any edits that 
have been made to it
   - `@dependabot merge` will merge this PR after your CI passes on it
   - `@dependabot squash and merge` will squash and merge this PR after your CI 
passes on it
   - `@dependabot cancel merge` will cancel a previously requested merge and 
block automerging
   - `@dependabot reopen` will reopen this PR if it is closed
   - `@dependabot close` will close this PR and stop Dependabot recreating it. 
You can achieve the same result by closing it manually
   - `@dependabot show  ignore conditions` will show all of 
the ignore conditions of the specified dependency
   - `@dependabot ignore this major version` will close this PR and stop 
Dependabot creating any more for this major version (unless you reopen the PR 
or upgrade to it yourself)
   - `@dependabot ignore this minor version` will close this PR and stop 
Dependabot creating any more for this minor version (unless you reopen the PR 
or upgrade to it yourself)
   - `@dependabot ignore this dependency` will close this PR and stop 
Dependabot creating any more for this dependency (unless you reopen the PR or 
upgrade to it yourself)
   
   
   


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

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

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



(camel-k) branch dependabot/go_modules/github.com/onsi/gomega-1.33.1 created (now 025fa1511)

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

github-bot pushed a change to branch 
dependabot/go_modules/github.com/onsi/gomega-1.33.1
in repository https://gitbox.apache.org/repos/asf/camel-k.git


  at 025fa1511 chore(deps): bump github.com/onsi/gomega from 1.33.0 to 
1.33.1

No new revisions were added by this update.



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

2024-04-30 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 9c85e1839 chore: nightly automatic updates
9c85e1839 is described below

commit 9c85e183956992ce5ed3f9305a41d8b633a7e4bc
Author: github-actions[bot] 
<41898282+github-actions[bot]@users.noreply.github.com>
AuthorDate: Tue Apr 30 23:44:55 2024 +

chore: nightly automatic updates
---
 CHANGELOG.md | 7 +++
 coverage.out | 6 +++---
 2 files changed, 10 insertions(+), 3 deletions(-)

diff --git a/CHANGELOG.md b/CHANGELOG.md
index 1359e3d94..9e4bce604 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -4,8 +4,15 @@
 
 [Full Changelog](https://github.com/apache/camel-k/compare/v2.3.1...HEAD)
 
+**Closed issues:**
+
+- Missing license header files 
[\#5433](https://github.com/apache/camel-k/issues/5433)
+
 **Merged pull requests:**
 
+- chore\(release\): fix missing licenses 
[\#5442](https://github.com/apache/camel-k/pull/5442) 
([gansheer](https://github.com/gansheer))
+- chore\(e2e\): Allow to disable copy optimizations on E2E tests 
[\#5436](https://github.com/apache/camel-k/pull/5436) 
([christophd](https://github.com/christophd))
+- fix\(pipeline\): add s2i to publish tasks 
[\#5435](https://github.com/apache/camel-k/pull/5435) 
([mmajerni](https://github.com/mmajerni))
 - docs: remove duplicate affinity entry in camel-runtimes doc 
[\#5434](https://github.com/apache/camel-k/pull/5434) 
([mdebarros](https://github.com/mdebarros))
 - chore\(cmd\): error if no default catalog found 
[\#5431](https://github.com/apache/camel-k/pull/5431) 
([squakez](https://github.com/squakez))
 - fix\(trait\): compute cm after catalog 
[\#5423](https://github.com/apache/camel-k/pull/5423) 
([squakez](https://github.com/squakez))
diff --git a/coverage.out b/coverage.out
index 6d08f6f61..8508394a6 100644
--- a/coverage.out
+++ b/coverage.out
@@ -1131,9 +1131,9 @@ 
github.com/apache/camel-k/v2/pkg/controller/build/monitor_pod.go:280:   
  getTer
 github.com/apache/camel-k/v2/pkg/controller/build/monitor_pod.go:301:  
setConditionsFromTerminationMessages
0.0%
 github.com/apache/camel-k/v2/pkg/controller/build/monitor_pod.go:343:  
publishTask 
0.0%
 github.com/apache/camel-k/v2/pkg/controller/build/monitor_pod.go:352:  
publishTaskImageName
0.0%
-github.com/apache/camel-k/v2/pkg/controller/build/monitor_pod.go:369:  
publishTaskName 
0.0%
-github.com/apache/camel-k/v2/pkg/controller/build/monitor_pod.go:386:  
publishTaskDigest   
0.0%
-github.com/apache/camel-k/v2/pkg/controller/build/monitor_pod.go:397:  
operatorSupportedPublishingStrategy 
0.0%
+github.com/apache/camel-k/v2/pkg/controller/build/monitor_pod.go:371:  
publishTaskName 
0.0%
+github.com/apache/camel-k/v2/pkg/controller/build/monitor_pod.go:390:  
publishTaskDigest   
0.0%
+github.com/apache/camel-k/v2/pkg/controller/build/monitor_pod.go:401:  
operatorSupportedPublishingStrategy 
0.0%
 github.com/apache/camel-k/v2/pkg/controller/build/monitor_routine.go:42:   
newMonitorRoutineAction 
0.0%
 github.com/apache/camel-k/v2/pkg/controller/build/monitor_routine.go:51:   
Name
0.0%
 github.com/apache/camel-k/v2/pkg/controller/build/monitor_routine.go:56:   
CanHandle   
0.0%



Re: [PR] CAMEL-20724: camel-saxon - Fix xquery namespaces usage [camel]

2024-04-30 Thread via GitHub


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

   :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-20724: camel-saxon - Fix xquery namespaces usage [camel]

2024-04-30 Thread via GitHub


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

   # Description
   
   Fixes xquery namespaces usage.
   
   Should be merged to 4.4.0, 4.4.1, 4.4.2, 4.5.0.
   
   # 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



(camel-k) branch release-2.3.x updated: chore(release): fix missing licenses

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

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


The following commit(s) were added to refs/heads/release-2.3.x by this push:
 new bb9aa6ac6 chore(release): fix missing licenses
bb9aa6ac6 is described below

commit bb9aa6ac63f2454e37d1e6c52e0cc18e52f3fbdc
Author: Gaelle Fournier 
AuthorDate: Tue Apr 30 16:20:45 2024 +0200

chore(release): fix missing licenses
---
 .github/workflows/comment-pr.yaml | 17 +
 e2e/advanced/files/deploy.yaml| 17 +
 2 files changed, 34 insertions(+)

diff --git a/.github/workflows/comment-pr.yaml 
b/.github/workflows/comment-pr.yaml
index f5360bdfd..8c4497f1d 100644
--- a/.github/workflows/comment-pr.yaml
+++ b/.github/workflows/comment-pr.yaml
@@ -1,3 +1,20 @@
+# ---
+# 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.
+# ---
+
 name: Comment on the pull request
 
 env:
diff --git a/e2e/advanced/files/deploy.yaml b/e2e/advanced/files/deploy.yaml
index 89921a04a..1509dad1a 100644
--- a/e2e/advanced/files/deploy.yaml
+++ b/e2e/advanced/files/deploy.yaml
@@ -1,3 +1,20 @@
+# ---
+# 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.
+# ---
+
 ---
 apiVersion: v1
 data:



Re: [PR] [Backport 2.3.x]: chore(release): fix missing licenses [camel-k]

2024-04-30 Thread via GitHub


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


-- 
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.3.x]: chore(release): fix missing licenses [camel-k]

2024-04-30 Thread via GitHub


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

   Backport of https://github.com/apache/camel-k/pull/5442
   
   **Release Note**
   ```release-note
   chore(release): fix missing licenses
   ```
   


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

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

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



(camel-k) branch main updated: chore(release): fix missing licenses

2024-04-30 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 349dd3717 chore(release): fix missing licenses
349dd3717 is described below

commit 349dd37177e785128cf12b9dba194cd675d1e142
Author: Gaelle Fournier 
AuthorDate: Tue Apr 30 16:20:45 2024 +0200

chore(release): fix missing licenses
---
 .github/workflows/comment-pr.yaml | 17 +
 e2e/advanced/files/deploy.yaml| 17 +
 2 files changed, 34 insertions(+)

diff --git a/.github/workflows/comment-pr.yaml 
b/.github/workflows/comment-pr.yaml
index f5360bdfd..8c4497f1d 100644
--- a/.github/workflows/comment-pr.yaml
+++ b/.github/workflows/comment-pr.yaml
@@ -1,3 +1,20 @@
+# ---
+# 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.
+# ---
+
 name: Comment on the pull request
 
 env:
diff --git a/e2e/advanced/files/deploy.yaml b/e2e/advanced/files/deploy.yaml
index 89921a04a..1509dad1a 100644
--- a/e2e/advanced/files/deploy.yaml
+++ b/e2e/advanced/files/deploy.yaml
@@ -1,3 +1,20 @@
+# ---
+# 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.
+# ---
+
 ---
 apiVersion: v1
 data:



Re: [I] Missing license header files [camel-k]

2024-04-30 Thread via GitHub


gansheer closed issue #5433: Missing license header files
URL: https://github.com/apache/camel-k/issues/5433


-- 
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] chore(release): fix missing licenses [camel-k]

2024-04-30 Thread via GitHub


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


-- 
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] Health trait: Inconsistent Integration condition ready status [camel-k]

2024-04-30 Thread via GitHub


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

   The original Camel problem was fixed. However, it required some runtime 
properties to make it work, so, in order to fix the flaky test we should 
instead add those properties. We may use this as a workaround and wait for the 
framework to fix https://issues.apache.org/jira/browse/CAMEL-20244 definitively.


-- 
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] fixes(#5439): Build should enforce a required jdk version [camel-k]

2024-04-30 Thread via GitHub


squakez commented on code in PR #5440:
URL: https://github.com/apache/camel-k/pull/5440#discussion_r1584935643


##
script/check_jdk_version.go:
##
@@ -0,0 +1,33 @@
+package main
+
+import (
+   "fmt"
+   "os/exec"
+   "regexp"
+   "strconv"
+)
+
+func main() {
+
+   cmd := exec.Command("java", "-version")
+   output, err := cmd.CombinedOutput()
+   if err != nil {
+   panic(fmt.Sprintf("Error: %v\n", err))
+   }
+
+   versionStr := string(output)
+   versionRegex := regexp.MustCompile(`version 
"?([1-9]+)(\.([0-9]+)){2,3}"?`)
+   matches := versionRegex.FindStringSubmatch(versionStr)
+   if len(matches) < 2 {
+   panic(fmt.Sprintf("Unable to determine Java version: %s\n", 
versionStr))

Review Comment:
   Okey. Still make sure any parsing problem is not leading to a panic which 
would impede to complete a build.



-- 
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] fixes(#5439): Build should enforce a required jdk version [camel-k]

2024-04-30 Thread via GitHub


tdiesler commented on code in PR #5440:
URL: https://github.com/apache/camel-k/pull/5440#discussion_r1584931329


##
script/check_jdk_version.go:
##
@@ -0,0 +1,33 @@
+package main
+
+import (
+   "fmt"
+   "os/exec"
+   "regexp"
+   "strconv"
+)
+
+func main() {
+
+   cmd := exec.Command("java", "-version")
+   output, err := cmd.CombinedOutput()
+   if err != nil {
+   panic(fmt.Sprintf("Error: %v\n", err))
+   }
+
+   versionStr := string(output)
+   versionRegex := regexp.MustCompile(`version 
"?([1-9]+)(\.([0-9]+)){2,3}"?`)
+   matches := versionRegex.FindStringSubmatch(versionStr)
+   if len(matches) < 2 {
+   panic(fmt.Sprintf("Unable to determine Java version: %s\n", 
versionStr))

Review Comment:
   ok. How about we get the java version from maven i.e.
   
   ```
   $ mvn -version
   Apache Maven 3.9.6 (bc0240f3c744dd6b6ec2920b3cd08dcc295161ae)
   Maven home: /opt/homebrew/Cellar/maven/3.9.6/libexec
   Java version: 17.0.6, vendor: Azul Systems, Inc., runtime: 
/Library/Java/JavaVirtualMachines/zulu-17.jdk/Contents/Home
   Default locale: en_GB, platform encoding: UTF-8
   OS name: "mac os x", version: "14.4.1", arch: "aarch64", family: "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



Re: [PR] fixes(#5439): Build should enforce a required jdk version [camel-k]

2024-04-30 Thread via GitHub


tdiesler commented on code in PR #5440:
URL: https://github.com/apache/camel-k/pull/5440#discussion_r1584929918


##
script/check_jdk_version.go:
##
@@ -0,0 +1,33 @@
+package main

Review Comment:
   ok



-- 
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] chore(release): fix missing licenses [camel-k]

2024-04-30 Thread via GitHub


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

   Ref #5433 
   
   **Release Note**
   ```release-note
   chore(release): fix missing licenses
   ```
   


-- 
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] Missing license header files [camel-k]

2024-04-30 Thread via GitHub


gansheer commented on issue #5433:
URL: https://github.com/apache/camel-k/issues/5433#issuecomment-2085459096

   Ok, I found my issue, I have some temp files not without license so it block 
the full code scan.


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

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

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



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

2024-04-30 Thread davsclaus
This is an automated email from the ASF dual-hosted git repository.

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


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

commit ca8ba4653272e33cdba4b67b5d2f5ed1c8654c25
Author: Claus Ibsen 
AuthorDate: Tue Apr 30 16:18:47 2024 +0200

Regen
---
 .../camel/springboot/catalog/components/as2.json   | 78 --
 .../springboot/catalog/components/milvus.json  |  2 +-
 2 files changed, 42 insertions(+), 38 deletions(-)

diff --git 
a/catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/components/as2.json
 
b/catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/components/as2.json
index d40c1c53482..638cb9b8742 100644
--- 
a/catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/components/as2.json
+++ 
b/catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/components/as2.json
@@ -30,53 +30,57 @@
 "configuration": { "index": 3, "kind": "property", "displayName": 
"Configuration", "group": "advanced", "label": "advanced", "required": false, 
"type": "object", "javaType": 
"org.apache.camel.component.as2.AS2Configuration", "deprecated": false, 
"autowired": false, "secret": false, "description": "Component configuration" }
   },
   "properties": {
-"apiName": { "index": 0, "kind": "path", "displayName": "Api Name", 
"group": "common", "label": "", "required": true, "type": "object", "javaType": 
"org.apache.camel.component.as2.internal.AS2ApiName", "enum": [ "CLIENT", 
"SERVER" ], "deprecated": false, "deprecationNote": "", "autowired": false, 
"secret": false, "configurationClass": 
"org.apache.camel.component.as2.AS2Configuration", "configurationField": 
"configuration", "description": "What kind of operation to perform" },
+"apiName": { "index": 0, "kind": "path", "displayName": "Api Name", 
"group": "common", "label": "", "required": true, "type": "object", "javaType": 
"org.apache.camel.component.as2.internal.AS2ApiName", "enum": [ "CLIENT", 
"SERVER", "RECEIPT" ], "deprecated": false, "deprecationNote": "", "autowired": 
false, "secret": false, "configurationClass": 
"org.apache.camel.component.as2.AS2Configuration", "configurationField": 
"configuration", "description": "What kind of operation to perform" },
 "methodName": { "index": 1, "kind": "path", "displayName": "Method Name", 
"group": "common", "label": "", "required": true, "type": "string", "javaType": 
"java.lang.String", "deprecated": false, "deprecationNote": "", "autowired": 
false, "secret": false, "configurationClass": 
"org.apache.camel.component.as2.AS2Configuration", "configurationField": 
"configuration", "description": "What sub operation to use for the selected 
operation" },
 "as2From": { "index": 2, "kind": "parameter", "displayName": "As2 From", 
"group": "common", "label": "", "required": false, "type": "string", 
"javaType": "java.lang.String", "deprecated": false, "autowired": false, 
"secret": false, "configurationClass": 
"org.apache.camel.component.as2.AS2Configuration", "configurationField": 
"configuration", "description": "The value of the AS2From header of AS2 
message." },
 "as2MessageStructure": { "index": 3, "kind": "parameter", "displayName": 
"As2 Message Structure", "group": "common", "label": "", "required": false, 
"type": "object", "javaType": 
"org.apache.camel.component.as2.api.AS2MessageStructure", "enum": [ "PLAIN", 
"SIGNED", "ENCRYPTED", "SIGNED_ENCRYPTED", "PLAIN_COMPRESSED", 
"SIGNED_COMPRESSED", "ENCRYPTED_COMPRESSED", "ENCRYPTED_COMPRESSED_SIGNED" ], 
"deprecated": false, "autowired": false, "secret": false, "configurationClass": 
"org.apache [...]
 "as2To": { "index": 4, "kind": "parameter", "displayName": "As2 To", 
"group": "common", "label": "", "required": false, "type": "string", 
"javaType": "java.lang.String", "deprecated": false, "autowired": false, 
"secret": false, "configurationClass": 
"org.apache.camel.component.as2.AS2Configuration", "configurationField": 
"configuration", "description": "The value of the AS2To header of AS2 message." 
},
 "as2Version": { "index": 5, "kind": "parameter", "displayName": "As2 
Version", "group": "common", "label": "", "required": false, "type": "string", 
"javaType": "java.lang.String", "enum": [ "1.0", "1.1" ], "deprecated": false, 
"autowired": false, "secret": false, "defaultValue": "1.1", 
"configurationClass": "org.apache.camel.component.as2.AS2Configuration", 
"configurationField": "configuration", "description": "The version of the AS2 
protocol." },
-"attachedFileName": { "index": 6, "kind": "parameter", "displayName": 
"Attached File Name", "group": "common", "label": "", "required": false, 
"type": "string", "javaType": 

Re: [PR] feat(trait): enable health trait by default [camel-k]

2024-04-30 Thread via GitHub


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

   :heavy_check_mark: Unit test coverage report - coverage increased from 38% 
to 38.1% (**+0.1%**)


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

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

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



(camel) branch regen_bot updated (e49a0ad390d -> f7f74776351)

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

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


from e49a0ad390d CAMEL-20727: camel-azure - Blob uploadPage should not read 
content into memory (#13995)
 add f7f74776351 Camel-15279: allow receipt-delivery-option for async 
AS2-MDN (#13994)

No new revisions were added by this update.

Summary of changes:
 .../org/apache/camel/catalog/components/as2.json   |  78 ++--
 .../as2/api/AS2AsyncMDNServerConnection.java   | 172 +
 .../as2/api/AS2AsyncMDNServerManager.java  |  35 ++
 .../as2/api/AS2AsynchronousMDNManager.java |  15 +-
 .../camel/component/as2/api/AS2ClientManager.java  |   6 +-
 .../component/as2/api/AS2ServerConnection.java |  33 +-
 .../component/as2/api/protocol/RequestAS2.java |   7 +
 .../component/as2/api/protocol/ResponseMDN.java|  45 ++-
 .../camel/component/as2/api/AS2MessageTest.java|  24 +-
 components/camel-as2/camel-as2-component/pom.xml   |   8 +
 ...AsyncMDNServerManagerEndpointConfiguration.java |  33 ++
 ...verManagerEndpointConfigurationConfigurer.java} |  22 +-
 .../as2/AS2ClientManagerEndpointConfiguration.java |  13 +-
 ...ientManagerEndpointConfigurationConfigurer.java |  14 +
 .../component/as2/AS2ConfigurationConfigurer.java  |  14 +
 .../camel/component/as2/AS2EndpointConfigurer.java |  14 +
 .../camel/component/as2/AS2EndpointUriFactory.java |   4 +-
 ...rverManagerEndpointConfigurationConfigurer.java |  14 +
 .../component/as2/internal/AS2ApiCollection.java   |  11 +-
 .../camel/component/as2/internal/AS2ApiName.java   |   4 +-
 .../AS2AsyncMDNServerManagerApiMethod.java |  48 +++
 .../as2/internal/AS2ClientManagerApiMethod.java|   3 +-
 .../org/apache/camel/component/as2/as2.json|  78 ++--
 ...2.AS2AsyncMDNServerManagerEndpointConfiguration |   2 +
 .../camel/component/as2/AS2AsyncMDNConsumer.java   | 142 +++
 .../apache/camel/component/as2/AS2Component.java   |   4 +-
 .../camel/component/as2/AS2Configuration.java  |  29 +-
 .../apache/camel/component/as2/AS2Endpoint.java|  36 +-
 .../as2/internal/AS2ConnectionHelper.java  |  54 ++-
 .../component/as2/AS2AsyncMDNServerManagerIT.java  | 426 +
 .../camel/component/as2/AS2ClientManagerIT.java|   2 +-
 .../camel/component/as2/AS2ServerManagerIT.java|  16 +-
 .../as2/CreateEndpointManualIssueTest.java |   2 +-
 .../ROOT/pages/camel-4x-upgrade-guide-4_6.adoc |   9 +
 .../builder/endpoint/StaticEndpointBuilders.java   |   4 +-
 .../endpoint/dsl/AS2EndpointBuilderFactory.java| 138 ++-
 .../apache/camel/kotlin/components/As2UriDsl.kt|  22 ++
 37 files changed, 1438 insertions(+), 143 deletions(-)
 create mode 100644 
components/camel-as2/camel-as2-api/src/main/java/org/apache/camel/component/as2/api/AS2AsyncMDNServerConnection.java
 create mode 100644 
components/camel-as2/camel-as2-api/src/main/java/org/apache/camel/component/as2/api/AS2AsyncMDNServerManager.java
 create mode 100644 
components/camel-as2/camel-as2-component/src/generated/java/org/apache/camel/component/as2/AS2AsyncMDNServerManagerEndpointConfiguration.java
 copy 
components/camel-as2/camel-as2-component/src/generated/java/org/apache/camel/component/as2/{AS2ServerManagerEndpointConfigurationConfigurer.java
 => AS2AsyncMDNServerManagerEndpointConfigurationConfigurer.java} (91%)
 create mode 100644 
components/camel-as2/camel-as2-component/src/generated/java/org/apache/camel/component/as2/internal/AS2AsyncMDNServerManagerApiMethod.java
 create mode 100644 
components/camel-as2/camel-as2-component/src/generated/resources/META-INF/services/org/apache/camel/configurer/org.apache.camel.component.as2.AS2AsyncMDNServerManagerEndpointConfiguration
 create mode 100644 
components/camel-as2/camel-as2-component/src/main/java/org/apache/camel/component/as2/AS2AsyncMDNConsumer.java
 create mode 100644 
components/camel-as2/camel-as2-component/src/test/java/org/apache/camel/component/as2/AS2AsyncMDNServerManagerIT.java



(camel) branch regen_bot updated (90427246fe8 -> e49a0ad390d)

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

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


from 90427246fe8 camel-jbang - Upgrade to Quarkus 3.10.0
 add e49a0ad390d CAMEL-20727: camel-azure - Blob uploadPage should not read 
content into memory (#13995)

No new revisions were added by this update.

Summary of changes:
 .../component/azure/storage/blob/operations/BlobOperations.java  | 9 -
 .../azure/storage/blob/integration/BlobOperationsIT.java | 8 
 2 files changed, 8 insertions(+), 9 deletions(-)



Re: [PR] Camel-15279: allow receipt-delivery-option for async AS2-MDN [camel]

2024-04-30 Thread via GitHub


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


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

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

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



(camel) branch camel-4.4.x updated: CAMEL-20727: camel-azure - Blob uploadPage should not read content into memory (#13995)

2024-04-30 Thread davsclaus
This is an automated email from the ASF dual-hosted git repository.

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


The following commit(s) were added to refs/heads/camel-4.4.x by this push:
 new 5fbd4b2fdf5 CAMEL-20727: camel-azure - Blob uploadPage should not read 
content into memory (#13995)
5fbd4b2fdf5 is described below

commit 5fbd4b2fdf5bb6d7c54b753b845a71262e02c315
Author: Claus Ibsen 
AuthorDate: Tue Apr 30 16:02:06 2024 +0200

CAMEL-20727: camel-azure - Blob uploadPage should not read content into 
memory (#13995)
---
 .../component/azure/storage/blob/operations/BlobOperations.java  | 9 -
 .../azure/storage/blob/integration/BlobOperationsIT.java | 8 
 2 files changed, 8 insertions(+), 9 deletions(-)

diff --git 
a/components/camel-azure/camel-azure-storage-blob/src/main/java/org/apache/camel/component/azure/storage/blob/operations/BlobOperations.java
 
b/components/camel-azure/camel-azure-storage-blob/src/main/java/org/apache/camel/component/azure/storage/blob/operations/BlobOperations.java
index a7f3cd8f2e6..9d3716bdebc 100644
--- 
a/components/camel-azure/camel-azure-storage-blob/src/main/java/org/apache/camel/component/azure/storage/blob/operations/BlobOperations.java
+++ 
b/components/camel-azure/camel-azure-storage-blob/src/main/java/org/apache/camel/component/azure/storage/blob/operations/BlobOperations.java
@@ -374,7 +374,7 @@ public class BlobOperations {
 return BlobOperationResponse.createWithEmptyBody(response);
 }
 
-public BlobOperationResponse uploadPageBlob(final Exchange exchange) 
throws IOException {
+public BlobOperationResponse uploadPageBlob(final Exchange exchange) 
throws Exception {
 ObjectHelper.notNull(exchange, MISSING_EXCHANGE);
 
 final boolean createPageBlob = 
configurationProxy.isCreatePageBlob(exchange);
@@ -384,22 +384,21 @@ public class BlobOperations {
 createPageBlob(exchange);
 }
 
-final BlobStreamAndLength streamAndLength = 
BlobStreamAndLength.createBlobStreamAndLengthFromExchangeBody(exchange);
+final InputStream is = 
exchange.getMessage().getMandatoryBody(InputStream.class);
 final BlobCommonRequestOptions requestOptions = 
getCommonRequestOptions(exchange);
 final PageRange pageRange = configurationProxy.getPageRange(exchange);
-
 if (pageRange == null) {
 throw new IllegalArgumentException("You need to set page range in 
the exchange headers.");
 }
 
 try {
 final Response response
-= client.uploadPageBlob(pageRange, 
streamAndLength.getInputStream(), requestOptions.getContentMD5(),
+= client.uploadPageBlob(pageRange, is, 
requestOptions.getContentMD5(),
 requestOptions.getBlobRequestConditions(), 
requestOptions.getTimeout());
 
 return BlobOperationResponse.createWithEmptyBody(response);
 } finally {
-closeInputStreamIfNeeded(streamAndLength.getInputStream());
+closeInputStreamIfNeeded(is);
 }
 }
 
diff --git 
a/components/camel-azure/camel-azure-storage-blob/src/test/java/org/apache/camel/component/azure/storage/blob/integration/BlobOperationsIT.java
 
b/components/camel-azure/camel-azure-storage-blob/src/test/java/org/apache/camel/component/azure/storage/blob/integration/BlobOperationsIT.java
index 4f6dee9314c..32fd56dbd2f 100644
--- 
a/components/camel-azure/camel-azure-storage-blob/src/test/java/org/apache/camel/component/azure/storage/blob/integration/BlobOperationsIT.java
+++ 
b/components/camel-azure/camel-azure-storage-blob/src/test/java/org/apache/camel/component/azure/storage/blob/integration/BlobOperationsIT.java
@@ -330,7 +330,7 @@ class BlobOperationsIT extends Base {
 }
 
 @Test
-void testCreateAndUploadPageBlob() throws IOException {
+void testCreateAndUploadPageBlob() throws Exception {
 final BlobClientWrapper blobClientWrapper = 
blobContainerClientWrapper.getBlobClientWrapper("upload_test_file.txt");
 final BlobOperations operations = new BlobOperations(configuration, 
blobClientWrapper);
 
@@ -361,7 +361,7 @@ class BlobOperationsIT extends Base {
 }
 
 @Test
-void testResizePageBlob() throws IOException {
+void testResizePageBlob() throws Exception {
 final BlobClientWrapper blobClientWrapper = 
blobContainerClientWrapper.getBlobClientWrapper("upload_test_file.txt");
 final BlobOperations operations = new BlobOperations(configuration, 
blobClientWrapper);
 
@@ -396,7 +396,7 @@ class BlobOperationsIT extends Base {
 }
 
 @Test
-void testClearPages() throws IOException {
+void testClearPages() throws Exception {
 final BlobClientWrapper blobClientWrapper = 
blobContainerClientWrapper.getBlobClientWrapper("upload_test_file.txt");
 final BlobOperations operations = new 

(camel) branch main updated: CAMEL-20727: camel-azure - Blob uploadPage should not read content into memory (#13995)

2024-04-30 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 e49a0ad390d CAMEL-20727: camel-azure - Blob uploadPage should not read 
content into memory (#13995)
e49a0ad390d is described below

commit e49a0ad390d237a4a76495136e79537d795e0f0a
Author: Claus Ibsen 
AuthorDate: Tue Apr 30 16:02:06 2024 +0200

CAMEL-20727: camel-azure - Blob uploadPage should not read content into 
memory (#13995)
---
 .../component/azure/storage/blob/operations/BlobOperations.java  | 9 -
 .../azure/storage/blob/integration/BlobOperationsIT.java | 8 
 2 files changed, 8 insertions(+), 9 deletions(-)

diff --git 
a/components/camel-azure/camel-azure-storage-blob/src/main/java/org/apache/camel/component/azure/storage/blob/operations/BlobOperations.java
 
b/components/camel-azure/camel-azure-storage-blob/src/main/java/org/apache/camel/component/azure/storage/blob/operations/BlobOperations.java
index a7f3cd8f2e6..9d3716bdebc 100644
--- 
a/components/camel-azure/camel-azure-storage-blob/src/main/java/org/apache/camel/component/azure/storage/blob/operations/BlobOperations.java
+++ 
b/components/camel-azure/camel-azure-storage-blob/src/main/java/org/apache/camel/component/azure/storage/blob/operations/BlobOperations.java
@@ -374,7 +374,7 @@ public class BlobOperations {
 return BlobOperationResponse.createWithEmptyBody(response);
 }
 
-public BlobOperationResponse uploadPageBlob(final Exchange exchange) 
throws IOException {
+public BlobOperationResponse uploadPageBlob(final Exchange exchange) 
throws Exception {
 ObjectHelper.notNull(exchange, MISSING_EXCHANGE);
 
 final boolean createPageBlob = 
configurationProxy.isCreatePageBlob(exchange);
@@ -384,22 +384,21 @@ public class BlobOperations {
 createPageBlob(exchange);
 }
 
-final BlobStreamAndLength streamAndLength = 
BlobStreamAndLength.createBlobStreamAndLengthFromExchangeBody(exchange);
+final InputStream is = 
exchange.getMessage().getMandatoryBody(InputStream.class);
 final BlobCommonRequestOptions requestOptions = 
getCommonRequestOptions(exchange);
 final PageRange pageRange = configurationProxy.getPageRange(exchange);
-
 if (pageRange == null) {
 throw new IllegalArgumentException("You need to set page range in 
the exchange headers.");
 }
 
 try {
 final Response response
-= client.uploadPageBlob(pageRange, 
streamAndLength.getInputStream(), requestOptions.getContentMD5(),
+= client.uploadPageBlob(pageRange, is, 
requestOptions.getContentMD5(),
 requestOptions.getBlobRequestConditions(), 
requestOptions.getTimeout());
 
 return BlobOperationResponse.createWithEmptyBody(response);
 } finally {
-closeInputStreamIfNeeded(streamAndLength.getInputStream());
+closeInputStreamIfNeeded(is);
 }
 }
 
diff --git 
a/components/camel-azure/camel-azure-storage-blob/src/test/java/org/apache/camel/component/azure/storage/blob/integration/BlobOperationsIT.java
 
b/components/camel-azure/camel-azure-storage-blob/src/test/java/org/apache/camel/component/azure/storage/blob/integration/BlobOperationsIT.java
index 4f6dee9314c..32fd56dbd2f 100644
--- 
a/components/camel-azure/camel-azure-storage-blob/src/test/java/org/apache/camel/component/azure/storage/blob/integration/BlobOperationsIT.java
+++ 
b/components/camel-azure/camel-azure-storage-blob/src/test/java/org/apache/camel/component/azure/storage/blob/integration/BlobOperationsIT.java
@@ -330,7 +330,7 @@ class BlobOperationsIT extends Base {
 }
 
 @Test
-void testCreateAndUploadPageBlob() throws IOException {
+void testCreateAndUploadPageBlob() throws Exception {
 final BlobClientWrapper blobClientWrapper = 
blobContainerClientWrapper.getBlobClientWrapper("upload_test_file.txt");
 final BlobOperations operations = new BlobOperations(configuration, 
blobClientWrapper);
 
@@ -361,7 +361,7 @@ class BlobOperationsIT extends Base {
 }
 
 @Test
-void testResizePageBlob() throws IOException {
+void testResizePageBlob() throws Exception {
 final BlobClientWrapper blobClientWrapper = 
blobContainerClientWrapper.getBlobClientWrapper("upload_test_file.txt");
 final BlobOperations operations = new BlobOperations(configuration, 
blobClientWrapper);
 
@@ -396,7 +396,7 @@ class BlobOperationsIT extends Base {
 }
 
 @Test
-void testClearPages() throws IOException {
+void testClearPages() throws Exception {
 final BlobClientWrapper blobClientWrapper = 
blobContainerClientWrapper.getBlobClientWrapper("upload_test_file.txt");
 final BlobOperations operations = new BlobOperations(configuration, 

(camel) branch azure-blob deleted (was b1b4a7609c4)

2024-04-30 Thread davsclaus
This is an automated email from the ASF dual-hosted git repository.

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


 was b1b4a7609c4 CAMEL-20727: camel-azure - Blob uploadPage should not read 
content into memory

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] CAMEL-20727: camel-azure - Blob uploadPage should not read content in… [camel]

2024-04-30 Thread via GitHub


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


-- 
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] Missing license header files [camel-k]

2024-04-30 Thread via GitHub


gansheer commented on issue #5433:
URL: https://github.com/apache/camel-k/issues/5433#issuecomment-2085419839

   How did you find these ? I used the check_licenses.sh script and it did not 
see these files.


-- 
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] Experiment - disable E2E test copy optimizations [camel-k]

2024-04-30 Thread via GitHub


christophd closed pull request #5437: Experiment - disable E2E test copy 
optimizations
URL: https://github.com/apache/camel-k/pull/5437


-- 
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.3.x updated: chore(e2e): Allow to disable copy optimizations on E2E tests

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

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


The following commit(s) were added to refs/heads/release-2.3.x by this push:
 new c6c1f743a chore(e2e): Allow to disable copy optimizations on E2E tests
c6c1f743a is described below

commit c6c1f743ac4511a8dedd6c250fb80ee816ce1e48
Author: Christoph Deppisch 
AuthorDate: Tue Apr 30 10:24:02 2024 +0200

chore(e2e): Allow to disable copy optimizations on E2E tests

- Provide envvars to the user to enable/disable copy catalog e2e test 
optimization
- Provide envvars to the user to enable/disable copy integration kit e2e 
test optimization
- Add some documentation on available e2e test envvars
---
 e2e/README.md   | 35 +++
 e2e/support/test_support.go | 10 ++
 2 files changed, 41 insertions(+), 4 deletions(-)

diff --git a/e2e/README.md b/e2e/README.md
index a4ddf63d3..4119885a9 100644
--- a/e2e/README.md
+++ b/e2e/README.md
@@ -1,4 +1,4 @@
-# Camel K End To End tests
+# Camel K End-To-End tests
 
 This directory contains the suite of test that are run on a CI to ensure the 
stability of the product and no regression are introduced at each PR. The full 
documentation can be found at 
https://camel.apache.org/camel-k/next/contributing/e2e.html
 
@@ -31,9 +31,9 @@ Additional set of test that cover the main common features 
but that requires som
 
 Test suite that cover the different installation procedures we offer and any 
upgrade scenario.
 
-### KNative
+### Knative
 
-Test suite that cover the features associated with KNative. This test will 
assume the presence of a namespaced operator (installation provided by the same 
test execution suite) togheter with KNative operator configuration.
+Test suite that cover the features associated with Knative. This test will 
assume the presence of a namespaced operator (installation provided by the same 
test execution suite) togheter with Knative operator configuration.
 
 ### Native
 
@@ -45,4 +45,31 @@ Test suite that cover the features associated with Telemetry 
feature. The test e
 
 ### Yaks
 
-Test suite that cover certain KNative features togheter with YAKS operator.
+Test suite that cover certain Knative features togheter with YAKS operator.
+
+## Environment variables
+
+You can set some environment variables to change the behavior of the E2E test 
suite.
+
+| Env | Default
 | Description  
 |
+|-|-|---|
+| CAMEL_K_TEST_SKIP_PROBLEMATIC   | false  
 | Skips tests that are marked to be problematic (flaky) on certain 
environments (e.g. on OpenShift).|
+| CAMEL_K_TEST_SAVE_FAILED_TEST_NAMESPACE | false  
 | Used to not remove the temporary test namespaces after the test run. 
Enables better analysis of resources after the test  |
+| CAMEL_K_TEST_LOG_LEVEL  | info   
 | Logging level used to run the tests and used in Maven commands run by 
the operator (if level is `debug` the Maven commands use `-X` option).  |
+| CAMEL_K_TEST_MAVEN_CLI_OPTIONS  | {} 
 | Maven CLI options used to run Camel K integrations during the tests. 
 |
+| CAMEL_K_TEST_OPERATOR_IMAGE | 
docker.io/apache/camel-k:2.4.0-SNAPSHOT | Camel K operator image used in 
operator installation.  
   |
+| CAMEL_K_TEST_OPERATOR_IMAGE_PULL_POLICY | -  
 | Operator image pull policy.  
 |
+| CAMEL_K_TEST_IMAGE_NAME | docker.io/apache/camel-k   
 | Camel K operator image name used in operator installation.   
 |
+| CAMEL_K_TEST_IMAGE_VERSION  | 2.4.0-SNAPSHOT 
 | Camel K operator image version used in operator installation. Value is 
retrieved from `pkg/util/defaults/defaults.go` |
+| CAMEL_K_TEST_NO_OLM_OPERATOR_IMAGE  | 
docker.io/apache/camel-k:2.4.0-SNAPSHOT | Camel K operator image used in non 
OLM based operator installation.

Re: [PR] [Backport-2.3.x] chore(e2e): Allow to disable copy optimizations on E2E tests [camel-k]

2024-04-30 Thread via GitHub


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


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

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

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



(camel) branch regen_bot updated (014e1eb7b67 -> 90427246fe8)

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

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


from 014e1eb7b67 Update known releases in catalog
 add 665d58302dd CAMEL-20727: camel-azure - Data lake upload should not 
read content into memory (#13993)
 add 90427246fe8 camel-jbang - Upgrade to Quarkus 3.10.0

No new revisions were added by this update.

Summary of changes:
 .../camel/component/azure/storage/datalake/DataLakeProducer.java| 4 +---
 .../azure/storage/datalake/operations/DataLakeFileOperations.java   | 6 +++---
 .../org/apache/camel/dsl/jbang/core/commands/ExportBaseCommand.java | 4 ++--
 .../src/main/java/org/apache/camel/dsl/jbang/core/commands/Run.java | 4 ++--
 .../camel/dsl/jbang/core/commands/catalog/CatalogBaseCommand.java   | 2 +-
 5 files changed, 9 insertions(+), 11 deletions(-)



(camel) branch main updated: camel-jbang - Upgrade to Quarkus 3.10.0

2024-04-30 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 90427246fe8 camel-jbang - Upgrade to Quarkus 3.10.0
90427246fe8 is described below

commit 90427246fe81e8280365ef2c90096952996819c6
Author: Claus Ibsen 
AuthorDate: Tue Apr 30 15:47:21 2024 +0200

camel-jbang - Upgrade to Quarkus 3.10.0
---
 .../org/apache/camel/dsl/jbang/core/commands/ExportBaseCommand.java   | 4 ++--
 .../src/main/java/org/apache/camel/dsl/jbang/core/commands/Run.java   | 4 ++--
 .../camel/dsl/jbang/core/commands/catalog/CatalogBaseCommand.java | 2 +-
 3 files changed, 5 insertions(+), 5 deletions(-)

diff --git 
a/dsl/camel-jbang/camel-jbang-core/src/main/java/org/apache/camel/dsl/jbang/core/commands/ExportBaseCommand.java
 
b/dsl/camel-jbang/camel-jbang-core/src/main/java/org/apache/camel/dsl/jbang/core/commands/ExportBaseCommand.java
index a3df4f79217..e01a9fc7622 100644
--- 
a/dsl/camel-jbang/camel-jbang-core/src/main/java/org/apache/camel/dsl/jbang/core/commands/ExportBaseCommand.java
+++ 
b/dsl/camel-jbang/camel-jbang-core/src/main/java/org/apache/camel/dsl/jbang/core/commands/ExportBaseCommand.java
@@ -163,8 +163,8 @@ abstract class ExportBaseCommand extends CamelCommand {
 protected String quarkusArtifactId = "quarkus-bom";
 
 @CommandLine.Option(names = { "--quarkus-version" }, description = 
"Quarkus Platform version",
-defaultValue = "3.9.4")
-protected String quarkusVersion = "3.9.4";
+defaultValue = "3.10.0")
+protected String quarkusVersion = "3.10.0";
 
 @CommandLine.Option(names = { "--maven-wrapper" }, defaultValue = "true",
 description = "Include Maven Wrapper files in exported 
project")
diff --git 
a/dsl/camel-jbang/camel-jbang-core/src/main/java/org/apache/camel/dsl/jbang/core/commands/Run.java
 
b/dsl/camel-jbang/camel-jbang-core/src/main/java/org/apache/camel/dsl/jbang/core/commands/Run.java
index c27923ca164..cdb3b1ee490 100644
--- 
a/dsl/camel-jbang/camel-jbang-core/src/main/java/org/apache/camel/dsl/jbang/core/commands/Run.java
+++ 
b/dsl/camel-jbang/camel-jbang-core/src/main/java/org/apache/camel/dsl/jbang/core/commands/Run.java
@@ -141,8 +141,8 @@ public class Run extends CamelCommand {
 String kameletsVersion;
 
 @Option(names = { "--quarkus-version" }, description = "Quarkus Platform 
version",
-defaultValue = "3.9.4")
-String quarkusVersion = "3.9.4";
+defaultValue = "3.10.0")
+String quarkusVersion = "3.10.0";
 
 @Option(names = { "--spring-boot-version" }, description = "Spring Boot 
version",
 defaultValue = "3.2.5")
diff --git 
a/dsl/camel-jbang/camel-jbang-core/src/main/java/org/apache/camel/dsl/jbang/core/commands/catalog/CatalogBaseCommand.java
 
b/dsl/camel-jbang/camel-jbang-core/src/main/java/org/apache/camel/dsl/jbang/core/commands/catalog/CatalogBaseCommand.java
index bd2976f4d88..4c75c63e509 100644
--- 
a/dsl/camel-jbang/camel-jbang-core/src/main/java/org/apache/camel/dsl/jbang/core/commands/catalog/CatalogBaseCommand.java
+++ 
b/dsl/camel-jbang/camel-jbang-core/src/main/java/org/apache/camel/dsl/jbang/core/commands/catalog/CatalogBaseCommand.java
@@ -49,7 +49,7 @@ public abstract class CatalogBaseCommand extends CamelCommand 
{
 String runtime;
 
 @CommandLine.Option(names = { "--quarkus-version" }, description = 
"Quarkus Platform version",
-defaultValue = "3.9.4")
+defaultValue = "3.10.0")
 String quarkusVersion;
 
 @CommandLine.Option(names = { "--repos" },



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

2024-04-30 Thread Apache Infrastructure


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



(camel-website-pub) branch asf-site updated (47012884b1 -> 891a2b2a0e)

2024-04-30 Thread git-site-role
This is an automated email from the ASF dual-hosted git repository.

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


 discard 47012884b1 Website updated to eff4313cecfd55ebba8529099e5987c2d4151ca0
 discard 1053fb6d9c Website updated to 325e929157412b27394080f4d4dba3d821476ddf
 new d2908bcde1 Website updated to 325e929157412b27394080f4d4dba3d821476ddf
 new 891a2b2a0e Website updated to eff4313cecfd55ebba8529099e5987c2d4151ca0

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   (47012884b1)
\
 N -- N -- N   refs/heads/asf-site (891a2b2a0e)

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

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

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


Summary of changes:
 .htaccess |   82 +-
 .well-known/security.txt  |2 +-
 camel-kamelets/4.0.x/index.html   |2 +-
 camel-kamelets/4.4.x/index.html   |2 +-
 camel-kamelets/next/index.html|2 +-
 site-manifest.json|2 +-
 sitemap-camel-core.xml|   14 +-
 sitemap-camel-k.xml   |  906 +++---
 sitemap-camel-kafka-connector.xml |  824 +++---
 sitemap-camel-kamelets.xml| 1402 -
 sitemap-camel-karaf.xml   |   24 +-
 sitemap-camel-quarkus.xml | 2024 ++---
 sitemap-camel-spring-boot.xml |   56 +-
 sitemap-components.xml| 5776 ++---
 sitemap-manual.xml|  426 +--
 15 files changed, 5772 insertions(+), 5772 deletions(-)



Re: [PR] CAMEL-20727: camel-azure - Blob uploadPage should not read content in… [camel]

2024-04-30 Thread via GitHub


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

   :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 azure-blob created (now b1b4a7609c4)

2024-04-30 Thread davsclaus
This is an automated email from the ASF dual-hosted git repository.

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


  at b1b4a7609c4 CAMEL-20727: camel-azure - Blob uploadPage should not read 
content into memory

This branch includes the following new commits:

 new b1b4a7609c4 CAMEL-20727: camel-azure - Blob uploadPage should not read 
content into memory

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) 01/01: CAMEL-20727: camel-azure - Blob uploadPage should not read content into memory

2024-04-30 Thread davsclaus
This is an automated email from the ASF dual-hosted git repository.

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

commit b1b4a7609c4d91989585fbd1866026445c202bf3
Author: Claus Ibsen 
AuthorDate: Tue Apr 30 15:43:06 2024 +0200

CAMEL-20727: camel-azure - Blob uploadPage should not read content into 
memory
---
 .../component/azure/storage/blob/operations/BlobOperations.java  | 9 -
 .../azure/storage/blob/integration/BlobOperationsIT.java | 8 
 2 files changed, 8 insertions(+), 9 deletions(-)

diff --git 
a/components/camel-azure/camel-azure-storage-blob/src/main/java/org/apache/camel/component/azure/storage/blob/operations/BlobOperations.java
 
b/components/camel-azure/camel-azure-storage-blob/src/main/java/org/apache/camel/component/azure/storage/blob/operations/BlobOperations.java
index a7f3cd8f2e6..9d3716bdebc 100644
--- 
a/components/camel-azure/camel-azure-storage-blob/src/main/java/org/apache/camel/component/azure/storage/blob/operations/BlobOperations.java
+++ 
b/components/camel-azure/camel-azure-storage-blob/src/main/java/org/apache/camel/component/azure/storage/blob/operations/BlobOperations.java
@@ -374,7 +374,7 @@ public class BlobOperations {
 return BlobOperationResponse.createWithEmptyBody(response);
 }
 
-public BlobOperationResponse uploadPageBlob(final Exchange exchange) 
throws IOException {
+public BlobOperationResponse uploadPageBlob(final Exchange exchange) 
throws Exception {
 ObjectHelper.notNull(exchange, MISSING_EXCHANGE);
 
 final boolean createPageBlob = 
configurationProxy.isCreatePageBlob(exchange);
@@ -384,22 +384,21 @@ public class BlobOperations {
 createPageBlob(exchange);
 }
 
-final BlobStreamAndLength streamAndLength = 
BlobStreamAndLength.createBlobStreamAndLengthFromExchangeBody(exchange);
+final InputStream is = 
exchange.getMessage().getMandatoryBody(InputStream.class);
 final BlobCommonRequestOptions requestOptions = 
getCommonRequestOptions(exchange);
 final PageRange pageRange = configurationProxy.getPageRange(exchange);
-
 if (pageRange == null) {
 throw new IllegalArgumentException("You need to set page range in 
the exchange headers.");
 }
 
 try {
 final Response response
-= client.uploadPageBlob(pageRange, 
streamAndLength.getInputStream(), requestOptions.getContentMD5(),
+= client.uploadPageBlob(pageRange, is, 
requestOptions.getContentMD5(),
 requestOptions.getBlobRequestConditions(), 
requestOptions.getTimeout());
 
 return BlobOperationResponse.createWithEmptyBody(response);
 } finally {
-closeInputStreamIfNeeded(streamAndLength.getInputStream());
+closeInputStreamIfNeeded(is);
 }
 }
 
diff --git 
a/components/camel-azure/camel-azure-storage-blob/src/test/java/org/apache/camel/component/azure/storage/blob/integration/BlobOperationsIT.java
 
b/components/camel-azure/camel-azure-storage-blob/src/test/java/org/apache/camel/component/azure/storage/blob/integration/BlobOperationsIT.java
index 4f6dee9314c..32fd56dbd2f 100644
--- 
a/components/camel-azure/camel-azure-storage-blob/src/test/java/org/apache/camel/component/azure/storage/blob/integration/BlobOperationsIT.java
+++ 
b/components/camel-azure/camel-azure-storage-blob/src/test/java/org/apache/camel/component/azure/storage/blob/integration/BlobOperationsIT.java
@@ -330,7 +330,7 @@ class BlobOperationsIT extends Base {
 }
 
 @Test
-void testCreateAndUploadPageBlob() throws IOException {
+void testCreateAndUploadPageBlob() throws Exception {
 final BlobClientWrapper blobClientWrapper = 
blobContainerClientWrapper.getBlobClientWrapper("upload_test_file.txt");
 final BlobOperations operations = new BlobOperations(configuration, 
blobClientWrapper);
 
@@ -361,7 +361,7 @@ class BlobOperationsIT extends Base {
 }
 
 @Test
-void testResizePageBlob() throws IOException {
+void testResizePageBlob() throws Exception {
 final BlobClientWrapper blobClientWrapper = 
blobContainerClientWrapper.getBlobClientWrapper("upload_test_file.txt");
 final BlobOperations operations = new BlobOperations(configuration, 
blobClientWrapper);
 
@@ -396,7 +396,7 @@ class BlobOperationsIT extends Base {
 }
 
 @Test
-void testClearPages() throws IOException {
+void testClearPages() throws Exception {
 final BlobClientWrapper blobClientWrapper = 
blobContainerClientWrapper.getBlobClientWrapper("upload_test_file.txt");
 final BlobOperations operations = new BlobOperations(configuration, 
blobClientWrapper);
 
@@ -426,7 +426,7 @@ class BlobOperationsIT extends Base {
 }
 
 @Test
-void testGetPageBlobRanges() throws IOException {
+void testGetPageBlobRanges() throws Exception {
 

[PR] CAMEL-20727: camel-azure - Blob uploadPage should not read content in… [camel]

2024-04-30 Thread via GitHub


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

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


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

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

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



Re: [PR] fixes(#5439): Build should enforce a required jdk version [camel-k]

2024-04-30 Thread via GitHub


squakez commented on code in PR #5440:
URL: https://github.com/apache/camel-k/pull/5440#discussion_r1584818308


##
script/check_jdk_version.go:
##
@@ -0,0 +1,33 @@
+package main

Review Comment:
   We have a cmd/util directory where we should host any tool. Please, keep the 
same structure.



##
script/check_jdk_version.go:
##
@@ -0,0 +1,33 @@
+package main
+
+import (
+   "fmt"
+   "os/exec"
+   "regexp"
+   "strconv"
+)
+
+func main() {
+
+   cmd := exec.Command("java", "-version")
+   output, err := cmd.CombinedOutput()
+   if err != nil {
+   panic(fmt.Sprintf("Error: %v\n", err))
+   }
+
+   versionStr := string(output)
+   versionRegex := regexp.MustCompile(`version 
"?([1-9]+)(\.([0-9]+)){2,3}"?`)
+   matches := versionRegex.FindStringSubmatch(versionStr)
+   if len(matches) < 2 {
+   panic(fmt.Sprintf("Unable to determine Java version: %s\n", 
versionStr))

Review Comment:
   IMO we should not panic. We cannot test all the possible JDK out there to 
make sure they return the expected text.



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

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

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



(camel) branch regen_bot updated (a46b871d6b5 -> 014e1eb7b67)

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

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


from a46b871d6b5 Camel-Milvus: Upgrade Available operations in Headers 
metadata (#13992)
 add 014e1eb7b67 Update known releases in catalog

No new revisions were added by this update.

Summary of changes:
 .../org/apache/camel/catalog/releases/camel-quarkus-releases.json| 5 +
 1 file changed, 5 insertions(+)



(camel) branch camel-4.4.x updated: CAMEL-20727: camel-azure - Data lake upload should not read content into memory (#13993)

2024-04-30 Thread davsclaus
This is an automated email from the ASF dual-hosted git repository.

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


The following commit(s) were added to refs/heads/camel-4.4.x by this push:
 new 743db5c7a62 CAMEL-20727: camel-azure - Data lake upload should not 
read content into memory (#13993)
743db5c7a62 is described below

commit 743db5c7a624b2b6c99a9ab0d49dca39db1861e0
Author: Claus Ibsen 
AuthorDate: Tue Apr 30 15:23:53 2024 +0200

CAMEL-20727: camel-azure - Data lake upload should not read content into 
memory (#13993)
---
 .../camel/component/azure/storage/datalake/DataLakeProducer.java| 4 +---
 .../azure/storage/datalake/operations/DataLakeFileOperations.java   | 6 +++---
 2 files changed, 4 insertions(+), 6 deletions(-)

diff --git 
a/components/camel-azure/camel-azure-storage-datalake/src/main/java/org/apache/camel/component/azure/storage/datalake/DataLakeProducer.java
 
b/components/camel-azure/camel-azure-storage-datalake/src/main/java/org/apache/camel/component/azure/storage/datalake/DataLakeProducer.java
index 8860252b9d4..ab0af314c6e 100644
--- 
a/components/camel-azure/camel-azure-storage-datalake/src/main/java/org/apache/camel/component/azure/storage/datalake/DataLakeProducer.java
+++ 
b/components/camel-azure/camel-azure-storage-datalake/src/main/java/org/apache/camel/component/azure/storage/datalake/DataLakeProducer.java
@@ -16,8 +16,6 @@
  */
 package org.apache.camel.component.azure.storage.datalake;
 
-import java.io.IOException;
-
 import org.apache.camel.Endpoint;
 import org.apache.camel.Exchange;
 import 
org.apache.camel.component.azure.storage.datalake.client.DataLakeDirectoryClientWrapper;
@@ -50,7 +48,7 @@ public class DataLakeProducer extends DefaultProducer {
 }
 
 @Override
-public void process(Exchange exchange) throws IllegalArgumentException, 
IOException {
+public void process(Exchange exchange) throws Exception {
 DataLakeOperationsDefinition operation = determineOperation(exchange);
 switch (operation) {
 case listFileSystem:
diff --git 
a/components/camel-azure/camel-azure-storage-datalake/src/main/java/org/apache/camel/component/azure/storage/datalake/operations/DataLakeFileOperations.java
 
b/components/camel-azure/camel-azure-storage-datalake/src/main/java/org/apache/camel/component/azure/storage/datalake/operations/DataLakeFileOperations.java
index dcdd6fa4938..72ab8856a89 100644
--- 
a/components/camel-azure/camel-azure-storage-datalake/src/main/java/org/apache/camel/component/azure/storage/datalake/operations/DataLakeFileOperations.java
+++ 
b/components/camel-azure/camel-azure-storage-datalake/src/main/java/org/apache/camel/component/azure/storage/datalake/operations/DataLakeFileOperations.java
@@ -203,15 +203,15 @@ public class DataLakeFileOperations {
 return new DataLakeOperationResponse(true);
 }
 
-public DataLakeOperationResponse upload(final Exchange exchange) throws 
IOException {
+public DataLakeOperationResponse upload(final Exchange exchange) throws 
Exception {
 final FileCommonRequestOptions commonRequestOptions = 
getCommonRequestOptions(exchange);
 final ParallelTransferOptions transferOptions = 
configurationProxy.getParallelTransferOptions(exchange);
-final FileStreamAndLength fileStreamAndLength = 
FileStreamAndLength.createFileStreamAndLengthFromExchangeBody(exchange);
+final InputStream is = 
exchange.getMessage().getMandatoryBody(InputStream.class);
 final String permission = configurationProxy.getPermission(exchange);
 final String umask = configurationProxy.getUmask(exchange);
 
 final FileParallelUploadOptions uploadOptions
-= new 
FileParallelUploadOptions(fileStreamAndLength.getInputStream())
+= new FileParallelUploadOptions(is)
 
.setHeaders(commonRequestOptions.getPathHttpHeaders()).setParallelTransferOptions(transferOptions)
 
.setMetadata(commonRequestOptions.getMetadata()).setPermissions(permission)
 
.setRequestConditions(commonRequestOptions.getRequestConditions())



(camel) branch azure-upload deleted (was 4ca44022338)

2024-04-30 Thread davsclaus
This is an automated email from the ASF dual-hosted git repository.

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


 was 4ca44022338 CAMEL-20727: camel-azure - Data lake upload should not 
read content into memory

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



(camel) branch main updated: CAMEL-20727: camel-azure - Data lake upload should not read content into memory (#13993)

2024-04-30 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 665d58302dd CAMEL-20727: camel-azure - Data lake upload should not 
read content into memory (#13993)
665d58302dd is described below

commit 665d58302dd5032fe7b393a42d8e4cd68c4fbfda
Author: Claus Ibsen 
AuthorDate: Tue Apr 30 15:23:53 2024 +0200

CAMEL-20727: camel-azure - Data lake upload should not read content into 
memory (#13993)
---
 .../camel/component/azure/storage/datalake/DataLakeProducer.java| 4 +---
 .../azure/storage/datalake/operations/DataLakeFileOperations.java   | 6 +++---
 2 files changed, 4 insertions(+), 6 deletions(-)

diff --git 
a/components/camel-azure/camel-azure-storage-datalake/src/main/java/org/apache/camel/component/azure/storage/datalake/DataLakeProducer.java
 
b/components/camel-azure/camel-azure-storage-datalake/src/main/java/org/apache/camel/component/azure/storage/datalake/DataLakeProducer.java
index 8860252b9d4..ab0af314c6e 100644
--- 
a/components/camel-azure/camel-azure-storage-datalake/src/main/java/org/apache/camel/component/azure/storage/datalake/DataLakeProducer.java
+++ 
b/components/camel-azure/camel-azure-storage-datalake/src/main/java/org/apache/camel/component/azure/storage/datalake/DataLakeProducer.java
@@ -16,8 +16,6 @@
  */
 package org.apache.camel.component.azure.storage.datalake;
 
-import java.io.IOException;
-
 import org.apache.camel.Endpoint;
 import org.apache.camel.Exchange;
 import 
org.apache.camel.component.azure.storage.datalake.client.DataLakeDirectoryClientWrapper;
@@ -50,7 +48,7 @@ public class DataLakeProducer extends DefaultProducer {
 }
 
 @Override
-public void process(Exchange exchange) throws IllegalArgumentException, 
IOException {
+public void process(Exchange exchange) throws Exception {
 DataLakeOperationsDefinition operation = determineOperation(exchange);
 switch (operation) {
 case listFileSystem:
diff --git 
a/components/camel-azure/camel-azure-storage-datalake/src/main/java/org/apache/camel/component/azure/storage/datalake/operations/DataLakeFileOperations.java
 
b/components/camel-azure/camel-azure-storage-datalake/src/main/java/org/apache/camel/component/azure/storage/datalake/operations/DataLakeFileOperations.java
index dcdd6fa4938..72ab8856a89 100644
--- 
a/components/camel-azure/camel-azure-storage-datalake/src/main/java/org/apache/camel/component/azure/storage/datalake/operations/DataLakeFileOperations.java
+++ 
b/components/camel-azure/camel-azure-storage-datalake/src/main/java/org/apache/camel/component/azure/storage/datalake/operations/DataLakeFileOperations.java
@@ -203,15 +203,15 @@ public class DataLakeFileOperations {
 return new DataLakeOperationResponse(true);
 }
 
-public DataLakeOperationResponse upload(final Exchange exchange) throws 
IOException {
+public DataLakeOperationResponse upload(final Exchange exchange) throws 
Exception {
 final FileCommonRequestOptions commonRequestOptions = 
getCommonRequestOptions(exchange);
 final ParallelTransferOptions transferOptions = 
configurationProxy.getParallelTransferOptions(exchange);
-final FileStreamAndLength fileStreamAndLength = 
FileStreamAndLength.createFileStreamAndLengthFromExchangeBody(exchange);
+final InputStream is = 
exchange.getMessage().getMandatoryBody(InputStream.class);
 final String permission = configurationProxy.getPermission(exchange);
 final String umask = configurationProxy.getUmask(exchange);
 
 final FileParallelUploadOptions uploadOptions
-= new 
FileParallelUploadOptions(fileStreamAndLength.getInputStream())
+= new FileParallelUploadOptions(is)
 
.setHeaders(commonRequestOptions.getPathHttpHeaders()).setParallelTransferOptions(transferOptions)
 
.setMetadata(commonRequestOptions.getMetadata()).setPermissions(permission)
 
.setRequestConditions(commonRequestOptions.getRequestConditions())



Re: [PR] CAMEL-20727: camel-azure - Data lake upload should not read content i… [camel]

2024-04-30 Thread via GitHub


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


-- 
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 (a46b871d6b5 -> 014e1eb7b67)

2024-04-30 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 a46b871d6b5 Camel-Milvus: Upgrade Available operations in Headers 
metadata (#13992)
 add 014e1eb7b67 Update known releases in catalog

No new revisions were added by this update.

Summary of changes:
 .../org/apache/camel/catalog/releases/camel-quarkus-releases.json| 5 +
 1 file changed, 5 insertions(+)



[PR] Camel-15279: allow receipt-delivery-option for async AS2-MDN [camel]

2024-04-30 Thread via GitHub


jono-morris opened a new pull request, #13994:
URL: https://github.com/apache/camel/pull/13994

   # Description
   
   
   
   Added a configuration option allowing AS2 senders to request an asynchronous 
'message disposition notification' (receipt) from message recipients.   This is 
achieved by including the 'Receipt-Delivery-Option' header in the request 
specifying the return-url that the receipt should be sent to.  If this head is 
not included the receipt is returned synchronously.
   
   Also added a consumer capable of receiving signed or unsigned AS2-MDNs 
returned asynchronously by the message receiver on a separate connection.
   
   # 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: [PR] Camel-15279: allow receipt-delivery-option for async AS2-MDN [camel]

2024-04-30 Thread via GitHub


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

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


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

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

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



Re: [PR] Camel-15279: allow receipt-delivery-option for async AS2-MDN [camel]

2024-04-30 Thread via GitHub


jono-morris commented on PR #13994:
URL: https://github.com/apache/camel/pull/13994#issuecomment-2085319602

   /component-test as2


-- 
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-15279: allow receipt-delivery-option for async AS2-MDN [camel]

2024-04-30 Thread via GitHub


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

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


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

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

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



Re: [PR] CAMEL-20727: camel-azure - Data lake upload should not read content i… [camel]

2024-04-30 Thread via GitHub


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

   :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-20727: camel-azure - Data lake upload should not read content i… [camel]

2024-04-30 Thread via GitHub


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

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


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

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

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



(camel) branch azure-upload created (now 4ca44022338)

2024-04-30 Thread davsclaus
This is an automated email from the ASF dual-hosted git repository.

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


  at 4ca44022338 CAMEL-20727: camel-azure - Data lake upload should not 
read content into memory

This branch includes the following new commits:

 new 4ca44022338 CAMEL-20727: camel-azure - Data lake upload should not 
read content into memory

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) 01/01: CAMEL-20727: camel-azure - Data lake upload should not read content into memory

2024-04-30 Thread davsclaus
This is an automated email from the ASF dual-hosted git repository.

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

commit 4ca440223380017f0e6a471ebb6b5f8f7c68e961
Author: Claus Ibsen 
AuthorDate: Tue Apr 30 15:10:14 2024 +0200

CAMEL-20727: camel-azure - Data lake upload should not read content into 
memory
---
 .../camel/component/azure/storage/datalake/DataLakeProducer.java| 4 +---
 .../azure/storage/datalake/operations/DataLakeFileOperations.java   | 6 +++---
 2 files changed, 4 insertions(+), 6 deletions(-)

diff --git 
a/components/camel-azure/camel-azure-storage-datalake/src/main/java/org/apache/camel/component/azure/storage/datalake/DataLakeProducer.java
 
b/components/camel-azure/camel-azure-storage-datalake/src/main/java/org/apache/camel/component/azure/storage/datalake/DataLakeProducer.java
index 8860252b9d4..ab0af314c6e 100644
--- 
a/components/camel-azure/camel-azure-storage-datalake/src/main/java/org/apache/camel/component/azure/storage/datalake/DataLakeProducer.java
+++ 
b/components/camel-azure/camel-azure-storage-datalake/src/main/java/org/apache/camel/component/azure/storage/datalake/DataLakeProducer.java
@@ -16,8 +16,6 @@
  */
 package org.apache.camel.component.azure.storage.datalake;
 
-import java.io.IOException;
-
 import org.apache.camel.Endpoint;
 import org.apache.camel.Exchange;
 import 
org.apache.camel.component.azure.storage.datalake.client.DataLakeDirectoryClientWrapper;
@@ -50,7 +48,7 @@ public class DataLakeProducer extends DefaultProducer {
 }
 
 @Override
-public void process(Exchange exchange) throws IllegalArgumentException, 
IOException {
+public void process(Exchange exchange) throws Exception {
 DataLakeOperationsDefinition operation = determineOperation(exchange);
 switch (operation) {
 case listFileSystem:
diff --git 
a/components/camel-azure/camel-azure-storage-datalake/src/main/java/org/apache/camel/component/azure/storage/datalake/operations/DataLakeFileOperations.java
 
b/components/camel-azure/camel-azure-storage-datalake/src/main/java/org/apache/camel/component/azure/storage/datalake/operations/DataLakeFileOperations.java
index dcdd6fa4938..72ab8856a89 100644
--- 
a/components/camel-azure/camel-azure-storage-datalake/src/main/java/org/apache/camel/component/azure/storage/datalake/operations/DataLakeFileOperations.java
+++ 
b/components/camel-azure/camel-azure-storage-datalake/src/main/java/org/apache/camel/component/azure/storage/datalake/operations/DataLakeFileOperations.java
@@ -203,15 +203,15 @@ public class DataLakeFileOperations {
 return new DataLakeOperationResponse(true);
 }
 
-public DataLakeOperationResponse upload(final Exchange exchange) throws 
IOException {
+public DataLakeOperationResponse upload(final Exchange exchange) throws 
Exception {
 final FileCommonRequestOptions commonRequestOptions = 
getCommonRequestOptions(exchange);
 final ParallelTransferOptions transferOptions = 
configurationProxy.getParallelTransferOptions(exchange);
-final FileStreamAndLength fileStreamAndLength = 
FileStreamAndLength.createFileStreamAndLengthFromExchangeBody(exchange);
+final InputStream is = 
exchange.getMessage().getMandatoryBody(InputStream.class);
 final String permission = configurationProxy.getPermission(exchange);
 final String umask = configurationProxy.getUmask(exchange);
 
 final FileParallelUploadOptions uploadOptions
-= new 
FileParallelUploadOptions(fileStreamAndLength.getInputStream())
+= new FileParallelUploadOptions(is)
 
.setHeaders(commonRequestOptions.getPathHttpHeaders()).setParallelTransferOptions(transferOptions)
 
.setMetadata(commonRequestOptions.getMetadata()).setPermissions(permission)
 
.setRequestConditions(commonRequestOptions.getRequestConditions())



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

2024-04-30 Thread Apache Infrastructure


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



(camel-website-pub) branch asf-site updated (c678e19196 -> 47012884b1)

2024-04-30 Thread git-site-role
This is an automated email from the ASF dual-hosted git repository.

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


 discard c678e19196 Website updated to eff4313cecfd55ebba8529099e5987c2d4151ca0
 discard 1cee60d088 Website updated to 325e929157412b27394080f4d4dba3d821476ddf
 new 1053fb6d9c Website updated to 325e929157412b27394080f4d4dba3d821476ddf
 new 47012884b1 Website updated to eff4313cecfd55ebba8529099e5987c2d4151ca0

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   (c678e19196)
\
 N -- N -- N   refs/heads/asf-site (47012884b1)

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

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

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


Summary of changes:
 .htaccess  |   86 +-
 .well-known/security.txt   |2 +-
 camel-kamelets/next/avro-deserialize-action.html   |   16 +-
 camel-kamelets/next/avro-serialize-action.html |   16 +-
 .../next/aws-bedrock-agent-runtime-sink.html   |2 +-
 camel-kamelets/next/aws-bedrock-text-sink.html |2 +-
 camel-kamelets/next/aws-cloudtrail-source.html |2 +-
 camel-kamelets/next/aws-cloudwatch-sink.html   |2 +-
 camel-kamelets/next/aws-ddb-sink.html  |2 +-
 camel-kamelets/next/aws-ddb-streams-source.html|2 +-
 camel-kamelets/next/aws-ec2-sink.html  |2 +-
 camel-kamelets/next/aws-eventbridge-sink.html  |2 +-
 camel-kamelets/next/aws-kinesis-firehose-sink.html |2 +-
 camel-kamelets/next/aws-kinesis-sink.html  |2 +-
 camel-kamelets/next/aws-kinesis-source.html|2 +-
 camel-kamelets/next/aws-lambda-sink.html   |2 +-
 camel-kamelets/next/aws-redshift-sink.html |2 +-
 camel-kamelets/next/aws-redshift-source.html   |2 +-
 camel-kamelets/next/aws-s3-event-based-source.html |2 +-
 camel-kamelets/next/aws-s3-sink.html   |2 +-
 camel-kamelets/next/aws-s3-source.html |2 +-
 .../next/aws-s3-streaming-upload-sink.html |2 +-
 camel-kamelets/next/aws-secrets-manager-sink.html  |2 +-
 camel-kamelets/next/aws-ses-sink.html  |2 +-
 camel-kamelets/next/aws-sns-fifo-sink.html |2 +-
 camel-kamelets/next/aws-sns-sink.html  |2 +-
 camel-kamelets/next/aws-sqs-batch-sink.html|2 +-
 camel-kamelets/next/aws-sqs-fifo-sink.html |2 +-
 camel-kamelets/next/aws-sqs-sink.html  |2 +-
 camel-kamelets/next/aws-sqs-source.html|2 +-
 .../next/aws-sts-assume-role-action.html   |   16 +-
 camel-kamelets/next/aws-timestream-query-sink.html |2 +-
 camel-kamelets/next/aws-translate-action.html  |   16 +-
 camel-kamelets/next/azure-cosmosdb-sink.html   |2 +-
 camel-kamelets/next/azure-cosmosdb-source.html |2 +-
 camel-kamelets/next/azure-eventhubs-sink.html  |2 +-
 camel-kamelets/next/azure-eventhubs-source.html|2 +-
 camel-kamelets/next/azure-functions-sink.html  |2 +-
 camel-kamelets/next/azure-servicebus-sink.html |2 +-
 camel-kamelets/next/azure-servicebus-source.html   |2 +-
 .../next/azure-storage-blob-append-sink.html   |2 +-
 .../next/azure-storage-blob-changefeed-source.html |2 +-
 .../azure-storage-blob-event-based-source.html |2 +-
 camel-kamelets/next/azure-storage-blob-sink.html   |2 +-
 camel-kamelets/next/azure-storage-blob-source.html |2 +-
 .../next/azure-storage-datalake-sink.html  |2 +-
 .../next/azure-storage-datalake-source.html|2 +-
 camel-kamelets/next/azure-storage-files-sink.html  |2 +-
 .../next/azure-storage-files-source.html   |2 +-
 camel-kamelets/next/azure-storage-queue-sink.html  |2 +-
 .../next/azure-storage-queue-source.html   |2 +-
 camel-kamelets/next/beer-source.html   |2 +-
 camel-kamelets/next/bitcoin-source.html|2 +-
 camel-kamelets/next/caffeine-action.html   |   16 +-
 camel-kamelets/next/cassandra-sink.html|2 +-
 camel-kamelets/next/cassandra-source.html  |2 +-
 camel-kamelets/next/ceph-sink.html |2 

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

2024-04-30 Thread Apache Infrastructure


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



(camel-website-pub) branch asf-site updated (83f2c19e7f -> c678e19196)

2024-04-30 Thread git-site-role
This is an automated email from the ASF dual-hosted git repository.

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


 discard 83f2c19e7f Website updated to 5a9092ad8d87d44744cac74cc21264c916828652
 discard 9293fec8b6 Website updated to 325e929157412b27394080f4d4dba3d821476ddf
 new 1cee60d088 Website updated to 325e929157412b27394080f4d4dba3d821476ddf
 new c678e19196 Website updated to eff4313cecfd55ebba8529099e5987c2d4151ca0

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   (83f2c19e7f)
\
 N -- N -- N   refs/heads/asf-site (c678e19196)

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

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

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


Summary of changes:
 .htaccess  |  180 +-
 .well-known/security.txt   |2 +-
 blog/2024/04/RELEASE-4.0.5/index.html  |2 +-
 .../camel-featured.jpeg|  Bin
 ...c68bd9be1_625206_800x0_resize_q95_gaussian.jpeg |  Bin
 .../2024/04/camel-quarkus-release-3.9.0/index.html |1 +
 blog/index.html|2 +-
 blog/index.xml |9 +-
 blog/page/10/index.html|2 +-
 blog/page/100/index.html   |2 +-
 blog/page/101/index.html   |2 +-
 blog/page/102/index.html   |2 +-
 blog/page/103/index.html   |2 +-
 blog/page/104/index.html   |2 +-
 blog/page/105/index.html   |2 +-
 blog/page/106/index.html   |2 +-
 blog/page/107/index.html   |2 +-
 blog/page/108/index.html   |2 +-
 blog/page/109/index.html   |2 +-
 blog/page/11/index.html|2 +-
 blog/page/110/index.html   |2 +-
 blog/page/111/index.html   |2 +-
 blog/page/112/index.html   |2 +-
 blog/page/113/index.html   |2 +-
 blog/page/114/index.html   |2 +-
 blog/page/115/index.html   |2 +-
 blog/page/116/index.html   |2 +-
 blog/page/117/index.html   |2 +-
 blog/page/{86 => 118}/index.html   |2 +-
 blog/page/12/index.html|2 +-
 blog/page/13/index.html|2 +-
 blog/page/14/index.html|2 +-
 blog/page/15/index.html|2 +-
 blog/page/16/index.html|2 +-
 blog/page/17/index.html|2 +-
 blog/page/18/index.html|2 +-
 blog/page/19/index.html|2 +-
 blog/page/2/index.html |2 +-
 blog/page/20/index.html|2 +-
 blog/page/21/index.html|2 +-
 blog/page/22/index.html|2 +-
 blog/page/23/index.html|2 +-
 blog/page/24/index.html|2 +-
 blog/page/25/index.html|2 +-
 blog/page/26/index.html|2 +-
 blog/page/27/index.html|2 +-
 blog/page/28/index.html|2 +-
 blog/page/29/index.html|2 +-
 blog/page/3/index.html |2 +-
 blog/page/30/index.html|2 +-
 blog/page/31/index.html|2 +-
 blog/page/32/index.html|2 +-
 blog/page/33/index.html|2 +-
 blog/page/34/index.html|2 +-
 blog/page/35/index.html|2 +-
 blog/page/36/index.html|2 +-
 blog/page/37/index.html|2 +-
 

Re: [PR] fixes(#5439): Build should enforce a required jdk version [camel-k]

2024-04-30 Thread via GitHub


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

   Ok, lets try to do this in Go - its easier to maintain anyway


-- 
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 (af2daae5 -> 8aaa8573)

2024-04-30 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 af2daae5 Kamelet Options: Remove the Camel K specific part and try to 
make the documentation agnostic
 add 8aaa8573 Update Camel Version for documentation

No new revisions were added by this update.

Summary of changes:
 docs/antora.yml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)



(camel-kamelets) branch 4.4.x updated: Upgrade Camel version for documentation

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

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


The following commit(s) were added to refs/heads/4.4.x by this push:
 new 6d6c8948 Upgrade Camel version for documentation
6d6c8948 is described below

commit 6d6c89483e05d1f3570c9d5dd734d2a78e7e0ed8
Author: Andrea Cosentino 
AuthorDate: Tue Apr 30 14:19:49 2024 +0200

Upgrade Camel version for documentation

Signed-off-by: Andrea Cosentino 
---
 docs/antora.yml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/docs/antora.yml b/docs/antora.yml
index 8ec90623..8ff3559a 100644
--- a/docs/antora.yml
+++ b/docs/antora.yml
@@ -34,5 +34,5 @@ asciidoc:
 camel-k-docs-version: 2.2.x
 #camel-kafka-connector-version: none
 #camel-kafka-connector-docs-version: none
-camel-version: 4.4.0
+camel-version: 4.4.1
 camel-docs-version: 4.4.x



(camel-kamelets) branch main updated: Update Camel Version for documentation

2024-04-30 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 8aaa8573 Update Camel Version for documentation
8aaa8573 is described below

commit 8aaa857301d0e743b4eb68c88051ad96d644f341
Author: Andrea Cosentino 
AuthorDate: Tue Apr 30 14:18:57 2024 +0200

Update Camel Version for documentation

Signed-off-by: Andrea Cosentino 
---
 docs/antora.yml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/docs/antora.yml b/docs/antora.yml
index c5f8d236..9710b516 100644
--- a/docs/antora.yml
+++ b/docs/antora.yml
@@ -34,5 +34,5 @@ asciidoc:
 camel-k-docs-version: next
 #camel-kafka-connector-version: none
 #camel-kafka-connector-docs-version: none
-camel-version: 4.1.0
+camel-version: 4.5.0
 camel-docs-version: next



(camel-kamelets) branch regen_bot updated (137f4ca4 -> af2daae5)

2024-04-30 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 137f4ca4 Kamelet Options: Remove the Camel K specific part and try to 
make the documentation agnostic
 add af2daae5 Kamelet Options: Remove the Camel K specific part and try to 
make the documentation agnostic

No new revisions were added by this update.

Summary of changes:
 .../ROOT/examples/template/kamelet-options.adoc| 25 --
 1 file changed, 23 insertions(+), 2 deletions(-)



(camel-kamelets) branch main updated: Kamelet Options: Remove the Camel K specific part and try to make the documentation agnostic

2024-04-30 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 af2daae5 Kamelet Options: Remove the Camel K specific part and try to 
make the documentation agnostic
af2daae5 is described below

commit af2daae5f3bed6af46b320ed7653d72ee43677ff
Author: Andrea Cosentino 
AuthorDate: Tue Apr 30 14:09:59 2024 +0200

Kamelet Options: Remove the Camel K specific part and try to make the 
documentation agnostic

Signed-off-by: Andrea Cosentino 
---
 .../ROOT/examples/template/kamelet-options.adoc| 25 --
 1 file changed, 23 insertions(+), 2 deletions(-)

diff --git a/docs/modules/ROOT/examples/template/kamelet-options.adoc 
b/docs/modules/ROOT/examples/template/kamelet-options.adoc
index 5eefc71e..63208ef1 100644
--- a/docs/modules/ROOT/examples/template/kamelet-options.adoc
+++ b/docs/modules/ROOT/examples/template/kamelet-options.adoc
@@ -49,7 +49,7 @@ ifeval::['{type}' == 'source']
 
 - route:
 from:
-  uri: "kamelet:\`{name}\`"
+  uri: "kamelet:\{name}\"
   parameters:
 .
 .
@@ -71,7 +71,28 @@ ifeval::['{type}' == 'sink']
 message: 'test'
   steps:
 - to: 
-uri: "kamelet:\`{name}\`"
+uri: "kamelet:\{name}\"
+
+endif::[]
+
+ifeval::['{type}' == 'action']
+[source,yaml,subs='+attributes,macros']
+
+- route:
+from:
+  uri: "kamelet:timer-source"
+  parameters:
+period: 1
+message: 'test'
+  steps:
+- to:
+uri: "kamelet:\{name}\"
+parameters:
+.
+.
+.
+- to: 
+uri: "kamelet:log-sink"
 
 endif::[]
 



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

2024-04-30 Thread Apache Infrastructure


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



(camel-website-pub) branch asf-site updated (693dbff5b6 -> 83f2c19e7f)

2024-04-30 Thread git-site-role
This is an automated email from the ASF dual-hosted git repository.

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


 discard 693dbff5b6 Website updated to 5a9092ad8d87d44744cac74cc21264c916828652
 discard 89433f85cc Website updated to 325e929157412b27394080f4d4dba3d821476ddf
 new 9293fec8b6 Website updated to 325e929157412b27394080f4d4dba3d821476ddf
 new 83f2c19e7f Website updated to 5a9092ad8d87d44744cac74cc21264c916828652

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   (693dbff5b6)
\
 N -- N -- N   refs/heads/asf-site (83f2c19e7f)

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

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

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


Summary of changes:
 .htaccess |  200 +-
 .well-known/security.txt  |2 +-
 site-manifest.json|2 +-
 sitemap-camel-core.xml|   14 +-
 sitemap-camel-k.xml   |  906 +++---
 sitemap-camel-kafka-connector.xml |  824 +++---
 sitemap-camel-kamelets.xml| 1402 -
 sitemap-camel-karaf.xml   |   24 +-
 sitemap-camel-quarkus.xml | 2024 ++---
 sitemap-camel-spring-boot.xml |   56 +-
 sitemap-components.xml| 5776 ++---
 sitemap-manual.xml|  426 +--
 12 files changed, 5828 insertions(+), 5828 deletions(-)



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

2024-04-30 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 (5a9092ad -> eff4313c)

2024-04-30 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 5a9092ad Removed old fragment
 add eff4313c Camel Quarkus 3.10.0 announcement blog post

No new revisions were added by this update.

Summary of changes:
 .../camel-featured.jpeg| Bin
 .../2024/04/camel-quarkus-release-3.9.0/index.md   |  34 +
 content/releases/q/release-3.10.0.md   |  12 
 3 files changed, 46 insertions(+)
 copy content/blog/{2021/03/camel-quarkus-release-1.8.0 => 
2024/04/camel-quarkus-release-3.9.0}/camel-featured.jpeg (100%)
 create mode 100644 content/blog/2024/04/camel-quarkus-release-3.9.0/index.md
 create mode 100644 content/releases/q/release-3.10.0.md



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

2024-04-30 Thread jamesnetherton
This is an automated email from the ASF dual-hosted git repository.

jamesnetherton 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 eff4313c Camel Quarkus 3.10.0 announcement blog post
eff4313c is described below

commit eff4313cecfd55ebba8529099e5987c2d4151ca0
Author: James Netherton 
AuthorDate: Tue Apr 30 08:11:32 2024 +0100

Camel Quarkus 3.10.0 announcement blog post
---
 .../camel-featured.jpeg| Bin 0 -> 625206 bytes
 .../2024/04/camel-quarkus-release-3.9.0/index.md   |  34 +
 content/releases/q/release-3.10.0.md   |  12 
 3 files changed, 46 insertions(+)

diff --git 
a/content/blog/2024/04/camel-quarkus-release-3.9.0/camel-featured.jpeg 
b/content/blog/2024/04/camel-quarkus-release-3.9.0/camel-featured.jpeg
new file mode 100644
index ..36c23a02
Binary files /dev/null and 
b/content/blog/2024/04/camel-quarkus-release-3.9.0/camel-featured.jpeg differ
diff --git a/content/blog/2024/04/camel-quarkus-release-3.9.0/index.md 
b/content/blog/2024/04/camel-quarkus-release-3.9.0/index.md
new file mode 100644
index ..48583fa8
--- /dev/null
+++ b/content/blog/2024/04/camel-quarkus-release-3.9.0/index.md
@@ -0,0 +1,34 @@
+---
+title: "Camel Quarkus 3.10.0 Released"
+date: 2024-04-30
+authors: ["jamesnetherton"]
+categories: ["Releases", "Camel Quarkus"]
+preview: "Camel Quarkus 3.10.0 Released"
+summary: "Camel Quarkus 3.10.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.10.0 release of Camel Quarkus.
+
+Camel Quarkus 3.10.0 aligns with Camel 4.5.0 and Quarkus 3.10.0 releases.
+
+For more information, please check the [Release notes](/releases/q-3.10.0/).
+
+## Camel 4.5.0
+
+Please refer to the [Camel 4.5.0 release 
announcement](/blog/2024/03/RELEASE-4.5.0/) for more details.
+
+## Quarkus 3.10.0
+
+Please refer to the [Quarkus 3.10.0 release 
notes](https://github.com/quarkusio/quarkus/releases/tag/3.10.0) for more 
details.
+
+## New extensions
+
+Some new extensions were added in 3.10.0.
+
+* AWS Bedrock
+* Langchain4j Embeddings
+* Milvus
+* Qdrant
+* Wasm
diff --git a/content/releases/q/release-3.10.0.md 
b/content/releases/q/release-3.10.0.md
new file mode 100644
index ..a70f2ae7
--- /dev/null
+++ b/content/releases/q/release-3.10.0.md
@@ -0,0 +1,12 @@
+---
+url: "/releases/q-3.10.0/"
+date: 2024-04-30
+type: release-note
+version: 3.10.0
+title: "Camel Quarkus release 3.10.0"
+preview: ""
+changelog: ""
+category: "camel-quarkus"
+milestone: 57
+jdk: [17, 21]
+---



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

2024-04-30 Thread via GitHub


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


-- 
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.3.x] chore(e2e): Allow to disable copy optimizations on E2E tests [camel-k]

2024-04-30 Thread via GitHub


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

   - Provide envvars to the user to enable/disable copy catalog e2e test 
optimization
   - Provide envvars to the user to enable/disable copy integration kit e2e 
test optimization
   - Add some documentation on available e2e test envvars
   
   **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-k) branch main updated: chore(e2e): Allow to disable copy optimizations on E2E tests

2024-04-30 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 ec37c0632 chore(e2e): Allow to disable copy optimizations on E2E tests
ec37c0632 is described below

commit ec37c0632d33d7ab60464224f2175ef4ac6b872d
Author: Christoph Deppisch 
AuthorDate: Tue Apr 30 10:24:02 2024 +0200

chore(e2e): Allow to disable copy optimizations on E2E tests

- Provide envvars to the user to enable/disable copy catalog e2e test 
optimization
- Provide envvars to the user to enable/disable copy integration kit e2e 
test optimization
- Add some documentation on available e2e test envvars
---
 e2e/README.md   | 35 +++
 e2e/support/test_support.go | 10 ++
 2 files changed, 41 insertions(+), 4 deletions(-)

diff --git a/e2e/README.md b/e2e/README.md
index a4ddf63d3..4119885a9 100644
--- a/e2e/README.md
+++ b/e2e/README.md
@@ -1,4 +1,4 @@
-# Camel K End To End tests
+# Camel K End-To-End tests
 
 This directory contains the suite of test that are run on a CI to ensure the 
stability of the product and no regression are introduced at each PR. The full 
documentation can be found at 
https://camel.apache.org/camel-k/next/contributing/e2e.html
 
@@ -31,9 +31,9 @@ Additional set of test that cover the main common features 
but that requires som
 
 Test suite that cover the different installation procedures we offer and any 
upgrade scenario.
 
-### KNative
+### Knative
 
-Test suite that cover the features associated with KNative. This test will 
assume the presence of a namespaced operator (installation provided by the same 
test execution suite) togheter with KNative operator configuration.
+Test suite that cover the features associated with Knative. This test will 
assume the presence of a namespaced operator (installation provided by the same 
test execution suite) togheter with Knative operator configuration.
 
 ### Native
 
@@ -45,4 +45,31 @@ Test suite that cover the features associated with Telemetry 
feature. The test e
 
 ### Yaks
 
-Test suite that cover certain KNative features togheter with YAKS operator.
+Test suite that cover certain Knative features togheter with YAKS operator.
+
+## Environment variables
+
+You can set some environment variables to change the behavior of the E2E test 
suite.
+
+| Env | Default
 | Description  
 |
+|-|-|---|
+| CAMEL_K_TEST_SKIP_PROBLEMATIC   | false  
 | Skips tests that are marked to be problematic (flaky) on certain 
environments (e.g. on OpenShift).|
+| CAMEL_K_TEST_SAVE_FAILED_TEST_NAMESPACE | false  
 | Used to not remove the temporary test namespaces after the test run. 
Enables better analysis of resources after the test  |
+| CAMEL_K_TEST_LOG_LEVEL  | info   
 | Logging level used to run the tests and used in Maven commands run by 
the operator (if level is `debug` the Maven commands use `-X` option).  |
+| CAMEL_K_TEST_MAVEN_CLI_OPTIONS  | {} 
 | Maven CLI options used to run Camel K integrations during the tests. 
 |
+| CAMEL_K_TEST_OPERATOR_IMAGE | 
docker.io/apache/camel-k:2.4.0-SNAPSHOT | Camel K operator image used in 
operator installation.  
   |
+| CAMEL_K_TEST_OPERATOR_IMAGE_PULL_POLICY | -  
 | Operator image pull policy.  
 |
+| CAMEL_K_TEST_IMAGE_NAME | docker.io/apache/camel-k   
 | Camel K operator image name used in operator installation.   
 |
+| CAMEL_K_TEST_IMAGE_VERSION  | 2.4.0-SNAPSHOT 
 | Camel K operator image version used in operator installation. Value is 
retrieved from `pkg/util/defaults/defaults.go` |
+| CAMEL_K_TEST_NO_OLM_OPERATOR_IMAGE  | 
docker.io/apache/camel-k:2.4.0-SNAPSHOT | Camel K operator image used in non 
OLM based operator installation.  

Re: [PR] chore(e2e): Allow to disable copy optimizations on E2E tests [camel-k]

2024-04-30 Thread via GitHub


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


-- 
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] Build should enforce a required jdk version [camel-k]

2024-04-30 Thread via GitHub


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

   PR: https://github.com/apache/camel-k/pull/5440


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

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

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



svn commit: r68885 [4/5] - /dev/camel/camel-quarkus/3.8.2/

2024-04-30 Thread jamesnetherton
Added: dev/camel/camel-quarkus/3.8.2/apache-camel-quarkus-3.8.2-sbom.xml
==
--- dev/camel/camel-quarkus/3.8.2/apache-camel-quarkus-3.8.2-sbom.xml (added)
+++ dev/camel/camel-quarkus/3.8.2/apache-camel-quarkus-3.8.2-sbom.xml Tue Apr 
30 10:56:54 2024
@@ -0,0 +1,91835 @@
+
+http://cyclonedx.org/schema/bom/1.4;>
+  
+
+  
+OWASP Foundation
+CycloneDX Maven plugin
+2.7.11
+
+  a70e8b649ab4a2bb7922d360173c8237
+  4c3c0878c15561639076e5be7a48ffcd6111c5ee
+  70997d52dbffd4e797c467b2062c6ba9b8b5a7380ff2884779f2743b6172ebb5
+  bc1ce91190c642f68fd3571939d7668def3b879ec8e5a87a213a9710a106e0290f60f9e0414593d19cca958c4fcb5d4450bd2793bcd609948419c8a2a6a7f5c8
+  3c8421bdafd1754fb424f16dccc83bfe0827648c1cadfffc98bdf1c7da65475dfe48d2f4b16d233bb8819e155ba6a4f3
+  ad88cf6a0e0a5d51df49a4dab5530a28de9df7eec8460c045dff3e1f9316b82a244a125d52b937fe9d4ee72e44f5d01a
+  b4d9c3ef07c34517fd9f33178ba95ffc9618eb84a3671e71b0c82991ec3717e5
+  935b43aba8999dc7d95d93288a251c97b6b32852841b7bef31516c27c8d65c8de7f8411f1829f765ee760f25930c766db6a49df68e5994e18721c0a71f606f1e
+
+  
+
+
+  The Apache Software Foundation
+  org.apache.camel.quarkus
+  camel-quarkus
+  3.8.2
+  Apache Camel extensions for Quarkus
+  
+
+  Apache-2.0
+  https://www.apache.org/licenses/LICENSE-2.0
+
+  
+  
pkg:maven/org.apache.camel.quarkus/camel-quarkus@3.8.2?type=pom
+  http://camel.apache.orghttps://repository.apache.org/service/local/staging/deploy/maven2https://github.com/apache/camel-quarkus/issuesdev-subscr...@camel.apache.orghttps://github.com/apache/camel-quarkus
+
+
+  makeAggregateBom
+  compile,provided,runtime,system
+  enabled
+
+  
+  
+
+  The Apache Software Foundation
+  org.apache.camel.quarkus
+  camel-quarkus-poms
+  3.8.2
+  Apache Camel extensions for Quarkus
+  
+
+  Apache-2.0
+  https://www.apache.org/licenses/LICENSE-2.0
+
+  
+  
pkg:maven/org.apache.camel.quarkus/camel-quarkus-poms@3.8.2?type=pom
+  http://camel.apache.org/camel-quarkus-pomshttps://repository.apache.org/service/local/staging/deploy/maven2https://github.com/apache/camel-quarkus/issuesdev-subscr...@camel.apache.orghttps://github.com/apache/camel-quarkus/camel-quarkus-poms
+
+
+  The Apache Software Foundation
+  org.apache.camel.quarkus
+  camel-quarkus-bom
+  3.8.2
+  Apache Camel extensions for Quarkus
+  
+
+  Apache-2.0
+  https://www.apache.org/licenses/LICENSE-2.0
+
+  
+  
pkg:maven/org.apache.camel.quarkus/camel-quarkus-bom@3.8.2?type=pom
+  http://camel.apache.org/camel-quarkus-poms/camel-quarkus-bomhttps://repository.apache.org/service/local/staging/deploy/maven2https://github.com/apache/camel-quarkus/issuesdev-subscr...@camel.apache.orghttps://github.com/apache/camel-quarkus/camel-quarkus-poms/camel-quarkus-bom
+
+
+  The Apache Software Foundation
+  org.apache.camel.quarkus
+  camel-quarkus-bom-test
+  3.8.2
+  Apache Camel extensions for Quarkus
+  
+
+  Apache-2.0
+  https://www.apache.org/licenses/LICENSE-2.0
+
+  
+  
pkg:maven/org.apache.camel.quarkus/camel-quarkus-bom-test@3.8.2?type=pom
+  http://camel.apache.org/camel-quarkus-poms/camel-quarkus-bom-testhttps://repository.apache.org/service/local/staging/deploy/maven2https://github.com/apache/camel-quarkus/issuesdev-subscr...@camel.apache.orghttps://github.com/apache/camel-quarkus/camel-quarkus-poms/camel-quarkus-bom-test
+
+
+  The Apache Software Foundation
+  org.apache.camel.quarkus
+  camel-quarkus-build-parent
+  3.8.2
+  Maven plugins configuration
+  
+
+  Apache-2.0
+  https://www.apache.org/licenses/LICENSE-2.0
+
+  
+  
pkg:maven/org.apache.camel.quarkus/camel-quarkus-build-parent@3.8.2?type=pom
+  http://camel.apache.org/camel-quarkus-poms/camel-quarkus-build-parenthttps://repository.apache.org/service/local/staging/deploy/maven2https://github.com/apache/camel-quarkus/issuesdev-subscr...@camel.apache.orghttps://github.com/apache/camel-quarkus/camel-quarkus-poms/camel-quarkus-build-parent
+
+
+  The Apache Software Foundation
+  org.apache.camel.quarkus
+  camel-quarkus-build-parent-it
+  3.8.2
+  Maven plugins configuration for Integration 
Tests
+  
+
+  Apache-2.0
+  https://www.apache.org/licenses/LICENSE-2.0
+
+  
+  
pkg:maven/org.apache.camel.quarkus/camel-quarkus-build-parent-it@3.8.2?type=pom
+  

svn commit: r68885 [3/5] - /dev/camel/camel-quarkus/3.8.2/

2024-04-30 Thread jamesnetherton
Added: dev/camel/camel-quarkus/3.8.2/apache-camel-quarkus-3.8.2-sbom.json.asc
==
--- dev/camel/camel-quarkus/3.8.2/apache-camel-quarkus-3.8.2-sbom.json.asc 
(added)
+++ dev/camel/camel-quarkus/3.8.2/apache-camel-quarkus-3.8.2-sbom.json.asc Tue 
Apr 30 10:56:54 2024
@@ -0,0 +1,11 @@
+-BEGIN PGP SIGNATURE-
+
+iQEzBAABCgAdFiEE6yNzJrQjDCjWD461r1rK8KHocpIFAmYwzm0ACgkQr1rK8KHo
+cpKyVgf9EvoGGsu61CT6i+zTV/z7lESLUzzQzY6+NdNW43TBSWVKYvZXXAV+PeSu
+kK3UZURwhHDZ3M71JBVpSje2ZY1iKsCIZvZ+T/t9b7gzoGq4EmE/FKaNqKx4+rnd
+yzBOcJZ1Ee/a1LXTixK6WMxOv5/9BBo9FpVBiJz+THnpRhEijGkHBVzAbB9XprBc
+RQ8G5i8YSirkHdRJoaQsh7ukejAUDWt5wuBEhVLteKl95Szxel5+rJDt2t7wketT
+oowFDcskYK4uwJHXcycK8UBXiOl3wQ5KoqUSXA77xdLWNWl0iQYOR1TvUAaObG0q
+e9a92/8Db30TDL7VSUGp6YFCZHCt9A==
+=oU9w
+-END PGP SIGNATURE-

Added: dev/camel/camel-quarkus/3.8.2/apache-camel-quarkus-3.8.2-sbom.json.sha512
==
--- dev/camel/camel-quarkus/3.8.2/apache-camel-quarkus-3.8.2-sbom.json.sha512 
(added)
+++ dev/camel/camel-quarkus/3.8.2/apache-camel-quarkus-3.8.2-sbom.json.sha512 
Tue Apr 30 10:56:54 2024
@@ -0,0 +1 @@
+600c516c2c04404ecba443b52590c6b55da3f5c2cca9b6e27db3e5fd4d17902977477c02e2b29917d69a72255b5cc82882065a9814afca0bccaa3d5cdff3e194
 *apache-camel-quarkus-3.8.2-sbom.json




svn commit: r68885 [2/5] - /dev/camel/camel-quarkus/3.8.2/

2024-04-30 Thread jamesnetherton


Added: dev/camel/camel-quarkus/3.8.2/apache-camel-quarkus-3.8.2-sbom.json
==
--- dev/camel/camel-quarkus/3.8.2/apache-camel-quarkus-3.8.2-sbom.json (added)
+++ dev/camel/camel-quarkus/3.8.2/apache-camel-quarkus-3.8.2-sbom.json Tue Apr 
30 10:56:54 2024
@@ -0,0 +1,228046 @@
+{
+  "bomFormat" : "CycloneDX",
+  "specVersion" : "1.4",
+  "serialNumber" : "urn:uuid:65cd61bd-77d8-319b-80a8-1e35df21fc56",
+  "version" : 1,
+  "metadata" : {
+"tools" : [
+  {
+"vendor" : "OWASP Foundation",
+"name" : "CycloneDX Maven plugin",
+"version" : "2.7.11",
+"hashes" : [
+  {
+"alg" : "MD5",
+"content" : "a70e8b649ab4a2bb7922d360173c8237"
+  },
+  {
+"alg" : "SHA-1",
+"content" : "4c3c0878c15561639076e5be7a48ffcd6111c5ee"
+  },
+  {
+"alg" : "SHA-256",
+"content" : 
"70997d52dbffd4e797c467b2062c6ba9b8b5a7380ff2884779f2743b6172ebb5"
+  },
+  {
+"alg" : "SHA-512",
+"content" : 
"bc1ce91190c642f68fd3571939d7668def3b879ec8e5a87a213a9710a106e0290f60f9e0414593d19cca958c4fcb5d4450bd2793bcd609948419c8a2a6a7f5c8"
+  },
+  {
+"alg" : "SHA-384",
+"content" : 
"3c8421bdafd1754fb424f16dccc83bfe0827648c1cadfffc98bdf1c7da65475dfe48d2f4b16d233bb8819e155ba6a4f3"
+  },
+  {
+"alg" : "SHA3-384",
+"content" : 
"ad88cf6a0e0a5d51df49a4dab5530a28de9df7eec8460c045dff3e1f9316b82a244a125d52b937fe9d4ee72e44f5d01a"
+  },
+  {
+"alg" : "SHA3-256",
+"content" : 
"b4d9c3ef07c34517fd9f33178ba95ffc9618eb84a3671e71b0c82991ec3717e5"
+  },
+  {
+"alg" : "SHA3-512",
+"content" : 
"935b43aba8999dc7d95d93288a251c97b6b32852841b7bef31516c27c8d65c8de7f8411f1829f765ee760f25930c766db6a49df68e5994e18721c0a71f606f1e"
+  }
+]
+  }
+],
+"component" : {
+  "publisher" : "The Apache Software Foundation",
+  "group" : "org.apache.camel.quarkus",
+  "name" : "camel-quarkus",
+  "version" : "3.8.2",
+  "description" : "Apache Camel extensions for Quarkus",
+  "licenses" : [
+{
+  "license" : {
+"id" : "Apache-2.0",
+"url" : "https://www.apache.org/licenses/LICENSE-2.0;
+  }
+}
+  ],
+  "purl" : 
"pkg:maven/org.apache.camel.quarkus/camel-quarkus@3.8.2?type=pom",
+  "externalReferences" : [
+{
+  "type" : "website",
+  "url" : "http://camel.apache.org;
+},
+{
+  "type" : "distribution",
+  "url" : 
"https://repository.apache.org/service/local/staging/deploy/maven2;
+},
+{
+  "type" : "issue-tracker",
+  "url" : "https://github.com/apache/camel-quarkus/issues;
+},
+{
+  "type" : "mailing-list",
+  "url" : "dev-subscr...@camel.apache.org"
+},
+{
+  "type" : "vcs",
+  "url" : "https://github.com/apache/camel-quarkus;
+}
+  ],
+  "type" : "library",
+  "bom-ref" : 
"pkg:maven/org.apache.camel.quarkus/camel-quarkus@3.8.2?type=pom"
+},
+"properties" : [
+  {
+"name" : "maven.goal",
+"value" : "makeAggregateBom"
+  },
+  {
+"name" : "maven.scopes",
+"value" : "compile,provided,runtime,system"
+  },
+  {
+"name" : "cdx:reproducible",
+"value" : "enabled"
+  }
+]
+  },
+  "components" : [
+{
+  "publisher" : "The Apache Software Foundation",
+  "group" : "org.apache.camel.quarkus",
+  "name" : "camel-quarkus-poms",
+  "version" : "3.8.2",
+  "description" : "Apache Camel extensions for Quarkus",
+  "licenses" : [
+{
+  "license" : {
+"id" : "Apache-2.0",
+"url" : "https://www.apache.org/licenses/LICENSE-2.0;
+  }
+}
+  ],
+  "purl" : 
"pkg:maven/org.apache.camel.quarkus/camel-quarkus-poms@3.8.2?type=pom",
+  "externalReferences" : [
+{
+  "type" : "website",
+  "url" : "http://camel.apache.org/camel-quarkus-poms;
+},
+{
+  "type" : "distribution",
+  "url" : 
"https://repository.apache.org/service/local/staging/deploy/maven2;
+},
+{
+  "type" : "issue-tracker",
+  "url" : "https://github.com/apache/camel-quarkus/issues;
+},
+{
+  "type" : "mailing-list",
+  "url" : "dev-subscr...@camel.apache.org"
+},
+{
+  "type" : "vcs",
+  "url" : "https://github.com/apache/camel-quarkus/camel-quarkus-poms;
+}
+  ],
+  "type" : "library",
+  "bom-ref" : 
"pkg:maven/org.apache.camel.quarkus/camel-quarkus-poms@3.8.2?type=pom"
+},
+{
+  

svn commit: r68885 [5/5] - /dev/camel/camel-quarkus/3.8.2/

2024-04-30 Thread jamesnetherton
Added: dev/camel/camel-quarkus/3.8.2/apache-camel-quarkus-3.8.2-sbom.xml.asc
==
--- dev/camel/camel-quarkus/3.8.2/apache-camel-quarkus-3.8.2-sbom.xml.asc 
(added)
+++ dev/camel/camel-quarkus/3.8.2/apache-camel-quarkus-3.8.2-sbom.xml.asc Tue 
Apr 30 10:56:54 2024
@@ -0,0 +1,11 @@
+-BEGIN PGP SIGNATURE-
+
+iQEzBAABCgAdFiEE6yNzJrQjDCjWD461r1rK8KHocpIFAmYwzm0ACgkQr1rK8KHo
+cpIYRwgAnvqgk3sR/BMSHWNPohiQnBtT1LAInhwqVv2yVafL4GLQCbYAgne0GRpi
+uuZinfutMX3SBJT+jp59tj5QKUb3Eh3Ox8Vs4T3X8pO6SKP0WRsJsHyklIG49/Kh
+tG2up5CYlQzg/zRORqhtCdWOmJDI7Uu0YNnOJWmYGw7rZ+d8oln67+K8bK/IF7bR
+RqFsKdx0hf9g1MCosMEXifgNusTQKmcmMQBF7rVf2ey4FKf6xPYXRzGfgGAuvxPt
+g4bpRYqTK3tTZTn4wcnw+4XnsXOCaAdOKa6TA0p1SCy0K4Z9S7vurVezXkvcBPOT
+JaCLk753u21nKuOvlzZiF0T05X75nA==
+=Cf30
+-END PGP SIGNATURE-

Added: dev/camel/camel-quarkus/3.8.2/apache-camel-quarkus-3.8.2-sbom.xml.sha512
==
--- dev/camel/camel-quarkus/3.8.2/apache-camel-quarkus-3.8.2-sbom.xml.sha512 
(added)
+++ dev/camel/camel-quarkus/3.8.2/apache-camel-quarkus-3.8.2-sbom.xml.sha512 
Tue Apr 30 10:56:54 2024
@@ -0,0 +1 @@
+1e139f4cd16a14fd9ee3a21bc195b47e97079322b0b20aa0e883f5fef892e1b99ec53286a3b20ecb5051437f67d97c9f80c3eaf582355442ea3455f06005676c
 *apache-camel-quarkus-3.8.2-sbom.xml

Added: dev/camel/camel-quarkus/3.8.2/apache-camel-quarkus-3.8.2-src.zip
==
Binary file - no diff available.

Propchange: dev/camel/camel-quarkus/3.8.2/apache-camel-quarkus-3.8.2-src.zip
--
svn:mime-type = application/octet-stream

Added: dev/camel/camel-quarkus/3.8.2/apache-camel-quarkus-3.8.2-src.zip.asc
==
--- dev/camel/camel-quarkus/3.8.2/apache-camel-quarkus-3.8.2-src.zip.asc (added)
+++ dev/camel/camel-quarkus/3.8.2/apache-camel-quarkus-3.8.2-src.zip.asc Tue 
Apr 30 10:56:54 2024
@@ -0,0 +1,11 @@
+-BEGIN PGP SIGNATURE-
+
+iQEzBAABCgAdFiEE6yNzJrQjDCjWD461r1rK8KHocpIFAmYwzm0ACgkQr1rK8KHo
+cpJz5wf9FR4WlfbK4vMS3nC/3Ujzg8w41Wy4PNtE3qtFoEYDIgQXQQOc3KHT+sTs
+5Deqr8MQJTmmC4WJaWvNaBp5fuA+tCmuUdosSLSX+eTCh5Dbife+s76+VV9idBBZ
+E7kJmoCgK0ppjKD73YDsNHhPMYenSEdw/96RUJCi5UvYL+MGY/ns6iYkK8C4WQ9o
+pZMA0slbtdsTJSZBUP6R//18Epn3WIXu3EeAh9PIU8HKJ7JpzUeBLRZneRMICopc
+xmpOnH8+6buJ21Wjy1lOFEaAgNMjDv591iJWpOjxEL8PImeDJGbKxy+HekdDvWyw
+ZCQd5iZT3Rb7VJYCt6IKXnPNUwbfxQ==
+=09z5
+-END PGP SIGNATURE-

Added: dev/camel/camel-quarkus/3.8.2/apache-camel-quarkus-3.8.2-src.zip.sha512
==
--- dev/camel/camel-quarkus/3.8.2/apache-camel-quarkus-3.8.2-src.zip.sha512 
(added)
+++ dev/camel/camel-quarkus/3.8.2/apache-camel-quarkus-3.8.2-src.zip.sha512 Tue 
Apr 30 10:56:54 2024
@@ -0,0 +1 @@
+1398a335948ce39b3e1e8a70b8ceac7f8c6660196fd7ad03aec9f85c4b6c3c6ddff45abc4ab54df9827f3b774f65c7db5cafa22c4f0a463902e8cb706348059d
 *apache-camel-quarkus-3.8.2-src.zip




svn commit: r68885 [1/5] - /dev/camel/camel-quarkus/3.8.2/

2024-04-30 Thread jamesnetherton
Author: jamesnetherton
Date: Tue Apr 30 10:56:54 2024
New Revision: 68885

Log:
Import camel-quarkus release

Added:
dev/camel/camel-quarkus/3.8.2/
dev/camel/camel-quarkus/3.8.2/apache-camel-quarkus-3.8.2-sbom.json
dev/camel/camel-quarkus/3.8.2/apache-camel-quarkus-3.8.2-sbom.json.asc
dev/camel/camel-quarkus/3.8.2/apache-camel-quarkus-3.8.2-sbom.json.sha512
dev/camel/camel-quarkus/3.8.2/apache-camel-quarkus-3.8.2-sbom.xml
dev/camel/camel-quarkus/3.8.2/apache-camel-quarkus-3.8.2-sbom.xml.asc
dev/camel/camel-quarkus/3.8.2/apache-camel-quarkus-3.8.2-sbom.xml.sha512
dev/camel/camel-quarkus/3.8.2/apache-camel-quarkus-3.8.2-src.zip   (with 
props)
dev/camel/camel-quarkus/3.8.2/apache-camel-quarkus-3.8.2-src.zip.asc
dev/camel/camel-quarkus/3.8.2/apache-camel-quarkus-3.8.2-src.zip.sha512



[PR] fixes(#5439): Build should enforce a required jdk version [camel-k]

2024-04-30 Thread via GitHub


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

   
   
   
   
   
   
   
   **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-website) branch regen_bot updated (0a963811 -> 5a9092ad)

2024-04-30 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 0a963811 Temporarily remove camel-karaf main branch from 
antora-playbook.yml
 add 5a9092ad Removed old fragment

No new revisions were added by this update.

Summary of changes:
 content/blog/2021/04/camel-k-140-Whatsnew/index.md | 2 --
 1 file changed, 2 deletions(-)



Re: [PR] Camel quarkus artemis to elasticsearch [camel-quarkus-examples]

2024-04-30 Thread via GitHub


jamesnetherton commented on PR #210:
URL: 
https://github.com/apache/camel-quarkus-examples/pull/210#issuecomment-2084970717

   This will need rebasing. The project version and the quarkus-platform 
version properties will need updating to 3.10.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

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



(camel-website) branch main updated: Removed old fragment

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

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


The following commit(s) were added to refs/heads/main by this push:
 new 5a9092ad Removed old fragment
5a9092ad is described below

commit 5a9092ad8d87d44744cac74cc21264c916828652
Author: Andrea Cosentino 
AuthorDate: Tue Apr 30 12:45:10 2024 +0200

Removed old fragment

Signed-off-by: Andrea Cosentino 
---
 content/blog/2021/04/camel-k-140-Whatsnew/index.md | 2 --
 1 file changed, 2 deletions(-)

diff --git a/content/blog/2021/04/camel-k-140-Whatsnew/index.md 
b/content/blog/2021/04/camel-k-140-Whatsnew/index.md
index e5932040..e2d1cf1d 100644
--- a/content/blog/2021/04/camel-k-140-Whatsnew/index.md
+++ b/content/blog/2021/04/camel-k-140-Whatsnew/index.md
@@ -19,8 +19,6 @@ Camel K 1.4.0 comes with an embedded [Kamelet 
catalog](/camel-kamelets/next/) co
 
 When installing the operator into a namespace (but also globally in the 
cluster), the operator installs all the kamelets from the catalog ([version 
0.2.1](https://github.com/apache/camel-kamelets/tree/v0.2.1)), so that any 
integration can use them directly.
 
-Users can bind them to a specific destination by writing a YAML binding file, 
as explained in the [specific documentation related to each 
Kamelet](/camel-kamelets/next/aws-sqs-source.html#_knative_source).
-
 Or, you can use the new `kamel bind` command (see below).
 
 **Note:** it's easy to write your own Kamelet and publish it to the Apache 
Catalog. Take a look at the [Kamelets developer 
guide](/camel-k/next/kamelets/kamelets-dev.html).



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

2024-04-30 Thread jamesnetherton
This is an automated email from the ASF dual-hosted git repository.

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

commit be011e2fca6d69368e3eff6ca05c905ab6a9becf
Author: James Netherton 
AuthorDate: Tue Apr 30 11:40:38 2024 +0100

Next is 3.11.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 +-
 vertx-websocket-chat/pom.xml   | 10 +-
 25 files changed, 132 insertions(+), 132 deletions(-)

diff --git a/aws-lambda/pom.xml b/aws-lambda/pom.xml
index d79e6c5..939e6f8 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.10.0
+3.11.0-SNAPSHOT
 
 Camel Quarkus :: Examples :: AWS Lambda
 Camel Quarkus Example :: Deploying a Camel Route in AWS 
Lambda
 
 
 3.10.0
-
${quarkus.platform.version}
+
3.11.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 95ed101..bf85af7 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.10.0
+3.11.0-SNAPSHOT
 
 Camel Quarkus :: Examples :: Cluster leader election
 Camel Quarkus Example :: Cluster leader election
 
 
 3.10.0
-
${quarkus.platform.version}
+
3.11.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 cc91e14..d1ebf6e 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.10.0
+3.11.0-SNAPSHOT
 
 Camel Quarkus :: Examples :: CXF SOAP
 Camel Quarkus Example :: CXF SOAP
 
 
 3.10.0
-
${quarkus.platform.version}
+
3.11.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 58a4ecd..1a7ee06 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.10.0
+3.11.0-SNAPSHOT
 
 Camel Quarkus :: Examples :: File Bindy FTP
 Camel Quarkus Example :: File Bindy FTP
 
 
 3.10.0
-
${quarkus.platform.version}
+
3.11.0-SNAPSHOT
 
-
io.quarkus.platform
+io.quarkus
 

(camel-quarkus-examples) branch camel-quarkus-main updated (35aaa27 -> be011e2)

2024-04-30 Thread jamesnetherton
This is an automated email from the ASF dual-hosted git repository.

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


from 35aaa27  Set quarkus.platform.version to 3.10.0
 add 31be2f2  Upgrade to Quarkus Platform 3.10.0
 add cb9e230  Tag 3.10.0
 new be011e2  Next is 3.11.0

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 |  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  | 14 +++---
 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 +-
 vertx-websocket-chat/pom.xml   |  2 +-
 25 files changed, 46 insertions(+), 46 deletions(-)



(camel-quarkus-examples) branch 3.10.x created (now cb9e230)

2024-04-30 Thread jamesnetherton
This is an automated email from the ASF dual-hosted git repository.

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


  at cb9e230  Tag 3.10.0

No new revisions were added by this update.



(camel-quarkus-examples) tag 3.10.0 created (now cb9e230)

2024-04-30 Thread jamesnetherton
This is an automated email from the ASF dual-hosted git repository.

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


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



(camel-quarkus-examples) 02/02: Tag 3.10.0

2024-04-30 Thread jamesnetherton
This is an automated email from the ASF dual-hosted git repository.

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

commit cb9e230fe3fe394f6e188a4504981ef58aab8f24
Author: James Netherton 
AuthorDate: Tue Apr 30 11:34:59 2024 +0100

Tag 3.10.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  | 14 +++---
 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 +-
 vertx-websocket-chat/pom.xml   |  2 +-
 25 files changed, 46 insertions(+), 46 deletions(-)

diff --git a/aws-lambda/pom.xml b/aws-lambda/pom.xml
index f1d3522..d79e6c5 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.10.0-SNAPSHOT
+3.10.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 a2629ea..95ed101 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.10.0-SNAPSHOT
+3.10.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 efbd0a7..cc91e14 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.10.0-SNAPSHOT
+3.10.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 57a7017..58a4ecd 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.10.0-SNAPSHOT
+3.10.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 4a331d1..ab7572e 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.10.0-SNAPSHOT
+app.kubernetes.io/version: 3.10.0
 spec:
   replicas: 1
   selector:
 matchLabels:
   app.kubernetes.io/name: camel-quarkus-examples-file-bindy-ftp
-  app.kubernetes.io/version: 3.10.0-SNAPSHOT
+  app.kubernetes.io/version: 3.10.0
   template:
 metadata:
   labels:
 app.kubernetes.io/name: camel-quarkus-examples-file-bindy-ftp
-app.kubernetes.io/version: 3.10.0-SNAPSHOT
+app.kubernetes.io/version: 3.10.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.10.0-SNAPSHOT
+app.kubernetes.io/version: 3.10.0
   name: ftp-server
 spec:
   ports:
@@ -66,7 +66,7 @@ spec:
   targetPort: 
   selector:
 app.kubernetes.io/name: 

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

2024-04-30 Thread jamesnetherton
This is an automated email from the ASF dual-hosted git repository.

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

commit 31be2f214f4dd13a1fd34ebc9da33973831d34f4
Author: James Netherton 
AuthorDate: Tue Apr 30 11:25:46 2024 +0100

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

diff --git a/aws-lambda/pom.xml b/aws-lambda/pom.xml
index 7613ab4..f1d3522 100644
--- a/aws-lambda/pom.xml
+++ b/aws-lambda/pom.xml
@@ -28,12 +28,12 @@
 
 
 3.10.0
-
3.11.0-SNAPSHOT
+
${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 dc74175..a2629ea 100644
--- a/cluster-leader-election/pom.xml
+++ b/cluster-leader-election/pom.xml
@@ -30,12 +30,12 @@
 
 
 3.10.0
-
3.11.0-SNAPSHOT
+
${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 899a02f..efbd0a7 100644
--- a/cxf-soap/pom.xml
+++ b/cxf-soap/pom.xml
@@ -30,12 +30,12 @@
 
 
 3.10.0
-
3.11.0-SNAPSHOT
+
${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 019d8d7..57a7017 100644
--- a/file-bindy-ftp/pom.xml
+++ b/file-bindy-ftp/pom.xml
@@ -29,12 +29,12 @@
 
 
 3.10.0
-
3.11.0-SNAPSHOT
+
${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 dea861d..07ed7ff 100644
--- a/file-split-log-xml/pom.xml
+++ b/file-split-log-xml/pom.xml
@@ -29,12 +29,12 @@
 
 
 3.10.0
-
3.11.0-SNAPSHOT
+
${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 4d8e4b4..049fe1b 100644
--- a/health/pom.xml
+++ b/health/pom.xml
@@ -29,12 +29,12 @@
 
 
 3.10.0
-
3.11.0-SNAPSHOT
+
${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 0314749..af9f886 100644
--- a/http-log/pom.xml
+++ b/http-log/pom.xml
@@ -29,12 +29,12 @@
 
 
 3.10.0
-
3.11.0-SNAPSHOT
+
${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 

(camel-quarkus-examples) branch main updated (ef1f680 -> cb9e230)

2024-04-30 Thread jamesnetherton
This is an automated email from the ASF dual-hosted git repository.

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


from ef1f680  Tag 3.9.0
 add 9e958a7  Next is 3.9.1
 add b18885d  Next is 3.10.0-SNAPSHOT
 add f34c183  Add camel-quarkus-file-cluster-service to 
cluster-leader-election example
 add f03efff  Adjust observability example uptime health check for Camel 
4.5.0
 add a2969aa  Create an example project for vertx-websocket
 add 8ce5e64  Fix rest-json README links to web UI
 add e08c316  Set quarkus.platform.version to 3.10.0.CR1
 add a8acb48  Temporarily disable cxf-soap build & tests due to 
apache/camel-quarkus#5926
 add 50e6f86  Upgrade upload & download GitHub actions to v4
 add 8df0d2e  Revert "Temporarily disable cxf-soap build & tests due to 
apache/camel-quarkus#5926"
 add b8a7e63  Migrate from deprecated quarkus.package.type to 
quarkus.native.enabled
 add e637898  Make rest-assured test scope in http-log example
 add 35aaa27  Set quarkus.platform.version to 3.10.0
 new 31be2f2  Upgrade to Quarkus Platform 3.10.0
 new cb9e230  Tag 3.10.0

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:
 .github/workflows/ci-build.yaml|   8 +-
 aws-lambda/pom.xml |   6 +-
 cluster-leader-election/pom.xml|  26 +--
 cxf-soap/pom.xml   |   8 +-
 docs/modules/ROOT/attachments/examples.json|   5 +
 file-bindy-ftp/pom.xml |   6 +-
 file-bindy-ftp/src/main/kubernetes/kubernetes.yml  |  12 +-
 file-bindy-ftp/src/main/kubernetes/openshift.yml   |  12 +-
 file-split-log-xml/pom.xml |   8 +-
 health/pom.xml |   8 +-
 http-log/pom.xml   |   9 +-
 jdbc-datasource/pom.xml|   8 +-
 jms-jpa/pom.xml|   8 +-
 jpa-idempotent-repository/pom.xml  |   6 +-
 .../src/main/kubernetes/kubernetes.yml |  12 +-
 .../src/main/kubernetes/openshift.yml  |  14 +-
 jta-jpa/pom.xml|   8 +-
 kafka/pom.xml  |   6 +-
 kamelet-chucknorris/pom.xml|  10 +-
 .../java/org/acme/kamelet/ChuckNorrisTest.java |   4 +-
 message-bridge/pom.xml |   4 +-
 observability/pom.xml  |   6 +-
 .../microprofile/CamelUptimeHealthCheck.java   |   2 +-
 platform-http-security-keycloak/pom.xml|   8 +-
 rest-json/README.adoc  |   4 +-
 rest-json/pom.xml  |   6 +-
 timer-log-kotlin/pom.xml   |   8 +-
 timer-log-main/pom.xml |  10 +-
 .../test/java/org/acme/main/TimerLogMainTest.java  |   4 +-
 timer-log/pom.xml  |   8 +-
 {rest-json => vertx-websocket-chat}/README.adoc|  26 +--
 .../eclipse-formatter-config.xml   |   0
 {health => vertx-websocket-chat}/pom.xml   |  32 ++--
 .../main/java/org/acme/websocket/ChatMessage.java  |  28 +--
 .../java/org/acme/websocket/SessionManager.java|  54 ++
 .../java/org/acme/websocket/WebSocketRoutes.java   | 115 
 .../main/resources/META-INF/resources/index.html   | 201 +
 .../src/main}/resources/application.properties |   5 +-
 .../java/org/acme/websocket/WebSocketRoutesIT.java |   4 +-
 .../org/acme/websocket/WebSocketRoutesTest.java|  90 +
 40 files changed, 628 insertions(+), 171 deletions(-)
 copy {rest-json => vertx-websocket-chat}/README.adoc (56%)
 copy {aws-lambda => vertx-websocket-chat}/eclipse-formatter-config.xml (100%)
 copy {health => vertx-websocket-chat}/pom.xml (93%)
 copy timer-log/src/main/java/org/acme/timer/log/GreetingBean.java => 
vertx-websocket-chat/src/main/java/org/acme/websocket/ChatMessage.java (65%)
 create mode 100644 
vertx-websocket-chat/src/main/java/org/acme/websocket/SessionManager.java
 create mode 100644 
vertx-websocket-chat/src/main/java/org/acme/websocket/WebSocketRoutes.java
 create mode 100644 
vertx-websocket-chat/src/main/resources/META-INF/resources/index.html
 copy {aws-lambda/src/test => 
vertx-websocket-chat/src/main}/resources/application.properties (95%)
 copy cluster-leader-election/src/test/java/org/acme/master/MasterIT.java => 
vertx-websocket-chat/src/test/java/org/acme/websocket/WebSocketRoutesIT.java 
(90%)
 create mode 100644 
vertx-websocket-chat/src/test/java/org/acme/websocket/WebSocketRoutesTest.java



(camel-quarkus-examples) 01/03: Migrate from deprecated quarkus.package.type to quarkus.native.enabled

2024-04-30 Thread jamesnetherton
This is an automated email from the ASF dual-hosted git repository.

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

commit b8a7e63d72338457df31ee1638584e7fa0eb223d
Author: James Netherton 
AuthorDate: Mon Apr 29 10:54:53 2024 +0100

Migrate from deprecated quarkus.package.type to quarkus.native.enabled
---
 aws-lambda/pom.xml |  2 +-
 cluster-leader-election/pom.xml| 18 ++
 cxf-soap/pom.xml   |  4 ++--
 file-bindy-ftp/pom.xml |  2 +-
 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  |  2 +-
 jta-jpa/pom.xml|  4 ++--
 kafka/pom.xml  |  2 +-
 kamelet-chucknorris/pom.xml|  4 ++--
 .../test/java/org/acme/kamelet/ChuckNorrisTest.java|  4 ++--
 observability/pom.xml  |  2 +-
 platform-http-security-keycloak/pom.xml|  4 ++--
 rest-json/pom.xml  |  2 +-
 timer-log-kotlin/pom.xml   |  4 ++--
 timer-log-main/pom.xml |  4 ++--
 .../src/test/java/org/acme/main/TimerLogMainTest.java  |  4 ++--
 timer-log/pom.xml  |  4 ++--
 vertx-websocket-chat/pom.xml   |  4 ++--
 22 files changed, 38 insertions(+), 52 deletions(-)

diff --git a/aws-lambda/pom.xml b/aws-lambda/pom.xml
index 9ccce48..670bcd7 100644
--- a/aws-lambda/pom.xml
+++ b/aws-lambda/pom.xml
@@ -268,7 +268,7 @@
 
 
 
-native
+true
 
 
 
diff --git a/cluster-leader-election/pom.xml b/cluster-leader-election/pom.xml
index a814975..99278fa 100644
--- a/cluster-leader-election/pom.xml
+++ b/cluster-leader-election/pom.xml
@@ -269,7 +269,7 @@
 
 
 
-native
+true
 
 
 
@@ -284,7 +284,7 @@
 
 
 
-
${quarkus.package.type}
+
${quarkus.native.enabled}
 
 
 
@@ -293,20 +293,6 @@
 
 
 
-
-
-native-disabled-github-ci
-
-
-env.CI
-true
-
-
-
-fast-jar
-true
-
-
 
 kubernetes
 
diff --git a/cxf-soap/pom.xml b/cxf-soap/pom.xml
index f9cfe64..363afd5 100644
--- a/cxf-soap/pom.xml
+++ b/cxf-soap/pom.xml
@@ -273,7 +273,7 @@
 
 
 
-native
+true
 
 
 
@@ -288,7 +288,7 @@
 
 
 
-
${quarkus.package.type}
+
${quarkus.native.enabled}
 
 
 
diff --git a/file-bindy-ftp/pom.xml b/file-bindy-ftp/pom.xml
index 53716cf..1587eb6 100644
--- a/file-bindy-ftp/pom.xml
+++ b/file-bindy-ftp/pom.xml
@@ -324,7 +324,7 @@
 
 
 
-native
+true
 
 
 
diff --git a/file-split-log-xml/pom.xml b/file-split-log-xml/pom.xml
index 5b7dee9..20d7d74 100644
--- a/file-split-log-xml/pom.xml
+++ b/file-split-log-xml/pom.xml
@@ -263,7 +263,7 @@
 
 
 
-native
+true
 
 
 
@@ -278,7 +278,7 @@
 
 
 
-
${quarkus.package.type}
+
${quarkus.native.enabled}
 
 
 
diff --git a/health/pom.xml b/health/pom.xml
index 7bcb5c1..c570702 100644
--- 

  1   2   3   >