(camel) branch main updated: Regen

2024-04-12 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 3f725da6852 Regen
3f725da6852 is described below

commit 3f725da6852b593b96b5824242da53114b706dc8
Author: Claus Ibsen 
AuthorDate: Sat Apr 13 07:51:39 2024 +0200

Regen
---
 .../src/main/java/org/apache/camel/maven/RouteCoverageMojo.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/catalog/camel-report-maven-plugin/src/main/java/org/apache/camel/maven/RouteCoverageMojo.java
 
b/catalog/camel-report-maven-plugin/src/main/java/org/apache/camel/maven/RouteCoverageMojo.java
index ff56fe196b1..b227b3c90c9 100644
--- 
a/catalog/camel-report-maven-plugin/src/main/java/org/apache/camel/maven/RouteCoverageMojo.java
+++ 
b/catalog/camel-report-maven-plugin/src/main/java/org/apache/camel/maven/RouteCoverageMojo.java
@@ -43,7 +43,6 @@ import javax.xml.transform.TransformerFactory;
 import javax.xml.transform.dom.DOMSource;
 import javax.xml.transform.stream.StreamResult;
 
-import org.apache.maven.plugin.AbstractMojo;
 import org.w3c.dom.Attr;
 import org.w3c.dom.Document;
 import org.w3c.dom.Element;
@@ -56,6 +55,7 @@ import org.apache.camel.parser.helper.RouteCoverageHelper;
 import org.apache.camel.parser.model.CamelNodeDetails;
 import org.apache.camel.parser.model.CoverageData;
 import org.apache.camel.util.FileUtil;
+import org.apache.maven.plugin.AbstractMojo;
 import org.apache.maven.plugin.MojoExecutionException;
 import org.apache.maven.plugins.annotations.Mojo;
 import org.apache.maven.plugins.annotations.Parameter;



(camel) branch main updated: Add properties to skip execution of the validate and route coverage mojos (#13717)

2024-04-12 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 cfd2b1745a4 Add properties to skip execution of the validate and route 
coverage mojos (#13717)
cfd2b1745a4 is described below

commit cfd2b1745a405984b3f45a75d06f8445dfa9c9de
Author: Adriano Machado <60320+ammach...@users.noreply.github.com>
AuthorDate: Sat Apr 13 01:51:16 2024 -0400

Add properties to skip execution of the validate and route coverage mojos 
(#13717)

* Add properties to skip execution of the validate and route coverage mojos

* Fixing typo

* Better log messages

* Adding new parameters to documentation
---
 catalog/camel-report-maven-plugin/pom.xml  | 12 ---
 .../org/apache/camel/maven/RouteCoverageMojo.java  | 14 ++--
 .../java/org/apache/camel/maven/ValidateMojo.java  | 37 +++---
 .../ROOT/pages/camel-report-maven-plugin.adoc  |  2 ++
 4 files changed, 40 insertions(+), 25 deletions(-)

diff --git a/catalog/camel-report-maven-plugin/pom.xml 
b/catalog/camel-report-maven-plugin/pom.xml
index 2ae648c57b6..19e9a38649e 100644
--- a/catalog/camel-report-maven-plugin/pom.xml
+++ b/catalog/camel-report-maven-plugin/pom.xml
@@ -55,18 +55,6 @@
 org.apache.maven
 maven-core
 
-
-
-org.codehaus.mojo
-exec-maven-plugin
-${exec-maven-plugin-version}
-
-
-org.apache.maven
-maven-plugin-descriptor
-
-
-
 
 org.apache.maven
 maven-plugin-api
diff --git 
a/catalog/camel-report-maven-plugin/src/main/java/org/apache/camel/maven/RouteCoverageMojo.java
 
b/catalog/camel-report-maven-plugin/src/main/java/org/apache/camel/maven/RouteCoverageMojo.java
index fc3af32c3c2..ff56fe196b1 100644
--- 
a/catalog/camel-report-maven-plugin/src/main/java/org/apache/camel/maven/RouteCoverageMojo.java
+++ 
b/catalog/camel-report-maven-plugin/src/main/java/org/apache/camel/maven/RouteCoverageMojo.java
@@ -43,6 +43,7 @@ import javax.xml.transform.TransformerFactory;
 import javax.xml.transform.dom.DOMSource;
 import javax.xml.transform.stream.StreamResult;
 
+import org.apache.maven.plugin.AbstractMojo;
 import org.w3c.dom.Attr;
 import org.w3c.dom.Document;
 import org.w3c.dom.Element;
@@ -59,7 +60,6 @@ import org.apache.maven.plugin.MojoExecutionException;
 import org.apache.maven.plugins.annotations.Mojo;
 import org.apache.maven.plugins.annotations.Parameter;
 import org.apache.maven.project.MavenProject;
-import org.codehaus.mojo.exec.AbstractExecMojo;
 import org.jboss.forge.roaster.Roaster;
 import org.jboss.forge.roaster.model.JavaType;
 import org.jboss.forge.roaster.model.source.JavaClassSource;
@@ -74,7 +74,7 @@ import static 
org.apache.camel.catalog.common.CatalogHelper.stripRootPath;
  * Performs route coverage reports after running Camel unit tests with 
camel-test modules
  */
 @Mojo(name = "route-coverage", threadSafe = true)
-public class RouteCoverageMojo extends AbstractExecMojo {
+public class RouteCoverageMojo extends AbstractMojo {
 
 public static final String DESTINATION_DIR = 
"/target/camel-route-coverage";
 /**
@@ -83,6 +83,12 @@ public class RouteCoverageMojo extends AbstractExecMojo {
 @Parameter(property = "project", required = true, readonly = true)
 protected MavenProject project;
 
+/**
+ * Skip route coverage execution.
+ */
+@Parameter(property = "camel.skipRouteCoverage", defaultValue = "false")
+private boolean skip;
+
 /**
  * Whether to fail if a route was not fully covered.
  *
@@ -152,6 +158,10 @@ public class RouteCoverageMojo extends AbstractExecMojo {
 
 @Override
 public void execute() throws MojoExecutionException {
+if (skip) {
+getLog().info("skipping route coverage as per configuration");
+return;
+}
 
 Set javaFiles = new LinkedHashSet<>();
 Set xmlFiles = new LinkedHashSet<>();
diff --git 
a/catalog/camel-report-maven-plugin/src/main/java/org/apache/camel/maven/ValidateMojo.java
 
b/catalog/camel-report-maven-plugin/src/main/java/org/apache/camel/maven/ValidateMojo.java
index 0e7436ff431..529573b5b89 100644
--- 
a/catalog/camel-report-maven-plugin/src/main/java/org/apache/camel/maven/ValidateMojo.java
+++ 
b/catalog/camel-report-maven-plugin/src/main/java/org/apache/camel/maven/ValidateMojo.java
@@ -45,14 +45,15 @@ import 
org.apache.camel.tooling.maven.MavenResolutionException;
 import org.apache.camel.util.OrderedProperties;
 import org.apache.camel.util.StringHelper;
 import org.apache.commons.io.IOUtils;
+import org.apache.maven.execution.MavenSession;
 import org.apache.maven.model.Dependency;
 import 

Re: [PR] Add properties to skip execution of the validate and route coverage mojos [camel]

2024-04-12 Thread via GitHub


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


-- 
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-12 Thread via GitHub


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

   The 
[quarkus-main](https://github.com/apache/camel-quarkus/tree/quarkus-main) 
branch build has failed:
   
   * Build ID: 8670284148-1451-4017057e-0f6a-4b29-bba8-499b37898f51
   * Camel Quarkus Commit: 42abf748022f73079d7317fcd09c65ad2d9ec75f
   
   * Quarkus Main Commit: d4fc79f88cc67c5f80ca39a0af1f7e0139cff26b
   * Link to build: 
https://github.com/apache/camel-quarkus/actions/runs/8670284148


-- 
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] ‼️ Karavan secrets not found [camel-karavan]

2024-04-12 Thread via GitHub


zyzgreater closed issue #881: ‼️ Karavan secrets not found
URL: https://github.com/apache/camel-karavan/issues/881


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

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

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



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

2024-04-12 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 6174371b0 chore: changelog automatic update
6174371b0 is described below

commit 6174371b03e4d8873595e0d852b8fcb1362ad4e9
Author: github-actions[bot] 
<41898282+github-actions[bot]@users.noreply.github.com>
AuthorDate: Sat Apr 13 01:07:57 2024 +

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

diff --git a/CHANGELOG.md b/CHANGELOG.md
index 4b4dc2771..01cf958f9 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -6,12 +6,14 @@
 
 **Closed issues:**
 
+- Wrongly formatted license 
[\#5360](https://github.com/apache/camel-k/issues/5360)
 - CLI install synthetic environment variable duplicate in operator pod 
container [\#5349](https://github.com/apache/camel-k/issues/5349)
 - Flaky TestHealthTrait [\#5345](https://github.com/apache/camel-k/issues/5345)
 - IntegrationProfile empty description 
[\#5341](https://github.com/apache/camel-k/issues/5341)
 - OLM procedure, clear errors and warnings 
[\#5333](https://github.com/apache/camel-k/issues/5333)
 - Flaky TestOperatorBasic 
[\#5326](https://github.com/apache/camel-k/issues/5326)
 - fatal error: concurrent map read and map write 
[\#5315](https://github.com/apache/camel-k/issues/5315)
+- Deprecate Spectrum publishing strategy 
[\#5314](https://github.com/apache/camel-k/issues/5314)
 
 ## [2.3.1-nightly](https://github.com/apache/camel-k/tree/2.3.1-nightly) 
(2024-04-08)
 



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

2024-04-12 Thread via GitHub


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

   The [camel-main](https://github.com/apache/camel-quarkus/tree/camel-main) 
branch build has failed:
   
   * Build ID: 8669397939-1347-caf384ea-cd4a-4166-b032-87d71d2ef7fc
   * Camel Quarkus Commit: 4f80505b1b219f120226ad8a65e39b9702851e1d
   
   * Camel Main Commit: d4fc79f88cc67c5f80ca39a0af1f7e0139cff26b
   * Link to build: 
https://github.com/apache/camel-quarkus/actions/runs/8669397939


-- 
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: nightly automatic updates

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

github-bot 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 967d0bd0d chore: nightly automatic updates
967d0bd0d is described below

commit 967d0bd0d6d92869802c798c0b9e9cef5beae943
Author: github-actions[bot] 
<41898282+github-actions[bot]@users.noreply.github.com>
AuthorDate: Sat Apr 13 00:30:33 2024 +

chore: nightly automatic updates
---
 CHANGELOG.md | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/CHANGELOG.md b/CHANGELOG.md
index 4b4dc2771..01cf958f9 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -6,12 +6,14 @@
 
 **Closed issues:**
 
+- Wrongly formatted license 
[\#5360](https://github.com/apache/camel-k/issues/5360)
 - CLI install synthetic environment variable duplicate in operator pod 
container [\#5349](https://github.com/apache/camel-k/issues/5349)
 - Flaky TestHealthTrait [\#5345](https://github.com/apache/camel-k/issues/5345)
 - IntegrationProfile empty description 
[\#5341](https://github.com/apache/camel-k/issues/5341)
 - OLM procedure, clear errors and warnings 
[\#5333](https://github.com/apache/camel-k/issues/5333)
 - Flaky TestOperatorBasic 
[\#5326](https://github.com/apache/camel-k/issues/5326)
 - fatal error: concurrent map read and map write 
[\#5315](https://github.com/apache/camel-k/issues/5315)
+- Deprecate Spectrum publishing strategy 
[\#5314](https://github.com/apache/camel-k/issues/5314)
 
 ## [2.3.1-nightly](https://github.com/apache/camel-k/tree/2.3.1-nightly) 
(2024-04-08)
 



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

2024-04-12 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 40b918e16 chore: nightly automatic updates
40b918e16 is described below

commit 40b918e1697388a289e06892b73fb57b2a53d589
Author: github-actions[bot] 
<41898282+github-actions[bot]@users.noreply.github.com>
AuthorDate: Fri Apr 12 23:46:57 2024 +

chore: nightly automatic updates
---
 CHANGELOG.md   |  5 
 coverage.out   | 30 +++---
 docs/modules/ROOT/partials/apis/camel-k-crds.adoc  |  2 +-
 docs/modules/traits/pages/builder.adoc |  2 +-
 helm/camel-k/crds/crd-integration-kit.yaml |  4 +--
 helm/camel-k/crds/crd-integration-platform.yaml|  8 +++---
 helm/camel-k/crds/crd-integration-profile.yaml |  8 +++---
 helm/camel-k/crds/crd-integration.yaml |  4 +--
 helm/camel-k/crds/crd-kamelet-binding.yaml |  5 ++--
 helm/camel-k/crds/crd-pipe.yaml|  5 ++--
 .../bases/camel.apache.org_integrationkits.yaml|  4 +--
 .../camel.apache.org_integrationplatforms.yaml |  8 +++---
 .../camel.apache.org_integrationprofiles.yaml  |  8 +++---
 .../crd/bases/camel.apache.org_integrations.yaml   |  4 +--
 .../bases/camel.apache.org_kameletbindings.yaml|  5 ++--
 .../config/crd/bases/camel.apache.org_pipes.yaml   |  5 ++--
 16 files changed, 54 insertions(+), 53 deletions(-)

diff --git a/CHANGELOG.md b/CHANGELOG.md
index 43a7aa583..548c4a8e7 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -6,15 +6,20 @@
 
 **Closed issues:**
 
+- Wrongly formatted license 
[\#5360](https://github.com/apache/camel-k/issues/5360)
 - CLI install synthetic environment variable duplicate in operator pod 
container [\#5349](https://github.com/apache/camel-k/issues/5349)
 - Flaky TestHealthTrait [\#5345](https://github.com/apache/camel-k/issues/5345)
 - IntegrationProfile empty description 
[\#5341](https://github.com/apache/camel-k/issues/5341)
 - OLM procedure, clear errors and warnings 
[\#5333](https://github.com/apache/camel-k/issues/5333)
 - Flaky TestOperatorBasic 
[\#5326](https://github.com/apache/camel-k/issues/5326)
 - fatal error: concurrent map read and map write 
[\#5315](https://github.com/apache/camel-k/issues/5315)
+- Deprecate Spectrum publishing strategy 
[\#5314](https://github.com/apache/camel-k/issues/5314)
 
 **Merged pull requests:**
 
+- chore\(ci\): Fix license check 
[\#5364](https://github.com/apache/camel-k/pull/5364) 
([gansheer](https://github.com/gansheer))
+- feat\(trait\): Spectrum deprecation notice 
[\#5363](https://github.com/apache/camel-k/pull/5363) 
([squakez](https://github.com/squakez))
+- chore\(deps\): bump knative.dev/serving from 0.39.3 to 0.40.1 
[\#5358](https://github.com/apache/camel-k/pull/5358) 
([dependabot[bot]](https://github.com/apps/dependabot))
 - chore\(deps\): bump github.com/prometheus/common from 0.52.2 to 0.52.3 
[\#5352](https://github.com/apache/camel-k/pull/5352) 
([dependabot[bot]](https://github.com/apps/dependabot))
 - fix\(install\): No duplicate envvars on operator pod container 
[\#5350](https://github.com/apache/camel-k/pull/5350) 
([gansheer](https://github.com/gansheer))
 - fix\(\#4922\): Fix flaky TestHealthTrait 
[\#5346](https://github.com/apache/camel-k/pull/5346) 
([christophd](https://github.com/christophd))
diff --git a/coverage.out b/coverage.out
index 3afe5cafb..dfb3549bc 100644
--- a/coverage.out
+++ b/coverage.out
@@ -1442,21 +1442,21 @@ github.com/apache/camel-k/v2/pkg/trait/affinity.go:240: 
operatorToLabelSel
 github.com/apache/camel-k/v2/pkg/trait/builder.go:49:  
newBuilderTrait 
100.0%
 github.com/apache/camel-k/v2/pkg/trait/builder.go:56:  
InfluencesKit   
100.0%
 github.com/apache/camel-k/v2/pkg/trait/builder.go:60:  
Matches 
90.0%
-github.com/apache/camel-k/v2/pkg/trait/builder.go:89:  
Configure   
44.4%
-github.com/apache/camel-k/v2/pkg/trait/builder.go:134: 
existsTaskRequest   
100.0%
-github.com/apache/camel-k/v2/pkg/trait/builder.go:144: 
adaptDeprecatedFields   
95.8%
-github.com/apache/camel-k/v2/pkg/trait/builder.go:177: 
newOrAppend 
100.0%

Re: [PR] fix: Fix garbage collection trait [camel-k]

2024-04-12 Thread via GitHub


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

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


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

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

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



Re: [PR] fix: Fix garbage collection trait [camel-k]

2024-04-12 Thread via GitHub


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

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


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

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

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



Re: [PR] fix: Fix garbage collection trait [camel-k]

2024-04-12 Thread via GitHub


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

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


-- 
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-performance-tests) branch main updated: Upgrade to Camel 4.5.0

2024-04-12 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-performance-tests.git


The following commit(s) were added to refs/heads/main by this push:
 new bc7412e  Upgrade to Camel 4.5.0
bc7412e is described below

commit bc7412ecdd35f4621546f463a404078315db4f20
Author: Claus Ibsen 
AuthorDate: Fri Apr 12 21:30:48 2024 +0200

Upgrade to Camel 4.5.0
---
 pom.xml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/pom.xml b/pom.xml
index 69e99d6..0937fc4 100644
--- a/pom.xml
+++ b/pom.xml
@@ -23,7 +23,7 @@
 
 org.apache.camel
 camel-dependencies
-4.4.0
+4.5.0
 
 
 org.apache.camel.tests
@@ -90,7 +90,7 @@
 
scpexe://people.apache.org/www/camel.apache.org/maven/
 17
 false
-4.4.0
+4.5.0
 
 3.12.1
 3.2.5



Re: [PR] fix: Fix garbage collection trait [camel-k]

2024-04-12 Thread via GitHub


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

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


-- 
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-12 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 dbf5bcace8e Regen
dbf5bcace8e is described below

commit dbf5bcace8ec722177d2b95b815381229f159cf2
Author: Claus Ibsen 
AuthorDate: Fri Apr 12 19:15:35 2024 +0200

Regen
---
 tooling/camel-spring-boot-dependencies/pom.xml | 10 +-
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/tooling/camel-spring-boot-dependencies/pom.xml 
b/tooling/camel-spring-boot-dependencies/pom.xml
index f1dddbce1e8..2f2a0555dff 100644
--- a/tooling/camel-spring-boot-dependencies/pom.xml
+++ b/tooling/camel-spring-boot-dependencies/pom.xml
@@ -210,27 +210,27 @@
   
 io.micrometer
 micrometer-commons
-1.12.4
+1.12.5
   
   
 io.micrometer
 micrometer-observation
-1.12.4
+1.12.5
   
   
 io.micrometer
 micrometer-registry-jmx
-1.12.4
+1.12.5
   
   
 io.micrometer
 micrometer-registry-prometheus
-1.12.4
+1.12.5
   
   
 io.micrometer
 micrometer-tracing
-1.2.4
+1.2.5
   
   
 net.bytebuddy



(camel) branch main updated: upgrade spring 6.1.6 (#13778)

2024-04-12 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 d42a65b41e8 upgrade spring 6.1.6 (#13778)
d42a65b41e8 is described below

commit d42a65b41e821ec81fb53328384fa1c0f845774c
Author: Claus Ibsen 
AuthorDate: Fri Apr 12 19:03:50 2024 +0200

upgrade spring 6.1.6 (#13778)

* Space vs tabs

* Upgrade to spring 6.1.6 and other spring projects

* Regen
---
 .../validator/DefaultValidatorResourceResolverFactory.java |  3 ++-
 parent/pom.xml | 14 +++---
 2 files changed, 9 insertions(+), 8 deletions(-)

diff --git 
a/components/camel-validator/src/main/java/org/apache/camel/component/validator/DefaultValidatorResourceResolverFactory.java
 
b/components/camel-validator/src/main/java/org/apache/camel/component/validator/DefaultValidatorResourceResolverFactory.java
index 1e9779a872b..98d825362b3 100644
--- 
a/components/camel-validator/src/main/java/org/apache/camel/component/validator/DefaultValidatorResourceResolverFactory.java
+++ 
b/components/camel-validator/src/main/java/org/apache/camel/component/validator/DefaultValidatorResourceResolverFactory.java
@@ -21,7 +21,8 @@ import org.w3c.dom.ls.LSResourceResolver;
 import org.apache.camel.CamelContext;
 
 /**
- * Default resource resolver factory which instantiates the default resource 
resolver ({@link DefaultLSResourceResolver}).
+ * Default resource resolver factory which instantiates the default resource 
resolver
+ * ({@link DefaultLSResourceResolver}).
  */
 public class DefaultValidatorResourceResolverFactory implements 
ValidatorResourceResolverFactory {
 
diff --git a/parent/pom.xml b/parent/pom.xml
index 89226317010..bc0d18b1b0e 100644
--- a/parent/pom.xml
+++ b/parent/pom.xml
@@ -353,11 +353,11 @@
 3.5.2
 3.4.0
 4.2.25
-1.12.4
-1.2.4
+1.12.5
+1.2.5
 3.1
-   
4.0.2
-   2.3.4
+
4.0.2
+2.3.4
 2.2.3
 0.3.4
 0.9.5
@@ -418,7 +418,7 @@
 2.3.1
 1.0.4
 3.6.5
-1.1.17
+1.1.18
 3.27.2
 2.2.0
 5.4.0
@@ -446,9 +446,9 @@
 2.3-groovy-4.0
 5.1.1
 3.2.3
-3.2.2
+3.2.3
 3.1.1
-6.1.5
+6.1.6
 3.1.2
 6.2.3
 4.0.10



(camel) branch spring616 deleted (was bbac91bfff4)

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

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


 was bbac91bfff4 Regen

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] upgrade spring 6.1.6 [camel]

2024-04-12 Thread via GitHub


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


-- 
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-18017: mdn content corruption [camel]

2024-04-12 Thread via GitHub


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

   thanks


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

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

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



(camel) branch spring616 updated (21033524d4d -> bbac91bfff4)

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

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


from 21033524d4d Upgrade to spring 6.1.6 and other spring projects
 add bbac91bfff4 Regen

No new revisions were added by this update.

Summary of changes:
 .../component/validator/DefaultValidatorResourceResolverFactory.java   | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)



Re: [PR] feat(trait): Spectrum deprecation notice [camel-k]

2024-04-12 Thread via GitHub


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


-- 
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] Deprecate Spectrum publishing strategy [camel-k]

2024-04-12 Thread via GitHub


gansheer closed issue #5314: Deprecate Spectrum publishing strategy
URL: https://github.com/apache/camel-k/issues/5314


-- 
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: feat(trait): Spectrum deprecation notice

2024-04-12 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 748354bcd feat(trait): Spectrum deprecation notice
748354bcd is described below

commit 748354bcd81cc30ca04e4183f17afd9eb9752806
Author: Pasquale Congiusti 
AuthorDate: Fri Apr 12 15:30:42 2024 +0200

feat(trait): Spectrum deprecation notice
---
 .github/workflows/builder.yml   | 2 +-
 docs/modules/ROOT/partials/apis/camel-k-crds.adoc   | 8 ++--
 helm/camel-k/crds/crd-build.yaml| 7 ---
 pkg/apis/camel/v1/build_types.go| 8 ++--
 pkg/apis/camel/v1/integrationplatform_types.go  | 1 +
 pkg/apis/camel/v1/trait/builder.go  | 2 +-
 pkg/resources/config/crd/bases/camel.apache.org_builds.yaml | 7 ---
 pkg/trait/builder.go| 3 +++
 8 files changed, 26 insertions(+), 12 deletions(-)

diff --git a/.github/workflows/builder.yml b/.github/workflows/builder.yml
index 6c1c11586..cbecf7bd1 100644
--- a/.github/workflows/builder.yml
+++ b/.github/workflows/builder.yml
@@ -76,7 +76,7 @@ jobs:
 strategy:
   fail-fast: false
   matrix:
-publisher: ["Jib", "Spectrum"]
+publisher: ["Jib"]
 
 steps:
 - name: Checkout code
diff --git a/docs/modules/ROOT/partials/apis/camel-k-crds.adoc 
b/docs/modules/ROOT/partials/apis/camel-k-crds.adoc
index 8771e0e60..32cb242ae 100644
--- a/docs/modules/ROOT/partials/apis/camel-k-crds.adoc
+++ b/docs/modules/ROOT/partials/apis/camel-k-crds.adoc
@@ -878,6 +878,7 @@ will take care of producing the expected 
Camel/Camel-Quarkus runtime.
 * <<#_camel_apache_org_v1_Task, Task>>
 
 BuildahTask is used to configure Buildah.
+Deprecated: no longer in use.
 
 [cols="2,2a",options="header"]
 |===
@@ -4181,6 +4182,7 @@ Properties --
 * <<#_camel_apache_org_v1_Task, Task>>
 
 KanikoTask is used to configure Kaniko.
+Deprecated: no longer in use.
 
 [cols="2,2a",options="header"]
 |===
@@ -4233,6 +4235,7 @@ docker image to use
 * <<#_camel_apache_org_v1_KanikoTask, KanikoTask>>
 
 KanikoTaskCache is used to configure Kaniko cache.
+Deprecated: no longer in use.
 
 [cols="2,2a",options="header"]
 |===
@@ -5589,7 +5592,7 @@ a PackageTask, used to package the project
 
 
 a BuildahTask, for Buildah strategy
-Deprecated: use spectrum, jib, s2i or a custom publishing strategy instead
+Deprecated: use jib, s2i or a custom publishing strategy instead
 
 |`kaniko` +
 *xref:#_camel_apache_org_v1_KanikoTask[KanikoTask]*
@@ -5597,7 +5600,7 @@ Deprecated: use spectrum, jib, s2i or a custom publishing 
strategy instead
 
 
 a KanikoTask, for Kaniko strategy
-Deprecated: use spectrum, jib, s2i or a custom publishing strategy instead
+Deprecated: use jib, s2i or a custom publishing strategy instead
 
 |`spectrum` +
 *xref:#_camel_apache_org_v1_SpectrumTask[SpectrumTask]*
@@ -5605,6 +5608,7 @@ Deprecated: use spectrum, jib, s2i or a custom publishing 
strategy instead
 
 
 a SpectrumTask, for Spectrum strategy
+Deprecated: use jib, s2i or a custom publishing strategy instead
 
 |`s2i` +
 *xref:#_camel_apache_org_v1_S2iTask[S2iTask]*
diff --git a/helm/camel-k/crds/crd-build.yaml b/helm/camel-k/crds/crd-build.yaml
index 31635f79d..4d3131d24 100644
--- a/helm/camel-k/crds/crd-build.yaml
+++ b/helm/camel-k/crds/crd-build.yaml
@@ -161,7 +161,7 @@ spec:
   properties:
 buildah:
   description: 'a BuildahTask, for Buildah strategy 
Deprecated:
-use spectrum, jib, s2i or a custom publishing strategy 
instead'
+use jib, s2i or a custom publishing strategy instead'
   properties:
 baseImage:
   description: base image layer
@@ -1027,7 +1027,7 @@ spec:
   type: object
 kaniko:
   description: 'a KanikoTask, for Kaniko strategy 
Deprecated:
-use spectrum, jib, s2i or a custom publishing strategy 
instead'
+use jib, s2i or a custom publishing strategy instead'
   properties:
 baseImage:
   description: base image layer
@@ -1789,7 +1789,8 @@ spec:
   type: string
   type: object
 spectrum:
-  description: a SpectrumTask, for Spectrum strategy
+  description: 'a SpectrumTask, for Spectrum strategy 
Deprecated:
+use jib, s2i or a custom publishing strategy instead'
   properties:
 baseImage:
   description: base image layer
diff --git 

Re: [PR] fix: Fix garbage collection trait [camel-k]

2024-04-12 Thread via GitHub


lburgazzoli commented on code in PR #5365:
URL: https://github.com/apache/camel-k/pull/5365#discussion_r1562728765


##
pkg/trait/gc.go:
##
@@ -42,12 +47,59 @@ import (
v1 "github.com/apache/camel-k/v2/pkg/apis/camel/v1"
traitv1 "github.com/apache/camel-k/v2/pkg/apis/camel/v1/trait"
"github.com/apache/camel-k/v2/pkg/util"
+   "github.com/apache/camel-k/v2/pkg/util/log"
 )
 
 var (
-   locksync.Mutex
-   rateLimiter = rate.NewLimiter(rate.Every(time.Minute), 1)
-   collectableGVKs = make(map[schema.GroupVersionKind]struct{})
+   lock  sync.Mutex
+   rateLimiter   = rate.NewLimiter(rate.Every(time.Minute), 1)
+   collectableGVKs   = make(map[schema.GroupVersionKind]struct{})
+   defaultDeletableTypes = map[schema.GroupVersionKind]struct{}{
+   schema.GroupVersionKind{

Review Comment:
   +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] [Backport 2.3.x]: chore(ci): Fix license check [camel-k]

2024-04-12 Thread via GitHub


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

   :heavy_check_mark: Unit test coverage report - coverage increased from 37.7% 
to 37.8% (**+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



[PR] [Backport 2.3.x]: chore(ci): Fix license check [camel-k]

2024-04-12 Thread via GitHub


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

   Backport of https://github.com/apache/camel-k/pull/5364
   
   **Release Note**
   ```release-note
   chore(ci): Fix license check
   ```
   


-- 
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] Wrongly formatted license [camel-k]

2024-04-12 Thread via GitHub


gansheer closed issue #5360: Wrongly formatted license
URL: https://github.com/apache/camel-k/issues/5360


-- 
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 (1efeed601 -> 1da903262)

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

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


from 1efeed601 chore(deps): bump knative.dev/serving from 0.39.3 to 0.40.1
 add 1da903262 chore: Fix licenses

No new revisions were added by this update.

Summary of changes:
 pkg/builder/quarkus_test.go|  2 ++
 pkg/controller/integration/metrics_test.go | 20 +++-
 2 files changed, 21 insertions(+), 1 deletion(-)



Re: [PR] chore(ci): Fix license check [camel-k]

2024-04-12 Thread via GitHub


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


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

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

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



Re: [PR] fix: Fix garbage collection trait [camel-k]

2024-04-12 Thread via GitHub


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

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


-- 
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-20521: camel-amqp - AMQP publisher application is losing messages with local JMS transaction enabled [camel]

2024-04-12 Thread via GitHub


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

   spring upgrade here: https://github.com/apache/camel/pull/13778


-- 
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] upgrade spring 6.1.6 [camel]

2024-04-12 Thread via GitHub


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

   :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] upgrade spring 6.1.6 [camel]

2024-04-12 Thread via GitHub


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

   # 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 main updated: (chores) camel-core: disable flaky core tests on GitHub

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

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


The following commit(s) were added to refs/heads/main by this push:
 new e3bf166dabe (chores) camel-core: disable flaky core tests on GitHub
e3bf166dabe is described below

commit e3bf166dabe786db370dff584aa2850242a6409e
Author: Otavio Rodolfo Piske 
AuthorDate: Thu Apr 11 17:16:52 2024 +0200

(chores) camel-core: disable flaky core tests on GitHub
---
 .../camel/component/file/FileConsumerIdempotentKeyNameAndSizeTest.java  | 2 ++
 .../org/apache/camel/issues/AggregatorWithBatchConsumingIssueTest.java  | 2 ++
 .../apache/camel/processor/MulticastParallelStreamingTimeoutTest.java   | 2 ++
 .../camel/processor/MulticastParallelTimeoutStreamCachingTest.java  | 2 ++
 .../async/AsyncProcessorAwaitManagerInterruptWithRedeliveryTest.java| 2 ++
 5 files changed, 10 insertions(+)

diff --git 
a/core/camel-core/src/test/java/org/apache/camel/component/file/FileConsumerIdempotentKeyNameAndSizeTest.java
 
b/core/camel-core/src/test/java/org/apache/camel/component/file/FileConsumerIdempotentKeyNameAndSizeTest.java
index 9b715971712..69262d3a60c 100644
--- 
a/core/camel-core/src/test/java/org/apache/camel/component/file/FileConsumerIdempotentKeyNameAndSizeTest.java
+++ 
b/core/camel-core/src/test/java/org/apache/camel/component/file/FileConsumerIdempotentKeyNameAndSizeTest.java
@@ -20,10 +20,12 @@ import org.apache.camel.Exchange;
 import org.apache.camel.builder.RouteBuilder;
 import org.apache.camel.component.mock.MockEndpoint;
 import org.junit.jupiter.api.Test;
+import org.junit.jupiter.api.condition.DisabledIfSystemProperty;
 
 /**
  * Unit test for the idempotentKey option.
  */
+@DisabledIfSystemProperty(named = "ci.env.name", matches = "github.com", 
disabledReason = "Flaky on Github CI")
 public class FileConsumerIdempotentKeyNameAndSizeTest extends 
FileConsumerIdempotentTest {
 
 @Override
diff --git 
a/core/camel-core/src/test/java/org/apache/camel/issues/AggregatorWithBatchConsumingIssueTest.java
 
b/core/camel-core/src/test/java/org/apache/camel/issues/AggregatorWithBatchConsumingIssueTest.java
index a46ad4c3121..4ec41975f53 100644
--- 
a/core/camel-core/src/test/java/org/apache/camel/issues/AggregatorWithBatchConsumingIssueTest.java
+++ 
b/core/camel-core/src/test/java/org/apache/camel/issues/AggregatorWithBatchConsumingIssueTest.java
@@ -23,7 +23,9 @@ import org.apache.camel.builder.RouteBuilder;
 import org.apache.camel.component.mock.MockEndpoint;
 import org.apache.camel.processor.BodyInAggregatingStrategy;
 import org.junit.jupiter.api.Test;
+import org.junit.jupiter.api.condition.DisabledIfSystemProperty;
 
+@DisabledIfSystemProperty(named = "ci.env.name", matches = "github.com", 
disabledReason = "Flaky on Github CI")
 public class AggregatorWithBatchConsumingIssueTest extends ContextTestSupport {
 
 @Test
diff --git 
a/core/camel-core/src/test/java/org/apache/camel/processor/MulticastParallelStreamingTimeoutTest.java
 
b/core/camel-core/src/test/java/org/apache/camel/processor/MulticastParallelStreamingTimeoutTest.java
index ca69e1d503f..4cfcb61483a 100644
--- 
a/core/camel-core/src/test/java/org/apache/camel/processor/MulticastParallelStreamingTimeoutTest.java
+++ 
b/core/camel-core/src/test/java/org/apache/camel/processor/MulticastParallelStreamingTimeoutTest.java
@@ -22,7 +22,9 @@ import org.apache.camel.Exchange;
 import org.apache.camel.builder.RouteBuilder;
 import org.apache.camel.component.mock.MockEndpoint;
 import org.junit.jupiter.api.Test;
+import org.junit.jupiter.api.condition.DisabledIfSystemProperty;
 
+@DisabledIfSystemProperty(named = "ci.env.name", matches = "github.com", 
disabledReason = "Flaky on Github CI")
 public class MulticastParallelStreamingTimeoutTest extends ContextTestSupport {
 
 @Test
diff --git 
a/core/camel-core/src/test/java/org/apache/camel/processor/MulticastParallelTimeoutStreamCachingTest.java
 
b/core/camel-core/src/test/java/org/apache/camel/processor/MulticastParallelTimeoutStreamCachingTest.java
index 772162fde04..fb33a5c75a1 100644
--- 
a/core/camel-core/src/test/java/org/apache/camel/processor/MulticastParallelTimeoutStreamCachingTest.java
+++ 
b/core/camel-core/src/test/java/org/apache/camel/processor/MulticastParallelTimeoutStreamCachingTest.java
@@ -29,6 +29,7 @@ import org.apache.camel.Processor;
 import org.apache.camel.builder.RouteBuilder;
 import org.apache.camel.converter.stream.CachedOutputStream;
 import org.junit.jupiter.api.Test;
+import org.junit.jupiter.api.condition.DisabledIfSystemProperty;
 
 import static org.junit.jupiter.api.Assertions.assertEquals;
 import static org.junit.jupiter.api.Assertions.assertTrue;
@@ -36,6 +37,7 @@ import static org.junit.jupiter.api.Assertions.assertTrue;
 /**
  *
  */
+@DisabledIfSystemProperty(named = "ci.env.name", matches = "github.com", 
disabledReason = "Flaky on Github CI")
 public class 

Re: [PR] (chores) camel-core: disable flaky core tests on GitHub [camel]

2024-04-12 Thread via GitHub


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


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

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

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



(camel) 01/02: Space vs tabs

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

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

commit 14349d3f3fc045dd4ed127cef918a096cbf86b3b
Author: Claus Ibsen 
AuthorDate: Fri Apr 12 16:59:55 2024 +0200

Space vs tabs
---
 parent/pom.xml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/parent/pom.xml b/parent/pom.xml
index 89226317010..bb3965cf83f 100644
--- a/parent/pom.xml
+++ b/parent/pom.xml
@@ -356,8 +356,8 @@
 1.12.4
 1.2.4
 3.1
-   
4.0.2
-   2.3.4
+
4.0.2
+2.3.4
 2.2.3
 0.3.4
 0.9.5



(camel) 02/02: Upgrade to spring 6.1.6 and other spring projects

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

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

commit 21033524d4deae374061a7f4c07e16c6672e96ad
Author: Claus Ibsen 
AuthorDate: Fri Apr 12 17:07:53 2024 +0200

Upgrade to spring 6.1.6 and other spring projects
---
 parent/pom.xml | 10 +-
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/parent/pom.xml b/parent/pom.xml
index bb3965cf83f..bc0d18b1b0e 100644
--- a/parent/pom.xml
+++ b/parent/pom.xml
@@ -353,8 +353,8 @@
 3.5.2
 3.4.0
 4.2.25
-1.12.4
-1.2.4
+1.12.5
+1.2.5
 3.1
 
4.0.2
 2.3.4
@@ -418,7 +418,7 @@
 2.3.1
 1.0.4
 3.6.5
-1.1.17
+1.1.18
 3.27.2
 2.2.0
 5.4.0
@@ -446,9 +446,9 @@
 2.3-groovy-4.0
 5.1.1
 3.2.3
-3.2.2
+3.2.3
 3.1.1
-6.1.5
+6.1.6
 3.1.2
 6.2.3
 4.0.10



(camel) branch spring616 created (now 21033524d4d)

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

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


  at 21033524d4d Upgrade to spring 6.1.6 and other spring projects

This branch includes the following new commits:

 new 14349d3f3fc Space vs tabs
 new 21033524d4d Upgrade to spring 6.1.6 and other spring projects

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.




(camel-karavan) branch main updated: report template

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

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


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

commit f042e1d24b402a7ed0af61eaa8e4703b51adfa7c
Author: Marat Gubaidullin 
AuthorDate: Fri Apr 12 11:05:04 2024 -0400

report template
---
 .github/DISCUSSION_TEMPLATE/q-a.yml | 72 -
 1 file changed, 31 insertions(+), 41 deletions(-)

diff --git a/.github/DISCUSSION_TEMPLATE/q-a.yml 
b/.github/DISCUSSION_TEMPLATE/q-a.yml
index 955717bf..f3405510 100644
--- a/.github/DISCUSSION_TEMPLATE/q-a.yml
+++ b/.github/DISCUSSION_TEMPLATE/q-a.yml
@@ -1,54 +1,44 @@
 title: "Question"
 body:
-  - type: markdown
-attributes:
-  value: |
-This is text that will show up in the template!
   - type: textarea
-id: improvements
+id: question
 attributes:
-  label: Top 3 improvements
-  description: "What are the top 3 improvements we could make to this 
project?"
-  value: |
-1.
-2.
-3.
-...
-  render: bash
+  label: Ask a question
+  description: Please provide a detailed explanation of your objectives 
and any challenges you are encountering in reaching these goals
+  value: "How can I create a new REST service to get data from Postgres 
database"
 validations:
   required: true
-  - type: markdown
-attributes:
-  value: |
-## Markdown header
-And some more markdown
-  - type: input
-id: has-id
+  - type: dropdown
+id: variant
 attributes:
-  label: Suggestions
-  description: A description about suggestions to help you
-validations:
-  required: true
+  label: Variant
+  description: What Karavan variant are you running?
+  options:
+- Web Application
+- Vs Code Extension
   - type: dropdown
-id: download
+id: container
 attributes:
-  label: Which area of this project could be most improved?
+  label: Container Management (if applicable)
+  description: What Container Management System are you running?
   options:
-- Documentation
-- Pull request review time
-- Bug fix time
-- Release cadence
-validations:
-  required: true
-  - type: checkboxes
+- Docker
+- Kubernetes
+- Openshift
+  - type: dropdown
+id: os
 attributes:
-  label: Check that box!
+  label: Operating System (if applicable)
+  description: What Operating System are you running?
   options:
-- label: This one!
-  required: true
-- label: I won't stop you if you check this one, too
-  - type: markdown
+- Linux
+- MacOS
+- Windows
+  - type: dropdown
+id: version
 attributes:
-  value: |
-### The thrilling conclusion
-_to our template_
+  label: Version
+  description: What Karavan version are you running?
+  options:
+- 4.4.0
+- 4.5.0



[PR] fix: Fix garbage collection trait [camel-k]

2024-04-12 Thread via GitHub


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

   - Run garbage collection trait also in Integration initialization phase
   - Fallback to minimal set of deletable types when auto discovery fails (e.g. 
in OpenShift)
   - Add some unit and E2E test
   
   **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-karavan) branch main updated: report template

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

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


The following commit(s) were added to refs/heads/main by this push:
 new 9af261db report template
9af261db is described below

commit 9af261db84f04b300932cd9c191fa87d4ee59909
Author: Marat Gubaidullin 
AuthorDate: Fri Apr 12 10:59:55 2024 -0400

report template
---
 .github/DISCUSSION_TEMPLATE/q-a.yml | 54 +
 1 file changed, 54 insertions(+)

diff --git a/.github/DISCUSSION_TEMPLATE/q-a.yml 
b/.github/DISCUSSION_TEMPLATE/q-a.yml
index e69de29b..955717bf 100644
--- a/.github/DISCUSSION_TEMPLATE/q-a.yml
+++ b/.github/DISCUSSION_TEMPLATE/q-a.yml
@@ -0,0 +1,54 @@
+title: "Question"
+body:
+  - type: markdown
+attributes:
+  value: |
+This is text that will show up in the template!
+  - type: textarea
+id: improvements
+attributes:
+  label: Top 3 improvements
+  description: "What are the top 3 improvements we could make to this 
project?"
+  value: |
+1.
+2.
+3.
+...
+  render: bash
+validations:
+  required: true
+  - type: markdown
+attributes:
+  value: |
+## Markdown header
+And some more markdown
+  - type: input
+id: has-id
+attributes:
+  label: Suggestions
+  description: A description about suggestions to help you
+validations:
+  required: true
+  - type: dropdown
+id: download
+attributes:
+  label: Which area of this project could be most improved?
+  options:
+- Documentation
+- Pull request review time
+- Bug fix time
+- Release cadence
+validations:
+  required: true
+  - type: checkboxes
+attributes:
+  label: Check that box!
+  options:
+- label: This one!
+  required: true
+- label: I won't stop you if you check this one, too
+  - type: markdown
+attributes:
+  value: |
+### The thrilling conclusion
+_to our template_



Re: [PR] Bump jakarta.annotation:jakarta.annotation-api from 2.1.1 to 3.0.0 [camel]

2024-04-12 Thread via GitHub


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

   anyone knows what the jump from v2 to v3 really means, and is this 
compatible with SB / Quarkus etc


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

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

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



(camel-karavan) branch main updated: report template

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

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


The following commit(s) were added to refs/heads/main by this push:
 new 5a257f82 report template
5a257f82 is described below

commit 5a257f82fccba4a027f247500284a3fb186beaa5
Author: Marat Gubaidullin 
AuthorDate: Fri Apr 12 10:57:30 2024 -0400

report template
---
 .github/ISSUE_TEMPLATE/feature_request.yml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/.github/ISSUE_TEMPLATE/feature_request.yml 
b/.github/ISSUE_TEMPLATE/feature_request.yml
index d278136e..337c6369 100644
--- a/.github/ISSUE_TEMPLATE/feature_request.yml
+++ b/.github/ISSUE_TEMPLATE/feature_request.yml
@@ -1,6 +1,6 @@
 name: Feature request
 description: Suggest an idea for this project
-title: "Idea"
+title: "Feature"
 labels: ["feature"]
 body:
   - type: textarea



(camel-karavan) branch main updated: report template

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

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


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

commit ee98c3f7bfd9985bd55e4a2582e7a76059b86b51
Author: Marat Gubaidullin 
AuthorDate: Fri Apr 12 10:56:53 2024 -0400

report template
---
 .../q-a.yml}   |  0
 .github/ISSUE_TEMPLATE/bug_report.md   | 33 --
 .github/ISSUE_TEMPLATE/bug_report.yml  | 71 ++
 .github/ISSUE_TEMPLATE/feature_request.md  | 25 
 .github/ISSUE_TEMPLATE/feature_request.yml | 33 ++
 5 files changed, 104 insertions(+), 58 deletions(-)

diff --git a/.github/DISCUSSION_TEMPLATE b/.github/DISCUSSION_TEMPLATE/q-a.yml
similarity index 100%
rename from .github/DISCUSSION_TEMPLATE
rename to .github/DISCUSSION_TEMPLATE/q-a.yml
diff --git a/.github/ISSUE_TEMPLATE/bug_report.md 
b/.github/ISSUE_TEMPLATE/bug_report.md
deleted file mode 100644
index f7a07a87..
--- a/.github/ISSUE_TEMPLATE/bug_report.md
+++ /dev/null
@@ -1,33 +0,0 @@

-name: Bug report
-about: Create a report to help us improve
-title: ''
-labels: ''
-assignees: ''
-

-
-**Describe the bug**
-A clear and concise description of what the bug is.
-
-**To Reproduce**
-Steps to reproduce the behavior:
-1. Go to '...'
-2. Click on ''
-3. Scroll down to ''
-4. See error
-
-**Expected behavior**
-A clear and concise description of what you expected to happen.
-
-**Screenshots**
-If applicable, add screenshots to help explain your problem.
-
-**Environment (please complete the following information):**
- - Karavan version: [4.4.0]
- - Type: [Application, VS Code Extension]
- - Container Management: [e.g. Docker, Kubernetes if applicable]
- - OS: [e.g. Linux, MacOS, Windows if applicable]
-
-**Additional context**
-Add any other context about the problem here.
\ No newline at end of file
diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml 
b/.github/ISSUE_TEMPLATE/bug_report.yml
new file mode 100644
index ..8a0c231e
--- /dev/null
+++ b/.github/ISSUE_TEMPLATE/bug_report.yml
@@ -0,0 +1,71 @@
+name: Bug Report
+description: File a bug report.
+title: "Bug"
+labels: ["bug"]
+body:
+  - type: textarea
+id: description
+attributes:
+  label: Describe the bug
+  description: A clear and concise description of what the bug is. Add 
screenshorts if applicable.
+  value: "A bug happened!"
+validations:
+  required: true
+  - type: textarea
+id: reproduce
+attributes:
+  label: Steps to reproduce the behavior
+  description: Add screenshorts if applicable
+  value: |
+1. Go to '...'a
+2. Click on ''
+3. Scroll down to ''
+4. See error
+validations:
+  required: true
+  - type: dropdown
+id: variant
+attributes:
+  label: Variant
+  description: What Karavan variant are you running?
+  options:
+- Web Application
+- Vs Code Extension
+  default: 0
+validations:
+  required: true
+  - type: dropdown
+id: container
+attributes:
+  label: Container Management (if applicable)
+  description: What Container Management System are you running?
+  options:
+- Docker
+- Kubernetes
+- Openshift
+  - type: dropdown
+id: os
+attributes:
+  label: Operating System (if applicable)
+  description: What Operating System are you running?
+  options:
+- Linux
+- MacOS
+- Windows
+  - type: dropdown
+id: version
+attributes:
+  label: Version
+  description: What Karavan version are you running?
+  options:
+- 4.4.0
+- 4.5.0
+  default: 0
+validations:
+  required: true
+  - type: textarea
+id: logs
+attributes:
+  label: Relevant log output
+  description: Please copy and paste any relevant log output. This will be 
automatically formatted into code, so no need for backticks.
+  render: shell
diff --git a/.github/ISSUE_TEMPLATE/feature_request.md 
b/.github/ISSUE_TEMPLATE/feature_request.md
deleted file mode 100644
index e48d9bc0..
--- a/.github/ISSUE_TEMPLATE/feature_request.md
+++ /dev/null
@@ -1,25 +0,0 @@

-name: Feature request
-about: Suggest an idea for this project
-title: ''
-labels: ''
-assignees: ''
-

-
-**Is your feature request related to a problem? Please describe.**
-A clear and concise description of what the problem is. Ex. I'm always 
frustrated when [...]
-
-**Describe the solution you'd like**
-A clear and concise description of what you want to happen.
-
-**Describe alternatives you've considered**
-A clear and concise description of any alternative solutions or features 
you've considered.
-
-**Environment (please complete the 

Re: [PR] Downgrade Milvus SDK to 2.3.4 [camel]

2024-04-12 Thread via GitHub


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


-- 
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 milvus-downgrade deleted (was ff544bcc4db)

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

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


 was ff544bcc4db Downgrade Milvus SDK to 2.3.4

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: Downgrade Milvus SDK to 2.3.4 (#13777)

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

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


The following commit(s) were added to refs/heads/main by this push:
 new e4d4b45f114 Downgrade Milvus SDK to 2.3.4 (#13777)
e4d4b45f114 is described below

commit e4d4b45f114e9a0b42d1b03cc219f3ba42a98231
Author: Andrea Cosentino 
AuthorDate: Fri Apr 12 16:53:15 2024 +0200

Downgrade Milvus SDK to 2.3.4 (#13777)

Signed-off-by: Andrea Cosentino 
---
 parent/pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/parent/pom.xml b/parent/pom.xml
index 5993d3be139..89226317010 100644
--- a/parent/pom.xml
+++ b/parent/pom.xml
@@ -357,7 +357,7 @@
 1.2.4
 3.1

4.0.2
-   2.3.5
+   2.3.4
 2.2.3
 0.3.4
 0.9.5



Re: [PR] Downgrade Milvus SDK to 2.3.4 [camel]

2024-04-12 Thread via GitHub


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

   :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] Downgrade Milvus SDK to 2.3.4 [camel]

2024-04-12 Thread via GitHub


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

   /component-test milvus


-- 
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] Downgrade Milvus SDK to 2.3.4 [camel]

2024-04-12 Thread via GitHub


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

   :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] Downgrade Milvus SDK to 2.3.4 [camel]

2024-04-12 Thread via GitHub


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

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


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

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

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



(camel) branch milvus-downgrade created (now ff544bcc4db)

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

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


  at ff544bcc4db Downgrade Milvus SDK to 2.3.4

This branch includes the following new commits:

 new ff544bcc4db Downgrade Milvus SDK to 2.3.4

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: Downgrade Milvus SDK to 2.3.4

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

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

commit ff544bcc4db4c97ceb9c9db7426ab474e07cf470
Author: Andrea Cosentino 
AuthorDate: Fri Apr 12 16:50:18 2024 +0200

Downgrade Milvus SDK to 2.3.4

Signed-off-by: Andrea Cosentino 
---
 parent/pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/parent/pom.xml b/parent/pom.xml
index 5993d3be139..89226317010 100644
--- a/parent/pom.xml
+++ b/parent/pom.xml
@@ -357,7 +357,7 @@
 1.2.4
 3.1

4.0.2
-   2.3.5
+   2.3.4
 2.2.3
 0.3.4
 0.9.5



[PR] [3.8.x] jdbc-db2: fails in fips environment #5993 [camel-quarkus]

2024-04-12 Thread via GitHub


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

   cherry-picked 24a206b9c932fb077d45ab3aa7167e940055622c
   
   Upstream PR: https://github.com/apache/camel-quarkus/pull/5994
   
   


-- 
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] Cannot run `make test-smoke` on arm64 [camel-k]

2024-04-12 Thread via GitHub


christophd commented on issue #5362:
URL: https://github.com/apache/camel-k/issues/5362#issuecomment-2051856164

   yes, you need to set some environment variables to overwrite the base image. 
These are the environment variables you may want to set.
   
   ```
   CAMEL_K_TEST_OPERATOR_IMAGE
   CAMEL_K_TEST_BASE_IMAGE
   CAMEL_K_TEST_RUNTIME_VERSION
   CAMEL_K_TEST_OPERATOR_IMAGE_PULL_POLICY
   CAMEL_K_TEST_LOG_LEVEL
   CAMEL_K_TEST_MAVEN_CLI_OPTIONS
   CAMEL_K_TEST_MAVEN_CA_PEM_PATH
   ```
   
   For arm64 platforms you may need to set at least 
`CAMEL_K_TEST_OPERATOR_IMAGE` and `CAMEL_K_TEST_BASE_IMAGE`
   
   It would be good to have this part of the documentation


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

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

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



(camel-karavan) branch main updated: Issue templates

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

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


The following commit(s) were added to refs/heads/main by this push:
 new 7296e658 Issue templates
7296e658 is described below

commit 7296e6587a190c5c52f8e54a1abdb333aa9144a1
Author: Marat Gubaidullin 
AuthorDate: Fri Apr 12 10:10:39 2024 -0400

Issue templates
---
 .github/ISSUE_TEMPLATE/feature_request.md | 1 -
 1 file changed, 1 deletion(-)

diff --git a/.github/ISSUE_TEMPLATE/feature_request.md 
b/.github/ISSUE_TEMPLATE/feature_request.md
index 09ac4c71..e48d9bc0 100644
--- a/.github/ISSUE_TEMPLATE/feature_request.md
+++ b/.github/ISSUE_TEMPLATE/feature_request.md
@@ -1,4 +1,3 @@
-
 ---
 name: Feature request
 about: Suggest an idea for this project



(camel-karavan) branch main updated: Issue templates

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

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


The following commit(s) were added to refs/heads/main by this push:
 new 357f3051 Issue templates
357f3051 is described below

commit 357f30519b3534372fb0435c2b2a863a74d8b74c
Author: Marat Gubaidullin 
AuthorDate: Fri Apr 12 10:07:59 2024 -0400

Issue templates
---
 .github/ISSUE_TEMPLATE/issue_template.md | 33 
 1 file changed, 33 deletions(-)

diff --git a/.github/ISSUE_TEMPLATE/issue_template.md 
b/.github/ISSUE_TEMPLATE/issue_template.md
deleted file mode 100644
index f7a07a87..
--- a/.github/ISSUE_TEMPLATE/issue_template.md
+++ /dev/null
@@ -1,33 +0,0 @@

-name: Bug report
-about: Create a report to help us improve
-title: ''
-labels: ''
-assignees: ''
-

-
-**Describe the bug**
-A clear and concise description of what the bug is.
-
-**To Reproduce**
-Steps to reproduce the behavior:
-1. Go to '...'
-2. Click on ''
-3. Scroll down to ''
-4. See error
-
-**Expected behavior**
-A clear and concise description of what you expected to happen.
-
-**Screenshots**
-If applicable, add screenshots to help explain your problem.
-
-**Environment (please complete the following information):**
- - Karavan version: [4.4.0]
- - Type: [Application, VS Code Extension]
- - Container Management: [e.g. Docker, Kubernetes if applicable]
- - OS: [e.g. Linux, MacOS, Windows if applicable]
-
-**Additional context**
-Add any other context about the problem here.
\ No newline at end of file



(camel-karavan) branch main updated: Issue templates

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

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


The following commit(s) were added to refs/heads/main by this push:
 new 023c592d Issue templates
023c592d is described below

commit 023c592d7c8d5f166a812f868ce21edd852e325d
Author: Marat Gubaidullin 
AuthorDate: Fri Apr 12 10:07:29 2024 -0400

Issue templates
---
 .github/DISCUSSION_TEMPLATE   |  0
 .github/ISSUE_TEMPLATE/bug_report.md  | 33 
 .github/ISSUE_TEMPLATE/feature_request.md | 26 +++
 .github/ISSUE_TEMPLATE/issue_template.md  | 42 ---
 4 files changed, 87 insertions(+), 14 deletions(-)

diff --git a/.github/DISCUSSION_TEMPLATE b/.github/DISCUSSION_TEMPLATE
new file mode 100644
index ..e69de29b
diff --git a/.github/ISSUE_TEMPLATE/bug_report.md 
b/.github/ISSUE_TEMPLATE/bug_report.md
new file mode 100644
index ..f7a07a87
--- /dev/null
+++ b/.github/ISSUE_TEMPLATE/bug_report.md
@@ -0,0 +1,33 @@
+---
+name: Bug report
+about: Create a report to help us improve
+title: ''
+labels: ''
+assignees: ''
+
+---
+
+**Describe the bug**
+A clear and concise description of what the bug is.
+
+**To Reproduce**
+Steps to reproduce the behavior:
+1. Go to '...'
+2. Click on ''
+3. Scroll down to ''
+4. See error
+
+**Expected behavior**
+A clear and concise description of what you expected to happen.
+
+**Screenshots**
+If applicable, add screenshots to help explain your problem.
+
+**Environment (please complete the following information):**
+ - Karavan version: [4.4.0]
+ - Type: [Application, VS Code Extension]
+ - Container Management: [e.g. Docker, Kubernetes if applicable]
+ - OS: [e.g. Linux, MacOS, Windows if applicable]
+
+**Additional context**
+Add any other context about the problem here.
\ No newline at end of file
diff --git a/.github/ISSUE_TEMPLATE/feature_request.md 
b/.github/ISSUE_TEMPLATE/feature_request.md
new file mode 100644
index ..09ac4c71
--- /dev/null
+++ b/.github/ISSUE_TEMPLATE/feature_request.md
@@ -0,0 +1,26 @@
+
+---
+name: Feature request
+about: Suggest an idea for this project
+title: ''
+labels: ''
+assignees: ''
+
+---
+
+**Is your feature request related to a problem? Please describe.**
+A clear and concise description of what the problem is. Ex. I'm always 
frustrated when [...]
+
+**Describe the solution you'd like**
+A clear and concise description of what you want to happen.
+
+**Describe alternatives you've considered**
+A clear and concise description of any alternative solutions or features 
you've considered.
+
+**Environment (please complete the following information):**
+ - Type: [Application, VS Code Extension]
+ - Container Management: [e.g. Docker, Kubernetes if applicable]
+ - OS: [e.g. Linux, MacOS, Windows if applicable]
+
+**Additional context**
+Add any other context or screenshots about the feature request here.
diff --git a/.github/ISSUE_TEMPLATE/issue_template.md 
b/.github/ISSUE_TEMPLATE/issue_template.md
index f6679fec..f7a07a87 100644
--- a/.github/ISSUE_TEMPLATE/issue_template.md
+++ b/.github/ISSUE_TEMPLATE/issue_template.md
@@ -1,19 +1,33 @@
+---
+name: Bug report
+about: Create a report to help us improve
+title: ''
+labels: ''
+assignees: ''
 
-
-**Environment**
-- Karavan version: X.Y.Z 
-- Platform:  
+---
 
-**Current behavior**
-
+**Describe the bug**
+A clear and concise description of what the bug is.
 
-**Expected/desired behavior**
-
+**To Reproduce**
+Steps to reproduce the behavior:
+1. Go to '...'
+2. Click on ''
+3. Scroll down to ''
+4. See error
 
-**Minimal reproduction of the problem with instructions**
-
+**Expected behavior**
+A clear and concise description of what you expected to happen.
 
-* Others:
-
+**Screenshots**
+If applicable, add screenshots to help explain your problem.
+
+**Environment (please complete the following information):**
+ - Karavan version: [4.4.0]
+ - Type: [Application, VS Code Extension]
+ - Container Management: [e.g. Docker, Kubernetes if applicable]
+ - OS: [e.g. Linux, MacOS, Windows if applicable]
+
+**Additional context**
+Add any other context about the problem here.
\ No newline at end of file



Re: [PR] CAMEL-20521: camel-amqp - AMQP publisher application is losing messages with local JMS transaction enabled [camel]

2024-04-12 Thread via GitHub


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

   @luigidemasi it would be great if we could have the tests (great work). And 
then upgrade spring (that can be in another PR)


-- 
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-20388: camel-salesforce - Invoke client.disconnect() when recei… [camel]

2024-04-12 Thread via GitHub


davsclaus commented on code in PR #13725:
URL: https://github.com/apache/camel/pull/13725#discussion_r1562603563


##
components/camel-salesforce/camel-salesforce-component/src/main/java/org/apache/camel/component/salesforce/internal/streaming/SubscriptionHelper.java:
##
@@ -165,6 +165,7 @@ public void onMessage(ClientSessionChannel channel, Message 
message) {
 LOG.warn("Connect failure: {}", message);
 connectError = (String) message.get(ERROR_FIELD);
 connectException = getFailure(message);
+client.disconnect();

Review Comment:
   Should this be in a try .. catch and ignore (I wonder if disconnect can 
throw an exception)



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

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

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



Re: [PR] Add properties to skip execution of the validate and route coverage mojos [camel]

2024-04-12 Thread via GitHub


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

   I think we have some docs where it would be good to add this new option, see 
the camel-report-maven-plugin.adoc file


-- 
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: Fixing documentation typos (#13764)

2024-04-12 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 bcbfb484a7d Fixing documentation typos (#13764)
bcbfb484a7d is described below

commit bcbfb484a7d044bed8db0bd9c7a1defd77495122
Author: Adriano Machado <60320+ammach...@users.noreply.github.com>
AuthorDate: Fri Apr 12 10:02:03 2024 -0400

Fixing documentation typos (#13764)
---
 .../resources/org/apache/camel/catalog/components/validator.json  | 2 +-
 .../META-INF/org/apache/camel/component/validator/validator.json  | 2 +-
 .../component/validator/DefaultValidatorResourceResolverFactory.java  | 2 +-
 .../java/org/apache/camel/component/validator/ValidatorEndpoint.java  | 2 +-
 .../camel/builder/endpoint/dsl/ValidatorEndpointBuilderFactory.java   | 4 ++--
 .../kotlin/org/apache/camel/kotlin/components/ValidatorUriDsl.kt  | 2 +-
 6 files changed, 7 insertions(+), 7 deletions(-)

diff --git 
a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components/validator.json
 
b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components/validator.json
index 246b74c1460..6abd7c8d8d3 100644
--- 
a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components/validator.json
+++ 
b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components/validator.json
@@ -35,7 +35,7 @@
 "lazyStartProducer": { "index": 4, "kind": "parameter", "displayName": 
"Lazy Start Producer", "group": "producer (advanced)", "label": 
"producer,advanced", "required": false, "type": "boolean", "javaType": 
"boolean", "deprecated": false, "autowired": false, "secret": false, 
"defaultValue": false, "description": "Whether the producer should be started 
lazy (on the first message). By starting lazy you can use this to allow 
CamelContext and routes to startup in situations where a produc [...]
 "errorHandler": { "index": 5, "kind": "parameter", "displayName": "Error 
Handler", "group": "advanced", "label": "advanced", "required": false, "type": 
"object", "javaType": 
"org.apache.camel.support.processor.validation.ValidatorErrorHandler", 
"deprecated": false, "autowired": false, "secret": false, "description": "To 
use a custom org.apache.camel.processor.validation.ValidatorErrorHandler. The 
default error handler captures the errors and throws an exception." },
 "resourceResolver": { "index": 6, "kind": "parameter", "displayName": 
"Resource Resolver", "group": "advanced", "label": "advanced", "required": 
false, "type": "object", "javaType": "org.w3c.dom.ls.LSResourceResolver", 
"deprecated": false, "autowired": false, "secret": false, "description": "To 
use a custom LSResourceResolver. Do not use together with 
resourceResolverFactory" },
-"resourceResolverFactory": { "index": 7, "kind": "parameter", 
"displayName": "Resource Resolver Factory", "group": "advanced", "label": 
"advanced", "required": false, "type": "object", "javaType": 
"org.apache.camel.component.validator.ValidatorResourceResolverFactory", 
"deprecated": false, "autowired": false, "secret": false, "description": "To 
use a custom LSResourceResolver which depends on a dynamic endpoint resource 
URI. The default resource resolver factory resturns a resource r [...]
+"resourceResolverFactory": { "index": 7, "kind": "parameter", 
"displayName": "Resource Resolver Factory", "group": "advanced", "label": 
"advanced", "required": false, "type": "object", "javaType": 
"org.apache.camel.component.validator.ValidatorResourceResolverFactory", 
"deprecated": false, "autowired": false, "secret": false, "description": "To 
use a custom LSResourceResolver which depends on a dynamic endpoint resource 
URI. The default resource resolver factory returns a resource re [...]
 "schemaFactory": { "index": 8, "kind": "parameter", "displayName": "Schema 
Factory", "group": "advanced", "label": "advanced", "required": false, "type": 
"object", "javaType": "javax.xml.validation.SchemaFactory", "deprecated": 
false, "autowired": false, "secret": false, "description": "To use a custom 
javax.xml.validation.SchemaFactory" },
 "schemaLanguage": { "index": 9, "kind": "parameter", "displayName": 
"Schema Language", "group": "advanced", "label": "advanced", "required": false, 
"type": "string", "javaType": "java.lang.String", "deprecated": false, 
"autowired": false, "secret": false, "defaultValue": 
"http:\/\/www.w3.org\/2001\/XMLSchema", "description": "Configures the W3C XML 
Schema Namespace URI." },
 "useSharedSchema": { "index": 10, "kind": "parameter", "displayName": "Use 
Shared Schema", "group": "advanced", "label": "advanced", "required": false, 
"type": "boolean", "javaType": "boolean", "deprecated": false, "autowired": 
false, "secret": false, "defaultValue": true, "description": "Whether the 
Schema instance should be 

Re: [PR] Fixing documentation typos [camel]

2024-04-12 Thread via GitHub


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


-- 
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(ci): Fix license check [camel-k]

2024-04-12 Thread via GitHub


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

   Ref #5360
   
   
   
   
   
   
   **Release Note**
   ```release-note
   chore(ci): Fix license check
   ```
   


-- 
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] After launching up the Karavan designer Getting the 404 page not found [camel-karavan]

2024-04-12 Thread via GitHub


mgubaidullin closed issue #1224: After launching up the Karavan designer 
Getting the 404 page not found
URL: https://github.com/apache/camel-karavan/issues/1224


-- 
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] After launching up the Karavan designer Getting the 404 page not found [camel-karavan]

2024-04-12 Thread via GitHub


mgubaidullin commented on issue #1224:
URL: https://github.com/apache/camel-karavan/issues/1224#issuecomment-2051797406

   Karavan should be used as web application or VS Code extension.
   Pure Designer is for Karavan development only.
   
   To build Desinger, first generate Typescript models, Kamelets and 
Components. 
   Then install karavan-core, after that Designer might be build.
   
   The simplest way is to follow Github Actions that build application 
https://github.com/apache/camel-karavan/blob/4.4.0/.github/workflows/app.yml


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

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

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



[PR] feat(trait): Spectrum deprecation notice [camel-k]

2024-04-12 Thread via GitHub


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

   
   
   Will report a deprecation condition message in the Integration like:
   ```
   - firstTruthyTime: "2024-04-12T13:29:14Z"
 lastTransitionTime: "2024-04-12T13:29:14Z"
 lastUpdateTime: "2024-04-12T13:29:14Z"
 message: Spectrum publishing strategy is deprecated and may be removed 
in future
   releases. Make sure to use any supported publishing strategy instead.
 reason: TraitConfiguration
 status: "True"
 type: BuilderTraitInfo
   ```
   
   Closes #5314 
   
   
   
   
   **Release Note**
   ```release-note
   feat(trait): Spectrum deprecation notice
   ```
   


-- 
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] jdbc-db2: fails in fips environment [camel-quarkus]

2024-04-12 Thread via GitHub


jamesnetherton closed issue #5993: jdbc-db2: fails in fips environment
URL: https://github.com/apache/camel-quarkus/issues/5993


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

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

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



(camel-quarkus) branch main updated: jdbc-db2: fails in fips environment #5993

2024-04-12 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.git


The following commit(s) were added to refs/heads/main by this push:
 new d4fc79f88c jdbc-db2: fails in fips environment #5993
d4fc79f88c is described below

commit d4fc79f88cc67c5f80ca39a0af1f7e0139cff26b
Author: JiriOndrusek 
AuthorDate: Fri Apr 12 10:24:45 2024 +0200

jdbc-db2: fails in fips environment #5993
---
 integration-test-groups/jdbc/db2/pom.xml   |  5 +++
 .../component/jdbc/db2/CamelDb2JdbcTest.java   |  2 +
 .../camel/quarkus/test/DisabledIfFipsMode.java | 43 ++
 ...ition.java => DisabledIfFipsModeCondition.java} | 36 --
 .../quarkus/test/EnabledIfFipsModeCondition.java   | 27 --
 integration-tests/jdbc-grouped/pom.xml |  5 +++
 6 files changed, 95 insertions(+), 23 deletions(-)

diff --git a/integration-test-groups/jdbc/db2/pom.xml 
b/integration-test-groups/jdbc/db2/pom.xml
index 2fcc6b2855..e2a61704bf 100644
--- a/integration-test-groups/jdbc/db2/pom.xml
+++ b/integration-test-groups/jdbc/db2/pom.xml
@@ -99,6 +99,11 @@
 test-jar
 test
 
+
+org.apache.camel.quarkus
+camel-quarkus-integration-test-support
+test
+
 
 
 
diff --git 
a/integration-test-groups/jdbc/db2/src/test/java/org/apache/camel/quarkus/component/jdbc/db2/CamelDb2JdbcTest.java
 
b/integration-test-groups/jdbc/db2/src/test/java/org/apache/camel/quarkus/component/jdbc/db2/CamelDb2JdbcTest.java
index 9ee03aa7e6..199fd1e583 100644
--- 
a/integration-test-groups/jdbc/db2/src/test/java/org/apache/camel/quarkus/component/jdbc/db2/CamelDb2JdbcTest.java
+++ 
b/integration-test-groups/jdbc/db2/src/test/java/org/apache/camel/quarkus/component/jdbc/db2/CamelDb2JdbcTest.java
@@ -21,6 +21,7 @@ import java.util.List;
 import io.quarkus.test.junit.QuarkusTest;
 import io.restassured.RestAssured;
 import io.restassured.http.ContentType;
+import org.apache.camel.quarkus.test.DisabledIfFipsMode;
 import org.junit.jupiter.api.Test;
 import org.junit.jupiter.api.condition.DisabledIfSystemProperty;
 
@@ -35,6 +36,7 @@ import static org.wildfly.common.Assert.assertNotNull;
 @QuarkusTest
 @DisabledIfSystemProperty(named = "cq.jdbcKind", matches = "derby")
 //https://github.com/quarkusio/quarkus/issues/23083
+@DisabledIfFipsMode //https://github.com/apache/camel-quarkus/issues/5993
 public class CamelDb2JdbcTest {
 String dbKind = "db2";
 
diff --git 
a/integration-tests-support/test-support/src/main/java/org/apache/camel/quarkus/test/DisabledIfFipsMode.java
 
b/integration-tests-support/test-support/src/main/java/org/apache/camel/quarkus/test/DisabledIfFipsMode.java
new file mode 100644
index 00..579db50ffa
--- /dev/null
+++ 
b/integration-tests-support/test-support/src/main/java/org/apache/camel/quarkus/test/DisabledIfFipsMode.java
@@ -0,0 +1,43 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License.  You may obtain a copy of the License at
+ *
+ *  http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.apache.camel.quarkus.test;
+
+import java.lang.annotation.Documented;
+import java.lang.annotation.ElementType;
+import java.lang.annotation.Retention;
+import java.lang.annotation.RetentionPolicy;
+import java.lang.annotation.Target;
+
+import org.junit.jupiter.api.extension.ExtendWith;
+
+/**
+ * Advertises that a test should be disabled if the JDK has FIPS enabled 
security providers present.
+ */
+@Target({ ElementType.TYPE, ElementType.METHOD })
+@Retention(RetentionPolicy.RUNTIME)
+@Documented
+@ExtendWith(DisabledIfFipsModeCondition.class)
+public @interface DisabledIfFipsMode {
+/**
+ * The list of FIPS security provider names to match against for enabling 
the test.
+ * If no providers are specified, the default behaviour is to try to match 
any provider that has
+ * FIPS in its name.
+ *
+ * @return The list of security provider names.
+ */
+String[] providers() default {};
+}
diff --git 
a/integration-tests-support/test-support/src/main/java/org/apache/camel/quarkus/test/EnabledIfFipsModeCondition.java
 

Re: [PR] jdbc-db2: fails in fips environment #5993 [camel-quarkus]

2024-04-12 Thread via GitHub


jamesnetherton merged PR #5994:
URL: https://github.com/apache/camel-quarkus/pull/5994


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

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

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



[I] Cannot run `make test-smoke` on arm64 [camel-k]

2024-04-12 Thread via GitHub


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

   ### What happened?
   
   It seems that `make test-smoke` makes incorrect assumptions about the 
underlying architecture. The `TestRunPolyglotExamples` is the first that I see 
failing because of an invalid exec format, which in turn is because of an 
incorrect base image: `-Djib.from.image=eclipse-temurin:17`
   
   Related to https://github.com/apache/camel-k/issues/5292 I would assume that 
this is somehow supposed to set the `-t builder.platforms` trait, which would 
then add `-Djib.from.platforms=linux/arm64`
   
   Is there perhaps an (undocumented) trick to make this work with the current 
code base?
   
   Alternatively, please give advice on how we can enable that trait without 
too much duplication.
   Perhaps scoped on the operator install step or a more global scope e.g. `go 
test ...` or an even more global scope e.g. envar
   
   
   ### Steps to reproduce
   
   _No response_
   
   ### Relevant log output
   
   _No response_
   
   ### Camel K version
   
   _No response_


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

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

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



(camel-quarkus) 02/02: Disable microprofile-fault-tolerance testing due to #5995

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

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

commit 270b150881920e75bbccd5316baf283be9a07f4c
Author: James Netherton 
AuthorDate: Fri Apr 12 11:42:19 2024 +0100

Disable microprofile-fault-tolerance testing due to #5995
---
 integration-test-groups/foundation/core-fault-tolerance/pom.xml | 2 ++
 integration-tests/foundation-grouped/pom.xml| 4 
 2 files changed, 6 insertions(+)

diff --git a/integration-test-groups/foundation/core-fault-tolerance/pom.xml 
b/integration-test-groups/foundation/core-fault-tolerance/pom.xml
index d4175591a2..6d9763ea47 100644
--- a/integration-test-groups/foundation/core-fault-tolerance/pom.xml
+++ b/integration-test-groups/foundation/core-fault-tolerance/pom.xml
@@ -59,6 +59,7 @@
 
 
 
+
 
 virtualDependencies
 
diff --git a/integration-tests/foundation-grouped/pom.xml 
b/integration-tests/foundation-grouped/pom.xml
index 7c9c1ceac0..1120c376a7 100644
--- a/integration-tests/foundation-grouped/pom.xml
+++ b/integration-tests/foundation-grouped/pom.xml
@@ -112,10 +112,12 @@
 org.apache.camel.quarkus
 camel-quarkus-log
 
+
 
 org.apache.camel.quarkus
 camel-quarkus-mock
@@ -212,6 +214,8 @@
 
${maven.multiModuleProjectDirectory}/integration-test-groups/foundation
 
${project.basedir}
 
src/main/resources/application.properties
+
+
core-fault-tolerance
 
 
 



(camel-quarkus) branch camel-main updated (577bd3a1e9 -> 270b150881)

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

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


 discard 577bd3a1e9 Upgrade Camel to 4.6.0
 add 0a42991a25 Tidy openapi-java tests after removal of support for 
OpenAPI V2
 add 1726682d17 Tidy logging for openapi-java expose option build time code
 new 76e86873c4 Upgrade Camel to 4.6.0
 new 270b150881 Disable microprofile-fault-tolerance testing due to #5995

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   (577bd3a1e9)
\
 N -- N -- N   refs/heads/camel-main (270b150881)

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:
 extensions/arangodb/deployment/pom.xml |   4 +
 .../arangodb/deployment/ArangodbProcessor.java |   6 +
 extensions/arangodb/runtime/pom.xml|   4 +
 .../java/deployment/OpenApiJavaProcessor.java  |   5 +-
 .../foundation/core-fault-tolerance/pom.xml|   2 +
 integration-tests/foundation-grouped/pom.xml   |   4 +
 integration-tests/openapi-java/pom.xml |   6 -
 .../component/openapijava/it/OpenApiRoutes.java| 260 ++---
 .../openapijava/it/common/OpenApiTest.java | 215 -
 .../component/openapijava/it/v3/OpenApiV3IT.java   |   2 -
 .../component/openapijava/it/v3/OpenApiV3Test.java | 189 ++-
 .../openapijava/it/v3/OpenApiV3TestProfile.java|  30 ---
 pom.xml|   2 +-
 13 files changed, 332 insertions(+), 397 deletions(-)
 delete mode 100644 
integration-tests/openapi-java/src/test/java/org/apache/camel/quarkus/component/openapijava/it/common/OpenApiTest.java
 delete mode 100644 
integration-tests/openapi-java/src/test/java/org/apache/camel/quarkus/component/openapijava/it/v3/OpenApiV3TestProfile.java



Re: [I] Move trait configuration off the CRD [camel-k]

2024-04-12 Thread via GitHub


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

   Sorry for the confusion. API here means this package 
https://github.com/apache/camel-k/tree/main/pkg/apis which impacts CRD 
directly. Hope it clarifies, thanks.


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

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

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



Re: [I] Move trait configuration off the CRD [camel-k]

2024-04-12 Thread via GitHub


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

   IMHO, the biggest issue here is that  we are mixing up different topics.
   As an example, the sentence below, does not seems (to me) right or it at 
least is not clear enough:

   > I think that, by nature, the traits are quickly evolving in order to add 
features, above all when it comes to Kubernetes features. For example, adding a 
new Kubernetes feature mostly of the time would require altering the traits 
(hence, altering the CRD and possibly breaking compatibility).
   
   The reason why it is not clear, is that it seems to assumes that the APIs 
are only composed by the CRDs but in fact, they are the result of the  
intersection of what is defined in the CRDs and what it is not, an example of a 
non described APIs are the annotations. For such reasons, a change in a trait 
can lead to break backward compatibility even if we remove its traits 
definition from the CRDs.
   
   So it seems to me that this issue has not so much to do with the APIs per 
se, but more about eventually reducing the amount of work to maintain the CRDs, 
topic for which I cannot say much since it's been long time since I'm involved 
in that. If we move in this direction, we must make crystal clear that this has 
**no impact** on the way we deal we the APIs  and we **must ensure** that every 
change on the traits is then handled as it it were part of the CRDs.
   
   I would really recommend to re-phrase the issue and also include some 
pro/cons so we can have a better understanding of the complexity/impacts.
   
   


-- 
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) 02/02: Disable microprofile-fault-tolerance testing due to #5995

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

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

commit a870cede1c36c12c3f614cce4f1d81371f1b398c
Author: James Netherton 
AuthorDate: Fri Apr 12 11:20:50 2024 +0100

Disable microprofile-fault-tolerance testing due to #5995
---
 integration-test-groups/foundation/core-fault-tolerance/pom.xml | 2 ++
 .../camel/quarkus/core/faulttolerance/it/CoreFaultToleranceIT.java  | 2 ++
 .../camel/quarkus/core/faulttolerance/it/CoreFaultToleranceTest.java| 2 ++
 integration-tests/foundation-grouped/pom.xml| 2 ++
 4 files changed, 8 insertions(+)

diff --git a/integration-test-groups/foundation/core-fault-tolerance/pom.xml 
b/integration-test-groups/foundation/core-fault-tolerance/pom.xml
index d4175591a2..6d9763ea47 100644
--- a/integration-test-groups/foundation/core-fault-tolerance/pom.xml
+++ b/integration-test-groups/foundation/core-fault-tolerance/pom.xml
@@ -59,6 +59,7 @@
 
 
 
+
 
 virtualDependencies
 
diff --git 
a/integration-test-groups/foundation/core-fault-tolerance/src/test/java/org/apache/camel/quarkus/core/faulttolerance/it/CoreFaultToleranceIT.java
 
b/integration-test-groups/foundation/core-fault-tolerance/src/test/java/org/apache/camel/quarkus/core/faulttolerance/it/CoreFaultToleranceIT.java
index 76f553a17b..a05c81faf2 100644
--- 
a/integration-test-groups/foundation/core-fault-tolerance/src/test/java/org/apache/camel/quarkus/core/faulttolerance/it/CoreFaultToleranceIT.java
+++ 
b/integration-test-groups/foundation/core-fault-tolerance/src/test/java/org/apache/camel/quarkus/core/faulttolerance/it/CoreFaultToleranceIT.java
@@ -17,7 +17,9 @@
 package org.apache.camel.quarkus.core.faulttolerance.it;
 
 import io.quarkus.test.junit.QuarkusIntegrationTest;
+import org.junit.jupiter.api.Disabled;
 
+@Disabled("https://github.com/apache/camel-quarkus/issues/5995;)
 @QuarkusIntegrationTest
 public class CoreFaultToleranceIT extends CoreFaultToleranceTest {
 }
diff --git 
a/integration-test-groups/foundation/core-fault-tolerance/src/test/java/org/apache/camel/quarkus/core/faulttolerance/it/CoreFaultToleranceTest.java
 
b/integration-test-groups/foundation/core-fault-tolerance/src/test/java/org/apache/camel/quarkus/core/faulttolerance/it/CoreFaultToleranceTest.java
index 6aaa60aaf1..6ccdcf4364 100644
--- 
a/integration-test-groups/foundation/core-fault-tolerance/src/test/java/org/apache/camel/quarkus/core/faulttolerance/it/CoreFaultToleranceTest.java
+++ 
b/integration-test-groups/foundation/core-fault-tolerance/src/test/java/org/apache/camel/quarkus/core/faulttolerance/it/CoreFaultToleranceTest.java
@@ -17,11 +17,13 @@
 package org.apache.camel.quarkus.core.faulttolerance.it;
 
 import io.quarkus.test.junit.QuarkusTest;
+import org.junit.jupiter.api.Disabled;
 import org.junit.jupiter.api.Test;
 
 import static io.restassured.RestAssured.get;
 import static org.hamcrest.Matchers.is;
 
+@Disabled("https://github.com/apache/camel-quarkus/issues/5995;)
 @QuarkusTest
 public class CoreFaultToleranceTest {
 
diff --git a/integration-tests/foundation-grouped/pom.xml 
b/integration-tests/foundation-grouped/pom.xml
index 7c9c1ceac0..78c0c2485f 100644
--- a/integration-tests/foundation-grouped/pom.xml
+++ b/integration-tests/foundation-grouped/pom.xml
@@ -212,6 +212,8 @@
 
${maven.multiModuleProjectDirectory}/integration-test-groups/foundation
 
${project.basedir}
 
src/main/resources/application.properties
+
+
core-fault-tolerance
 
 
 



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

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

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

commit 680ea9b9443d2753b255daf7e27850fc4558045c
Author: James Netherton 
AuthorDate: Wed Mar 13 19:00:20 2024 +

Upgrade Quarkus to 3.10.0.CR1
---
 .../apache/camel/quarkus/component/jasypt/JasyptDevUITest.java| 2 ++
 .../camel/quarkus/component/joor/deployment/JoorProcessor.java| 6 +++---
 .../core/faulttolerance/it/CoreFaultToleranceProducers.java   | 2 +-
 integration-test-groups/pom.xml   | 3 ++-
 integration-tests/cxf-soap-grouped/pom.xml| 6 ++
 integration-tests/quartz-clustered/pom.xml| 4 
 integration-tests/ssh/pom.xml | 2 --
 .../java/org/apache/camel/quarkus/component/ssh/it/SshIT.java | 2 --
 .../java/org/apache/camel/quarkus/component/ssh/it/SshTest.java   | 2 --
 pom.xml   | 8 
 poms/bom/src/main/generated/flattened-full-pom.xml| 2 +-
 poms/bom/src/main/generated/flattened-reduced-pom.xml | 2 +-
 poms/bom/src/main/generated/flattened-reduced-verbose-pom.xml | 2 +-
 13 files changed, 25 insertions(+), 18 deletions(-)

diff --git 
a/extensions/jasypt/deployment/src/test/java/org/apache/camel/quarkus/component/jasypt/JasyptDevUITest.java
 
b/extensions/jasypt/deployment/src/test/java/org/apache/camel/quarkus/component/jasypt/JasyptDevUITest.java
index cd770f4d77..17445d072d 100644
--- 
a/extensions/jasypt/deployment/src/test/java/org/apache/camel/quarkus/component/jasypt/JasyptDevUITest.java
+++ 
b/extensions/jasypt/deployment/src/test/java/org/apache/camel/quarkus/component/jasypt/JasyptDevUITest.java
@@ -23,12 +23,14 @@ import io.quarkus.test.QuarkusDevModeTest;
 import org.apache.camel.util.ObjectHelper;
 import org.junit.jupiter.api.AfterAll;
 import org.junit.jupiter.api.BeforeAll;
+import org.junit.jupiter.api.Disabled;
 import org.junit.jupiter.api.Test;
 import org.junit.jupiter.api.extension.RegisterExtension;
 
 import static org.junit.jupiter.api.Assertions.assertEquals;
 import static org.junit.jupiter.api.Assertions.assertTrue;
 
+@Disabled("https://github.com/apache/camel-quarkus/issues/5946;)
 public class JasyptDevUITest extends DevUIJsonRPCTest {
 @RegisterExtension
 static final QuarkusDevModeTest CONFIG = new 
QuarkusDevModeTest().withEmptyApplication();
diff --git 
a/extensions/joor/deployment/src/main/java/org/apache/camel/quarkus/component/joor/deployment/JoorProcessor.java
 
b/extensions/joor/deployment/src/main/java/org/apache/camel/quarkus/component/joor/deployment/JoorProcessor.java
index a7832e7508..b97ce0b86d 100644
--- 
a/extensions/joor/deployment/src/main/java/org/apache/camel/quarkus/component/joor/deployment/JoorProcessor.java
+++ 
b/extensions/joor/deployment/src/main/java/org/apache/camel/quarkus/component/joor/deployment/JoorProcessor.java
@@ -30,7 +30,7 @@ import io.quarkus.deployment.annotations.ExecutionTime;
 import io.quarkus.deployment.annotations.Record;
 import io.quarkus.deployment.builditem.FeatureBuildItem;
 import io.quarkus.deployment.builditem.GeneratedClassBuildItem;
-import io.quarkus.deployment.pkg.PackageConfig;
+import io.quarkus.deployment.pkg.NativeConfig;
 import io.quarkus.deployment.pkg.builditem.CurateOutcomeBuildItem;
 import io.quarkus.maven.dependency.ResolvedDependency;
 import io.quarkus.paths.PathCollection;
@@ -196,11 +196,11 @@ class JoorProcessor {
  */
 public static final class CompileAtBuildTime implements BooleanSupplier {
 JoorExpressionConfig config;
-PackageConfig packageConfig;
+NativeConfig nativeConfig;
 
 @Override
 public boolean getAsBoolean() {
-return config.compileAtBuildTime || 
packageConfig.type.equalsIgnoreCase(PackageConfig.BuiltInType.NATIVE.name());
+return config.compileAtBuildTime || nativeConfig.enabled();
 }
 }
 }
diff --git 
a/integration-test-groups/foundation/core-fault-tolerance/src/main/java/org/apache/camel/quarkus/core/faulttolerance/it/CoreFaultToleranceProducers.java
 
b/integration-test-groups/foundation/core-fault-tolerance/src/main/java/org/apache/camel/quarkus/core/faulttolerance/it/CoreFaultToleranceProducers.java
index 4317184f98..7b82e4867b 100644
--- 
a/integration-test-groups/foundation/core-fault-tolerance/src/main/java/org/apache/camel/quarkus/core/faulttolerance/it/CoreFaultToleranceProducers.java
+++ 
b/integration-test-groups/foundation/core-fault-tolerance/src/main/java/org/apache/camel/quarkus/core/faulttolerance/it/CoreFaultToleranceProducers.java
@@ -59,7 +59,7 @@ public class CoreFaultToleranceProducers {
 @ApplicationScoped
 @Named("threadTimer")
 ThreadTimer threadTimer(@Named("threadTimerExecutor") ExecutorService 
executorService) {
-  

(camel-quarkus) branch quarkus-main updated (a15982cd42 -> a870cede1c)

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

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


 discard a15982cd42 Upgrade Quarkus to 3.10.0.CR1
 add 71c8f4433c Remove jsch container DOCKER_MODS configuration
 add 599d861022 JT400 Inquiry test
 add a02012d329 [NettyHttp] Increase proxy connection timeout and make it 
configurable
 add e9843295ea Improve the testability against Quarkus Platform BOMs
 add b5bcb87894 Regen SBOM from commit 
e9843295ea9827235f46a3ccdd2818de33248092 (#5974)
 add c0a9858385 Camel 4.5 : create langchain-embeddings extension Fixes 
#5970
 add 1553fffda7 Temporarily rename any langchain doc xrefs to langchain4j
 add bde3acad6a Fix auto milestone workflow title regex
 add d291182b09 Http: use FIPS complaiant keystore and truststore (#5968)
 add 09aa7fe4dc Remove findbugs exclusion from quarkus-grpc-common in gRPC 
extension (#5978)
 add e6a6743a61 Bump io.quarkiverse.artemis:quarkus-artemis-bom from 3.2.1 
to 3.3.0 (#5984)
 add e490008680 Restore file tests original class naming
 add ee206ec774 Create AWS bedrock extensions (#5987)
 add dfe70e0326 Fix various ClassNotFoundExceptions for spring-redis 
extension
 new 680ea9b944 Upgrade Quarkus to 3.10.0.CR1
 new a870cede1c Disable microprofile-fault-tolerance testing due to #5995

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

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:
 .github/workflows/assign-issue-milestone.yaml  | 2 +-
 camel-quarkus-sbom/camel-quarkus-sbom.json | 26404 ++-
 camel-quarkus-sbom/camel-quarkus-sbom.xml  | 18255 ++---
 catalog/pom.xml|26 +
 .../components/aws-bedrock-agent-runtime.yml   |13 +
 .../ROOT/examples/components/aws-bedrock-agent.yml |13 +
 .../ROOT/examples/components/aws-bedrock.yml   |13 +
 .../examples/components/langchain-embeddings.yml   |13 +
 docs/modules/ROOT/nav.adoc | 2 +
 .../pages/reference/extensions/aws-bedrock.adoc|47 +
 .../reference/extensions/langchain-embeddings.adoc |41 +
 .../langchain-embeddings/deployment/pom.xml|63 +
 .../deployment/LangchainEmbeddingsProcessor.java   |46 +
 .../langchain-embeddings}/pom.xml  |31 +-
 .../runtime/pom.xml|28 +-
 .../main/resources/META-INF/quarkus-extension.yaml |33 +
 extensions-jvm/pom.xml | 1 +
 extensions-jvm/spring-redis/runtime/pom.xml| 8 +-
 extensions-support/spring/shade/core/pom.xml   | 1 +
 extensions/aws-bedrock/deployment/pom.xml  |63 +
 .../bedrock/deployment/AwsBedrockProcessor.java|14 +-
 .../aws-bedrock}/pom.xml   |31 +-
 .../aws-bedrock}/runtime/pom.xml   |29 +-
 .../main/resources/META-INF/quarkus-extension.yaml |32 +
 extensions/grpc/runtime/pom.xml| 4 -
 extensions/pom.xml | 1 +
 .../foundation/core-fault-tolerance/pom.xml| 2 +
 .../it/CoreFaultToleranceProducers.java| 2 +-
 .../faulttolerance/it/CoreFaultToleranceIT.java| 2 +
 .../faulttolerance/it/CoreFaultToleranceTest.java  | 2 +
 integration-test-groups/http/README.adoc   | 6 +-
 .../http/common/generate-certs.sh  |67 +
 .../component/http/common/CommonProducers.java |10 +-
 .../src/main/resources/application.properties  | 4 +-
 .../main/resources/jsse/client-truststore.pkcs12   |   Bin 0 -> 2246 bytes
 .../common/src/main/resources/jsse/keystore.p12|   Bin 2421 -> 0 bytes
 .../main/resources/jsse/localhost-keystore.pkcs12  |   Bin 0 -> 3638 bytes
 .../common/src/main/resources/jsse/truststore.jks  |   Bin 1018 -> 0 bytes
 .../component/http/common/HttpTestResource.java| 1 +
 integration-test-groups/http/common/v3.ext | 3 +
 

Re: [PR] Upgrade SmallRye Fault Tolerance to 6.3.0 [camel]

2024-04-12 Thread via GitHub


jamesnetherton merged PR #13776:
URL: https://github.com/apache/camel/pull/13776


-- 
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: Upgrade SmallRye Fault Tolerance to 6.3.0

2024-04-12 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.git


The following commit(s) were added to refs/heads/main by this push:
 new c0ba9a68b8d Upgrade SmallRye Fault Tolerance to 6.3.0
c0ba9a68b8d is described below

commit c0ba9a68b8d5a92585e9d5d8ba0521f6d1def32c
Author: James Netherton 
AuthorDate: Fri Apr 12 10:51:29 2024 +0100

Upgrade SmallRye Fault Tolerance to 6.3.0
---
 .../faulttolerance/FaultToleranceProcessor.java | 13 -
 parent/pom.xml  |  2 +-
 2 files changed, 9 insertions(+), 6 deletions(-)

diff --git 
a/components/camel-microprofile/camel-microprofile-fault-tolerance/src/main/java/org/apache/camel/component/microprofile/faulttolerance/FaultToleranceProcessor.java
 
b/components/camel-microprofile/camel-microprofile-fault-tolerance/src/main/java/org/apache/camel/component/microprofile/faulttolerance/FaultToleranceProcessor.java
index b0f3948ba78..7f6e6003374 100644
--- 
a/components/camel-microprofile/camel-microprofile-fault-tolerance/src/main/java/org/apache/camel/component/microprofile/faulttolerance/FaultToleranceProcessor.java
+++ 
b/components/camel-microprofile/camel-microprofile-fault-tolerance/src/main/java/org/apache/camel/component/microprofile/faulttolerance/FaultToleranceProcessor.java
@@ -28,9 +28,7 @@ import 
io.smallrye.faulttolerance.core.bulkhead.FutureThreadPoolBulkhead;
 import io.smallrye.faulttolerance.core.circuit.breaker.CircuitBreaker;
 import io.smallrye.faulttolerance.core.fallback.Fallback;
 import io.smallrye.faulttolerance.core.stopwatch.SystemStopwatch;
-import io.smallrye.faulttolerance.core.timeout.ScheduledExecutorTimeoutWatcher;
 import io.smallrye.faulttolerance.core.timeout.Timeout;
-import io.smallrye.faulttolerance.core.timeout.TimeoutWatcher;
 import io.smallrye.faulttolerance.core.timer.ThreadTimer;
 import io.smallrye.faulttolerance.core.util.ExceptionDecision;
 import org.apache.camel.AsyncCallback;
@@ -90,6 +88,7 @@ public class FaultToleranceProcessor extends 
AsyncProcessorSupport
 private ProcessorExchangeFactory processorExchangeFactory;
 private PooledExchangeTaskFactory taskFactory;
 private PooledExchangeTaskFactory fallbackTaskFactory;
+private ThreadTimer timer;
 
 public FaultToleranceProcessor(FaultToleranceConfiguration config, 
Processor processor,
Processor fallbackProcessor) {
@@ -263,8 +262,7 @@ public class FaultToleranceProcessor extends 
AsyncProcessorSupport
 }
 // 2. timeout
 if (config.isTimeoutEnabled()) {
-TimeoutWatcher watcher = new 
ScheduledExecutorTimeoutWatcher(scheduledExecutorService);
-target = new Timeout<>(target, "timeout", 
config.getTimeoutDuration(), watcher);
+target = new Timeout<>(target, "timeout", 
config.getTimeoutDuration(), timer);
 }
 // 3. fallback
 if (fallbackProcessor != null) {
@@ -355,10 +353,11 @@ public class FaultToleranceProcessor extends 
AsyncProcessorSupport
 = 
getCamelContext().getExecutorServiceManager().newCachedThreadPool(this, 
"CircuitBreakerThreadTimer");
 shutdownThreadTimerExecutorService = true;
 
+timer = ThreadTimer.create(threadTimerExecutorService);
 circuitBreaker = new CircuitBreaker<>(
 invocation(), id, ExceptionDecision.ALWAYS_FAILURE, 
config.getDelay(), config.getRequestVolumeThreshold(),
 config.getFailureRatio(),
-config.getSuccessThreshold(), SystemStopwatch.INSTANCE, 
new ThreadTimer(threadTimerExecutorService));
+config.getSuccessThreshold(), SystemStopwatch.INSTANCE, 
timer);
 }
 
 ServiceHelper.initService(processorExchangeFactory, taskFactory, 
fallbackTaskFactory, processor);
@@ -390,6 +389,10 @@ public class FaultToleranceProcessor extends 
AsyncProcessorSupport
 
getCamelContext().getExecutorServiceManager().shutdownNow(executorService);
 executorService = null;
 }
+if (timer != null) {
+timer.shutdown();
+timer = null;
+}
 if (shutdownThreadTimerExecutorService && threadTimerExecutorService 
!= null) {
 
getCamelContext().getExecutorServiceManager().shutdownNow(threadTimerExecutorService);
 threadTimerExecutorService = null;
diff --git a/parent/pom.xml b/parent/pom.xml
index 87e3a2380cd..5993d3be139 100644
--- a/parent/pom.xml
+++ b/parent/pom.xml
@@ -437,7 +437,7 @@
 4.3.5
 3.6.0
 4.1.0
-
6.2.6
+
6.3.0
 0.13.0
 2.2
 2.7



(camel) branch main updated: Bump io.nats:jnats from 2.17.3 to 2.17.6 (#13772)

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

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


The following commit(s) were added to refs/heads/main by this push:
 new 84eb84158e0 Bump io.nats:jnats from 2.17.3 to 2.17.6 (#13772)
84eb84158e0 is described below

commit 84eb84158e0263efe8af454111c20b796fecdc3b
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
AuthorDate: Fri Apr 12 12:02:42 2024 +0200

Bump io.nats:jnats from 2.17.3 to 2.17.6 (#13772)

Bumps [io.nats:jnats](https://github.com/nats-io/nats.java) from 2.17.3 to 
2.17.6.
- [Release notes](https://github.com/nats-io/nats.java/releases)
- [Changelog](https://github.com/nats-io/nats.java/blob/main/CHANGELOG.md)
- [Commits](https://github.com/nats-io/nats.java/compare/2.17.3...2.17.6)

---
updated-dependencies:
- dependency-name: io.nats:jnats
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

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

diff --git a/parent/pom.xml b/parent/pom.xml
index 9fe6d92b9e6..87e3a2380cd 100644
--- a/parent/pom.xml
+++ b/parent/pom.xml
@@ -244,7 +244,7 @@
 1.9.3
 0.1.9
 2.5.0
-2.17.3
+2.17.6
 3.1.0
 0.22
 3.13.10



(camel) branch dependabot/maven/io.nats-jnats-2.17.6 deleted (was c1cd82ff738)

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

github-bot pushed a change to branch dependabot/maven/io.nats-jnats-2.17.6
in repository https://gitbox.apache.org/repos/asf/camel.git


 was c1cd82ff738 Bump io.nats:jnats from 2.17.3 to 2.17.6

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



Re: [PR] Bump io.nats:jnats from 2.17.3 to 2.17.6 [camel]

2024-04-12 Thread via GitHub


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


-- 
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] Upgrade SmallRye Fault Tolerance to 6.3.0 [camel]

2024-04-12 Thread via GitHub


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

   :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] Upgrade SmallRye Fault Tolerance to 6.3.0 [camel]

2024-04-12 Thread via GitHub


jamesnetherton commented on PR #13776:
URL: https://github.com/apache/camel/pull/13776#issuecomment-2051446871

   /component-test microprofile


-- 
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] Upgrade SmallRye Fault Tolerance to 6.3.0 [camel]

2024-04-12 Thread via GitHub


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

   :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] Upgrade SmallRye Fault Tolerance to 6.3.0 [camel]

2024-04-12 Thread via GitHub


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

   (no comment)


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

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

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



Re: [PR] Upgrade SmallRye Fault Tolerance to 6.3.0 [camel]

2024-04-12 Thread via GitHub


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

   :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] Upgrade SmallRye Fault Tolerance to 6.3.0 [camel]

2024-04-12 Thread via GitHub


jamesnetherton commented on PR #13776:
URL: https://github.com/apache/camel/pull/13776#issuecomment-2051437338

   /component-test microprofile-fault-tolerance


-- 
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-20521: camel-amqp - AMQP publisher application is losing messages with local JMS transaction enabled [camel]

2024-04-12 Thread via GitHub


luigidemasi commented on PR #13403:
URL: https://github.com/apache/camel/pull/13403#issuecomment-2051434294

   The new spring version, 6.1.6, that contains the fix for this issue, has 
been released. Should I close this issue or just modify the commit removing 
everything except tests?


-- 
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] Tidy up kamelets docs and remove knative binding [camel-kamelets]

2024-04-12 Thread via GitHub


zregvart commented on issue #1705:
URL: 
https://github.com/apache/camel-kamelets/issues/1705#issuecomment-2051394135

   > Do you have eventually time to draft something we could start to hack on? 
Like a branch with just one adoc ported? Thanks.
   
   Unfortunately, I don't see much free time to work on this in the near term; 
perhaps I can find some time in a month or two...


-- 
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] Tidy logging for openapi-java expose option build time code [camel-quarkus]

2024-04-12 Thread via GitHub


jamesnetherton merged PR #5992:
URL: https://github.com/apache/camel-quarkus/pull/5992


-- 
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] Tidy openapi-java tests after removal of support for OpenAPI V2 [camel-quarkus]

2024-04-12 Thread via GitHub


jamesnetherton merged PR #5991:
URL: https://github.com/apache/camel-quarkus/pull/5991


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

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

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



(camel-quarkus) branch main updated: Tidy logging for openapi-java expose option build time code

2024-04-12 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.git


The following commit(s) were added to refs/heads/main by this push:
 new 1726682d17 Tidy logging for openapi-java expose option build time code
1726682d17 is described below

commit 1726682d17b6950d4825affdc69ca6e03f0b7524
Author: James Netherton 
AuthorDate: Fri Apr 12 08:21:52 2024 +0100

Tidy logging for openapi-java expose option build time code
---
 .../component/openapi/java/deployment/OpenApiJavaProcessor.java  | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

diff --git 
a/extensions/openapi-java/deployment/src/main/java/org/apache/camel/quarkus/component/openapi/java/deployment/OpenApiJavaProcessor.java
 
b/extensions/openapi-java/deployment/src/main/java/org/apache/camel/quarkus/component/openapi/java/deployment/OpenApiJavaProcessor.java
index 1a0706c54d..db00219082 100644
--- 
a/extensions/openapi-java/deployment/src/main/java/org/apache/camel/quarkus/component/openapi/java/deployment/OpenApiJavaProcessor.java
+++ 
b/extensions/openapi-java/deployment/src/main/java/org/apache/camel/quarkus/component/openapi/java/deployment/OpenApiJavaProcessor.java
@@ -185,8 +185,7 @@ class OpenApiJavaProcessor {
 try {
 configurer.configureRoutes(ctx);
 } catch (Exception e) {
-//ignore
-LOGGER.warn("config routes failed with " + e);
+LOGGER.warn("Failed to configure routes due to: {}.", 
e.getMessage(), e);
 }
 openAPI.produce(new AddToOpenAPIDefinitionBuildItem(new 
CamelRestOASFilter(ctx)));
 }
@@ -218,7 +217,7 @@ class CamelRestOASFilter implements OASFilter {
 final List rests = 
resolver.getRestDefinitions(context, null);
 
 if (rests == null || rests.isEmpty()) {
-LOGGER.debug("Can not find Rest definitions");
+LOGGER.warn("Unable to find Camel REST definitions to expose 
on the Quarkus OpenAPI endpoint.");
 return;
 }
 



(camel-quarkus) branch main updated: Tidy openapi-java tests after removal of support for OpenAPI V2

2024-04-12 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.git


The following commit(s) were added to refs/heads/main by this push:
 new 0a42991a25 Tidy openapi-java tests after removal of support for 
OpenAPI V2
0a42991a25 is described below

commit 0a42991a25b7f0dc374638489a4d90c26d183b7b
Author: James Netherton 
AuthorDate: Fri Apr 12 08:05:49 2024 +0100

Tidy openapi-java tests after removal of support for OpenAPI V2
---
 integration-tests/openapi-java/pom.xml |   6 -
 .../component/openapijava/it/OpenApiRoutes.java| 260 ++---
 .../openapijava/it/common/OpenApiTest.java | 215 -
 .../component/openapijava/it/v3/OpenApiV3IT.java   |   2 -
 .../component/openapijava/it/v3/OpenApiV3Test.java | 189 ++-
 .../openapijava/it/v3/OpenApiV3TestProfile.java|  30 ---
 6 files changed, 309 insertions(+), 393 deletions(-)

diff --git a/integration-tests/openapi-java/pom.xml 
b/integration-tests/openapi-java/pom.xml
index 3da74cb849..cac13bb1d7 100644
--- a/integration-tests/openapi-java/pom.xml
+++ b/integration-tests/openapi-java/pom.xml
@@ -96,16 +96,10 @@
 maven-failsafe-plugin
 
 
-profile-openapi-v3
 
 integration-test
 verify
 
-
-
-openapi.v3
-
-
 
 
 
diff --git 
a/integration-tests/openapi-java/src/main/java/org/apache/camel/quarkus/component/openapijava/it/OpenApiRoutes.java
 
b/integration-tests/openapi-java/src/main/java/org/apache/camel/quarkus/component/openapijava/it/OpenApiRoutes.java
index e89d8554df..f6b587cf18 100644
--- 
a/integration-tests/openapi-java/src/main/java/org/apache/camel/quarkus/component/openapijava/it/OpenApiRoutes.java
+++ 
b/integration-tests/openapi-java/src/main/java/org/apache/camel/quarkus/component/openapijava/it/OpenApiRoutes.java
@@ -30,14 +30,10 @@ import 
org.apache.camel.quarkus.component.openapijava.it.model.AllOfFormWrapper;
 import 
org.apache.camel.quarkus.component.openapijava.it.model.AnyOfFormWrapper;
 import org.apache.camel.quarkus.component.openapijava.it.model.Fruit;
 import 
org.apache.camel.quarkus.component.openapijava.it.model.OneOfFormWrapper;
-import org.eclipse.microprofile.config.inject.ConfigProperty;
 
 @ApplicationScoped
 public class OpenApiRoutes extends RouteBuilder {
 
-@ConfigProperty(name = "openapi.version")
-String openApiVersion;
-
 @Override
 public void configure() throws Exception {
 
@@ -49,7 +45,7 @@ public class OpenApiRoutes extends RouteBuilder {
 .apiProperty("api.title", "Camel Quarkus API")
 .apiProperty("api.description", "The Awesome Camel Quarkus 
REST API")
 .apiProperty("api.version", "1.2.3")
-.apiProperty("openapi.version", openApiVersion)
+.apiProperty("openapi.version", "3.0.0")
 .apiProperty("cors", "true")
 .apiProperty("schemes", "http,https")
 .apiProperty("api.path", "/api-docs")
@@ -134,146 +130,144 @@ public class OpenApiRoutes extends RouteBuilder {
 .end()
 .end();
 
-if (openApiVersion.startsWith("3")) {
-rest()
-.get("/security/bearer/token")
-.to("seda:echoMethodPath")
-.securityDefinitions()
-.bearerToken("bearerAuth", "Bearer Token Authentication")
-.end()
+rest()
+.get("/security/bearer/token")
+.to("seda:echoMethodPath")
+.securityDefinitions()
+.bearerToken("bearerAuth", "Bearer Token Authentication")
+.end()
 
-.get("/security/mutual/tls")
-.to("seda:echoMethodPath")
-.securityDefinitions()
-.mutualTLS("mutualTLS")
-.end()
+.get("/security/mutual/tls")
+.to("seda:echoMethodPath")
+.securityDefinitions()
+.mutualTLS("mutualTLS")
+.end()
 
-.get("/security/openid")
-.to("seda:echoMethodPath")
-.securityDefinitions()
-.openIdConnect("openId", 
"https://secure.apache.org/fake/openid-configuration;)
-.end()
+.get("/security/openid")
+

[PR] jdbc-db2: fails in fips environment #5993 [camel-quarkus]

2024-04-12 Thread via GitHub


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

   fixes https://github.com/apache/camel-quarkus/issues/5993
   
   


-- 
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-20574 - Camel-Milvus: Add more producer operation - Query [camel]

2024-04-12 Thread via GitHub


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


-- 
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-20574 deleted (was 3d46d10da2b)

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

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


 was 3d46d10da2b CAMEL-20574 - Camel-Milvus: Add more producer operation - 
Query

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-20574 - Camel-Milvus: Add more producer operation - Query (#13774)

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

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


The following commit(s) were added to refs/heads/main by this push:
 new ed72e44bf4d CAMEL-20574 - Camel-Milvus: Add more producer operation - 
Query (#13774)
ed72e44bf4d is described below

commit ed72e44bf4d0d336588b3aff0e9ef707ad340088
Author: Andrea Cosentino 
AuthorDate: Fri Apr 12 10:59:29 2024 +0200

CAMEL-20574 - Camel-Milvus: Add more producer operation - Query (#13774)

Signed-off-by: Andrea Cosentino 
---
 .../camel/component/milvus/MilvusAction.java   |  1 +
 .../camel/component/milvus/MilvusProducer.java | 18 +
 .../component/milvus/it/MilvusComponentIT.java | 23 ++
 3 files changed, 42 insertions(+)

diff --git 
a/components/camel-milvus/src/main/java/org/apache/camel/component/milvus/MilvusAction.java
 
b/components/camel-milvus/src/main/java/org/apache/camel/component/milvus/MilvusAction.java
index 3ba9a290ac7..12650e81ea4 100644
--- 
a/components/camel-milvus/src/main/java/org/apache/camel/component/milvus/MilvusAction.java
+++ 
b/components/camel-milvus/src/main/java/org/apache/camel/component/milvus/MilvusAction.java
@@ -22,5 +22,6 @@ public enum MilvusAction {
 UPSERT,
 INSERT,
 SEARCH,
+QUERY,
 DELETE
 }
diff --git 
a/components/camel-milvus/src/main/java/org/apache/camel/component/milvus/MilvusProducer.java
 
b/components/camel-milvus/src/main/java/org/apache/camel/component/milvus/MilvusProducer.java
index cf58965ca76..58be2861a53 100644
--- 
a/components/camel-milvus/src/main/java/org/apache/camel/component/milvus/MilvusProducer.java
+++ 
b/components/camel-milvus/src/main/java/org/apache/camel/component/milvus/MilvusProducer.java
@@ -20,12 +20,14 @@ import java.util.concurrent.ExecutorService;
 
 import io.milvus.client.MilvusClient;
 import io.milvus.grpc.MutationResult;
+import io.milvus.grpc.QueryResults;
 import io.milvus.param.R;
 import io.milvus.param.RpcStatus;
 import io.milvus.param.collection.CreateCollectionParam;
 import io.milvus.param.collection.LoadCollectionParam;
 import io.milvus.param.dml.DeleteParam;
 import io.milvus.param.dml.InsertParam;
+import io.milvus.param.dml.QueryParam;
 import io.milvus.param.dml.UpsertParam;
 import io.milvus.param.highlevel.dml.SearchSimpleParam;
 import io.milvus.param.highlevel.dml.response.SearchResponse;
@@ -82,6 +84,9 @@ public class MilvusProducer extends DefaultProducer {
 case SEARCH:
 search(exchange);
 break;
+case QUERY:
+query(exchange);
+break;
 case DELETE:
 delete(exchange);
 break;
@@ -156,6 +161,19 @@ public class MilvusProducer extends DefaultProducer {
 
 }
 
+private void query(Exchange exchange) throws Exception {
+final Message in = exchange.getMessage();
+final QueryParam body = in.getMandatoryBody(QueryParam.class);
+
+this.client.loadCollection(
+
LoadCollectionParam.newBuilder().withCollectionName(getEndpoint().getCollection()).withSyncLoad(true).build());
+R result = this.client.query(body);
+
+handleResponseStatus(result);
+populateResponse(result, exchange);
+
+}
+
 private void delete(Exchange exchange) throws Exception {
 final Message in = exchange.getMessage();
 final DeleteParam body = in.getMandatoryBody(DeleteParam.class);
diff --git 
a/components/camel-milvus/src/test/java/org/apache/camel/component/milvus/it/MilvusComponentIT.java
 
b/components/camel-milvus/src/test/java/org/apache/camel/component/milvus/it/MilvusComponentIT.java
index 6220150f19c..8b2108c1dc8 100644
--- 
a/components/camel-milvus/src/test/java/org/apache/camel/component/milvus/it/MilvusComponentIT.java
+++ 
b/components/camel-milvus/src/test/java/org/apache/camel/component/milvus/it/MilvusComponentIT.java
@@ -22,12 +22,14 @@ import java.util.Random;
 
 import io.milvus.common.clientenum.ConsistencyLevelEnum;
 import io.milvus.grpc.DataType;
+import io.milvus.grpc.QueryResults;
 import io.milvus.param.IndexType;
 import io.milvus.param.MetricType;
 import io.milvus.param.collection.CreateCollectionParam;
 import io.milvus.param.collection.FieldType;
 import io.milvus.param.dml.DeleteParam;
 import io.milvus.param.dml.InsertParam;
+import io.milvus.param.dml.QueryParam;
 import io.milvus.param.dml.UpsertParam;
 import io.milvus.param.highlevel.dml.SearchSimpleParam;
 import io.milvus.param.highlevel.dml.response.SearchResponse;
@@ -206,6 +208,27 @@ public class MilvusComponentIT extends MilvusTestSupport {
 
 @Test
 @Order(6)
+public void query() {
+QueryParam searchSimpleParam = QueryParam.newBuilder()
+.withCollectionName("test")
+.withExpr("userAge>0")
+ 

[I] OLM change CSV name [camel-k]

2024-04-12 Thread via GitHub


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

   ### Requirement
   
   As reported in latest onboarding:
   ```
   ⚠️   check_operator_name Bundle package annotation is set to 'camel-k'. 
Expected value is 'camel-k-operator' based on the CSV name. To fix this issue 
define the annotation in 'metadata/annotations.yaml' file that matches the CSV 
name.
   ``
   
   ### Problem
   
   a
   
   ### Proposal
   
   _No response_
   
   ### Open questions
   
   _No response_


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

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

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



  1   2   3   >