Re: [PR] Add elasticsearch-rest-client native support [camel-quarkus]

2024-06-11 Thread via GitHub


aldettinger commented on PR #6176:
URL: https://github.com/apache/camel-quarkus/pull/6176#issuecomment-2160759691

   > > Noticed [basic 
auth](https://camel.apache.org/components/3.22.x/elasticsearch-rest-component.html#_configure_the_component_and_enable_basic_authentication)
 and 
[multisearch](https://camel.apache.org/components/3.22.x/elasticsearch-rest-component.html#_multisearch_example)
 seems uncovered. Not sure it's worth adding native test coverge for this in 
anoher pr.
   > 
   > That's the `3.22.x` documentation for `elasticsearch-rest`. 
`elasticsearch-rest-client` is slightly different. There is no `multisearch` 
option.
   > 
   > All of the routes under test use authentication, so that part is covered.
   
   Ok, it's probably the low level rest client. And so the coverage is good. 
Thanks for explanation @jamesnetherton .


-- 
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 elasticsearch-rest-client native support [camel-quarkus]

2024-06-11 Thread via GitHub


jamesnetherton commented on PR #6176:
URL: https://github.com/apache/camel-quarkus/pull/6176#issuecomment-2160739708

   > Noticed [basic 
auth](https://camel.apache.org/components/3.22.x/elasticsearch-rest-component.html#_configure_the_component_and_enable_basic_authentication)
 and 
[multisearch](https://camel.apache.org/components/3.22.x/elasticsearch-rest-component.html#_multisearch_example)
 seems uncovered. Not sure it's worth adding native test coverge for this in 
anoher pr.
   
   That's the `3.22.x` documentation for `elasticsearch-rest`. 
`elasticsearch-rest-client` is slightly different. There is no `multisearch` 
option.
   
   All of the routes under test use authentication, so that part is covered.


-- 
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] (#5489) Migrate groovy => yaml for ./e2e/knative [camel-k]

2024-06-11 Thread via GitHub


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


-- 
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] (#5489) Migrate groovy => yaml for ./e2e/knative [camel-k]

2024-06-11 Thread via GitHub


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

   Ready to merge


-- 
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-20798: EndpointServiceLocation on components to make it possibl… [camel]

2024-06-11 Thread via GitHub


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


-- 
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 `kamel install` and promote Kustomize-based installation to primary method [camel-k]

2024-06-11 Thread via GitHub


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

   Closing this in favor to the discussion opened in #5615 


-- 
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 `kamel install` and promote Kustomize-based installation to primary method [camel-k]

2024-06-11 Thread via GitHub


squakez closed issue #3865: Deprecate `kamel install` and promote 
Kustomize-based installation to primary method
URL: https://github.com/apache/camel-k/issues/3865


-- 
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] Deprecate `kamel install` and change default installation to kustomize/helm/olm? [camel-k]

2024-06-11 Thread via GitHub


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

   ### Requirement
   
   As soon as the work on #5610 is closed, we can retake the work previously 
discussed in #3865. However I'd like to suggest some change as, while working 
on #5610 I realized that Kustomize may not be the best option when it comes to 
a simple methodology to install that has similar capabilities to what we're 
used in `kamel install`.
   
   During these years we've worked adding a lot of flags to the `kamel install` 
in order to simplify the installation (ie, registry, maven repositories, build 
configs, ...). This was a very handy way to apply quickly configuration during 
the installation procedure as the user has to specify some parameter=value 
approach.
   
   Helm has a similar approach, as, it allows the chart to provide variables we 
can easily include in the Helm templating system and set those variables (ie, 
`helm install camel-k  --set platform.build.registry.address=1.2.3.4`). It even 
allows the installation to stop if that value is not provided.
   
   Kustomize seems to be much more advanced as, conversely, requires the user 
to know exactly the Kubernetes resource to deal with. This could be a bit 
tricky, above all when we need to replace the CLI in the e2e tests.
   
   OLM, probably is something we cannot really use as a default, as, it also 
require managing the custom resource configuration for most of parameters.
   
   I'd like to hear any other pros and cons, so, we can try to work on this 
before next minor release.
   
   ### 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



Re: [PR] Add hazelcast integration test [camel-karaf]

2024-06-11 Thread via GitHub


f2par0 commented on code in PR #335:
URL: https://github.com/apache/camel-karaf/pull/335#discussion_r1634842841


##
tests/features/camel-hazelcast/src/test/java/org/apache/karaf/camel/itest/CamelHazelcastITest.java:
##
@@ -0,0 +1,59 @@
+/*
+ * Licensed 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.karaf.camel.itest;
+
+import java.util.Collections;
+import java.util.List;
+
+import org.apache.camel.component.mock.MockEndpoint;
+import 
org.apache.karaf.camel.itests.AbstractCamelSingleFeatureResultMockBasedRouteITest;
+import org.apache.karaf.camel.itests.AvailablePortProvider;
+import org.apache.karaf.camel.itests.CamelKarafTestHint;
+import org.apache.karaf.camel.itests.PaxExamWithExternalResource;
+import org.junit.After;
+import org.junit.Test;
+import org.junit.runner.RunWith;
+import org.ops4j.pax.exam.spi.reactors.ExamReactorStrategy;
+import org.ops4j.pax.exam.spi.reactors.PerClass;
+
+@CamelKarafTestHint(externalResourceProvider = 
CamelHazelcastITest.ExternalResourceProviders.class)
+@RunWith(PaxExamWithExternalResource.class)
+@ExamReactorStrategy(PerClass.class)
+public class CamelHazelcastITest extends 
AbstractCamelSingleFeatureResultMockBasedRouteITest {
+
+private static final int HZ_PORT = 5701;

Review Comment:
   OK, Done



##
tests/features/camel-hazelcast/src/test/java/org/apache/karaf/camel/itest/CamelHazelcastITest.java:
##
@@ -0,0 +1,59 @@
+/*
+ * Licensed 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.karaf.camel.itest;
+
+import java.util.Collections;
+import java.util.List;
+
+import org.apache.camel.component.mock.MockEndpoint;
+import 
org.apache.karaf.camel.itests.AbstractCamelSingleFeatureResultMockBasedRouteITest;
+import org.apache.karaf.camel.itests.AvailablePortProvider;
+import org.apache.karaf.camel.itests.CamelKarafTestHint;
+import org.apache.karaf.camel.itests.PaxExamWithExternalResource;
+import org.junit.After;
+import org.junit.Test;
+import org.junit.runner.RunWith;
+import org.ops4j.pax.exam.spi.reactors.ExamReactorStrategy;
+import org.ops4j.pax.exam.spi.reactors.PerClass;
+
+@CamelKarafTestHint(externalResourceProvider = 
CamelHazelcastITest.ExternalResourceProviders.class)
+@RunWith(PaxExamWithExternalResource.class)
+@ExamReactorStrategy(PerClass.class)
+public class CamelHazelcastITest extends 
AbstractCamelSingleFeatureResultMockBasedRouteITest {
+
+private static final int HZ_PORT = 5701;
+
+@Override
+public void configureMock(MockEndpoint mock) {
+//Map + replicated Map + 2 for list + Queue + Set + Topic
+mock.expectedBodiesReceived( Collections.nCopies(7, "OK"));
+}
+
+@Test
+public void testResultMock() throws Exception {
+assertMockEndpointsSatisfied();
+}
+
+@After
+public void stopCamelContext() {
+//to trigger graceful shutdown of hazelcast components before 
uninstalling bundles
+getContext().stop();
+}

Review Comment:
   Removed and used the 
`System.setProperty("hazelcast.shutdownhook.enabled","false");`



-- 
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 hazelcast integration test [camel-karaf]

2024-06-11 Thread via GitHub


f2par0 commented on code in PR #335:
URL: https://github.com/apache/camel-karaf/pull/335#discussion_r1634842463


##
tests/features/camel-hazelcast/src/test/java/org/apache/karaf/camel/itest/CamelHazelcastITest.java:
##
@@ -0,0 +1,53 @@
+/*
+ * Licensed 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.karaf.camel.itest;
+
+import java.util.Collections;
+import java.util.List;
+
+import org.apache.camel.component.mock.MockEndpoint;
+import 
org.apache.karaf.camel.itests.AbstractCamelSingleFeatureResultMockBasedRouteITest;
+import org.apache.karaf.camel.itests.AvailablePortProvider;
+import org.apache.karaf.camel.itests.CamelKarafTestHint;
+import org.apache.karaf.camel.itests.PaxExamWithExternalResource;
+import org.junit.After;
+import org.junit.Test;
+import org.junit.runner.RunWith;
+import org.ops4j.pax.exam.spi.reactors.ExamReactorStrategy;
+import org.ops4j.pax.exam.spi.reactors.PerClass;
+
+@CamelKarafTestHint(externalResourceProvider = 
CamelHazelcastITest.ExternalResourceProviders.class)
+@RunWith(PaxExamWithExternalResource.class)
+@ExamReactorStrategy(PerClass.class)
+public class CamelHazelcastITest extends 
AbstractCamelSingleFeatureResultMockBasedRouteITest {
+
+private static final int HZ_PORT = 5701;
+
+@Override
+public void configureMock(MockEndpoint mock) {
+//Map + replicated Map + 2 for list + Queue + Set + Topic
+mock.expectedBodiesReceived( Collections.nCopies(7, "OK"));

Review Comment:
   OK, Done



##
tests/features/camel-hazelcast/src/main/java/org/apache/karaf/camel/test/CamelHazelcastRouteSupplier.java:
##
@@ -0,0 +1,119 @@
+/*
+ * 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.karaf.camel.test;
+
+import static org.apache.camel.builder.Builder.constant;
+
+import org.apache.camel.CamelContext;
+import org.apache.camel.builder.RouteBuilder;
+import org.apache.camel.component.hazelcast.HazelcastConstants;
+import org.apache.camel.component.hazelcast.HazelcastOperation;
+import org.apache.camel.model.RouteDefinition;
+import 
org.apache.karaf.camel.itests.AbstractCamelSingleFeatureResultMockBasedRouteSupplier;
+import org.apache.karaf.camel.itests.CamelRouteSupplier;
+import org.osgi.service.component.annotations.Component;
+
+import com.hazelcast.config.Config;
+import com.hazelcast.config.NetworkConfig;
+import com.hazelcast.core.Hazelcast;
+import com.hazelcast.core.HazelcastInstance;
+
+@Component(name = "karaf-camel-hazelcast-test", immediate = true, service = 
CamelRouteSupplier.class)
+public class CamelHazelcastRouteSupplier extends 
AbstractCamelSingleFeatureResultMockBasedRouteSupplier {
+
+
+@Override
+public void configure(CamelContext camelContext) {
+Config hazelcastConfig = new Config();
+NetworkConfig networkConfig = hazelcastConfig.getNetworkConfig();
+networkConfig.setPort(Integer.parseInt(System.getProperty("hz.port")));
+
+HazelcastInstance hazelcastInstance = 
Hazelcast.newHazelcastInstance(hazelcastConfig);
+
+camelContext.getRegistry().bind("hzInstance", hazelcastInstance);
+}
+
+@Override
+protected boolean consumerEnabled() {
+//consumers are implemented directly in the configureProducer method 
here
+return false;
+}
+
+@Override
+protected void configureProducer(RouteBuilder builder, RouteDefinition 
producerRoute) {
+
+
configureConsumer(builder.from("hazelcast-list:myList?hazelcastInstance=#hzInstance").log("list
 received ${body}").setBody(constant("OK")));
+
configureConsumer(builder.from("hazelcast-map:myMap?hazelcastInstance=#hzInstance").log("map
 received ${body}").setBody(constant("OK")));
+ 

Re: [PR] CAMEL-20798: EndpointServiceLocation on components to make it possibl… [camel]

2024-06-11 Thread via GitHub


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

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


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

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

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



[PR] CAMEL-20798: EndpointServiceLocation on components to make it possibl… [camel]

2024-06-11 Thread via GitHub


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

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


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

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

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



[PR] Ref #339 jcache fixes and integration test [camel-karaf]

2024-06-11 Thread via GitHub


f2par0 opened a new pull request, #340:
URL: https://github.com/apache/camel-karaf/pull/340

   fixes #339 
   Some fixes in hazelcast are necessary to be able to activate jcache api
   Reintegrate classes from camel-jcache-osgi with a fix to handle comments in 
the service file. (class name in not necessarily in the first read line)
   tests with ehcache and hazelcast cache


-- 
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-langchain4j-chat - NPE if only producer is used [camel]

2024-06-11 Thread via GitHub


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


-- 
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: do not commit the install-state.gz file [camel]

2024-06-11 Thread via GitHub


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

   as recommended in official yarn documentation
   https://yarnpkg.com/getting-started/qa#which-files-should-be-gitignored
   
   ".yarn/install-state.gz is an optimization file that you shouldn't ever have 
to commit. It simply stores the exact state of your project so that the next 
commands can boot without having to resolve your workspaces all over again."
   
   it will also allows to have dependabot PRs workign out of the box
   
   # Description
   
   
   
   # Target
   
   - [ ] I checked that the commit is targeting the correct branch (note that 
Camel 3 uses `camel-3.x`, whereas Camel 4 uses the `main` branch)
   
   # Tracking
   - [ ] If this is a large change, bug fix, or code improvement, I checked 
there is a [JIRA issue](https://issues.apache.org/jira/browse/CAMEL) filed for 
the change (usually before you start working on it).
   
   
   
   # Apache Camel coding standards and style
   
   - [ ] I checked that each commit in the pull request has a meaningful 
subject line and body.
   
   
   
   - [ ] I have run `mvn clean install -DskipTests` locally and I have 
committed all auto-generated changes
   
   
   
   


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

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

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



Re: [PR] chore: set proper name to examples [camel-karaf]

2024-06-11 Thread via GitHub


essobedo merged PR #338:
URL: https://github.com/apache/camel-karaf/pull/338


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

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

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



Re: [PR] chore: set proper name to examples [camel-karaf]

2024-06-11 Thread via GitHub


essobedo commented on PR #338:
URL: https://github.com/apache/camel-karaf/pull/338#issuecomment-2160575802

   @oscerd thx for the review   


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

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

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



[PR] camel-langchain4j-chat - NPE if only producer is used [camel]

2024-06-11 Thread via GitHub


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

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


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

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

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



Re: [PR] camel-langchain4j-chat - NPE if only producer is used [camel]

2024-06-11 Thread via GitHub


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

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


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

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

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



Re: [I] Incompatible bundles in camel3 feature name='xml-specs-api' [camel-karaf]

2024-06-11 Thread via GitHub


essobedo commented on issue #336:
URL: https://github.com/apache/camel-karaf/issues/336#issuecomment-2160548087

   Hi, thank you for your feedback, you are welcome to propose a PR. 
   
   Just so you know, branch 3.x is no longer active because we won't release a 
new version 3. For the version 3, only the branch 3.22 is still active as it is 
still supported until the end of the year.


-- 
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: set proper name to examples [camel-karaf]

2024-06-11 Thread via GitHub


essobedo opened a new pull request, #338:
URL: https://github.com/apache/camel-karaf/pull/338

   ## Motivation
   
   The name of the pom files of the examples were not properly set
   
   ## Modifications:
   
   * set proper name to examples


-- 
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] doc: Improve CoAP component description [camel]

2024-06-11 Thread via GitHub


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


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

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

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



Re: [PR] chore(deps): Bump io.nats:jnats from 2.18.1 to 2.19.0 [camel]

2024-06-11 Thread via GitHub


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


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

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

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



Re: [PR] chore(deps-dev): Bump com.nimbusds:nimbus-jose-jwt from 9.39.3 to 9.40 [camel]

2024-06-11 Thread via GitHub


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


-- 
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-20798: EndpointServiceLocation on components to make it possible to know which remote system Camel connects to to assist for monitoring and observability - Athena and Secrets Manager [c

2024-06-11 Thread via GitHub


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


-- 
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-20850: camel-core - compress changes in SimpleLRUCache [camel]

2024-06-11 Thread via GitHub


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


##
core/camel-core/src/test/java/org/apache/camel/support/cache/SimpleLRUCacheTest.java:
##
@@ -287,4 +280,102 @@ void replaceWithOldValue() {
 assertEquals(3, map.size());
 assertEquals(0, consumed.size());
 }
+
+@Test
+void ignoreDuplicates() {
+assertEquals(0, map.size());
+for (int i = 0; i < 100; i++) {
+map.put("1", Integer.toString(i));
+assertEquals(1, map.size(), String.format("The expected size is 1 
but it fails after %d puts", i + 1));
+}
+assertEquals("99", map.get("1"));
+assertNull(map.put("2", "Two"));
+assertEquals(2, map.size());
+assertEquals("99", map.get("1"));
+assertNull(map.put("3", "Three"));
+assertEquals(3, map.size());
+assertEquals(0, consumed.size());
+assertEquals("99", map.get("1"));
+assertNull(map.put("4", "Four"));
+assertEquals(3, map.size());
+assertEquals(1, consumed.size());
+assertFalse(map.containsKey("1"));
+assertTrue(consumed.contains("99"));
+}
+
+@Test
+void ensureEvictionOrdering() {
+assertEquals(0, map.size());
+assertNull(map.put("1", "One"));
+assertNotNull(map.put("1", "One"));
+assertNotNull(map.put("1", "One"));
+assertNotNull(map.put("1", "One"));
+assertNotNull(map.put("1", "One"));
+assertNotNull(map.put("1", "One"));
+assertNull(map.put("2", "Two"));
+assertNotNull(map.put("1", "One"));
+assertNull(map.put("3", "Three"));
+assertEquals(3, map.size());
+assertNull(map.put("4", "Four"));
+assertEquals(3, map.size());
+assertEquals(1, consumed.size());
+assertFalse(map.containsKey("2"));
+assertTrue(consumed.contains("Two"));
+}
+
+@ParameterizedTest
+@ValueSource(ints = { 1, 2, 5, 10, 20, 50, 100, 1_000 })
+void concurrentPut(int maximumCacheSize) throws Exception {
+int threads = Runtime.getRuntime().availableProcessors();
+int totalKeysPerThread = 1_000;
+AtomicInteger counter = new AtomicInteger();
+SimpleLRUCache cache = new SimpleLRUCache<>(16, 
maximumCacheSize, v -> counter.incrementAndGet());
+CountDownLatch latch = new CountDownLatch(threads);
+for (int i = 0; i < threads; i++) {
+int threadId = i;
+new Thread(() -> {
+try {
+for (int j = 0; j < totalKeysPerThread; j++) {
+cache.put(threadId + "-" + j, Integer.toString(j));
+}
+} finally {
+latch.countDown();
+}
+}).start();
+}
+latch.await();

Review Comment:
   ok



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

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

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



Re: [I] Move tests, examples and documentation from groovy to yaml [camel-k]

2024-06-11 Thread via GitHub


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

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


-- 
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] (#5489) Migrate groovy => yaml for ./e2e/knative [camel-k]

2024-06-11 Thread via GitHub


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

   (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



[PR] Add elasticsearch-rest-client native support [camel-quarkus]

2024-06-11 Thread via GitHub


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

   (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



[I] OpenAI completion kamelet gives me 404 [camel-kamelets]

2024-06-11 Thread via GitHub


matzew opened a new issue, #2074:
URL: https://github.com/apache/camel-kamelets/issues/2074

   Inovking the `davinci` engine, via Kamelet gives me a 404:
   
   ```
   beer-source-pipe-58584b68bb-cdsb5 integration Stacktrace
   beer-source-pipe-58584b68bb-cdsb5 integration 
---:
 org.apache.camel.http.base.HttpOperationFailedException: HTTP operation failed 
invoking https://api.openai.com/v1/engines/davinci/completions with statusCode: 
404
   beer-source-pipe-58584b68bb-cdsb5 integrationat 
org.apache.camel.component.http.HttpProducer.populateHttpOperationFailedException(HttpProducer.java:452)
   beer-source-pipe-58584b68bb-cdsb5 integrationat 
org.apache.camel.component.http.HttpProducer.lambda$process$1(HttpProducer.java:275)
   beer-source-pipe-58584b68bb-cdsb5 integrationat 
org.apache.hc.client5.http.impl.classic.CloseableHttpClient.execute(CloseableHttpClient.java:247)
   beer-source-pipe-58584b68bb-cdsb5 integrationat 
org.apache.camel.component.http.HttpProducer.executeMethod(HttpProducer.java:476)
   beer-source-pipe-58584b68bb-cdsb5 integrationat 
org.apache.camel.component.http.HttpProducer.process(HttpProducer.java:246)
   beer-source-pipe-58584b68bb-cdsb5 integrationat 
org.apache.camel.support.AsyncProcessorConverterHelper$ProcessorToAsyncProcessorBridge.process(AsyncProcessorConverterHelper.java:65)
   beer-source-pipe-58584b68bb-cdsb5 integrationat 
org.apache.camel.processor.SendProcessor.process(SendProcessor.java:210)
   beer-source-pipe-58584b68bb-cdsb5 integrationat 
org.apache.camel.processor.errorhandler.NoErrorHandler.process(NoErrorHandler.java:46)
   beer-source-pipe-58584b68bb-cdsb5 integrationat 
org.apache.camel.impl.engine.CamelInternalProcessor.processNonTransacted(CamelInternalProcessor.java:354)
   beer-source-pipe-58584b68bb-cdsb5 integrationat 
org.apache.camel.impl.engine.CamelInternalProcessor.process(CamelInternalProcessor.java:330)
   beer-source-pipe-58584b68bb-cdsb5 integrationat 
org.apache.camel.processor.Pipeline$PipelineTask.run(Pipeline.java:102)
   beer-source-pipe-58584b68bb-cdsb5 integrationat 
org.apache.camel.impl.engine.DefaultReactiveExecutor$Worker.doRun(DefaultReactiveExecutor.java:199)
   beer-source-pipe-58584b68bb-cdsb5 integrationat 
org.apache.camel.impl.engine.DefaultReactiveExecutor$Worker.executeReactiveWork(DefaultReactiveExecutor.java:189)
   beer-source-pipe-58584b68bb-cdsb5 integrationat 
org.apache.camel.impl.engine.DefaultReactiveExecutor$Worker.tryExecuteReactiveWork(DefaultReactiveExecutor.java:166)
   beer-source-pipe-58584b68bb-cdsb5 integrationat 
org.apache.camel.impl.engine.DefaultReactiveExecutor$Worker.schedule(DefaultReactiveExecutor.java:148)
   beer-source-pipe-58584b68bb-cdsb5 integrationat 
org.apache.camel.impl.engine.DefaultReactiveExecutor.scheduleMain(DefaultReactiveExecutor.java:59)
   beer-source-pipe-58584b68bb-cdsb5 integrationat 
org.apache.camel.processor.Pipeline.process(Pipeline.java:163)
   beer-source-pipe-58584b68bb-cdsb5 integrationat 
org.apache.camel.impl.engine.CamelInternalProcessor.processNonTransacted(CamelInternalProcessor.java:354)
   beer-source-pipe-58584b68bb-cdsb5 integrationat 
org.apache.camel.impl.engine.CamelInternalProcessor.process(CamelInternalProcessor.java:330)
   beer-source-pipe-58584b68bb-cdsb5 integrationat 
org.apache.camel.component.timer.TimerConsumer.sendTimerExchange(TimerConsumer.java:293)
   beer-source-pipe-58584b68bb-cdsb5 integrationat 
org.apache.camel.component.timer.TimerConsumer$1.doRun(TimerConsumer.java:164)
   beer-source-pipe-58584b68bb-cdsb5 integrationat 
org.apache.camel.component.timer.TimerConsumer$1.run(TimerConsumer.java:136)
   beer-source-pipe-58584b68bb-cdsb5 integrationat 
java.base/java.util.TimerThread.mainLoop(Timer.java:566)
   beer-source-pipe-58584b68bb-cdsb5 integrationat 
java.base/java.util.TimerThread.run(Timer.java:516)
   beer-source-pipe-58584b68bb-cdsb5 integration 
   ```
   
   
   The Kamelet goes like:
   
   ```yaml
   apiVersion: camel.apache.org/v1
   kind: Pipe
   metadata:
 name: beer-source-pipe
   spec:
 source:
   ref:
 kind: Kamelet
 apiVersion: camel.apache.org/v1
 name: timer-source
   properties:
 message: What if tomorrow...
   
 steps:
   - ref:
   kind: Kamelet
   apiVersion: camel.apache.org/v1
   name: openai-completion-action
 properties:
   authorizationToken: 
 sink:
   properties:
 cloudEventsType: com.corp.my.beer.source
   ref:
 kind: Broker
 apiVersion: eventing.knative.dev/v1
 name: kamelet
   ```
   
   
   The `authorizationToken` is also a bit 

Re: [PR] CAMEL-20798: EndpointServiceLocation on components to make it possible to know which remote system Camel connects to to assist for monitoring and observability - Athena and Secrets Manager [c

2024-06-11 Thread via GitHub


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

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


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

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

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



[PR] CAMEL-20798: EndpointServiceLocation on components to make it possible to know which remote system Camel connects to to assist for monitoring and observability - Athena and Secrets Manager [camel

2024-06-11 Thread via GitHub


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

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


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

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

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



Re: [PR] chore(deps): Bump io.nats:jnats from 2.18.1 to 2.19.0 [camel]

2024-06-11 Thread via GitHub


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

   :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] chore(deps): Bump io.nats:jnats from 2.18.1 to 2.19.0 [camel]

2024-06-11 Thread via GitHub


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

   Bumps [io.nats:jnats](https://github.com/nats-io/nats.java) from 2.18.1 to 
2.19.0.
   
   Release notes
   Sourced from https://github.com/nats-io/nats.java/releases;>io.nats:jnats's 
releases.
   
   2.19.0 Improve socket close behavior
   Core
   Improve socket close behavior https://redirect.github.com/nats-io/nats.java/issues/1155;>#1155 https://github.com/scottf;>@​scottf
   Tests
   Additional NKey Tests https://redirect.github.com/nats-io/nats.java/issues/1154;>#1154 https://github.com/scottf;>@​scottf
   Misc
   Experimental Retrier utility removed to its own project/repo https://redirect.github.com/nats-io/nats.java/issues/1153;>#1153 https://github.com/scottf;>@​scottf
   
   
   
   Changelog
   Sourced from https://github.com/nats-io/nats.java/blob/main/CHANGELOG.md;>io.nats:jnats's
 changelog.
   
   2.19.0
   Core
   Improve socket close behavior https://redirect.github.com/nats-io/nats.java/issues/1155;>#1155 https://github.com/scottf;>@​scottf
   Tests
   Additional NKey Tests https://redirect.github.com/nats-io/nats.java/issues/1154;>#1154 https://github.com/scottf;>@​scottf
   Misc
   Experimental Retrier utility removed to its own project/repo https://redirect.github.com/nats-io/nats.java/issues/1153;>#1153 https://github.com/scottf;>@​scottf
   
   
   
   Commits
   
   https://github.com/nats-io/nats.java/commit/1d5c7491874fff3aeac022e12a7842e9a3652c76;>1d5c749
 Improve socket close behavior
   https://github.com/nats-io/nats.java/commit/76fac05eb49c2bb31a7373d1256915ec211f7220;>76fac05
 Improve socket close behavior (https://redirect.github.com/nats-io/nats.java/issues/1155;>#1155)
   https://github.com/nats-io/nats.java/commit/8ac0bd8181c72b69ee253401b444ca4cd946;>8ac
 Additional NKey Tests (https://redirect.github.com/nats-io/nats.java/issues/1154;>#1154)
   https://github.com/nats-io/nats.java/commit/4b057970ac2451b4ea2884b2ab8e19a34e746027;>4b05797
 Experimental Retrier utility removed to its own project/repo (https://redirect.github.com/nats-io/nats.java/issues/1153;>#1153)
   https://github.com/nats-io/nats.java/commit/eb8b6f242ac11a0fade2b7d54ac85f270b76791f;>eb8b6f2
 Update README.md
   https://github.com/nats-io/nats.java/commit/7119a1a77937272908e4f887e0b0a4f65dde7587;>7119a1a
 Start 2.18.2 (https://redirect.github.com/nats-io/nats.java/issues/1152;>#1152)
   See full diff in https://github.com/nats-io/nats.java/compare/2.18.1...2.19.0;>compare 
view
   
   
   
   
   
   [![Dependabot compatibility 
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=io.nats:jnats=maven=2.18.1=2.19.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)
   
   Dependabot will resolve any conflicts with this PR as long as you don't 
alter it yourself. You can also trigger a rebase manually by commenting 
`@dependabot rebase`.
   
   [//]: # (dependabot-automerge-start)
   [//]: # (dependabot-automerge-end)
   
   ---
   
   
   Dependabot commands and options
   
   
   You can trigger Dependabot actions by commenting on this PR:
   - `@dependabot rebase` will rebase this PR
   - `@dependabot recreate` will recreate this PR, overwriting any edits that 
have been made to it
   - `@dependabot merge` will merge this PR after your CI passes on it
   - `@dependabot squash and merge` will squash and merge this PR after your CI 
passes on it
   - `@dependabot cancel merge` will cancel a previously requested merge and 
block automerging
   - `@dependabot reopen` will reopen this PR if it is closed
   - `@dependabot close` will close this PR and stop Dependabot recreating it. 
You can achieve the same result by closing it manually
   - `@dependabot show  ignore conditions` will show all of 
the ignore conditions of the specified dependency
   - `@dependabot ignore this major version` will close this PR and stop 
Dependabot creating any more for this major version (unless you reopen the PR 
or upgrade to it yourself)
   - `@dependabot ignore this minor version` will close this PR and stop 
Dependabot creating any more for this minor version (unless you reopen the PR 
or upgrade to it yourself)
   - `@dependabot ignore this dependency` will close this PR and stop 
Dependabot creating any more for this dependency (unless you reopen the PR or 
upgrade to it yourself)
   
   
   


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

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

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



Re: [PR] chore(deps-dev): Bump com.nimbusds:nimbus-jose-jwt from 9.39.3 to 9.40 [camel]

2024-06-11 Thread via GitHub


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

   :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] chore(deps-dev): Bump com.nimbusds:nimbus-jose-jwt from 9.39.3 to 9.40 [camel]

2024-06-11 Thread via GitHub


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

   /component-test elytron undertow-spring-security


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

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

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



Re: [PR] chore(deps): Bump com.github.beanio:beanio from 3.0.1 to 3.0.2 [camel]

2024-06-11 Thread via GitHub


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


-- 
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] doc: Improve CoAP component description [camel]

2024-06-11 Thread via GitHub


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

   to have the dsl/camel-componentdsl changes,using the top level `mvn clean 
install -Pfast install` was not enough. I called `mvn clean install` in both 
camel-catalog and dsl/camel-component-dsl


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

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

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



Re: [PR] chore(deps): Bump californium-version from 3.11.0 to 3.12.0 [camel]

2024-06-11 Thread via GitHub


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


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

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

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



Re: [PR] chore(deps-dev): Bump io.projectreactor:reactor-core from 3.6.6 to 3.6.7 [camel]

2024-06-11 Thread via GitHub


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


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

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

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



Re: [PR] chore(deps): Bump com.google.cloud:google-cloud-secretmanager-bom from 2.44.0 to 2.45.0 [camel]

2024-06-11 Thread via GitHub


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


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

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

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



Re: [PR] chore(deps-dev): Bump com.nimbusds:nimbus-jose-jwt from 9.39.3 to 9.40 [camel]

2024-06-11 Thread via GitHub


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

   :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] chore(deps-dev): Bump com.nimbusds:nimbus-jose-jwt from 9.39.3 to 9.40 [camel]

2024-06-11 Thread via GitHub


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

   Bumps 
[com.nimbusds:nimbus-jose-jwt](https://bitbucket.org/connect2id/nimbus-jose-jwt)
 from 9.39.3 to 9.40.
   
   Changelog
   Sourced from https://bitbucket.org/connect2id/nimbus-jose-jwt/src/master/CHANGELOG.txt;>com.nimbusds:nimbus-jose-jwt's
 changelog.
   
   version 1.0 (2012-03-01)
   
   First version based on the OpenInfoCard JWT, JWS and JWE code base.
   
   version 1.1 (2012-03-06)
   
   Introduces type-safe enumeration of the JSON Web Algorithms (JWA).
   Refactors the JWT class.
   
   version 1.2 (2012-03-08)
   
   Moves JWS and JWE code into separate classes.
   
   version 1.3 (2012-03-09)
   
   Switches to Apache Commons Codec for Base64URL encoding and decoding
   Consolidates the crypto utilities within the package.
   Introduces a JWT content serialiser class.
   
   version 1.4 (2012-03-09)
   
   Refactoring of JWT class and JUnit tests.
   
   version 1.5 (2012-03-18)
   
   Switches to JSON Smart for JSON serialisation and parsing.
   Introduces claims set class with JSON objects, string, Base64URL and
   byte array views.
   
   version 1.6 (2012-03-20)
   
   Creates class for representing, serialising and parsing JSON Web Keys
   (JWK).
   Introduces separate class for representing JWT headers.
   
   version 1.7 (2012-04-01)
   
   Introduces separate classes for plain, JWS and JWE headers.
   Introduces separate classes for plain, signed and encrypted JWTs.
   Removes the JWTContent class.
   Removes password-based (PE820) encryption support.
   
   version 1.8 (2012-04-03)
   
   Adds support for the ZIP JWE header parameter.
   Removes unsupported algorithms from the JWA enumeration.
   
   version 1.9 (2012-04-03)
   
   Renames JWEHeader.{get|set}EncryptionAlgorithm() to
   JWEHeader.{get|set}EncryptionMethod().
   
   version 1.9.1 (2012-04-03)
   
   Upgrades JSON Smart JAR to 1.1.1.
   
   version 1.10 (2012-04-14)
   
   Introduces serialize() method to base abstract JWT class.
   
   version 1.11 (2012-05-13)
   
   JWT.serialize() throws checked JWTException instead of
   
   
   
   ... (truncated)
   
   
   Commits
   
   https://bitbucket.org/connect2id/nimbus-jose-jwt/commits/493fc200e4df03dc8fb1272baa27471affb52119;>493fc20
 [maven-release-plugin] prepare for next development iteration
   https://bitbucket.org/connect2id/nimbus-jose-jwt/commits/2c6d225d80e335220cb51ffb64bc853bf4672640;>2c6d225
 New JWTClaimsSet.Builder.serializeNullClaims(boolean) method, fixes 
JWTClaims...
   https://bitbucket.org/connect2id/nimbus-jose-jwt/commits/2af7c016f8c6a6295a75e93a460e6ff57a579cad;>2af7c01
 [maven-release-plugin] prepare release 9.40
   See full diff in https://bitbucket.org/connect2id/nimbus-jose-jwt/branches/compare/9.40..9.39.3;>compare
 view
   
   
   
   
   
   [![Dependabot compatibility 
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=com.nimbusds:nimbus-jose-jwt=maven=9.39.3=9.40)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)
   
   Dependabot will resolve any conflicts with this PR as long as you don't 
alter it yourself. You can also trigger a rebase manually by commenting 
`@dependabot rebase`.
   
   [//]: # (dependabot-automerge-start)
   [//]: # (dependabot-automerge-end)
   
   ---
   
   
   Dependabot commands and options
   
   
   You can trigger Dependabot actions by commenting on this PR:
   - `@dependabot rebase` will rebase this PR
   - `@dependabot recreate` will recreate this PR, overwriting any edits that 
have been made to it
   - `@dependabot merge` will merge this PR after your CI passes on it
   - `@dependabot squash and merge` will squash and merge this PR after your CI 
passes on it
   - `@dependabot cancel merge` will cancel a previously requested merge and 
block automerging
   - `@dependabot reopen` will reopen this PR if it is closed
   - `@dependabot close` will close this PR and stop Dependabot recreating it. 
You can achieve the same result by closing it manually
   - `@dependabot show  ignore conditions` will show all of 
the ignore conditions of the specified dependency
   - `@dependabot ignore this major version` will close this PR and stop 
Dependabot creating any more for this major version (unless you reopen the PR 
or upgrade to it yourself)
   - `@dependabot ignore this minor version` will close this PR and stop 
Dependabot creating any more for this minor version (unless you reopen the PR 
or upgrade to it yourself)
   - `@dependabot ignore this dependency` will close this PR and stop 
Dependabot creating any more for this dependency (unless you reopen the PR or 
upgrade to it yourself)
   
   
   


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

To unsubscribe, 

Re: [PR] chore(deps): Bump com.github.beanio:beanio from 3.0.1 to 3.0.2 [camel]

2024-06-11 Thread via GitHub


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

   :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] chore(deps): Bump com.github.beanio:beanio from 3.0.1 to 3.0.2 [camel]

2024-06-11 Thread via GitHub


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

   /component-test beanio


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

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

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



Re: [PR] chore(deps): Bump com.github.beanio:beanio from 3.0.1 to 3.0.2 [camel]

2024-06-11 Thread via GitHub


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

   :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] chore(deps): Bump com.github.beanio:beanio from 3.0.1 to 3.0.2 [camel]

2024-06-11 Thread via GitHub


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

   Bumps [com.github.beanio:beanio](https://github.com/beanio/beanio) from 
3.0.1 to 3.0.2.
   
   Release notes
   Sourced from https://github.com/beanio/beanio/releases;>com.github.beanio:beanio's 
releases.
   
   3.0.2
   Changes in version 3.0.2 (2024-06-07)
   
   Fixed a NullPointerException in multithreaded environments 
(https://redirect.github.com/beanio/beanio/issues/162;>#162)
   
   
   
   
   Changelog
   Sourced from https://github.com/beanio/beanio/blob/main/changelog.txt;>com.github.beanio:beanio's
 changelog.
   
   Changes in version 3.0.2 (2024-06-07)
   
   Fixed a NullPointerException in multithreaded environments 
(https://redirect.github.com/beanio/beanio/issues/162;>#162)
   
   
   
   
   Commits
   
   https://github.com/beanio/beanio/commit/7041ed5b60b86a450be909fc5ad8088c63f9bf42;>7041ed5
 Version 3.0.2
   https://github.com/beanio/beanio/commit/e412888c876eac2cdd4568a69f8f958cd494fce2;>e412888
 Merge pull request https://redirect.github.com/beanio/beanio/issues/163;>#163 from 
EzequielB/issue_162
   https://github.com/beanio/beanio/commit/3a23a6886e722aa5e375c7f80d4fb1a6c9bf9e0b;>3a23a68
 issue 164 - improve test
   https://github.com/beanio/beanio/commit/8094e2e5b1422cb9799b5bd0688091a0a35aa20c;>8094e2e
 issue 164 - number type handler multithread fix
   See full diff in https://github.com/beanio/beanio/compare/3.0.1...3.0.2;>compare 
view
   
   
   
   
   
   [![Dependabot compatibility 
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=com.github.beanio:beanio=maven=3.0.1=3.0.2)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)
   
   Dependabot will resolve any conflicts with this PR as long as you don't 
alter it yourself. You can also trigger a rebase manually by commenting 
`@dependabot rebase`.
   
   [//]: # (dependabot-automerge-start)
   [//]: # (dependabot-automerge-end)
   
   ---
   
   
   Dependabot commands and options
   
   
   You can trigger Dependabot actions by commenting on this PR:
   - `@dependabot rebase` will rebase this PR
   - `@dependabot recreate` will recreate this PR, overwriting any edits that 
have been made to it
   - `@dependabot merge` will merge this PR after your CI passes on it
   - `@dependabot squash and merge` will squash and merge this PR after your CI 
passes on it
   - `@dependabot cancel merge` will cancel a previously requested merge and 
block automerging
   - `@dependabot reopen` will reopen this PR if it is closed
   - `@dependabot close` will close this PR and stop Dependabot recreating it. 
You can achieve the same result by closing it manually
   - `@dependabot show  ignore conditions` will show all of 
the ignore conditions of the specified dependency
   - `@dependabot ignore this major version` will close this PR and stop 
Dependabot creating any more for this major version (unless you reopen the PR 
or upgrade to it yourself)
   - `@dependabot ignore this minor version` will close this PR and stop 
Dependabot creating any more for this minor version (unless you reopen the PR 
or upgrade to it yourself)
   - `@dependabot ignore this dependency` will close this PR and stop 
Dependabot creating any more for this dependency (unless you reopen the PR or 
upgrade to it yourself)
   
   
   


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

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

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



Re: [PR] chore(deps): Bump com.box:box-java-sdk from 4.9.1 to 4.10.0 [camel]

2024-06-11 Thread via GitHub


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


-- 
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-20850: camel-core - compress changes in SimpleLRUCache [camel]

2024-06-11 Thread via GitHub


essobedo commented on code in PR #14424:
URL: https://github.com/apache/camel/pull/14424#discussion_r1634558793


##
core/camel-core/src/test/java/org/apache/camel/support/cache/SimpleLRUCacheTest.java:
##
@@ -287,4 +280,102 @@ void replaceWithOldValue() {
 assertEquals(3, map.size());
 assertEquals(0, consumed.size());
 }
+
+@Test
+void ignoreDuplicates() {
+assertEquals(0, map.size());
+for (int i = 0; i < 100; i++) {
+map.put("1", Integer.toString(i));
+assertEquals(1, map.size(), String.format("The expected size is 1 
but it fails after %d puts", i + 1));
+}
+assertEquals("99", map.get("1"));
+assertNull(map.put("2", "Two"));
+assertEquals(2, map.size());
+assertEquals("99", map.get("1"));
+assertNull(map.put("3", "Three"));
+assertEquals(3, map.size());
+assertEquals(0, consumed.size());
+assertEquals("99", map.get("1"));
+assertNull(map.put("4", "Four"));
+assertEquals(3, map.size());
+assertEquals(1, consumed.size());
+assertFalse(map.containsKey("1"));
+assertTrue(consumed.contains("99"));
+}
+
+@Test
+void ensureEvictionOrdering() {
+assertEquals(0, map.size());
+assertNull(map.put("1", "One"));
+assertNotNull(map.put("1", "One"));
+assertNotNull(map.put("1", "One"));
+assertNotNull(map.put("1", "One"));
+assertNotNull(map.put("1", "One"));
+assertNotNull(map.put("1", "One"));
+assertNull(map.put("2", "Two"));
+assertNotNull(map.put("1", "One"));
+assertNull(map.put("3", "Three"));
+assertEquals(3, map.size());
+assertNull(map.put("4", "Four"));
+assertEquals(3, map.size());
+assertEquals(1, consumed.size());
+assertFalse(map.containsKey("2"));
+assertTrue(consumed.contains("Two"));
+}
+
+@ParameterizedTest
+@ValueSource(ints = { 1, 2, 5, 10, 20, 50, 100, 1_000 })
+void concurrentPut(int maximumCacheSize) throws Exception {
+int threads = Runtime.getRuntime().availableProcessors();
+int totalKeysPerThread = 1_000;
+AtomicInteger counter = new AtomicInteger();
+SimpleLRUCache cache = new SimpleLRUCache<>(16, 
maximumCacheSize, v -> counter.incrementAndGet());
+CountDownLatch latch = new CountDownLatch(threads);
+for (int i = 0; i < threads; i++) {
+int threadId = i;
+new Thread(() -> {
+try {
+for (int j = 0; j < totalKeysPerThread; j++) {
+cache.put(threadId + "-" + j, Integer.toString(j));
+}
+} finally {
+latch.countDown();
+}
+}).start();
+}
+latch.await();

Review Comment:
   No, it cannot wait forever because `latch.countDown()` is called in a 
finally block so even in case of an error, it will be called



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

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

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



Re: [PR] chore(deps-dev): Bump io.projectreactor:reactor-core from 3.6.6 to 3.6.7 [camel]

2024-06-11 Thread via GitHub


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

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


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

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

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



Re: [PR] CAMEL-20850: camel-core - compress changes in SimpleLRUCache [camel]

2024-06-11 Thread via GitHub


essobedo commented on code in PR #14424:
URL: https://github.com/apache/camel/pull/14424#discussion_r1634558793


##
core/camel-core/src/test/java/org/apache/camel/support/cache/SimpleLRUCacheTest.java:
##
@@ -287,4 +280,102 @@ void replaceWithOldValue() {
 assertEquals(3, map.size());
 assertEquals(0, consumed.size());
 }
+
+@Test
+void ignoreDuplicates() {
+assertEquals(0, map.size());
+for (int i = 0; i < 100; i++) {
+map.put("1", Integer.toString(i));
+assertEquals(1, map.size(), String.format("The expected size is 1 
but it fails after %d puts", i + 1));
+}
+assertEquals("99", map.get("1"));
+assertNull(map.put("2", "Two"));
+assertEquals(2, map.size());
+assertEquals("99", map.get("1"));
+assertNull(map.put("3", "Three"));
+assertEquals(3, map.size());
+assertEquals(0, consumed.size());
+assertEquals("99", map.get("1"));
+assertNull(map.put("4", "Four"));
+assertEquals(3, map.size());
+assertEquals(1, consumed.size());
+assertFalse(map.containsKey("1"));
+assertTrue(consumed.contains("99"));
+}
+
+@Test
+void ensureEvictionOrdering() {
+assertEquals(0, map.size());
+assertNull(map.put("1", "One"));
+assertNotNull(map.put("1", "One"));
+assertNotNull(map.put("1", "One"));
+assertNotNull(map.put("1", "One"));
+assertNotNull(map.put("1", "One"));
+assertNotNull(map.put("1", "One"));
+assertNull(map.put("2", "Two"));
+assertNotNull(map.put("1", "One"));
+assertNull(map.put("3", "Three"));
+assertEquals(3, map.size());
+assertNull(map.put("4", "Four"));
+assertEquals(3, map.size());
+assertEquals(1, consumed.size());
+assertFalse(map.containsKey("2"));
+assertTrue(consumed.contains("Two"));
+}
+
+@ParameterizedTest
+@ValueSource(ints = { 1, 2, 5, 10, 20, 50, 100, 1_000 })
+void concurrentPut(int maximumCacheSize) throws Exception {
+int threads = Runtime.getRuntime().availableProcessors();
+int totalKeysPerThread = 1_000;
+AtomicInteger counter = new AtomicInteger();
+SimpleLRUCache cache = new SimpleLRUCache<>(16, 
maximumCacheSize, v -> counter.incrementAndGet());
+CountDownLatch latch = new CountDownLatch(threads);
+for (int i = 0; i < threads; i++) {
+int threadId = i;
+new Thread(() -> {
+try {
+for (int j = 0; j < totalKeysPerThread; j++) {
+cache.put(threadId + "-" + j, Integer.toString(j));
+}
+} finally {
+latch.countDown();
+}
+}).start();
+}
+latch.await();

Review Comment:
   No, it cannot wait forever because `latch.countDown()` is called in a 
finally block



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

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

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



Re: [PR] chore(deps-dev): Bump io.projectreactor:reactor-core from 3.6.6 to 3.6.7 [camel]

2024-06-11 Thread via GitHub


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

   /component-test reactor reactive-streams


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

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

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



Re: [PR] chore(deps): Bump californium-version from 3.11.0 to 3.12.0 [camel]

2024-06-11 Thread via GitHub


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

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


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

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

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



Re: [PR] CAMEL-20861: Default tracer now include details of when an exchange w… [camel]

2024-06-11 Thread via GitHub


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


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

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

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



Re: [PR] chore(deps): Bump californium-version from 3.11.0 to 3.12.0 [camel]

2024-06-11 Thread via GitHub


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

   /component-test coap


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

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

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



Re: [PR] chore(deps): Bump com.github.mwiede:jsch from 0.2.17 to 0.2.18 [camel]

2024-06-11 Thread via GitHub


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


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

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

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



Re: [PR] chore(deps-dev): Bump eslint-plugin-import from 2.26.0 to 2.29.1 in /docs [camel]

2024-06-11 Thread via GitHub


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

   error is due to uncommited change:
   ```
   modified:   docs/.yarn/install-state.gz
   ```
   
   it sounds like Dependabot doesn't support this install-state.gz file which 
is "optimization" 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



Re: [PR] CAMEL-20850: camel-core - compress changes in SimpleLRUCache [camel]

2024-06-11 Thread via GitHub


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


##
core/camel-core/src/test/java/org/apache/camel/support/cache/SimpleLRUCacheTest.java:
##
@@ -287,4 +280,102 @@ void replaceWithOldValue() {
 assertEquals(3, map.size());
 assertEquals(0, consumed.size());
 }
+
+@Test
+void ignoreDuplicates() {
+assertEquals(0, map.size());
+for (int i = 0; i < 100; i++) {
+map.put("1", Integer.toString(i));
+assertEquals(1, map.size(), String.format("The expected size is 1 
but it fails after %d puts", i + 1));
+}
+assertEquals("99", map.get("1"));
+assertNull(map.put("2", "Two"));
+assertEquals(2, map.size());
+assertEquals("99", map.get("1"));
+assertNull(map.put("3", "Three"));
+assertEquals(3, map.size());
+assertEquals(0, consumed.size());
+assertEquals("99", map.get("1"));
+assertNull(map.put("4", "Four"));
+assertEquals(3, map.size());
+assertEquals(1, consumed.size());
+assertFalse(map.containsKey("1"));
+assertTrue(consumed.contains("99"));
+}
+
+@Test
+void ensureEvictionOrdering() {
+assertEquals(0, map.size());
+assertNull(map.put("1", "One"));
+assertNotNull(map.put("1", "One"));
+assertNotNull(map.put("1", "One"));
+assertNotNull(map.put("1", "One"));
+assertNotNull(map.put("1", "One"));
+assertNotNull(map.put("1", "One"));
+assertNull(map.put("2", "Two"));
+assertNotNull(map.put("1", "One"));
+assertNull(map.put("3", "Three"));
+assertEquals(3, map.size());
+assertNull(map.put("4", "Four"));
+assertEquals(3, map.size());
+assertEquals(1, consumed.size());
+assertFalse(map.containsKey("2"));
+assertTrue(consumed.contains("Two"));
+}
+
+@ParameterizedTest
+@ValueSource(ints = { 1, 2, 5, 10, 20, 50, 100, 1_000 })
+void concurrentPut(int maximumCacheSize) throws Exception {
+int threads = Runtime.getRuntime().availableProcessors();
+int totalKeysPerThread = 1_000;
+AtomicInteger counter = new AtomicInteger();
+SimpleLRUCache cache = new SimpleLRUCache<>(16, 
maximumCacheSize, v -> counter.incrementAndGet());
+CountDownLatch latch = new CountDownLatch(threads);
+for (int i = 0; i < threads; i++) {
+int threadId = i;
+new Thread(() -> {
+try {
+for (int j = 0; j < totalKeysPerThread; j++) {
+cache.put(threadId + "-" + j, Integer.toString(j));
+}
+} finally {
+latch.countDown();
+}
+}).start();
+}
+latch.await();

Review Comment:
   Maybe add a timeout on the latch if something bad happens then it would wait 
forever



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

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

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



Re: [PR] chore(deps): Bump org.apache.camel.k:camel-k-crds from 2.3.2 to 2.3.3 [camel]

2024-06-11 Thread via GitHub


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


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

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

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



Re: [PR] chore(deps): Bump californium-version from 3.11.0 to 3.12.0 [camel]

2024-06-11 Thread via GitHub


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

   :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] chore(deps): Bump californium-version from 3.11.0 to 3.12.0 [camel]

2024-06-11 Thread via GitHub


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

   Bumps `californium-version` from 3.11.0 to 3.12.0.
   Updates `org.eclipse.californium:californium-core` from 3.11.0 to 3.12.0
   
   Updates `org.eclipse.californium:element-connector-tcp-netty` from 3.11.0 to 
3.12.0
   
   
   Dependabot will resolve any conflicts with this PR as long as you don't 
alter it yourself. You can also trigger a rebase manually by commenting 
`@dependabot rebase`.
   
   [//]: # (dependabot-automerge-start)
   [//]: # (dependabot-automerge-end)
   
   ---
   
   
   Dependabot commands and options
   
   
   You can trigger Dependabot actions by commenting on this PR:
   - `@dependabot rebase` will rebase this PR
   - `@dependabot recreate` will recreate this PR, overwriting any edits that 
have been made to it
   - `@dependabot merge` will merge this PR after your CI passes on it
   - `@dependabot squash and merge` will squash and merge this PR after your CI 
passes on it
   - `@dependabot cancel merge` will cancel a previously requested merge and 
block automerging
   - `@dependabot reopen` will reopen this PR if it is closed
   - `@dependabot close` will close this PR and stop Dependabot recreating it. 
You can achieve the same result by closing it manually
   - `@dependabot show  ignore conditions` will show all of 
the ignore conditions of the specified dependency
   - `@dependabot ignore this major version` will close this PR and stop 
Dependabot creating any more for this major version (unless you reopen the PR 
or upgrade to it yourself)
   - `@dependabot ignore this minor version` will close this PR and stop 
Dependabot creating any more for this minor version (unless you reopen the PR 
or upgrade to it yourself)
   - `@dependabot ignore this dependency` will close this PR and stop 
Dependabot creating any more for this dependency (unless you reopen the PR or 
upgrade to it yourself)
   
   
   


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

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

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



Re: [PR] chore(deps-dev): Bump io.projectreactor:reactor-core from 3.6.6 to 3.6.7 [camel]

2024-06-11 Thread via GitHub


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

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


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

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

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



Re: [PR] chore(deps): Bump com.google.cloud:google-cloud-secretmanager-bom from 2.44.0 to 2.45.0 [camel]

2024-06-11 Thread via GitHub


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

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

2024-06-11 Thread via GitHub


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


-- 
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(deps-dev): Bump io.projectreactor:reactor-core from 3.6.6 to 3.6.7 [camel]

2024-06-11 Thread via GitHub


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

   Bumps 
[io.projectreactor:reactor-core](https://github.com/reactor/reactor-core) from 
3.6.6 to 3.6.7.
   
   Commits
   
   https://github.com/reactor/reactor-core/commit/64487e8a47f362088561495ba33dd72e8c8728f4;>64487e8
 [release] Prepare and release 3.6.7
   https://github.com/reactor/reactor-core/commit/35d2a17e7248fe06ba5d4ffc87e8b9cbf8018e1f;>35d2a17
 Merge-ignore release 3.5.18 into 3.6.7
   https://github.com/reactor/reactor-core/commit/8372361ca2369f4f1b3b469e75f2acc33180c37a;>8372361
 [release] Next development version 3.5.19-SNAPSHOT
   https://github.com/reactor/reactor-core/commit/07a2b246614a21f9fbf5af68b687e85027930c77;>07a2b24
 [release] Prepare and release 3.5.18
   https://github.com/reactor/reactor-core/commit/0809cbaeec075a66d81d3d37bcd670b584e4d3bc;>0809cba
 Merge-ignore release 3.4.39 into 3.6.7
   https://github.com/reactor/reactor-core/commit/d60d36fe37983a2b7ccbb0d527518b60599be61d;>d60d36f
 Merge-ignore release 3.4.39 into 3.5.18
   https://github.com/reactor/reactor-core/commit/18a2b1518557f3307d6020764b3d6c3a047c8855;>18a2b15
 [release] Next development version 3.4.40-SNAPSHOT
   https://github.com/reactor/reactor-core/commit/8a719081baf8668e8664eaed9c8807fa21e37f1a;>8a71908
 Bump Micrometer to version 1.12.7 (https://redirect.github.com/reactor/reactor-core/issues/3824;>#3824)
   https://github.com/reactor/reactor-core/commit/18e4c9cd6df7b697dcd469a00e97bccb9618c138;>18e4c9c
 [release] Prepare and release 3.4.39
   https://github.com/reactor/reactor-core/commit/f423f183a4ffcd8400b3e07a4ea8040efb919b0c;>f423f18
 Merge https://redirect.github.com/reactor/reactor-core/issues/3823;>#3823 
into 3.6.7
   Additional commits viewable in https://github.com/reactor/reactor-core/compare/v3.6.6...v3.6.7;>compare 
view
   
   
   
   
   
   [![Dependabot compatibility 
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=io.projectreactor:reactor-core=maven=3.6.6=3.6.7)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)
   
   Dependabot will resolve any conflicts with this PR as long as you don't 
alter it yourself. You can also trigger a rebase manually by commenting 
`@dependabot rebase`.
   
   [//]: # (dependabot-automerge-start)
   [//]: # (dependabot-automerge-end)
   
   ---
   
   
   Dependabot commands and options
   
   
   You can trigger Dependabot actions by commenting on this PR:
   - `@dependabot rebase` will rebase this PR
   - `@dependabot recreate` will recreate this PR, overwriting any edits that 
have been made to it
   - `@dependabot merge` will merge this PR after your CI passes on it
   - `@dependabot squash and merge` will squash and merge this PR after your CI 
passes on it
   - `@dependabot cancel merge` will cancel a previously requested merge and 
block automerging
   - `@dependabot reopen` will reopen this PR if it is closed
   - `@dependabot close` will close this PR and stop Dependabot recreating it. 
You can achieve the same result by closing it manually
   - `@dependabot show  ignore conditions` will show all of 
the ignore conditions of the specified dependency
   - `@dependabot ignore this major version` will close this PR and stop 
Dependabot creating any more for this major version (unless you reopen the PR 
or upgrade to it yourself)
   - `@dependabot ignore this minor version` will close this PR and stop 
Dependabot creating any more for this minor version (unless you reopen the PR 
or upgrade to it yourself)
   - `@dependabot ignore this dependency` will close this PR and stop 
Dependabot creating any more for this dependency (unless you reopen the PR or 
upgrade to it yourself)
   
   
   


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

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

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



Re: [PR] chore(deps): Bump com.google.cloud:google-cloud-secretmanager-bom from 2.44.0 to 2.45.0 [camel]

2024-06-11 Thread via GitHub


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

   :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] chore(deps): Bump com.google.cloud:google-cloud-secretmanager-bom from 2.44.0 to 2.45.0 [camel]

2024-06-11 Thread via GitHub


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

   /component-test google


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

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

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



Re: [PR] CAMEL-20798: EndpointServiceLocation on components to make it possibl… [camel]

2024-06-11 Thread via GitHub


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


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

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

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



Re: [PR] chore(deps): Bump com.box:box-java-sdk from 4.9.1 to 4.10.0 [camel]

2024-06-11 Thread via GitHub


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

   :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] chore(deps): Bump com.google.cloud:google-cloud-secretmanager-bom from 2.44.0 to 2.45.0 [camel]

2024-06-11 Thread via GitHub


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

   /component-test google


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

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

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



Re: [PR] chore(deps): Bump com.github.mwiede:jsch from 0.2.17 to 0.2.18 [camel]

2024-06-11 Thread via GitHub


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

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


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

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

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



[PR] chore(deps): Bump com.google.cloud:google-cloud-secretmanager-bom from 2.44.0 to 2.45.0 [camel]

2024-06-11 Thread via GitHub


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

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


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

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

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



Re: [PR] chore(deps): Bump com.box:box-java-sdk from 4.9.1 to 4.10.0 [camel]

2024-06-11 Thread via GitHub


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

   /component-test box


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

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

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



Re: [PR] chore(deps): Bump com.google.cloud:google-cloud-secretmanager-bom from 2.44.0 to 2.45.0 [camel]

2024-06-11 Thread via GitHub


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

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


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

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

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



Re: [PR] chore(deps): Bump com.github.mwiede:jsch from 0.2.17 to 0.2.18 [camel]

2024-06-11 Thread via GitHub


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

   /component-test jsch ftp


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

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

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



Re: [PR] chore(deps): Bump com.box:box-java-sdk from 4.9.1 to 4.10.0 [camel]

2024-06-11 Thread via GitHub


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

   :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] chore(deps): Bump com.box:box-java-sdk from 4.9.1 to 4.10.0 [camel]

2024-06-11 Thread via GitHub


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

   Bumps [com.box:box-java-sdk](https://github.com/box/box-java-sdk) from 4.9.1 
to 4.10.0.
   
   Release notes
   Sourced from https://github.com/box/box-java-sdk/releases;>com.box:box-java-sdk's 
releases.
   
   v4.10.0
   New Features and Enhancements:
   
   Overload the getRepresentationContent method with a 
maxRetries parameter (https://redirect.github.com/box/box-java-sdk/issues/1251;>#1251) (https://github.com/box/box-java-sdk/commit/d26bd4f5a141150a372159bc3867adda1406;>d26bd4f)
   Support login_required, password, 
suppress_nofitications, verification_phone_number and 
additional_info fields in sign request (https://redirect.github.com/box/box-java-sdk/issues/1250;>#1250) (https://github.com/box/box-java-sdk/commit/3ee55b3613c5f5fa92cdd4a17c0cb3e2cc86a9a4;>3ee55b3)
   
   
   
   
   Changelog
   Sourced from https://github.com/box/box-java-sdk/blob/main/CHANGELOG.md;>com.box:box-java-sdk's
 changelog.
   
   https://github.com/box/box-java-sdk/compare/v4.9.1...v4.10.0;>4.10.0 
(2024-06-06)
   New Features and Enhancements:
   
   Overload the getRepresentationContent method with a 
maxRetries parameter (https://redirect.github.com/box/box-java-sdk/issues/1251;>#1251) (https://github.com/box/box-java-sdk/commit/d26bd4f5a141150a372159bc3867adda1406;>d26bd4f)
   Support login_required, password, 
suppress_nofitications, verification_phone_number and 
additional_info fields in sign request (https://redirect.github.com/box/box-java-sdk/issues/1250;>#1250) (https://github.com/box/box-java-sdk/commit/3ee55b3613c5f5fa92cdd4a17c0cb3e2cc86a9a4;>3ee55b3)
   
   
   
   
   Commits
   
   https://github.com/box/box-java-sdk/commit/236a0368fc7b251604b5895f8560dd2aee06ffd0;>236a036
 chore: release 4.10.0 (https://redirect.github.com/box/box-java-sdk/issues/1252;>#1252)
   https://github.com/box/box-java-sdk/commit/3ee55b3613c5f5fa92cdd4a17c0cb3e2cc86a9a4;>3ee55b3
 feat: Support login_required, password, 
suppress_nofitications, `verifi...
   https://github.com/box/box-java-sdk/commit/d26bd4f5a141150a372159bc3867adda1406;>d26bd4f
 feat: Overload the getRepresentationContent method with a 
maxRetries para...
   https://github.com/box/box-java-sdk/commit/39ed38b7d17854013c48ed14142cb51e67c87719;>39ed38b
 docs: Update file uploads docs (https://redirect.github.com/box/box-java-sdk/issues/1249;>#1249)
   See full diff in https://github.com/box/box-java-sdk/compare/v4.9.1...v4.10.0;>compare 
view
   
   
   
   
   
   [![Dependabot compatibility 
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=com.box:box-java-sdk=maven=4.9.1=4.10.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)
   
   Dependabot will resolve any conflicts with this PR as long as you don't 
alter it yourself. You can also trigger a rebase manually by commenting 
`@dependabot rebase`.
   
   [//]: # (dependabot-automerge-start)
   [//]: # (dependabot-automerge-end)
   
   ---
   
   
   Dependabot commands and options
   
   
   You can trigger Dependabot actions by commenting on this PR:
   - `@dependabot rebase` will rebase this PR
   - `@dependabot recreate` will recreate this PR, overwriting any edits that 
have been made to it
   - `@dependabot merge` will merge this PR after your CI passes on it
   - `@dependabot squash and merge` will squash and merge this PR after your CI 
passes on it
   - `@dependabot cancel merge` will cancel a previously requested merge and 
block automerging
   - `@dependabot reopen` will reopen this PR if it is closed
   - `@dependabot close` will close this PR and stop Dependabot recreating it. 
You can achieve the same result by closing it manually
   - `@dependabot show  ignore conditions` will show all of 
the ignore conditions of the specified dependency
   - `@dependabot ignore this major version` will close this PR and stop 
Dependabot creating any more for this major version (unless you reopen the PR 
or upgrade to it yourself)
   - `@dependabot ignore this minor version` will close this PR and stop 
Dependabot creating any more for this minor version (unless you reopen the PR 
or upgrade to it yourself)
   - `@dependabot ignore this dependency` will close this PR and stop 
Dependabot creating any more for this dependency (unless you reopen the PR or 
upgrade to it yourself)
   
   
   


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

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

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



Re: [PR] CAMEL-20850: camel-core - compress changes in SimpleLRUCache [camel]

2024-06-11 Thread via GitHub


essobedo commented on PR #14424:
URL: https://github.com/apache/camel/pull/14424#issuecomment-2160272767

   @gnodet Hi, any remarks/comments before I merge it? 


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

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

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



[PR] chore(deps): Bump com.github.mwiede:jsch from 0.2.17 to 0.2.18 [camel]

2024-06-11 Thread via GitHub


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

   Bumps [com.github.mwiede:jsch](https://github.com/mwiede/jsch) from 0.2.17 
to 0.2.18.
   
   Release notes
   Sourced from https://github.com/mwiede/jsch/releases;>com.github.mwiede:jsch's 
releases.
   
   jsch-0.2.18
   What's Changed
   
   Handle negated patterns according to ssh_config(5) by https://github.com/bmiddaugh;>@​bmiddaugh in https://redirect.github.com/mwiede/jsch/pull/565;>mwiede/jsch#565
   
   Dependency Updates
   
   update maven wrapper by https://github.com/norrisjeremy;>@​norrisjeremy in https://redirect.github.com/mwiede/jsch/pull/555;>mwiede/jsch#555
   Bump log4j.version from 2.23.0 to 2.23.1 by https://github.com/dependabot;>@​dependabot in https://redirect.github.com/mwiede/jsch/pull/516;>mwiede/jsch#516
   Bump org.testcontainers:junit-jupiter from 1.19.6 to 1.19.7 by https://github.com/dependabot;>@​dependabot in https://redirect.github.com/mwiede/jsch/pull/513;>mwiede/jsch#513
   Bump org.apache.maven.plugins:maven-gpg-plugin from 3.1.0 to 3.2.0 by https://github.com/dependabot;>@​dependabot in https://redirect.github.com/mwiede/jsch/pull/515;>mwiede/jsch#515
   Bump org.apache.maven.plugins:maven-assembly-plugin from 3.6.0 to 3.7.0 
by https://github.com/dependabot;>@​dependabot in https://redirect.github.com/mwiede/jsch/pull/517;>mwiede/jsch#517
   Bump errorprone.version from 2.25.0 to 2.26.0 by https://github.com/dependabot;>@​dependabot in https://redirect.github.com/mwiede/jsch/pull/514;>mwiede/jsch#514
   Bump org.apache.maven.plugins:maven-assembly-plugin from 3.7.0 to 3.7.1 
by https://github.com/dependabot;>@​dependabot in https://redirect.github.com/mwiede/jsch/pull/521;>mwiede/jsch#521
   Bump org.apache.maven.plugins:maven-gpg-plugin from 3.2.0 to 3.2.1 by https://github.com/dependabot;>@​dependabot in https://redirect.github.com/mwiede/jsch/pull/520;>mwiede/jsch#520
   Bump errorprone.version from 2.26.0 to 2.26.1 by https://github.com/dependabot;>@​dependabot in https://redirect.github.com/mwiede/jsch/pull/519;>mwiede/jsch#519
   Bump org.cyclonedx:cyclonedx-maven-plugin from 2.7.11 to 2.8.0 by https://github.com/dependabot;>@​dependabot in https://redirect.github.com/mwiede/jsch/pull/526;>mwiede/jsch#526
   Bump de.thetaphi:forbiddenapis from 3.6 to 3.7 by https://github.com/dependabot;>@​dependabot in https://redirect.github.com/mwiede/jsch/pull/525;>mwiede/jsch#525
   Bump dependabot/fetch-metadata from 1 to 2 by https://github.com/dependabot;>@​dependabot in https://redirect.github.com/mwiede/jsch/pull/524;>mwiede/jsch#524
   Bump org.apache.maven.plugins:maven-compiler-plugin from 3.12.1 to 
3.13.0 by https://github.com/dependabot;>@​dependabot 
in https://redirect.github.com/mwiede/jsch/pull/522;>mwiede/jsch#522
   Bump org.apache.maven.plugins:maven-gpg-plugin from 3.2.1 to 3.2.2 by https://github.com/dependabot;>@​dependabot in https://redirect.github.com/mwiede/jsch/pull/530;>mwiede/jsch#530
   Bump junixsocket.version from 2.9.0 to 2.9.1 by https://github.com/dependabot;>@​dependabot in https://redirect.github.com/mwiede/jsch/pull/534;>mwiede/jsch#534
   Bump org.jacoco:jacoco-maven-plugin from 0.8.11 to 0.8.12 by https://github.com/dependabot;>@​dependabot in https://redirect.github.com/mwiede/jsch/pull/537;>mwiede/jsch#537
   Bump org.bouncycastle:bcprov-jdk18on from 1.77 to 1.78 by https://github.com/dependabot;>@​dependabot in https://redirect.github.com/mwiede/jsch/pull/535;>mwiede/jsch#535
   Bump com.kohlschutter:compiler-annotations from 1.6.7 to 1.7.0 by https://github.com/dependabot;>@​dependabot in https://redirect.github.com/mwiede/jsch/pull/531;>mwiede/jsch#531
   Bump commons-io:commons-io from 2.15.1 to 2.16.1 by https://github.com/dependabot;>@​dependabot in https://redirect.github.com/mwiede/jsch/pull/536;>mwiede/jsch#536
   Bump org.slf4j:slf4j-api from 2.0.12 to 2.0.13 by https://github.com/dependabot;>@​dependabot in https://redirect.github.com/mwiede/jsch/pull/542;>mwiede/jsch#542
   Bump com.kohlschutter:compiler-annotations from 1.7.0 to 1.7.1 by https://github.com/dependabot;>@​dependabot in https://redirect.github.com/mwiede/jsch/pull/540;>mwiede/jsch#540
   Bump org.apache.maven.plugins:maven-gpg-plugin from 3.2.2 to 3.2.3 by https://github.com/dependabot;>@​dependabot in https://redirect.github.com/mwiede/jsch/pull/539;>mwiede/jsch#539
   Bump org.bouncycastle:bcprov-jdk18on from 1.78 to 1.78.1 by https://github.com/dependabot;>@​dependabot in https://redirect.github.com/mwiede/jsch/pull/546;>mwiede/jsch#546
   Bump com.kohlschutter:compiler-annotations from 1.7.1 to 1.7.2 by https://github.com/dependabot;>@​dependabot in https://redirect.github.com/mwiede/jsch/pull/547;>mwiede/jsch#547
   Bump org.apache.maven.plugins:maven-gpg-plugin from 3.2.3 to 3.2.4 by https://github.com/dependabot;>@​dependabot in https://redirect.github.com/mwiede/jsch/pull/544;>mwiede/jsch#544
   Bump 

Re: [PR] chore(deps): Bump com.github.mwiede:jsch from 0.2.17 to 0.2.18 [camel]

2024-06-11 Thread via GitHub


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

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


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

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

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



Re: [PR] CAMEL-20861: Default tracer now include details of when an exchange w… [camel]

2024-06-11 Thread via GitHub


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

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


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

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

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



[PR] CAMEL-20861: Default tracer now include details of when an exchange w… [camel]

2024-06-11 Thread via GitHub


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

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


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

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

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



Re: [PR] chore(deps-dev): Bump gulp-cli from 2.3.0 to 3.0.0 in /docs [camel]

2024-06-11 Thread via GitHub


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

   @dependabot rebase


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

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

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



Re: [PR] chore(deps-dev): Bump eslint-plugin-import from 2.26.0 to 2.29.1 in /docs [camel]

2024-06-11 Thread via GitHub


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

   @dependabot rebase


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

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

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



Re: [PR] chore(deps-dev): Bump del from 7.0.0 to 7.1.0 in /docs [camel]

2024-06-11 Thread via GitHub


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

   @dependabot rebase


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

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

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



Re: [PR] chore(deps): Bump org.apache.camel.k:camel-k-crds from 2.3.2 to 2.3.3 [camel]

2024-06-11 Thread via GitHub


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

   @dependabot rebase


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

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

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



Re: [PR] chore(deps-dev): Bump eslint-plugin-promise from 6.0.1 to 6.2.0 in /docs [camel]

2024-06-11 Thread via GitHub


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

   @dependabot rebase


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

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

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



Re: [PR] chore(deps-dev): Bump eslint-config-standard from 17.0.0 to 17.1.0 in /docs [camel]

2024-06-11 Thread via GitHub


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

   @dependabot rebase


-- 
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] Regen (ElasticSearch related) [camel]

2024-06-11 Thread via GitHub


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


-- 
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-20798: EndpointServiceLocation on components to make it possibl… [camel]

2024-06-11 Thread via GitHub


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

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


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

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

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



[PR] CAMEL-20798: EndpointServiceLocation on components to make it possibl… [camel]

2024-06-11 Thread via GitHub


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

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


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

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

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



Re: [PR] Regen (elastic and bean related) [camel]

2024-06-11 Thread via GitHub


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

   sounds like the camel-spring.xsd is genrated differently locally and on the 
CI. i will remove the changes from my 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: [I] Support Knative Sinks [camel-k]

2024-06-11 Thread via GitHub


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

   I thin one missing point could be related to the  [make integrations 
addressab](https://github.com/apache/camel-k/issues/1122) issue ? 


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

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

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



[PR] Regen (elastic and bean related) [camel]

2024-06-11 Thread via GitHub


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

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


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

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

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



Re: [I] Support YAML DSL routes configuration [camel-k]

2024-06-11 Thread via GitHub


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

   This was resolved in the main branch and will be released as part of next 
version.


-- 
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] Support YAML DSL routes configuration [camel-k]

2024-06-11 Thread via GitHub


claudio4j closed issue #4893: Support YAML DSL routes configuration
URL: https://github.com/apache/camel-k/issues/4893


-- 
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(install): simplify kustomize procedure [camel-k]

2024-06-11 Thread via GitHub


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


##
docs/modules/ROOT/pages/installation/installation.adoc:
##
@@ -93,20 +50,35 @@ $ kubectl create -f 
https://operatorhub.io/install/camel-k.yaml
 
 You can edit the `Subscription` custom resource, setting the channel you want 
to use. From Camel K version 2 onward, we're going to provide an installation 
channel for each major version we're releasing (ie, `stable-v2`). This will 
simplify the upgrade process if you choose to perform an automatic upgrade.
 
-NOTE: Some Kubernetes clusters such as Openshift (or CRC) may let you to 
perform the same operation from a GUI as well. Refer to the cluster instruction 
to learn how to perform such action.
+NOTE: Some Kubernetes clusters such as Openshift may let you to perform the 
same operation from a GUI as well. Refer to the cluster instruction to learn 
how to perform such action from user interface.
 
+[[kustomize]]
+== Installation via Kustomize
 
-[[helm]]
-== Installation via Helm Hub
+https://kustomize.io[Kustomize] provides a declarative approach to the 
configuration customization of a Camel-K installation. Kustomize works either 
with a standalone executable or as a built-in to `kubectl`. The 
https://github.com/apache/camel-k/tree/main/install[/install] directory 
provides a series of base and overlays configuration that you can use. You can 
create your own overlays or customize the one available in the repository to 
accommodate your need.
 
-Camel K is also available in Helm Hub:
+```
+# Clone the project repository
+$ https://github.com/apache/camel-k.git
+$ cd camel-k
+# You can use any release tag (recommended as it is immutable) or branch
+$ git checkout v2.4.0
+$ cd install/overlays
+```
+
+In this directory you may find a series of default configuration for 
Kubernetes, Openshift and any other sensible profile. For Kubernetes, you can 
see we have prepared a `descoped` configuration and a `namespaced` which are 
installing the operator globally or in a specific namespace.
 
 ```
-$ helm repo add camel-k https://apache.github.io/camel-k/charts/
-$ helm install my-camel-k camel-k/camel-k
+# Change the registry address (edit the file for more configuration if 
required)
+$ sed -i 's/namespace: .*/namespace: my-registry-host.io/' 
kubernetes/descoped/integration-platform.yaml

Review Comment:
   yes, definetely a typo. Fixing it, 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: [PR] CAMEL-20852: Fix CamelCatalogTest [camel]

2024-06-11 Thread via GitHub


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

   Let's merge this so at least the PRs won't fail there but later.


-- 
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-20852: Fix CamelCatalogTest [camel]

2024-06-11 Thread via GitHub


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


-- 
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-20798: EndpointServiceLocation on components to make it possibl… [camel]

2024-06-11 Thread via GitHub


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


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

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

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



  1   2   3   4   5   6   7   8   9   10   >