From 42f063055e73df8d6a0dce6d99741505ada143a9 Mon Sep 17 00:00:00 2001 From: JiriOndrusek Date: Mon, 13 Jun 2022 11:36:06 +0200 Subject: [PATCH] CamelTestSupport style of testing #3511 --- extensions-core/core/deployment/pom.xml | 8 + .../core/deployment/CamelTestProcessor.java | 62 + .../deployment/InjectionPointsProcessor.java | 24 +- integration-tests-jvm/stub/pom.xml | 7 + integration-tests-support/pom.xml | 1 + .../test-support-jvm/pom.xml | 62 + .../quarkus/test/BeforeEachCallback.java | 31 + .../camel/quarkus/test/CamelQuarkusTest.java | 14 + .../quarkus/test/CamelQuarkusTestSupport.java | 82 + ...nit.callback.QuarkusTestBeforeEachCallback | 1 + .../quarkus/test/AdviceWithLambdaTest.java | 60 + .../test/AdviceWithNotStartedTest.java | 82 + .../CreateCamelContextPerTestFalseTest.java | 120 + .../CreateCamelContextPerTestTrueTest.java | 158 + .../quarkus/test/DebugJUnit5Test.java | 97 + .../test/DebugNoLazyTypeConverterTest.java | 95 + .../apachencamel/quarkus/test/DebugTest.java | 95 + .../FilterCreateCamelContextPerClassTest.java | 65 + .../test/FilterFluentTemplateTest.java | 83 + .../quarkus/test/FilterJUnit5Test.java | 77 + .../apachencamel/quarkus/test/FilterTest.java | 83 + .../quarkus/test/GetMockEndpointTest.java | 49 + .../IsMockEndpointsAndSkipJUnit5Test.java | 72 + .../quarkus/test/IsMockEndpointsFileTest.java | 75 + .../test/IsMockEndpointsJUnit5Test.java | 78 + .../quarkus/test/IsMockEndpointsTest.java | 69 + .../test/MockEndpointFailNoHeaderTest.java | 67 + .../quarkus/test/MyProduceBean.java | 32 + .../apachencamel/quarkus/test/MySender.java | 25 + .../quarkus/test/ProduceBeanTest.java | 47 + .../RouteBuilderConfigureExceptionTest.java | 58 + .../RouteProcessorDumpRouteCoverageTest.java | 75 + .../quarkus/test/SimpleMockEndpointsTest.java | 59 + .../quarkus/test/SimpleMockTest.java | 55 + .../quarkus/test/SimpleNotifyBuilderTest.java | 57 + .../test/SimpleWeaveAddMockLastTest.java | 65 + ...PropertiesWithPropertiesComponentTest.java | 83 + poms/bom-test/pom.xml | 2 + poms/bom/pom.xml | 180 +- tatus | 24694 ++++++++++++++++ 40 files changed, 27062 insertions(+), 87 deletions(-) create mode 100644 extensions-core/core/deployment/src/main/java/org/apache/camel/quarkus/core/deployment/CamelTestProcessor.java create mode 100644 integration-tests-support/test-support-jvm/pom.xml create mode 100644 integration-tests-support/test-support-jvm/src/main/java/org/apache/camel/quarkus/test/BeforeEachCallback.java create mode 100644 integration-tests-support/test-support-jvm/src/main/java/org/apache/camel/quarkus/test/CamelQuarkusTest.java create mode 100644 integration-tests-support/test-support-jvm/src/main/java/org/apache/camel/quarkus/test/CamelQuarkusTestSupport.java create mode 100644 integration-tests-support/test-support-jvm/src/main/resources/META-INF/services/io.quarkus.test.junit.callback.QuarkusTestBeforeEachCallback create mode 100644 integration-tests-support/test-support-jvm/src/test/java/org/apachencamel/quarkus/test/AdviceWithLambdaTest.java create mode 100644 integration-tests-support/test-support-jvm/src/test/java/org/apachencamel/quarkus/test/AdviceWithNotStartedTest.java create mode 100644 integration-tests-support/test-support-jvm/src/test/java/org/apachencamel/quarkus/test/CreateCamelContextPerTestFalseTest.java create mode 100644 integration-tests-support/test-support-jvm/src/test/java/org/apachencamel/quarkus/test/CreateCamelContextPerTestTrueTest.java create mode 100644 integration-tests-support/test-support-jvm/src/test/java/org/apachencamel/quarkus/test/DebugJUnit5Test.java create mode 100644 integration-tests-support/test-support-jvm/src/test/java/org/apachencamel/quarkus/test/DebugNoLazyTypeConverterTest.java create mode 100644 integration-tests-support/test-support-jvm/src/test/java/org/apachencamel/quarkus/test/DebugTest.java create mode 100644 integration-tests-support/test-support-jvm/src/test/java/org/apachencamel/quarkus/test/FilterCreateCamelContextPerClassTest.java create mode 100644 integration-tests-support/test-support-jvm/src/test/java/org/apachencamel/quarkus/test/FilterFluentTemplateTest.java create mode 100644 integration-tests-support/test-support-jvm/src/test/java/org/apachencamel/quarkus/test/FilterJUnit5Test.java create mode 100644 integration-tests-support/test-support-jvm/src/test/java/org/apachencamel/quarkus/test/FilterTest.java create mode 100644 integration-tests-support/test-support-jvm/src/test/java/org/apachencamel/quarkus/test/GetMockEndpointTest.java create mode 100644 integration-tests-support/test-support-jvm/src/test/java/org/apachencamel/quarkus/test/IsMockEndpointsAndSkipJUnit5Test.java create mode 100644 integration-tests-support/test-support-jvm/src/test/java/org/apachencamel/quarkus/test/IsMockEndpointsFileTest.java create mode 100644 integration-tests-support/test-support-jvm/src/test/java/org/apachencamel/quarkus/test/IsMockEndpointsJUnit5Test.java create mode 100644 integration-tests-support/test-support-jvm/src/test/java/org/apachencamel/quarkus/test/IsMockEndpointsTest.java create mode 100644 integration-tests-support/test-support-jvm/src/test/java/org/apachencamel/quarkus/test/MockEndpointFailNoHeaderTest.java create mode 100644 integration-tests-support/test-support-jvm/src/test/java/org/apachencamel/quarkus/test/MyProduceBean.java create mode 100644 integration-tests-support/test-support-jvm/src/test/java/org/apachencamel/quarkus/test/MySender.java create mode 100644 integration-tests-support/test-support-jvm/src/test/java/org/apachencamel/quarkus/test/ProduceBeanTest.java create mode 100644 integration-tests-support/test-support-jvm/src/test/java/org/apachencamel/quarkus/test/RouteBuilderConfigureExceptionTest.java create mode 100644 integration-tests-support/test-support-jvm/src/test/java/org/apachencamel/quarkus/test/RouteProcessorDumpRouteCoverageTest.java create mode 100644 integration-tests-support/test-support-jvm/src/test/java/org/apachencamel/quarkus/test/SimpleMockEndpointsTest.java create mode 100644 integration-tests-support/test-support-jvm/src/test/java/org/apachencamel/quarkus/test/SimpleMockTest.java create mode 100644 integration-tests-support/test-support-jvm/src/test/java/org/apachencamel/quarkus/test/SimpleNotifyBuilderTest.java create mode 100644 integration-tests-support/test-support-jvm/src/test/java/org/apachencamel/quarkus/test/SimpleWeaveAddMockLastTest.java create mode 100644 integration-tests-support/test-support-jvm/src/test/java/org/apachencamel/quarkus/test/UseOverridePropertiesWithPropertiesComponentTest.java create mode 100644 tatus diff --git a/extensions-core/core/deployment/pom.xml b/extensions-core/core/deployment/pom.xml index a26dd6c5d033..7371f54600b3 100644 --- a/extensions-core/core/deployment/pom.xml +++ b/extensions-core/core/deployment/pom.xml @@ -37,6 +37,10 @@ io.quarkus quarkus-arc-deployment + + io.quarkus.arc + arc-processor + @@ -59,6 +63,10 @@ org.jboss.spec.javax.xml.bind jboss-jaxb-api_2.3_spec + + org.apache.camel.quarkus + camel-quarkus-integration-test-support-jvm + diff --git a/extensions-core/core/deployment/src/main/java/org/apache/camel/quarkus/core/deployment/CamelTestProcessor.java b/extensions-core/core/deployment/src/main/java/org/apache/camel/quarkus/core/deployment/CamelTestProcessor.java new file mode 100644 index 000000000000..18f2e6208abf --- /dev/null +++ b/extensions-core/core/deployment/src/main/java/org/apache/camel/quarkus/core/deployment/CamelTestProcessor.java @@ -0,0 +1,62 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package org.apache.camel.quarkus.core.deployment; + +import io.quarkus.deployment.annotations.BuildProducer; +import io.quarkus.deployment.annotations.BuildStep; +import io.quarkus.deployment.builditem.TestAnnotationBuildItem; +import org.apache.camel.quarkus.test.CamelQuarkusTest; +import org.slf4j.Logger; +import org.slf4j.LoggerFactory; + +public class CamelTestProcessor { + private static final Logger LOGGER = LoggerFactory.getLogger(CamelTestProcessor.class); + + @BuildStep + void produceTestAnnotationBuildItem(BuildProducer testAnnotationBuildItems) { + testAnnotationBuildItems.produce(new TestAnnotationBuildItem(CamelQuarkusTest.class.getName())); + } + +// @BuildStep +// void annotationTransformerBuildItem(BuildProducer annotationsTransformerBuildItems) { +// annotationsTransformerBuildItems.produce(createAnnotationTransformer(null)); +// } +// +// private AnnotationsTransformerBuildItem createAnnotationTransformer(DotName className) { +// return new AnnotationsTransformerBuildItem(new AnnotationsTransformer() { +// public boolean appliesTo(org.jboss.jandex.AnnotationTarget.Kind kind) { +// return kind == AnnotationTarget.Kind.CLASS; +// } +// +// public void transform(TransformationContext context) { +// +// if (context.getAnnotations().contains( +// AnnotationInstance.create( +// DotName.createSimple(CamelQuarkusTest.class.getName()), +// context.getTarget(), +// new AnnotationValue[] {}))) { +// context.transform().add(AnnotationInstance.create( +// DotName.createSimple(TestProfile.class.getName()), +// context.getTarget(), +// new AnnotationValue[] { AnnotationValue.createClassValue("value", +// Type.create(context.getTarget().asClass().name(), Type.Kind.CLASS)) })) +// .done(); +// } +// } +// }); + } +} diff --git a/extensions-core/core/deployment/src/main/java/org/apache/camel/quarkus/core/deployment/InjectionPointsProcessor.java b/extensions-core/core/deployment/src/main/java/org/apache/camel/quarkus/core/deployment/InjectionPointsProcessor.java index e8ced1788acf..52a95f960a24 100644 --- a/extensions-core/core/deployment/src/main/java/org/apache/camel/quarkus/core/deployment/InjectionPointsProcessor.java +++ b/extensions-core/core/deployment/src/main/java/org/apache/camel/quarkus/core/deployment/InjectionPointsProcessor.java @@ -56,6 +56,7 @@ import org.apache.camel.quarkus.core.CamelRecorder; import org.apache.camel.quarkus.core.InjectionPointsRecorder; import org.apache.camel.quarkus.core.deployment.spi.CamelRuntimeTaskBuildItem; +import org.apache.camel.quarkus.test.CamelQuarkusTest; import org.jboss.jandex.AnnotationInstance; import org.jboss.jandex.AnnotationTarget; import org.jboss.jandex.AnnotationTarget.Kind; @@ -226,12 +227,16 @@ void syntheticBeans( BuildProducer syntheticBeans, BuildProducer proxyDefinitions) { + Set alreadyCreated = new HashSet<>(); + for (AnnotationInstance annot : index.getIndex().getAnnotations(ENDPOINT_INJECT_ANNOTATION)) { final AnnotationTarget target = annot.target(); switch (target.kind()) { case FIELD: { final FieldInfo field = target.asField(); - endpointInjectBeans(recorder, syntheticBeans, index.getIndex(), annot, field.type().name()); + if (!excludeTestSyntheticBeanDuplicities(annot, alreadyCreated, field.declaringClass())) { + endpointInjectBeans(recorder, syntheticBeans, index.getIndex(), annot, field.type().name()); + } break; } case METHOD: { @@ -251,8 +256,10 @@ void syntheticBeans( switch (target.kind()) { case FIELD: { final FieldInfo field = target.asField(); - produceBeans(recorder, capabilities, syntheticBeans, proxyDefinitions, beanCapabilityAvailable, - index.getIndex(), annot, field.type().name(), field.name(), field.declaringClass().name()); + if (!excludeTestSyntheticBeanDuplicities(annot, alreadyCreated, field.declaringClass())) { + produceBeans(recorder, capabilities, syntheticBeans, proxyDefinitions, beanCapabilityAvailable, + index.getIndex(), annot, field.type().name(), field.name(), field.declaringClass().name()); + } break; } case METHOD: { @@ -266,6 +273,17 @@ void syntheticBeans( } } + private boolean excludeTestSyntheticBeanDuplicities(AnnotationInstance annot, Set alreadyCreated, + ClassInfo declaringClass) { + if (declaringClass.annotations().containsKey(DotName.createSimple(CamelQuarkusTest.class.getName()))) { + if (!alreadyCreated.contains(annot.toString())) { + alreadyCreated.add(annot.toString()); + return false; + } + } + return true; + } + void produceBeans(CamelRecorder recorder, List capabilities, BuildProducer syntheticBeans, BuildProducer proxyDefinitions, diff --git a/integration-tests-jvm/stub/pom.xml b/integration-tests-jvm/stub/pom.xml index 3bfb14b0fe07..c2537a8a5c66 100644 --- a/integration-tests-jvm/stub/pom.xml +++ b/integration-tests-jvm/stub/pom.xml @@ -51,6 +51,13 @@ rest-assured test + + + org.apache.camel.quarkus + camel-quarkus-integration-test-support-jvm + + test + diff --git a/integration-tests-support/pom.xml b/integration-tests-support/pom.xml index dd8af21537ac..58783656e7b5 100644 --- a/integration-tests-support/pom.xml +++ b/integration-tests-support/pom.xml @@ -48,6 +48,7 @@ mongodb process-executor-support test-support + test-support-jvm mock-backend wiremock xslt-support diff --git a/integration-tests-support/test-support-jvm/pom.xml b/integration-tests-support/test-support-jvm/pom.xml new file mode 100644 index 000000000000..81b84e8bf11d --- /dev/null +++ b/integration-tests-support/test-support-jvm/pom.xml @@ -0,0 +1,62 @@ + + + + + org.apache.camel.quarkus + camel-quarkus-integration-tests-support + 2.10.0-SNAPSHOT + ../pom.xml + + 4.0.0 + + camel-quarkus-integration-test-support-jvm + Camel Quarkus :: Integration Tests :: Support + + + + org.slf4j + slf4j-api + + + io.quarkus + quarkus-junit5 + + + org.assertj + assertj-core + + + org.junit.jupiter + junit-jupiter-engine + + + org.apache.camel.quarkus + camel-quarkus-integration-test-support + + + org.apache.camel.quarkus + camel-quarkus-core + + + org.apache.camel + camel-test-junit5 + + + diff --git a/integration-tests-support/test-support-jvm/src/main/java/org/apache/camel/quarkus/test/BeforeEachCallback.java b/integration-tests-support/test-support-jvm/src/main/java/org/apache/camel/quarkus/test/BeforeEachCallback.java new file mode 100644 index 000000000000..b44ed3d962a2 --- /dev/null +++ b/integration-tests-support/test-support-jvm/src/main/java/org/apache/camel/quarkus/test/BeforeEachCallback.java @@ -0,0 +1,31 @@ +package org.apache.camel.quarkus.test; + +import java.lang.reflect.Method; +import java.util.Arrays; +import java.util.stream.Collectors; + +import io.quarkus.test.junit.callback.QuarkusTestBeforeEachCallback; +import io.quarkus.test.junit.callback.QuarkusTestMethodContext; +import org.junit.jupiter.api.extension.ExtensionContext; +import org.junit.jupiter.engine.execution.ExtensionValuesStore; +import org.junit.jupiter.engine.execution.NamespaceAwareStore; + +public class BeforeEachCallback implements QuarkusTestBeforeEachCallback { + + @Override + public void beforeEach(QuarkusTestMethodContext context) { + CamelQuarkusTestSupport testInstance = (CamelQuarkusTestSupport) context.getTestInstance(); + + testInstance.setCurrentTestName(getDisplayName(context.getTestMethod())); + testInstance.setGlobalStore(new NamespaceAwareStore(new ExtensionValuesStore(null), ExtensionContext.Namespace.GLOBAL)); + } + + private String getDisplayName(Method method) { + StringBuilder sb = new StringBuilder(method.getName()); + sb.append("("); + sb.append(Arrays.stream(method.getParameterTypes()).map(c -> c.getSimpleName()).collect(Collectors.joining(", "))); + sb.append(")"); + + return sb.toString(); + } +} diff --git a/integration-tests-support/test-support-jvm/src/main/java/org/apache/camel/quarkus/test/CamelQuarkusTest.java b/integration-tests-support/test-support-jvm/src/main/java/org/apache/camel/quarkus/test/CamelQuarkusTest.java new file mode 100644 index 000000000000..5f287b03d748 --- /dev/null +++ b/integration-tests-support/test-support-jvm/src/main/java/org/apache/camel/quarkus/test/CamelQuarkusTest.java @@ -0,0 +1,14 @@ +package org.apache.camel.quarkus.test; + +import java.lang.annotation.ElementType; +import java.lang.annotation.Retention; +import java.lang.annotation.RetentionPolicy; +import java.lang.annotation.Target; + +import io.quarkus.test.junit.QuarkusTest; + +@Target({ ElementType.TYPE, ElementType.METHOD }) +@Retention(RetentionPolicy.RUNTIME) +@QuarkusTest +public @interface CamelQuarkusTest { +} diff --git a/integration-tests-support/test-support-jvm/src/main/java/org/apache/camel/quarkus/test/CamelQuarkusTestSupport.java b/integration-tests-support/test-support-jvm/src/main/java/org/apache/camel/quarkus/test/CamelQuarkusTestSupport.java new file mode 100644 index 000000000000..fe89a5dd35d3 --- /dev/null +++ b/integration-tests-support/test-support-jvm/src/main/java/org/apache/camel/quarkus/test/CamelQuarkusTestSupport.java @@ -0,0 +1,82 @@ +package org.apache.camel.quarkus.test; + +import javax.inject.Inject; + +import io.quarkus.test.junit.QuarkusTestProfile; +import org.apache.camel.CamelContext; +import org.apache.camel.test.junit5.CamelTestSupport; +import org.junit.jupiter.api.extension.ExtensionContext; + +public class CamelQuarkusTestSupport extends CamelTestSupport + implements QuarkusTestProfile { + + private boolean initialized = false; + + @Inject + protected CamelContext context; + + @Override + protected CamelContext createCamelContext() throws Exception { + return this.context; + } + + @Override + public void beforeAll(ExtensionContext context) { + //in camel-quarkus, junit5 uses different classloader, necessaryu code was moved into quarkus's callback + } + + @Override + public void beforeEach(ExtensionContext context) throws Exception { + //in camel-quarkus, junit5 uses different classloader, necessaryu code was moved into quarkus's callback + } + + @Override + public void beforeTestExecution(ExtensionContext context) throws Exception { + //in camel-quarkus, junit5 uses different classloader, necessaryu code was moved into quarkus's callback + } + + @Override + public void afterAll(ExtensionContext context) { + //in camel-quarkus, junit5 uses different classloader, necessaryu code was moved into quarkus's callback + } + + @Override + public void afterEach(ExtensionContext context) throws Exception { + //in camel-quarkus, junit5 uses different classloader, necessaryu code was moved into quarkus's callback + } + + @Override + public void afterTestExecution(ExtensionContext context) throws Exception { + //in camel-quarkus, junit5 uses different classloader, necessaryu code was moved into quarkus's callback + } + + @Override + protected void stopCamelContext() throws Exception { + //context is started and stopped via quarkus lifecycle + } + + void setCurrentTestName(String currentTestName) { + this.currentTestName = currentTestName; + } + + void setGlobalStore(ExtensionContext.Store store) { + this.globalStore = store; + } + + @Override + public boolean isUseRouteBuilder() { + if (context.getRoutes().isEmpty()) { + return super.isUseRouteBuilder(); + } + return false; + } + + @Override + protected void doSetUp() throws Exception { + if (!initialized) { + super.doSetUp(); + initialized = true; + + } + } +} diff --git a/integration-tests-support/test-support-jvm/src/main/resources/META-INF/services/io.quarkus.test.junit.callback.QuarkusTestBeforeEachCallback b/integration-tests-support/test-support-jvm/src/main/resources/META-INF/services/io.quarkus.test.junit.callback.QuarkusTestBeforeEachCallback new file mode 100644 index 000000000000..0887c9994488 --- /dev/null +++ b/integration-tests-support/test-support-jvm/src/main/resources/META-INF/services/io.quarkus.test.junit.callback.QuarkusTestBeforeEachCallback @@ -0,0 +1 @@ +org.apache.camel.quarkus.test.BeforeEachCallback diff --git a/integration-tests-support/test-support-jvm/src/test/java/org/apachencamel/quarkus/test/AdviceWithLambdaTest.java b/integration-tests-support/test-support-jvm/src/test/java/org/apachencamel/quarkus/test/AdviceWithLambdaTest.java new file mode 100644 index 000000000000..57a44b7bda05 --- /dev/null +++ b/integration-tests-support/test-support-jvm/src/test/java/org/apachencamel/quarkus/test/AdviceWithLambdaTest.java @@ -0,0 +1,60 @@ +/* + * 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.apachencamel.quarkus.test; + +import io.quarkus.test.junit.TestProfile; +import org.apache.camel.RoutesBuilder; +import org.apache.camel.builder.AdviceWith; +import org.apache.camel.builder.RouteBuilder; +import org.apache.camel.quarkus.test.CamelQuarkusTest; +import org.apache.camel.quarkus.test.CamelQuarkusTestSupport; +import org.junit.jupiter.api.Test; + +@CamelQuarkusTest +@TestProfile(AdviceWithLambdaTest.class) +public class AdviceWithLambdaTest extends CamelQuarkusTestSupport { + + @Override + public boolean isUseAdviceWith() { + return true; + } + + @Test + public void testAdviceWith() throws Exception { + getMockEndpoint("mock:result").expectedMessageCount(1); + + // advice the route in one line + AdviceWith.adviceWith(context, "foo", a -> a.weaveAddLast().to("mock:result")); + + // start Camel + context.start(); + + template.sendBody("direct:start", "Bye World"); + + assertMockEndpointsSatisfied(); + } + + @Override + protected RoutesBuilder createRouteBuilder() { + return new RouteBuilder() { + @Override + public void configure() { + from("direct:start").routeId("foo").to("log:foo"); + } + }; + } +} diff --git a/integration-tests-support/test-support-jvm/src/test/java/org/apachencamel/quarkus/test/AdviceWithNotStartedTest.java b/integration-tests-support/test-support-jvm/src/test/java/org/apachencamel/quarkus/test/AdviceWithNotStartedTest.java new file mode 100644 index 000000000000..39fc0cae0231 --- /dev/null +++ b/integration-tests-support/test-support-jvm/src/test/java/org/apachencamel/quarkus/test/AdviceWithNotStartedTest.java @@ -0,0 +1,82 @@ +/* + * 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.apachencamel.quarkus.test; + +import java.util.concurrent.RejectedExecutionException; + +import io.quarkus.test.junit.TestProfile; +import org.apache.camel.CamelExecutionException; +import org.apache.camel.RoutesBuilder; +import org.apache.camel.builder.AdviceWith; +import org.apache.camel.builder.AdviceWithRouteBuilder; +import org.apache.camel.builder.RouteBuilder; +import org.apache.camel.model.Model; +import org.apache.camel.quarkus.test.CamelQuarkusTest; +import org.apache.camel.quarkus.test.CamelQuarkusTestSupport; +import org.junit.jupiter.api.Disabled; +import org.junit.jupiter.api.Test; + +import static org.apache.camel.test.junit5.TestSupport.assertIsInstanceOf; +import static org.junit.jupiter.api.Assertions.fail; + +@CamelQuarkusTest +@TestProfile(AdviceWithNotStartedTest.class) +public class AdviceWithNotStartedTest extends CamelQuarkusTestSupport { + + @Override + public boolean isUseAdviceWith() { + return true; + } + + @Test + @Disabled //camel quarkus runs test with started context + public void testNotStarted() throws Exception { + AdviceWith.adviceWith(context.getExtension(Model.class).getRouteDefinition("foo"), context, + new AdviceWithRouteBuilder() { + @Override + public void configure() { + weaveAddLast().to("mock:result"); + } + }); + + getMockEndpoint("mock:result").expectedMessageCount(1); + + try { + template.sendBody("direct:start", "Hello World"); + fail("Should throw exception"); + } catch (CamelExecutionException e) { + assertIsInstanceOf(RejectedExecutionException.class, e.getCause()); + } + + // start Camel + context.start(); + + template.sendBody("direct:start", "Bye World"); + + assertMockEndpointsSatisfied(); + } + + @Override + protected RoutesBuilder createRouteBuilder() { + return new RouteBuilder() { + @Override + public void configure() { + from("direct:start").routeId("foo").to("log:foo"); + } + }; + } +} diff --git a/integration-tests-support/test-support-jvm/src/test/java/org/apachencamel/quarkus/test/CreateCamelContextPerTestFalseTest.java b/integration-tests-support/test-support-jvm/src/test/java/org/apachencamel/quarkus/test/CreateCamelContextPerTestFalseTest.java new file mode 100644 index 000000000000..89447d03209b --- /dev/null +++ b/integration-tests-support/test-support-jvm/src/test/java/org/apachencamel/quarkus/test/CreateCamelContextPerTestFalseTest.java @@ -0,0 +1,120 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package org.apachencamel.quarkus.test; + +import java.util.concurrent.atomic.AtomicInteger; + +import org.apache.camel.CamelContext; +import org.apache.camel.EndpointInject; +import org.apache.camel.Produce; +import org.apache.camel.ProducerTemplate; +import org.apache.camel.builder.RouteBuilder; +import org.apache.camel.component.mock.MockEndpoint; +import org.apache.camel.quarkus.test.CamelQuarkusTest; +import org.apache.camel.quarkus.test.CamelQuarkusTestSupport; +import org.junit.jupiter.api.AfterAll; +import org.junit.jupiter.api.Disabled; +import org.junit.jupiter.api.Test; +import org.junit.jupiter.api.TestInstance; +import org.slf4j.Logger; +import org.slf4j.LoggerFactory; + +import static org.junit.jupiter.api.Assertions.assertEquals; +import static org.junit.jupiter.api.Assertions.assertTrue; + +@CamelQuarkusTest +@TestInstance(TestInstance.Lifecycle.PER_METHOD) +@Disabled //differences between camel-quarkus and camel +public class CreateCamelContextPerTestFalseTest extends CamelQuarkusTestSupport { + + private static final Logger LOG = LoggerFactory.getLogger(CreateCamelContextPerTestFalseTest.class); + + private static final AtomicInteger CREATED_CONTEXTS = new AtomicInteger(); + private static final AtomicInteger POST_TEAR_DOWN = new AtomicInteger(); + + @EndpointInject("mock:result") + protected MockEndpoint resultEndpoint; + + @Produce("direct:start") + protected ProducerTemplate template; + + @Override + protected CamelContext createCamelContext() throws Exception { + LOG.info("createCamelContext()"); + CREATED_CONTEXTS.incrementAndGet(); + return super.createCamelContext(); + } + + @Override + protected void doPostTearDown() throws Exception { + LOG.info("doPostTearDown()"); + POST_TEAR_DOWN.incrementAndGet(); + super.doPostTearDown(); + } + + @Test + public void testSendMatchingMessage() throws Exception { + String expectedBody = ""; + + resultEndpoint.expectedBodiesReceived(expectedBody); + + template.sendBodyAndHeader(expectedBody, "foo", "bar"); + + resultEndpoint.assertIsSatisfied(); + + assertTrue(CREATED_CONTEXTS.get() >= 1, "Should create 1 or more CamelContext per test class"); + } + + @Test + public void testSendAnotherMatchingMessage() throws Exception { + String expectedBody = ""; + + resultEndpoint.expectedBodiesReceived(expectedBody); + + template.sendBodyAndHeader(expectedBody, "foo", "bar"); + + resultEndpoint.assertIsSatisfied(); + + assertTrue(CREATED_CONTEXTS.get() >= 1, "Should create 1 or more CamelContext per test class"); + } + + @Test + public void testSendNotMatchingMessage() throws Exception { + resultEndpoint.expectedMessageCount(0); + + template.sendBodyAndHeader("", "foo", "notMatchedHeaderValue"); + + resultEndpoint.assertIsSatisfied(); + + assertTrue(CREATED_CONTEXTS.get() >= 1, "Should create 1 or more CamelContext per test class"); + } + + @AfterAll + public static void validateTearDown() { + assertEquals(3, CREATED_CONTEXTS.get()); + assertEquals(3, POST_TEAR_DOWN.get()); + } + + @Override + protected RouteBuilder createRouteBuilder() { + return new RouteBuilder() { + public void configure() { + from("direct:start").filter(header("foo").isEqualTo("bar")).to("mock:result"); + } + }; + } +} diff --git a/integration-tests-support/test-support-jvm/src/test/java/org/apachencamel/quarkus/test/CreateCamelContextPerTestTrueTest.java b/integration-tests-support/test-support-jvm/src/test/java/org/apachencamel/quarkus/test/CreateCamelContextPerTestTrueTest.java new file mode 100644 index 000000000000..41a29d58a7b9 --- /dev/null +++ b/integration-tests-support/test-support-jvm/src/test/java/org/apachencamel/quarkus/test/CreateCamelContextPerTestTrueTest.java @@ -0,0 +1,158 @@ +/* + * 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.apachencamel.quarkus.test; + +import java.util.concurrent.CountDownLatch; +import java.util.concurrent.TimeUnit; +import java.util.concurrent.atomic.AtomicInteger; + +import org.apache.camel.CamelContext; +import org.apache.camel.EndpointInject; +import org.apache.camel.Produce; +import org.apache.camel.ProducerTemplate; +import org.apache.camel.builder.RouteBuilder; +import org.apache.camel.component.mock.MockEndpoint; +import org.apache.camel.quarkus.test.CamelQuarkusTest; +import org.apache.camel.quarkus.test.CamelQuarkusTestSupport; +import org.apache.camel.util.StopWatch; +import org.junit.jupiter.api.AfterAll; +import org.junit.jupiter.api.Disabled; +import org.junit.jupiter.api.Test; +import org.junit.jupiter.api.TestInstance; +import org.slf4j.Logger; +import org.slf4j.LoggerFactory; + +import static org.junit.jupiter.api.Assertions.assertEquals; + +@CamelQuarkusTest +@TestInstance(TestInstance.Lifecycle.PER_CLASS) +@Disabled //differences between camel-quarkus and camel +public class CreateCamelContextPerTestTrueTest extends CamelQuarkusTestSupport { + + private static final Logger LOG = LoggerFactory.getLogger(CreateCamelContextPerTestTrueTest.class); + + private static final AtomicInteger CREATED_CONTEXTS = new AtomicInteger(); + private static final AtomicInteger POST_TEAR_DOWN = new AtomicInteger(); + private static final CountDownLatch LATCH = new CountDownLatch(1); + + @EndpointInject("mock:result") + protected MockEndpoint resultEndpoint; + + @Produce("direct:start") + protected ProducerTemplate template; + + @Override + protected CamelContext createCamelContext() throws Exception { + LOG.info("createCamelContext()"); + CREATED_CONTEXTS.incrementAndGet(); + return super.createCamelContext(); + } + + @Override + protected void doPostTearDown() throws Exception { + LOG.info("doPostTearDown()"); + POST_TEAR_DOWN.incrementAndGet(); + super.doPostTearDown(); + LATCH.await(5, TimeUnit.SECONDS); + } + + @Test + public void testSendMatchingMessage() throws Exception { + String expectedBody = ""; + + resultEndpoint.expectedBodiesReceived(expectedBody); + + template.sendBodyAndHeader(expectedBody, "foo", "bar"); + + resultEndpoint.assertIsSatisfied(); + + assertEquals(1, CREATED_CONTEXTS.get(), "Should only create 1 CamelContext per test class"); + assertEquals(0, POST_TEAR_DOWN.get(), "Should not call postTearDown yet"); + + resultEndpoint.reset(); + } + + @Test + public void testSendAnotherMatchingMessage() throws Exception { + String expectedBody = ""; + + resultEndpoint.expectedBodiesReceived(expectedBody); + + template.sendBodyAndHeader(expectedBody, "foo", "bar"); + + resultEndpoint.assertIsSatisfied(); + + assertEquals(1, CREATED_CONTEXTS.get(), "Should only create 1 CamelContext per test class"); + assertEquals(0, POST_TEAR_DOWN.get(), "Should not call postTearDown yet"); + + resultEndpoint.reset(); + } + + @Test + public void testSendNotMatchingMessage() throws Exception { + resultEndpoint.expectedMessageCount(0); + + template.sendBodyAndHeader("", "foo", "notMatchedHeaderValue"); + + resultEndpoint.assertIsSatisfied(); + + assertEquals(1, CREATED_CONTEXTS.get(), "Should only create 1 CamelContext per test class"); + assertEquals(0, POST_TEAR_DOWN.get(), "Should not call postTearDown yet"); + + resultEndpoint.reset(); + } + + @AfterAll + public static void shouldTearDown() { + // we are called before doPostTearDown so lets wait for that to be + // called + Runnable r = () -> { + try { + StopWatch watch = new StopWatch(); + while (watch.taken() < 5000) { + LOG.debug("Checking for tear down called correctly"); + if (POST_TEAR_DOWN.get() == 1) { + LATCH.countDown(); + break; + } else { + try { + Thread.sleep(100); + } catch (InterruptedException e) { + break; + } + } + } + } finally { + LOG.info("Should only call postTearDown 1 time per test class, called: " + POST_TEAR_DOWN.get()); + assertEquals(1, POST_TEAR_DOWN.get(), "Should only call postTearDown 1 time per test class"); + } + }; + Thread t = new Thread(r); + t.setDaemon(false); + t.setName("shouldTearDown checker"); + t.start(); + } + + @Override + protected RouteBuilder createRouteBuilder() { + return new RouteBuilder() { + public void configure() { + from("direct:start").filter(header("foo").isEqualTo("bar")).to("mock:result"); + } + }; + } +} diff --git a/integration-tests-support/test-support-jvm/src/test/java/org/apachencamel/quarkus/test/DebugJUnit5Test.java b/integration-tests-support/test-support-jvm/src/test/java/org/apachencamel/quarkus/test/DebugJUnit5Test.java new file mode 100644 index 000000000000..d12e609d0750 --- /dev/null +++ b/integration-tests-support/test-support-jvm/src/test/java/org/apachencamel/quarkus/test/DebugJUnit5Test.java @@ -0,0 +1,97 @@ +/* + * 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.apachencamel.quarkus.test; + +import io.quarkus.test.junit.TestProfile; +import org.apache.camel.Exchange; +import org.apache.camel.Processor; +import org.apache.camel.builder.RouteBuilder; +import org.apache.camel.model.ProcessorDefinition; +import org.apache.camel.quarkus.test.CamelQuarkusTest; +import org.apache.camel.quarkus.test.CamelQuarkusTestSupport; +import org.junit.jupiter.api.Disabled; +import org.junit.jupiter.api.Test; +import org.junit.jupiter.api.TestInstance; +import org.slf4j.Logger; +import org.slf4j.LoggerFactory; + +@CamelQuarkusTest +@TestInstance(TestInstance.Lifecycle.PER_CLASS) +@TestProfile(DebugJUnit5Test.class) +@Disabled //requires context restart +public class DebugJUnit5Test extends CamelQuarkusTestSupport { + + private static final Logger LOG = LoggerFactory.getLogger(DebugJUnit5Test.class); + + // START SNIPPET: e1 + @Override + public boolean isUseDebugger() { + // must enable debugger + return true; + } + + @Override + protected void debugBefore( + Exchange exchange, Processor processor, ProcessorDefinition definition, String id, String shortName) { + // this method is invoked before we are about to enter the given + // processor + // from your Java editor you can just add a breakpoint in the code line + // below + LOG.info("Before " + definition + " with body " + exchange.getIn().getBody()); + } + // END SNIPPET: e1 + + @Test + public void testDebugger() throws Exception { + // set mock expectations + getMockEndpoint("mock:a").expectedMessageCount(1); + getMockEndpoint("mock:b").expectedMessageCount(1); + + // send a message + template.sendBody("direct:start", "World"); + + // assert mocks + assertMockEndpointsSatisfied(); + } + + @Test + public void testTwo() throws Exception { + // set mock expectations + getMockEndpoint("mock:a").expectedMessageCount(2); + getMockEndpoint("mock:b").expectedMessageCount(2); + + // send a message + template.sendBody("direct:start", "World"); + template.sendBody("direct:start", "Camel"); + + // assert mocks + assertMockEndpointsSatisfied(); + } + + // START SNIPPET: e2 + @Override + protected RouteBuilder createRouteBuilder() { + return new RouteBuilder() { + @Override + public void configure() { + // this is the route we want to debug + from("direct:start").to("mock:a").transform(body().prepend("Hello ")).to("mock:b"); + } + }; + } + // END SNIPPET: e2 +} diff --git a/integration-tests-support/test-support-jvm/src/test/java/org/apachencamel/quarkus/test/DebugNoLazyTypeConverterTest.java b/integration-tests-support/test-support-jvm/src/test/java/org/apachencamel/quarkus/test/DebugNoLazyTypeConverterTest.java new file mode 100644 index 000000000000..6a83c20ff952 --- /dev/null +++ b/integration-tests-support/test-support-jvm/src/test/java/org/apachencamel/quarkus/test/DebugNoLazyTypeConverterTest.java @@ -0,0 +1,95 @@ +/* + * 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.apachencamel.quarkus.test; + +import io.quarkus.test.junit.TestProfile; +import org.apache.camel.Exchange; +import org.apache.camel.Processor; +import org.apache.camel.builder.RouteBuilder; +import org.apache.camel.model.ProcessorDefinition; +import org.apache.camel.quarkus.test.CamelQuarkusTest; +import org.apache.camel.quarkus.test.CamelQuarkusTestSupport; +import org.junit.jupiter.api.Disabled; +import org.junit.jupiter.api.Test; +import org.slf4j.Logger; +import org.slf4j.LoggerFactory; + +@CamelQuarkusTest +@TestProfile(DebugNoLazyTypeConverterTest.class) +@Disabled //requires context restart +public class DebugNoLazyTypeConverterTest extends CamelQuarkusTestSupport { + + private static final Logger LOG = LoggerFactory.getLogger(DebugNoLazyTypeConverterTest.class); + + // START SNIPPET: e1 + @Override + public boolean isUseDebugger() { + // must enable debugger + return true; + } + + @Override + protected void debugBefore( + Exchange exchange, Processor processor, ProcessorDefinition definition, String id, String shortName) { + // this method is invoked before we are about to enter the given + // processor + // from your Java editor you can just add a breakpoint in the code line + // below + LOG.info("Before " + definition + " with body " + exchange.getIn().getBody()); + } + // END SNIPPET: e1 + + @Test + public void testDebugger() throws Exception { + // set mock expectations + getMockEndpoint("mock:a").expectedMessageCount(1); + getMockEndpoint("mock:b").expectedMessageCount(1); + + // send a message + template.sendBody("direct:start", "World"); + + // assert mocks + assertMockEndpointsSatisfied(); + } + + @Test + public void testTwo() throws Exception { + // set mock expectations + getMockEndpoint("mock:a").expectedMessageCount(2); + getMockEndpoint("mock:b").expectedMessageCount(2); + + // send a message + template.sendBody("direct:start", "World"); + template.sendBody("direct:start", "Camel"); + + // assert mocks + assertMockEndpointsSatisfied(); + } + + // START SNIPPET: e2 + @Override + protected RouteBuilder createRouteBuilder() { + return new RouteBuilder() { + @Override + public void configure() { + // this is the route we want to debug + from("direct:start").to("mock:a").transform(body().prepend("Hello ")).to("mock:b"); + } + }; + } + // END SNIPPET: e2 +} diff --git a/integration-tests-support/test-support-jvm/src/test/java/org/apachencamel/quarkus/test/DebugTest.java b/integration-tests-support/test-support-jvm/src/test/java/org/apachencamel/quarkus/test/DebugTest.java new file mode 100644 index 000000000000..eeba518cf366 --- /dev/null +++ b/integration-tests-support/test-support-jvm/src/test/java/org/apachencamel/quarkus/test/DebugTest.java @@ -0,0 +1,95 @@ +/* + * 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.apachencamel.quarkus.test; + +import io.quarkus.test.junit.TestProfile; +import org.apache.camel.Exchange; +import org.apache.camel.Processor; +import org.apache.camel.builder.RouteBuilder; +import org.apache.camel.model.ProcessorDefinition; +import org.apache.camel.quarkus.test.CamelQuarkusTest; +import org.apache.camel.quarkus.test.CamelQuarkusTestSupport; +import org.junit.jupiter.api.Disabled; +import org.junit.jupiter.api.Test; +import org.slf4j.Logger; +import org.slf4j.LoggerFactory; + +@CamelQuarkusTest +@TestProfile(DebugTest.class) +@Disabled //requires context restart +public class DebugTest extends CamelQuarkusTestSupport { + + private static final Logger LOG = LoggerFactory.getLogger(DebugTest.class); + + // START SNIPPET: e1 + @Override + public boolean isUseDebugger() { + // must enable debugger + return true; + } + + @Override + protected void debugBefore( + Exchange exchange, Processor processor, ProcessorDefinition definition, String id, String shortName) { + // this method is invoked before we are about to enter the given + // processor + // from your Java editor you can just add a breakpoint in the code line + // below + LOG.info("Before " + definition + " with body " + exchange.getIn().getBody()); + } + // END SNIPPET: e1 + + @Test + public void testDebugger() throws Exception { + // set mock expectations + getMockEndpoint("mock:a").expectedMessageCount(1); + getMockEndpoint("mock:b").expectedMessageCount(1); + + // send a message + template.sendBody("direct:start", "World"); + + // assert mocks + assertMockEndpointsSatisfied(); + } + + @Test + public void testTwo() throws Exception { + // set mock expectations + getMockEndpoint("mock:a").expectedMessageCount(2); + getMockEndpoint("mock:b").expectedMessageCount(2); + + // send a message + template.sendBody("direct:start", "World"); + template.sendBody("direct:start", "Camel"); + + // assert mocks + assertMockEndpointsSatisfied(); + } + + // START SNIPPET: e2 + @Override + protected RouteBuilder createRouteBuilder() { + return new RouteBuilder() { + @Override + public void configure() { + // this is the route we want to debug + from("direct:start").to("mock:a").transform(body().prepend("Hello ")).to("mock:b"); + } + }; + } + // END SNIPPET: e2 +} diff --git a/integration-tests-support/test-support-jvm/src/test/java/org/apachencamel/quarkus/test/FilterCreateCamelContextPerClassTest.java b/integration-tests-support/test-support-jvm/src/test/java/org/apachencamel/quarkus/test/FilterCreateCamelContextPerClassTest.java new file mode 100644 index 000000000000..6f1fb9ec8b06 --- /dev/null +++ b/integration-tests-support/test-support-jvm/src/test/java/org/apachencamel/quarkus/test/FilterCreateCamelContextPerClassTest.java @@ -0,0 +1,65 @@ +/* + * 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.apachencamel.quarkus.test; + +import io.quarkus.test.junit.TestProfile; +import org.apache.camel.builder.RouteBuilder; +import org.apache.camel.quarkus.test.CamelQuarkusTest; +import org.apache.camel.quarkus.test.CamelQuarkusTestSupport; +import org.junit.jupiter.api.Disabled; +import org.junit.jupiter.api.Test; +import org.junit.jupiter.api.TestInstance; + +/** + * Tests filtering using Camel Test + */ +// START SNIPPET: example +@CamelQuarkusTest +@TestInstance(TestInstance.Lifecycle.PER_CLASS) +@TestProfile(FilterCreateCamelContextPerClassTest.class) +@Disabled //In camel-quarkus,context is created per test profile +public class FilterCreateCamelContextPerClassTest extends CamelQuarkusTestSupport { + + @Test + public void testSendMatchingMessage() throws Exception { + String expectedBody = ""; + + getMockEndpoint("mock:result").expectedBodiesReceived(expectedBody); + + template.sendBodyAndHeader("direct:start", expectedBody, "foo", "bar"); + + assertMockEndpointsSatisfied(); + } + + @Test + public void testSendNotMatchingMessage() throws Exception { + getMockEndpoint("mock:result").expectedMessageCount(0); + + template.sendBodyAndHeader("direct:start", "", "foo", "notMatchedHeaderValue"); + + assertMockEndpointsSatisfied(); + } + + @Override + protected RouteBuilder createRouteBuilder() { + return new RouteBuilder() { + public void configure() { + from("direct:start").filter(header("foo").isEqualTo("bar")).to("mock:result"); + } + }; + } +} diff --git a/integration-tests-support/test-support-jvm/src/test/java/org/apachencamel/quarkus/test/FilterFluentTemplateTest.java b/integration-tests-support/test-support-jvm/src/test/java/org/apachencamel/quarkus/test/FilterFluentTemplateTest.java new file mode 100644 index 000000000000..2b5c20e6bb44 --- /dev/null +++ b/integration-tests-support/test-support-jvm/src/test/java/org/apachencamel/quarkus/test/FilterFluentTemplateTest.java @@ -0,0 +1,83 @@ +/* + * 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.apachencamel.quarkus.test; + +import io.quarkus.test.junit.TestProfile; +import org.apache.camel.EndpointInject; +import org.apache.camel.FluentProducerTemplate; +import org.apache.camel.Produce; +import org.apache.camel.builder.RouteBuilder; +import org.apache.camel.component.mock.MockEndpoint; +import org.apache.camel.quarkus.test.CamelQuarkusTest; +import org.apache.camel.quarkus.test.CamelQuarkusTestSupport; +import org.junit.jupiter.api.Test; + +/** + * Tests filtering using Camel Test + */ +// START SNIPPET: example +// tag::example[] +@CamelQuarkusTest +@TestProfile(FilterFluentTemplateTest.class) +public class FilterFluentTemplateTest extends CamelQuarkusTestSupport { + + @EndpointInject("mock:result") + protected MockEndpoint resultEndpoint; + + @Produce("direct:startFluent") + protected FluentProducerTemplate fluentTemplate; + + @Override + public boolean isDumpRouteCoverage() { + return true; + } + + @Test + public void testSendMatchingMessage() throws Exception { + String expectedBody = ""; + + resultEndpoint.expectedBodiesReceived(expectedBody); + + fluentTemplate.withBody(expectedBody).withHeader("foo", "bar").send(); + + resultEndpoint.assertIsSatisfied(); + + resultEndpoint.reset(); + } + + @Test + public void testSendNotMatchingMessage() throws Exception { + resultEndpoint.expectedMessageCount(0); + + fluentTemplate.withBody("").withHeader("foo", "notMatchedHeaderValue").send(); + + resultEndpoint.assertIsSatisfied(); + + resultEndpoint.reset(); + } + + @Override + protected RouteBuilder createRouteBuilder() { + return new RouteBuilder() { + public void configure() { + from("direct:startFluent").filter(header("foo").isEqualTo("bar")).to("mock:result"); + } + }; + } +} +// end::example[] +// END SNIPPET: example diff --git a/integration-tests-support/test-support-jvm/src/test/java/org/apachencamel/quarkus/test/FilterJUnit5Test.java b/integration-tests-support/test-support-jvm/src/test/java/org/apachencamel/quarkus/test/FilterJUnit5Test.java new file mode 100644 index 000000000000..39129739ab97 --- /dev/null +++ b/integration-tests-support/test-support-jvm/src/test/java/org/apachencamel/quarkus/test/FilterJUnit5Test.java @@ -0,0 +1,77 @@ +/* + * 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.apachencamel.quarkus.test; + +import io.quarkus.test.junit.TestProfile; +import org.apache.camel.EndpointInject; +import org.apache.camel.Produce; +import org.apache.camel.ProducerTemplate; +import org.apache.camel.builder.RouteBuilder; +import org.apache.camel.component.mock.MockEndpoint; +import org.apache.camel.quarkus.test.CamelQuarkusTest; +import org.apache.camel.quarkus.test.CamelQuarkusTestSupport; +import org.junit.jupiter.api.Test; + +/** + * Tests filtering using Camel Test + */ +// START SNIPPET: example +@CamelQuarkusTest +@TestProfile(FilterJUnit5Test.class) +public class FilterJUnit5Test extends CamelQuarkusTestSupport { + + @EndpointInject("mock:result") + protected MockEndpoint resultEndpoint; + + @Produce("direct:start") + protected ProducerTemplate template; + + @Test + public void testSendMatchingMessage() throws Exception { + String expectedBody = ""; + + resultEndpoint.expectedBodiesReceived(expectedBody); + + template.sendBodyAndHeader(expectedBody, "foo", "bar"); + + resultEndpoint.assertIsSatisfied(); + + resultEndpoint.reset(); + } + + @Test + public void testSendNotMatchingMessage() throws Exception { + resultEndpoint.expectedMessageCount(0); + + template.sendBodyAndHeader("", "foo", "notMatchedHeaderValue"); + + resultEndpoint.assertIsSatisfied(); + + resultEndpoint.reset(); + } + + @Override + protected RouteBuilder createRouteBuilder() { + return new RouteBuilder() { + public void configure() { + from("direct:start").filter(header("foo").isEqualTo("bar")).to("mock:result"); + } + }; + } + +} +// END SNIPPET: example diff --git a/integration-tests-support/test-support-jvm/src/test/java/org/apachencamel/quarkus/test/FilterTest.java b/integration-tests-support/test-support-jvm/src/test/java/org/apachencamel/quarkus/test/FilterTest.java new file mode 100644 index 000000000000..48d4aa00e251 --- /dev/null +++ b/integration-tests-support/test-support-jvm/src/test/java/org/apachencamel/quarkus/test/FilterTest.java @@ -0,0 +1,83 @@ +/* + * 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.apachencamel.quarkus.test; + +import io.quarkus.test.junit.TestProfile; +import org.apache.camel.EndpointInject; +import org.apache.camel.Produce; +import org.apache.camel.ProducerTemplate; +import org.apache.camel.builder.RouteBuilder; +import org.apache.camel.component.mock.MockEndpoint; +import org.apache.camel.quarkus.test.CamelQuarkusTest; +import org.apache.camel.quarkus.test.CamelQuarkusTestSupport; +import org.junit.jupiter.api.Test; + +/** + * Tests filtering using Camel Test + */ +// START SNIPPET: example +// tag::example[] +@CamelQuarkusTest +@TestProfile(FilterTest.class) +public class FilterTest extends CamelQuarkusTestSupport { + + @EndpointInject("mock:result") + protected MockEndpoint resultEndpoint; + + @Produce("direct:start") + protected ProducerTemplate template; + + @Override + public boolean isDumpRouteCoverage() { + return true; + } + + @Test + public void testSendMatchingMessage() throws Exception { + String expectedBody = ""; + + resultEndpoint.expectedBodiesReceived(expectedBody); + + template.sendBodyAndHeader(expectedBody, "foo", "bar"); + + resultEndpoint.assertIsSatisfied(); + + resultEndpoint.reset(); + } + + @Test + public void testSendNotMatchingMessage() throws Exception { + resultEndpoint.expectedMessageCount(0); + + template.sendBodyAndHeader("", "foo", "notMatchedHeaderValue"); + + resultEndpoint.assertIsSatisfied(); + + resultEndpoint.reset(); + } + + @Override + protected RouteBuilder createRouteBuilder() { + return new RouteBuilder() { + public void configure() { + from("direct:start").filter(header("foo").isEqualTo("bar")).to("mock:result"); + } + }; + } +} +// end::example[] +// END SNIPPET: example diff --git a/integration-tests-support/test-support-jvm/src/test/java/org/apachencamel/quarkus/test/GetMockEndpointTest.java b/integration-tests-support/test-support-jvm/src/test/java/org/apachencamel/quarkus/test/GetMockEndpointTest.java new file mode 100644 index 000000000000..206712fdb9da --- /dev/null +++ b/integration-tests-support/test-support-jvm/src/test/java/org/apachencamel/quarkus/test/GetMockEndpointTest.java @@ -0,0 +1,49 @@ +/* + * 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.apachencamel.quarkus.test; + +import io.quarkus.test.junit.TestProfile; +import org.apache.camel.RoutesBuilder; +import org.apache.camel.builder.RouteBuilder; +import org.apache.camel.quarkus.test.CamelQuarkusTest; +import org.apache.camel.quarkus.test.CamelQuarkusTestSupport; +import org.junit.jupiter.api.Test; + +@CamelQuarkusTest +@TestProfile(GetMockEndpointTest.class) +public class GetMockEndpointTest extends CamelQuarkusTestSupport { + + @Test + public void testMock() throws Exception { + getMockEndpoint("mock:result").expectedBodiesReceived("Hello World"); + + template.sendBody("direct:start", "Hello World"); + + assertMockEndpointsSatisfied(); + } + + @Override + protected RoutesBuilder createRouteBuilder() { + return new RouteBuilder() { + @Override + public void configure() { + from("direct:start").to("mock:result?failFast=false"); + } + }; + } + +} diff --git a/integration-tests-support/test-support-jvm/src/test/java/org/apachencamel/quarkus/test/IsMockEndpointsAndSkipJUnit5Test.java b/integration-tests-support/test-support-jvm/src/test/java/org/apachencamel/quarkus/test/IsMockEndpointsAndSkipJUnit5Test.java new file mode 100644 index 000000000000..71017473db8c --- /dev/null +++ b/integration-tests-support/test-support-jvm/src/test/java/org/apachencamel/quarkus/test/IsMockEndpointsAndSkipJUnit5Test.java @@ -0,0 +1,72 @@ +/* + * 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.apachencamel.quarkus.test; + +import io.quarkus.test.junit.TestProfile; +import org.apache.camel.builder.RouteBuilder; +import org.apache.camel.component.seda.SedaEndpoint; +import org.apache.camel.quarkus.test.CamelQuarkusTest; +import org.apache.camel.quarkus.test.CamelQuarkusTestSupport; +import org.junit.jupiter.api.Test; + +import static org.junit.jupiter.api.Assertions.assertEquals; + +// START SNIPPET: e1 +// tag::e1[] +@CamelQuarkusTest +@TestProfile(IsMockEndpointsAndSkipJUnit5Test.class) +public class IsMockEndpointsAndSkipJUnit5Test extends CamelQuarkusTestSupport { + + @Override + public String isMockEndpointsAndSkip() { + // override this method and return the pattern for which endpoints to + // mock, + // and skip sending to the original endpoint. + return "direct:foo"; + } + + @Test + public void testMockEndpointAndSkip() throws Exception { + // notice we have automatic mocked the direct:foo endpoints and the name + // of the endpoints is "mock:uri" + getMockEndpoint("mock:result").expectedBodiesReceived("Hello World"); + getMockEndpoint("mock:direct:foo").expectedMessageCount(1); + + template.sendBody("direct:start", "Hello World"); + + assertMockEndpointsSatisfied(); + + // the message was not send to the direct:foo route and thus not sent to + // the seda endpoint + SedaEndpoint seda = context.getEndpoint("seda:foo", SedaEndpoint.class); + assertEquals(0, seda.getCurrentQueueSize()); + } + + @Override + protected RouteBuilder createRouteBuilder() { + return new RouteBuilder() { + @Override + public void configure() { + from("direct:start").to("direct:foo").to("mock:result"); + + from("direct:foo").transform(constant("Bye World")).to("seda:foo"); + } + }; + } +} +// end::e1[] +// END SNIPPET: e1 diff --git a/integration-tests-support/test-support-jvm/src/test/java/org/apachencamel/quarkus/test/IsMockEndpointsFileTest.java b/integration-tests-support/test-support-jvm/src/test/java/org/apachencamel/quarkus/test/IsMockEndpointsFileTest.java new file mode 100644 index 000000000000..edfa114bcc90 --- /dev/null +++ b/integration-tests-support/test-support-jvm/src/test/java/org/apachencamel/quarkus/test/IsMockEndpointsFileTest.java @@ -0,0 +1,75 @@ +/* + * 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.apachencamel.quarkus.test; + +import io.quarkus.test.junit.TestProfile; +import org.apache.camel.Exchange; +import org.apache.camel.builder.RouteBuilder; +import org.apache.camel.component.mock.MockEndpoint; +import org.apache.camel.quarkus.test.CamelQuarkusTest; +import org.apache.camel.quarkus.test.CamelQuarkusTestSupport; +import org.junit.jupiter.api.BeforeEach; +import org.junit.jupiter.api.Test; + +import static org.apache.camel.test.junit5.TestSupport.deleteDirectory; + +@CamelQuarkusTest +@TestProfile(IsMockEndpointsFileTest.class) +public class IsMockEndpointsFileTest extends CamelQuarkusTestSupport { + + @Override + @BeforeEach + public void setUp() throws Exception { + deleteDirectory("target/input"); + deleteDirectory("target/messages"); + super.setUp(); + } + + @Override + public String isMockEndpoints() { + // override this method and return the pattern for which endpoints to + // mock. + return "file:target*"; + } + + @Test + public void testMockFileEndpoints() throws Exception { + // notice we have automatic mocked all endpoints and the name of the + // endpoints is "mock:uri" + MockEndpoint camel = getMockEndpoint("mock:file:target/messages/camel"); + camel.expectedMessageCount(1); + + MockEndpoint other = getMockEndpoint("mock:file:target/messages/others"); + other.expectedMessageCount(1); + + template.sendBodyAndHeader("file:target/input", "Hello Camel", Exchange.FILE_NAME, "camel.txt"); + template.sendBodyAndHeader("file:target/input", "Hello World", Exchange.FILE_NAME, "world.txt"); + + assertMockEndpointsSatisfied(); + } + + @Override + protected RouteBuilder createRouteBuilder() { + return new RouteBuilder() { + @Override + public void configure() { + from("file:target/input").choice().when(bodyAs(String.class).contains("Camel")).to("file:target/messages/camel") + .otherwise().to("file:target/messages/others"); + } + }; + } +} diff --git a/integration-tests-support/test-support-jvm/src/test/java/org/apachencamel/quarkus/test/IsMockEndpointsJUnit5Test.java b/integration-tests-support/test-support-jvm/src/test/java/org/apachencamel/quarkus/test/IsMockEndpointsJUnit5Test.java new file mode 100644 index 000000000000..26416aa36583 --- /dev/null +++ b/integration-tests-support/test-support-jvm/src/test/java/org/apachencamel/quarkus/test/IsMockEndpointsJUnit5Test.java @@ -0,0 +1,78 @@ +/* + * 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.apachencamel.quarkus.test; + +import io.quarkus.test.junit.TestProfile; +import org.apache.camel.builder.RouteBuilder; +import org.apache.camel.quarkus.test.CamelQuarkusTest; +import org.apache.camel.quarkus.test.CamelQuarkusTestSupport; +import org.junit.jupiter.api.Test; + +import static org.junit.jupiter.api.Assertions.assertNotNull; + +// START SNIPPET: e1 +// tag::e1[] +@CamelQuarkusTest +@TestProfile(IsMockEndpointsJUnit5Test.class) +public class IsMockEndpointsJUnit5Test extends CamelQuarkusTestSupport { + + @Override + public String isMockEndpoints() { + // override this method and return the pattern for which endpoints to + // mock. + // use * to indicate all + return "*"; + } + + @Test + public void testMockAllEndpoints() throws Exception { + // notice we have automatic mocked all endpoints and the name of the + // endpoints is "mock:uri" + getMockEndpoint("mock:direct:start").expectedBodiesReceived("Hello World"); + getMockEndpoint("mock:direct:foo").expectedBodiesReceived("Hello World"); + getMockEndpoint("mock:log:foo").expectedBodiesReceived("Bye World"); + getMockEndpoint("mock:result").expectedBodiesReceived("Bye World"); + + template.sendBody("direct:start", "Hello World"); + + assertMockEndpointsSatisfied(); + + // additional test to ensure correct endpoints in registry + assertNotNull(context.hasEndpoint("direct:start")); + assertNotNull(context.hasEndpoint("direct:foo")); + assertNotNull(context.hasEndpoint("log:foo")); + assertNotNull(context.hasEndpoint("mock:result")); + // all the endpoints was mocked + assertNotNull(context.hasEndpoint("mock:direct:start")); + assertNotNull(context.hasEndpoint("mock:direct:foo")); + assertNotNull(context.hasEndpoint("mock:log:foo")); + } + + @Override + protected RouteBuilder createRouteBuilder() { + return new RouteBuilder() { + @Override + public void configure() { + from("direct:start").to("direct:foo").to("log:foo").to("mock:result"); + + from("direct:foo").transform(constant("Bye World")); + } + }; + } +} +// end::e1[] +// END SNIPPET: e1 diff --git a/integration-tests-support/test-support-jvm/src/test/java/org/apachencamel/quarkus/test/IsMockEndpointsTest.java b/integration-tests-support/test-support-jvm/src/test/java/org/apachencamel/quarkus/test/IsMockEndpointsTest.java new file mode 100644 index 000000000000..23eda9f8b914 --- /dev/null +++ b/integration-tests-support/test-support-jvm/src/test/java/org/apachencamel/quarkus/test/IsMockEndpointsTest.java @@ -0,0 +1,69 @@ +/* + * 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.apachencamel.quarkus.test; + +import io.quarkus.test.junit.TestProfile; +import org.apache.camel.builder.RouteBuilder; +import org.apache.camel.quarkus.test.CamelQuarkusTest; +import org.apache.camel.quarkus.test.CamelQuarkusTestSupport; +import org.junit.jupiter.api.Test; + +import static org.junit.jupiter.api.Assertions.assertNotNull; + +@CamelQuarkusTest +@TestProfile(IsMockEndpointsTest.class) +public class IsMockEndpointsTest extends CamelQuarkusTestSupport { + + @Override + public String isMockEndpoints() { + return "*"; + } + + @Test + public void testMockAllEndpoints() throws Exception { + getMockEndpoint("mock:direct:start").expectedBodiesReceived("Hello World"); + getMockEndpoint("mock:direct:foo").expectedBodiesReceived("Hello World"); + getMockEndpoint("mock:log:foo").expectedBodiesReceived("Bye World"); + getMockEndpoint("mock:result").expectedBodiesReceived("Bye World"); + + template.sendBody("direct:start", "Hello World"); + + assertMockEndpointsSatisfied(); + + // additional test to ensure correct endpoints in registry + assertNotNull(context.hasEndpoint("direct:start")); + assertNotNull(context.hasEndpoint("direct:foo")); + assertNotNull(context.hasEndpoint("log:foo")); + assertNotNull(context.hasEndpoint("mock:result")); + // all the endpoints was mocked + assertNotNull(context.hasEndpoint("mock:direct:start")); + assertNotNull(context.hasEndpoint("mock:direct:foo")); + assertNotNull(context.hasEndpoint("mock:log:foo")); + } + + @Override + protected RouteBuilder createRouteBuilder() { + return new RouteBuilder() { + @Override + public void configure() { + from("direct:start").to("direct:foo").to("log:foo").to("mock:result"); + + from("direct:foo").transform(constant("Bye World")); + } + }; + } +} diff --git a/integration-tests-support/test-support-jvm/src/test/java/org/apachencamel/quarkus/test/MockEndpointFailNoHeaderTest.java b/integration-tests-support/test-support-jvm/src/test/java/org/apachencamel/quarkus/test/MockEndpointFailNoHeaderTest.java new file mode 100644 index 000000000000..028a35389bcc --- /dev/null +++ b/integration-tests-support/test-support-jvm/src/test/java/org/apachencamel/quarkus/test/MockEndpointFailNoHeaderTest.java @@ -0,0 +1,67 @@ +/* + * 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.apachencamel.quarkus.test; + +import io.quarkus.test.junit.TestProfile; +import org.apache.camel.EndpointInject; +import org.apache.camel.Produce; +import org.apache.camel.ProducerTemplate; +import org.apache.camel.builder.RouteBuilder; +import org.apache.camel.component.mock.MockEndpoint; +import org.apache.camel.quarkus.test.CamelQuarkusTest; +import org.apache.camel.quarkus.test.CamelQuarkusTestSupport; +import org.junit.jupiter.api.Test; + +@CamelQuarkusTest +@TestProfile(MockEndpointFailNoHeaderTest.class) +public class MockEndpointFailNoHeaderTest extends CamelQuarkusTestSupport { + + @EndpointInject("mock:result") + protected MockEndpoint resultEndpoint; + + @Produce("direct:start") + protected ProducerTemplate template; + + @Override + public boolean isDumpRouteCoverage() { + return true; + } + + @Test + public void withHeaderTestCase() throws InterruptedException { + String expectedBody = ""; + resultEndpoint.expectedHeaderReceived("foo", "bar"); + template.sendBodyAndHeader(expectedBody, "foo", "bar"); + resultEndpoint.assertIsSatisfied(); + } + + @Test + public void noHeaderTestCase() throws InterruptedException { + resultEndpoint.expectedHeaderReceived("foo", "bar"); + resultEndpoint.setResultWaitTime(1); // speedup test + resultEndpoint.assertIsNotSatisfied(); + } + + @Override + protected RouteBuilder createRouteBuilder() { + return new RouteBuilder() { + public void configure() { + from("direct:start").filter(header("foo").isEqualTo("bar")).to("mock:result"); + } + }; + } +} diff --git a/integration-tests-support/test-support-jvm/src/test/java/org/apachencamel/quarkus/test/MyProduceBean.java b/integration-tests-support/test-support-jvm/src/test/java/org/apachencamel/quarkus/test/MyProduceBean.java new file mode 100644 index 000000000000..978c134e8564 --- /dev/null +++ b/integration-tests-support/test-support-jvm/src/test/java/org/apachencamel/quarkus/test/MyProduceBean.java @@ -0,0 +1,32 @@ +/* + * 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.apachencamel.quarkus.test; + +import org.apache.camel.Produce; + +/** + * + */ +public class MyProduceBean { + + @Produce("mock:result") + MySender sender; + + public void doSomething(String body) { + sender.send(body); + } +} diff --git a/integration-tests-support/test-support-jvm/src/test/java/org/apachencamel/quarkus/test/MySender.java b/integration-tests-support/test-support-jvm/src/test/java/org/apachencamel/quarkus/test/MySender.java new file mode 100644 index 000000000000..29212acd0fc6 --- /dev/null +++ b/integration-tests-support/test-support-jvm/src/test/java/org/apachencamel/quarkus/test/MySender.java @@ -0,0 +1,25 @@ +/* + * 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.apachencamel.quarkus.test; + +/** + * + */ +public interface MySender { + + void send(String body); +} diff --git a/integration-tests-support/test-support-jvm/src/test/java/org/apachencamel/quarkus/test/ProduceBeanTest.java b/integration-tests-support/test-support-jvm/src/test/java/org/apachencamel/quarkus/test/ProduceBeanTest.java new file mode 100644 index 000000000000..ca5727bdd66f --- /dev/null +++ b/integration-tests-support/test-support-jvm/src/test/java/org/apachencamel/quarkus/test/ProduceBeanTest.java @@ -0,0 +1,47 @@ +/* + * 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.apachencamel.quarkus.test; + +import io.quarkus.test.junit.TestProfile; +import org.apache.camel.builder.RouteBuilder; +import org.apache.camel.quarkus.test.CamelQuarkusTest; +import org.apache.camel.quarkus.test.CamelQuarkusTestSupport; +import org.junit.jupiter.api.Test; + +@CamelQuarkusTest +@TestProfile(ProduceBeanTest.class) +public class ProduceBeanTest extends CamelQuarkusTestSupport { + + @Test + public void testProduceBean() throws Exception { + getMockEndpoint("mock:result").expectedMessageCount(1); + + template.sendBody("direct:start", "Hello World"); + + assertMockEndpointsSatisfied(); + } + + @Override + protected RouteBuilder createRouteBuilder() { + return new RouteBuilder() { + @Override + public void configure() { + from("direct:start").bean(MyProduceBean.class, "doSomething"); + } + }; + } +} diff --git a/integration-tests-support/test-support-jvm/src/test/java/org/apachencamel/quarkus/test/RouteBuilderConfigureExceptionTest.java b/integration-tests-support/test-support-jvm/src/test/java/org/apachencamel/quarkus/test/RouteBuilderConfigureExceptionTest.java new file mode 100644 index 000000000000..dc5ac283af32 --- /dev/null +++ b/integration-tests-support/test-support-jvm/src/test/java/org/apachencamel/quarkus/test/RouteBuilderConfigureExceptionTest.java @@ -0,0 +1,58 @@ +/* + * 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.apachencamel.quarkus.test; + +import io.quarkus.test.junit.TestProfile; +import org.apache.camel.Predicate; +import org.apache.camel.builder.RouteBuilder; +import org.apache.camel.quarkus.test.CamelQuarkusTest; +import org.apache.camel.quarkus.test.CamelQuarkusTestSupport; +import org.junit.jupiter.api.BeforeEach; +import org.junit.jupiter.api.Test; + +import static org.junit.jupiter.api.Assertions.fail; + +@CamelQuarkusTest +@TestProfile(RouteBuilderConfigureExceptionTest.class) +public class RouteBuilderConfigureExceptionTest extends CamelQuarkusTestSupport { + + private Predicate iAmNull; + + @Override + @BeforeEach + public void setUp() { + try { + super.setUp(); + fail("Should have thrown exception"); + } catch (Exception e) { + // expected + } + } + + @Test + public void testFoo() { + } + + @Override + protected RouteBuilder createRouteBuilder() { + return new RouteBuilder() { + public void configure() { + from("direct:start").choice().when(iAmNull).to("mock:dead"); + } + }; + } +} diff --git a/integration-tests-support/test-support-jvm/src/test/java/org/apachencamel/quarkus/test/RouteProcessorDumpRouteCoverageTest.java b/integration-tests-support/test-support-jvm/src/test/java/org/apachencamel/quarkus/test/RouteProcessorDumpRouteCoverageTest.java new file mode 100644 index 000000000000..2f01372efcf2 --- /dev/null +++ b/integration-tests-support/test-support-jvm/src/test/java/org/apachencamel/quarkus/test/RouteProcessorDumpRouteCoverageTest.java @@ -0,0 +1,75 @@ +/* + * 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.apachencamel.quarkus.test; + +import org.apache.camel.RoutesBuilder; +import org.apache.camel.builder.RouteBuilder; +import org.apache.camel.quarkus.test.CamelQuarkusTest; +import org.apache.camel.quarkus.test.CamelQuarkusTestSupport; +import org.junit.jupiter.api.AfterAll; +import org.junit.jupiter.api.Disabled; +import org.junit.jupiter.api.Test; +import org.junit.jupiter.api.TestInfo; +import org.junit.jupiter.api.TestReporter; + +import static org.apache.camel.test.junit5.TestSupport.assertFileExists; +import static org.junit.jupiter.api.Assertions.assertEquals; +import static org.junit.jupiter.api.Assertions.assertNotNull; + +@CamelQuarkusTest +@Disabled // jmx has to be investigated +public class RouteProcessorDumpRouteCoverageTest extends CamelQuarkusTestSupport { + + @Override + public boolean isDumpRouteCoverage() { + return true; + } + + @Test + public void testProcessorJunit5() { + String out = template.requestBody("direct:start", "Hello World", String.class); + assertEquals("Bye World", out); + } + + @Test + public void testProcessorJunit5WithTestParameterInjection(TestInfo info, TestReporter testReporter) { + assertNotNull(info); + assertNotNull(testReporter); + String out = template.requestBody("direct:start", "Hello World", String.class); + assertEquals("Bye World", out); + } + + @AfterAll + @Disabled + public static void checkDumpFilesCreatedAfterTests() { + // should create that file when test is done + assertFileExists("target/camel-route-coverage/RouteProcessorDumpRouteCoverageTest-testProcessorJunit5.xml"); + assertFileExists( + "target/camel-route-coverage/RouteProcessorDumpRouteCoverageTest-testProcessorJunit5WithTestParameterInjection.xml"); + } + + @Override + protected RoutesBuilder createRouteBuilder() { + return new RouteBuilder() { + @Override + public void configure() { + from("direct:start").process(exchange -> exchange.getMessage().setBody("Bye World")); + } + }; + } + +} diff --git a/integration-tests-support/test-support-jvm/src/test/java/org/apachencamel/quarkus/test/SimpleMockEndpointsTest.java b/integration-tests-support/test-support-jvm/src/test/java/org/apachencamel/quarkus/test/SimpleMockEndpointsTest.java new file mode 100644 index 000000000000..cbdfdb7845bb --- /dev/null +++ b/integration-tests-support/test-support-jvm/src/test/java/org/apachencamel/quarkus/test/SimpleMockEndpointsTest.java @@ -0,0 +1,59 @@ +/* + * 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.apachencamel.quarkus.test; + +import io.quarkus.test.junit.TestProfile; +import org.apache.camel.Produce; +import org.apache.camel.ProducerTemplate; +import org.apache.camel.RoutesBuilder; +import org.apache.camel.builder.RouteBuilder; +import org.apache.camel.quarkus.test.CamelQuarkusTest; +import org.apache.camel.quarkus.test.CamelQuarkusTestSupport; +import org.junit.jupiter.api.Test; + +@CamelQuarkusTest +@TestProfile(SimpleMockEndpointsTest.class) +public class SimpleMockEndpointsTest extends CamelQuarkusTestSupport { + + @Produce("direct:start") + protected ProducerTemplate template; + + @Override + public String isMockEndpointsAndSkip() { + return "seda:queue"; + } + + @Test + public void testMockAndSkip() throws Exception { + getMockEndpoint("mock:seda:queue").expectedBodiesReceived("Bye Camel"); + + template.sendBody("seda:start", "Camel"); + + assertMockEndpointsSatisfied(); + } + + @Override + protected RoutesBuilder createRouteBuilder() { + return new RouteBuilder() { + @Override + public void configure() { + from("seda:start").transform(simple("Bye ${body}")).to("seda:queue"); + } + }; + } + +} diff --git a/integration-tests-support/test-support-jvm/src/test/java/org/apachencamel/quarkus/test/SimpleMockTest.java b/integration-tests-support/test-support-jvm/src/test/java/org/apachencamel/quarkus/test/SimpleMockTest.java new file mode 100644 index 000000000000..060d52237d98 --- /dev/null +++ b/integration-tests-support/test-support-jvm/src/test/java/org/apachencamel/quarkus/test/SimpleMockTest.java @@ -0,0 +1,55 @@ +/* + * 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.apachencamel.quarkus.test; + +import io.quarkus.test.junit.TestProfile; +import org.apache.camel.Produce; +import org.apache.camel.ProducerTemplate; +import org.apache.camel.RoutesBuilder; +import org.apache.camel.builder.RouteBuilder; +import org.apache.camel.quarkus.test.CamelQuarkusTest; +import org.apache.camel.quarkus.test.CamelQuarkusTestSupport; +import org.junit.jupiter.api.Test; + +@CamelQuarkusTest +@TestProfile(SimpleMockTest.class) +public class SimpleMockTest extends CamelQuarkusTestSupport { + + @Produce("direct:start") + // @Inject + protected ProducerTemplate template; + + @Test + public void testMock() throws Exception { + getMockEndpoint("mock:result").expectedBodiesReceived("Hello World"); + + template.sendBody("direct:start", "Hello World"); + + assertMockEndpointsSatisfied(); + } + + @Override + protected RoutesBuilder createRouteBuilder() { + return new RouteBuilder() { + @Override + public void configure() { + from("direct:start").to("mock:result"); + } + }; + } + +} diff --git a/integration-tests-support/test-support-jvm/src/test/java/org/apachencamel/quarkus/test/SimpleNotifyBuilderTest.java b/integration-tests-support/test-support-jvm/src/test/java/org/apachencamel/quarkus/test/SimpleNotifyBuilderTest.java new file mode 100644 index 000000000000..b0052a5b2974 --- /dev/null +++ b/integration-tests-support/test-support-jvm/src/test/java/org/apachencamel/quarkus/test/SimpleNotifyBuilderTest.java @@ -0,0 +1,57 @@ +/* + * 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.apachencamel.quarkus.test; + +import java.util.concurrent.TimeUnit; + +import io.quarkus.test.junit.TestProfile; +import org.apache.camel.RoutesBuilder; +import org.apache.camel.builder.NotifyBuilder; +import org.apache.camel.builder.RouteBuilder; +import org.apache.camel.quarkus.test.CamelQuarkusTest; +import org.apache.camel.quarkus.test.CamelQuarkusTestSupport; +import org.junit.jupiter.api.Test; + +import static org.junit.jupiter.api.Assertions.assertTrue; + +@CamelQuarkusTest +@TestProfile(SimpleNotifyBuilderTest.class) +public class SimpleNotifyBuilderTest extends CamelQuarkusTestSupport { + + @Test + public void testNotifyBuilder() { + NotifyBuilder notify = new NotifyBuilder(context).from("seda:start").wereSentTo("seda:queue").whenDone(10).create(); + + for (int i = 0; i < 10; i++) { + template.sendBody("seda:start", "Camel" + i); + } + + boolean matches = notify.matches(10, TimeUnit.SECONDS); + assertTrue(matches); + } + + @Override + protected RoutesBuilder createRouteBuilder() { + return new RouteBuilder() { + @Override + public void configure() { + from("seda:start").transform(simple("Bye ${body}")).to("seda:queue"); + } + }; + } + +} diff --git a/integration-tests-support/test-support-jvm/src/test/java/org/apachencamel/quarkus/test/SimpleWeaveAddMockLastTest.java b/integration-tests-support/test-support-jvm/src/test/java/org/apachencamel/quarkus/test/SimpleWeaveAddMockLastTest.java new file mode 100644 index 000000000000..f609c9788093 --- /dev/null +++ b/integration-tests-support/test-support-jvm/src/test/java/org/apachencamel/quarkus/test/SimpleWeaveAddMockLastTest.java @@ -0,0 +1,65 @@ +/* + * 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.apachencamel.quarkus.test; + +import io.quarkus.test.junit.TestProfile; +import org.apache.camel.RoutesBuilder; +import org.apache.camel.builder.AdviceWith; +import org.apache.camel.builder.AdviceWithRouteBuilder; +import org.apache.camel.builder.RouteBuilder; +import org.apache.camel.model.Model; +import org.apache.camel.quarkus.test.CamelQuarkusTest; +import org.apache.camel.quarkus.test.CamelQuarkusTestSupport; +import org.junit.jupiter.api.Test; + +@CamelQuarkusTest +@TestProfile(SimpleWeaveAddMockLastTest.class) +public class SimpleWeaveAddMockLastTest extends CamelQuarkusTestSupport { + + public boolean isUseAdviceWith() { + return true; + } + + @Test + public void testWeaveAddMockLast() throws Exception { + AdviceWith.adviceWith(context.getExtension(Model.class).getRouteDefinitions().get(0), context, + new AdviceWithRouteBuilder() { + @Override + public void configure() { + weaveAddLast().to("mock:result"); + } + }); + context.start(); + + getMockEndpoint("mock:result").expectedBodiesReceived("Bye Camel"); + + template.sendBody("seda:start", "Camel"); + + assertMockEndpointsSatisfied(); + } + + @Override + protected RoutesBuilder createRouteBuilder() { + return new RouteBuilder() { + @Override + public void configure() { + from("seda:start").transform(simple("Bye ${body}")).to("seda:queue"); + } + }; + } + +} diff --git a/integration-tests-support/test-support-jvm/src/test/java/org/apachencamel/quarkus/test/UseOverridePropertiesWithPropertiesComponentTest.java b/integration-tests-support/test-support-jvm/src/test/java/org/apachencamel/quarkus/test/UseOverridePropertiesWithPropertiesComponentTest.java new file mode 100644 index 000000000000..0343248af020 --- /dev/null +++ b/integration-tests-support/test-support-jvm/src/test/java/org/apachencamel/quarkus/test/UseOverridePropertiesWithPropertiesComponentTest.java @@ -0,0 +1,83 @@ +/* + * 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.apachencamel.quarkus.test; + +import java.util.Properties; + +import io.quarkus.test.junit.TestProfile; +import org.apache.camel.builder.AdviceWith; +import org.apache.camel.builder.AdviceWithRouteBuilder; +import org.apache.camel.builder.RouteBuilder; +import org.apache.camel.model.Model; +import org.apache.camel.quarkus.test.CamelQuarkusTest; +import org.apache.camel.quarkus.test.CamelQuarkusTestSupport; +import org.junit.jupiter.api.BeforeEach; +import org.junit.jupiter.api.Disabled; +import org.junit.jupiter.api.Test; + +@CamelQuarkusTest +@TestProfile(UseOverridePropertiesWithPropertiesComponentTest.class) +@Disabled //should it work +public class UseOverridePropertiesWithPropertiesComponentTest extends CamelQuarkusTestSupport { + + @Override + public boolean isUseAdviceWith() { + return true; + } + + @BeforeEach + public void doSomethingBefore() throws Exception { + AdviceWithRouteBuilder mocker = new AdviceWithRouteBuilder() { + @Override + public void configure() throws Exception { + replaceFromWith("direct:sftp"); + + interceptSendToEndpoint("file:*").skipSendToOriginalEndpoint().to("mock:file"); + } + }; + AdviceWith.adviceWith(context.getExtension(Model.class).getRouteDefinition("myRoute"), context, mocker); + } + + @Override + protected Properties useOverridePropertiesWithPropertiesComponent() { + Properties pc = new Properties(); + pc.put("ftp.username", "scott"); + pc.put("ftp.password", "tiger"); + return pc; + } + + @Test + public void testOverride() throws Exception { + context.start(); + + getMockEndpoint("mock:file").expectedMessageCount(1); + + template.sendBody("direct:sftp", "Hello World"); + + assertMockEndpointsSatisfied(); + } + + @Override + protected RouteBuilder createRouteBuilder() { + return new RouteBuilder() { + public void configure() { + from("ftp:somepath?username={{ftp.username}}&password={{ftp.password}}").routeId("myRoute") + .to("file:target/out"); + } + }; + } +} diff --git a/poms/bom-test/pom.xml b/poms/bom-test/pom.xml index a74c3286574a..1f56fcdebcb4 100644 --- a/poms/bom-test/pom.xml +++ b/poms/bom-test/pom.xml @@ -117,6 +117,7 @@ camel-quarkus-integration-test-support ${camel-quarkus.version} + org.apache.camel.quarkus camel-quarkus-integration-test-support-mock-backend @@ -354,6 +355,7 @@ test + diff --git a/poms/bom/pom.xml b/poms/bom/pom.xml index 9df32e6c0756..24e95401c0fc 100644 --- a/poms/bom/pom.xml +++ b/poms/bom/pom.xml @@ -5359,6 +5359,12 @@ + + + org.apache.camel + camel-test-junit5 + ${camel.version} + org.apache.camel camel-tooling-model @@ -7240,6 +7246,11 @@ camel-quarkus-influxdb-deployment ${camel-quarkus.version} + + org.apache.camel.quarkus + camel-quarkus-integration-test-support-jvm + ${camel-quarkus.version} + org.apache.camel.quarkus camel-quarkus-iota @@ -8815,6 +8826,7 @@ camel-quarkus-telegram-deployment ${camel-quarkus.version} + org.apache.camel.quarkus camel-quarkus-threadpoolfactory-vertx @@ -10172,92 +10184,92 @@ - - org.l2x6.cq - cq-maven-plugin - - - flatten-bom - - flatten-bom - - process-resources - - - - - - io.quarkus:quarkus-bom - - - - - - org.apache.camel.quarkus:* - ca.uhn.hapi:* - net.openhft:affinity - - - - org.amqphub.quarkus:quarkus-qpid-jms - org.apache.geronimo.specs:geronimo-jms_2.0_spec - - - com.datastax.oss:java-driver-core - com.google.code.findbugs:jsr305 - - - com.datastax.oss:java-driver-query-builder - com.google.code.findbugs:jsr305 - - - io.quarkiverse.minio:quarkus-minio - com.google.code.findbugs:jsr305 - - - software.amazon.awssdk:apache-client - commons-logging:commons-logging - - - io.debezium:debezium-embedded:1.6.1.Final:jar - javax.activation:activation,javax.servlet:javax.servlet-api,log4j:log4j,org.apache.kafka:kafka-log4j-appender,org.apache.kafka:connect-runtime,org.apache.kafka:connect-file - - - org.glassfish.jaxb:jaxb-runtime - jakarta.xml.bind:jakarta.xml.bind-api - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - com.google.http-client:google-http-client - com.google.code.findbugs:jsr305 - - - io.debezium:debezium-embedded - javax.ws.rs:javax.ws.rs-api - - - io.grpc:grpc-netty - com.google.code.findbugs:jsr305 - - - org.apache.httpcomponents:* - commons-logging:commons-logging - - - org.apache.kafka:connect-runtime - javax.activation:activation,javax.servlet:javax.servlet-api,log4j:log4j - - - com.fasterxml.jackson.module:jackson-module-jaxb-annotations - jakarta.activation:jakarta.activation-api,jakarta.xml.bind:jakarta.xml.bind-api - + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - + + + + + diff --git a/tatus b/tatus new file mode 100644 index 000000000000..991274a4e5cb --- /dev/null +++ b/tatus @@ -0,0 +1,24694 @@ +commit 4c86d42af1d4a70985a4986b538edabd18fa7c01 (HEAD -> test-support-POC, upstream/main, upstream/HEAD) +Author: Zheng Feng +Date: Mon Jun 6 09:31:38 2022 +0800 + + Fix #3823 make quarkus-agroal an optional dependency in camel-quarkus-quartz + +commit 3e30082554b3e2f7861f29b02ebe3d7039d9929b +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Thu Jun 2 03:45:15 2022 +0000 + + Updated CHANGELOG.md + +commit 30d4b633d94d01ce95d879a61242d416c91d02f3 +Author: aldettinger +Date: Wed Jun 1 15:37:41 2022 +0200 + + Fix invalid links in the contributor guide doc + +commit d89ce609cb51d27ee8d5dbfdb5f6ce5c9c51fe9f +Author: Amos Feng +Date: Wed Jun 1 19:59:03 2022 +0800 + + Fix #3829 disable checksum validation when testing with quarkus-aws2-s3 client (#3830) + +commit 16029d259fc3a53e4d2cfceb9f8d9fbd87318760 +Author: Peter Palaga +Date: Tue May 31 23:27:03 2022 +0200 + + Better manage FHIR dependencies + +commit 262f760a90f88e7b36aa61130a24908b53764e28 +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Wed Jun 1 03:58:02 2022 +0000 + + Updated CHANGELOG.md + +commit c9cd841c1f9153d51ac38a47411240dfc6730452 +Author: James Netherton +Date: Tue May 31 14:35:47 2022 +0100 + + Increase FHIR container startup timeout to 5 minutes + +commit 267358ca79fa443e4a3bcf55ef8ef2ec3d98d798 (curret-wip) +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Tue May 31 03:39:20 2022 +0000 + + Updated CHANGELOG.md + +commit b9724fd06cb68b600597d42e0c339538434b31a5 +Author: Amos Feng +Date: Mon May 30 19:28:27 2022 +0800 + + Fix #3774 to add tests for openApi oneOf, allOf and anyOf with annotation @Schema (#3818) + +commit 6fcad70a551b0f6a468cee6f3c62a0027b8db00e +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Sat May 28 03:31:31 2022 +0000 + + Updated CHANGELOG.md + +commit 5f19da3d7adfa07915a9891103f139c0440cc252 +Author: Peter Palaga +Date: Wed May 25 20:04:11 2022 +0200 + + net.openhft:affinity included in flattened BOM only on Mac #3788 + +commit a4781adcfe336589c707e86763fff9893c121210 +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Fri May 27 03:39:37 2022 +0000 + + Updated CHANGELOG.md + +commit 0b0a7ff97a3941bd5b4377574564bbc107d46f0a +Author: Amos Feng +Date: Thu May 26 14:25:15 2022 +0800 + + Add zhfeng key (#3814) + +commit 1431d7fb0969ccda68714586ac538b0dec95a762 +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Thu May 26 03:38:54 2022 +0000 + + Updated CHANGELOG.md + +commit 14aef85f2bbe9e3cc11d553105b8aac22ae914c8 +Author: James Netherton +Date: Wed May 25 12:53:16 2022 +0100 + + Remove some superfluous runtime initialized classes from camel-quarkus-support-reactor-netty + +commit 0b5bb7b142eeef5b0d252bd34af5f49dca8ffea9 +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Wed May 25 03:36:47 2022 +0000 + + Updated CHANGELOG.md + +commit f117bdeb41e132137c0f1aeea4d1492e2ac5a24a +Author: James Netherton +Date: Tue May 24 10:21:08 2022 +0100 + + Reinitialize ActiveMQ IdGenerator at runtime to ensure generated id uniqueness + + Fixes #3807 + +commit 1b158916bd6359db4dd1684f03a9303930756c3e +Author: Andrea Cosentino +Date: Mon May 23 18:41:08 2022 +0200 + + Create an Azure Key Vault Extension + +commit c2bf48213cf4d2c35e9d2977ca8992eef44ed8cd +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Tue May 24 03:37:16 2022 +0000 + + Updated CHANGELOG.md + +commit 5186a6f51ff05880ff22057710cf6b60f5683647 +Author: James Netherton +Date: Mon May 23 09:32:02 2022 +0100 + + Add migration guide for the 2.10.0 release + +commit d465a84e9f9faf0bd74becb74bf542906543e1b1 +Author: James Netherton +Date: Mon May 23 11:18:28 2022 +0100 + + Use WireMock for xchange tests + + Fixes #3724 + +commit 13cef38ca8a44fe77172432afb4b769f79978510 +Author: James Netherton +Date: Mon May 23 09:23:32 2022 +0100 + + Add debug JVM only extension + + Fixes #3775 + +commit 5631d86f690c0c61122617e96105ecca00091537 (3759_poolingDS-for-quartz) +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Mon May 23 03:39:06 2022 +0000 + + Updated CHANGELOG.md + +commit 65f583ead558d707e13064b65bb31b53acbb84a8 +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Fri May 20 03:36:06 2022 +0000 + + Updated CHANGELOG.md + +commit 516fc37572d5a93534d2a1ba7127b9aad38aa40d +Author: James Netherton +Date: Thu May 19 11:48:34 2022 +0100 + + Upgrade Camel to 3.17.0 + +commit bc458d7cce9c9550449807dc5991e8eef80f57a8 +Author: James Netherton +Date: Thu May 19 08:49:06 2022 +0100 + + Upgrade Google Cloud Native Image Support to 0.14.1 + +commit 8a159df5b5ef06a136d63ef35272e87bf9f41908 +Author: JiriOndrusek +Date: Tue May 17 13:03:49 2022 +0200 + + Improve camel-quarkus-velocity test coverage #3790 + +commit dc8589db6bc87a7a792ef185816c920e1fb3085f +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Thu May 19 03:40:47 2022 +0000 + + Updated CHANGELOG.md + +commit b5bee95fc7dd3a0b3f4d6c2f673543688af1b4c2 +Author: aldettinger +Date: Mon May 16 16:23:32 2022 +0200 + + Split compression related tests into a test group #3689 + +commit 66c1cc312fe3c9386f95c65658a6428692ed8604 (aws2-sqs-purge) +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Wed May 18 03:38:14 2022 +0000 + + Updated CHANGELOG.md + +commit 57945385bf828965082a006629ce0daa3d523fe7 +Author: James Netherton +Date: Tue May 17 14:28:16 2022 +0100 + + Exclude unwanted Apache Commons dependencies from hapi-fhir-structures-dstu2.1 + +commit 323bd290beff9acc6127704c92edd7ef94387b84 +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Tue May 17 03:41:04 2022 +0000 + + Updated CHANGELOG.md + +commit a08b5fc7c2b420eb6688cb6613184662ed14f941 +Author: James Netherton +Date: Mon May 16 07:38:51 2022 +0100 + + Increase FHIR client socket timeout + +commit 046221302e5b0dfd59af40273824ef40d3a84c39 +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Sat May 14 03:55:53 2022 +0000 + + Updated CHANGELOG.md + +commit 2200e7de3bbc2e603ceb54f5c52cee8a221abbd7 +Author: aldettinger +Date: Fri May 13 09:52:13 2022 +0200 + + file: Add some extra logs to attempt catching info about flakiness #3584 + +commit 0c28fd3638ed63e8a24b54abfdfd277373d7962a +Author: James Netherton +Date: Thu May 12 16:16:14 2022 +0100 + + Remove redundant infinispan-jboss-marshalling from the BOM + +commit f75c5a54c7b465f8f8db51c14fafb4a5cdf6a8c5 (improve-velocity-coverage) +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Thu May 12 03:35:01 2022 +0000 + + Updated CHANGELOG.md + +commit e6a1f3bfbd68b18f3f5b82c12cffd7bc49f36d31 +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Wed May 11 03:38:54 2022 +0000 + + Updated CHANGELOG.md + +commit 284975e96e06bdc682f03d03e08387945647af02 +Author: James Netherton +Date: Tue May 10 12:03:11 2022 +0100 + + Fix failing Slack integration tests with the real Slack service + + Fixes #3781 + +commit 8b090121e051146bb2aedc59b485f063dddbb0ef +Author: James Netherton +Date: Tue May 10 09:50:36 2022 +0100 + + Upgrade Google Cloud Native Image Support to 0.14.0 + +commit 9d8309792c8e8976dca85b74502f5a98c6305307 +Author: Zheng Feng +Date: Tue May 10 17:24:52 2022 +0800 + + Fix #3703 to use valueWithDefault during processing @Producer and @EndpointInject + +commit fbee65b0abbedbb6aa0bb4ab424053f4dd0bc55c +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Tue May 10 03:17:52 2022 +0000 + + Updated CHANGELOG.md + +commit ae9b209af7ec2dab5eb87e6084456f8ff5662adc +Author: Eugene Berman +Date: Wed May 4 12:04:28 2022 -0700 + + Camel Datasonnet Extension + +commit 2a3f0fb882908d47538951f413f47bf23b2d8ddd +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Mon May 9 03:38:17 2022 +0000 + + Updated CHANGELOG.md + +commit 29c124005284a21be05982eb07578376b4c59dca +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Sat May 7 03:24:35 2022 +0000 + + Updated CHANGELOG.md + +commit 69302f8acfcce514f66747cfdde7824f33d827c5 +Author: James Netherton +Date: Fri May 6 09:13:01 2022 +0100 + + Next is 2.10.0 + +commit 313676b8fcaac9ee7cc42dd8359c9db47b8a2a1f +Author: James Netherton +Date: Fri May 6 10:54:40 2022 +0100 + + Fix verification of AWS S3 download links + +commit 6535e5080631e3aa819854494e0333c6f681fc01 +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Fri May 6 03:30:06 2022 +0000 + + Updated CHANGELOG.md + +commit d2f482937dc297c34eebe0d45f36935b2627f4d3 +Author: Zineb Bendhiba +Date: Thu May 5 14:49:43 2022 +0200 + + Handle version of com.datastax.oss:cassandra-driver-core + +commit dd3654d6d770243de4e88890a3390dae33953891 +Author: Zineb Bendhiba +Date: Mon May 2 10:59:27 2022 +0200 + + ⬆️ Upgrade Debezium to 1.9.2.Final + +commit 4f3748f13231eeba519a331cf135fbd5bd3c0266 +Author: aldettinger +Date: Thu Apr 28 18:35:52 2022 +0200 + + paho: add test case for RFC3986 style urls #3758 + +commit 7f56d57da190047a19b371dc3fa4797d8be201cb +Author: James Netherton +Date: Thu May 5 13:14:19 2022 +0100 + + Upgrade Quarkus Qpid JMS to 0.34.0 + +commit 46a166eaa1e23ecf5d4a610b4abc11db0b50974b +Author: JiriOndrusek +Date: Thu May 5 11:44:02 2022 +0200 + + Update of jakarta.mail to 1.6.7 + +commit cfaa8c02532324ee81a57540e51b857edd31b11e +Author: Zineb Bendhiba +Date: Mon May 2 10:53:42 2022 +0200 + + ⬆️ Upgrade Amazon Services to 1.1.1 + +commit adb5994e810a5cafb8c678646a0e12b071c0fe47 +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Thu May 5 03:39:19 2022 +0000 + + Updated CHANGELOG.md + +commit db8077c5785f9220e3267bc32808bdf00ba22365 +Author: Zineb Bendhiba +Date: Mon May 2 10:36:25 2022 +0200 + + ⬆️ Upgrade Optaplanner to 8.20.0.Final + +commit 1d90c0361e1e3d75cf0394e4a0297e1dfb763f9f +Author: James Netherton +Date: Wed May 4 12:41:51 2022 +0100 + + Use DisabledOnIntegrationTest instead of deprecated DisabledOnNativeImage annotation + +commit ac90accf68909868d2989603bbf49fed388a1866 +Author: James Netherton +Date: Wed May 4 12:36:08 2022 +0100 + + Revert "Disable Debezium native build due to #3748" + + This reverts commit 244960f7443dfab73951fe96982caab170170e02. + +commit 6c7e10b534f94623b88de9ce719eb0a2ed04a511 +Author: James Netherton +Date: Wed May 4 12:27:13 2022 +0100 + + Upgrade Quarkus to 2.9.0.Final + +commit d912f95650396a65a30f37ad15c59b8e9374c2fa +Author: James Netherton +Date: Wed May 4 07:53:33 2022 +0100 + + Remove infinispan-core dependency for unsupported InfinispanRemoteAggregationRepository + +commit 900e5e1be3e0d2e12c6285b31e7d7a492d6ee9c2 +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Fri Apr 29 03:39:21 2022 +0000 + + Updated CHANGELOG.md + +commit aef8183bc6347c6b5f6bc740e0e44e927363938a +Author: James Netherton +Date: Wed Apr 27 16:04:58 2022 +0100 + + Ignore rotated quarkus.log files + +commit 244960f7443dfab73951fe96982caab170170e02 +Author: James Netherton +Date: Wed Apr 27 13:52:40 2022 +0100 + + Disable Debezium native build due to #3748 + +commit 2eb971e8c7ba13c0cf3d31ac43a23c8cfbaf4eaa +Author: James Netherton +Date: Fri Mar 25 10:26:49 2022 +0000 + + Upgrade Quarkus to 2.9.0.CR1 + +commit 7288ad870e2673360ec5dff7b481f045f6d03581 +Author: James Netherton +Date: Wed Apr 27 07:58:01 2022 +0100 + + Fix MockEndpoint usage in gRPC tests + +commit 44627fc386c2f31fa4e55bd879bf34d142267833 +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Thu Apr 28 03:59:54 2022 +0000 + + Updated CHANGELOG.md + +commit e7133d574c3bed19c7185d7804b5005d9ced35c6 +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Wed Apr 27 03:40:15 2022 +0000 + + Updated CHANGELOG.md + +commit 02ec4224092c3a9fa902d645ba3c206608ea342e +Author: James Netherton +Date: Tue Apr 26 11:13:02 2022 +0100 + + Avoid usage of com.mchange.io.FileUtils + +commit 089f2f53e0d8396f1691476958661dd79296e8e2 +Author: James Netherton +Date: Tue Apr 26 09:51:41 2022 +0100 + + Minor tidy up of Quartz extension documentation + +commit 60a72e7dfbbe119c95317fa6db83452f96de4782 +Author: James Netherton +Date: Tue Apr 26 09:50:47 2022 +0100 + + Remove c3p0 from Quartz extension + + Fixes #3749 + +commit 3b0b94cb7a3b5ca76a06d8d239b766877bf1fcff +Author: James Netherton +Date: Mon Apr 25 15:49:02 2022 +0100 + + Fix MockEndpoint usage in Infinispan tests + +commit f73ffac899eb25329880834832781e30c64a0094 (3764-update-jakarta-mail) +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Sat Apr 23 03:25:53 2022 +0000 + + Updated CHANGELOG.md + +commit 9a6e2cee2c6625cdf834ed4f292ed099b53b4dd9 +Author: James Netherton +Date: Fri Apr 22 15:38:57 2022 +0100 + + Fix compilation warnings in Azure Vert.x HTTP Client + +commit 3f953b12a1664f19da6a6a5be3cc7e08c92a3b7c +Author: James Netherton +Date: Thu Apr 21 14:49:54 2022 +0100 + + Add missing service include pattern for properties-function + +commit 5d91b8a4734c487b7f08f1e6a4185bd9dc0f4aef +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Thu Apr 21 03:40:32 2022 +0000 + + Updated CHANGELOG.md + +commit 925cf3ba539680781ae3751f7a307eefcfb5a74e +Author: Amos Feng +Date: Wed Apr 20 15:14:34 2022 +0800 + + Fix #3737 to register reflection methods of OpenAPI Schema (#3738) + +commit 9dd2eb3d335ffb6a9fcf13bff0aec6cedc367028 +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Wed Apr 20 03:41:49 2022 +0000 + + Updated CHANGELOG.md + +commit d3ffaa0370ed3645d0345cae1fd643db297b7715 +Author: Zineb BENDHIBA +Date: Wed Apr 20 03:58:42 2022 +0200 + + Telegram integration test : test sending message with customized keyboard (#3735) + +commit 8eb364a27e758136e1a62e4fd165eb4126f1019a +Author: Peter Palaga +Date: Wed Apr 20 03:57:51 2022 +0200 + + Ensure the S3 download link really works (#3734) + +commit 0945027f9fd7841673c21b806c2b6ac9f74dc37e +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Tue Apr 19 03:38:13 2022 +0000 + + Updated CHANGELOG.md + +commit aa7bc2ace94a43d32addbe4ef53dc1a0564ca009 +Author: aldettinger +Date: Tue Apr 12 16:19:31 2022 +0200 + + paho: expand test coverage #3720 + +commit 94716311d6e50ac1414e953491c4cf6c49524a29 +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Sun Apr 17 03:23:11 2022 +0000 + + Updated CHANGELOG.md + +commit 643932febe5646666f663d2aeaa3bfcf04de2e35 +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Sat Apr 16 03:18:22 2022 +0000 + + Updated CHANGELOG.md + +commit 7b1af0ce69916892a500347dfe936592d7ad70ae +Author: Zineb Bendhiba +Date: Wed Apr 13 15:00:06 2022 +0200 + + Azure Storage Queue : add consumer integration tests + Fixes #3718 + +commit 6888709de0242004bd9283045bc62ac362d96cc0 +Author: Zheng Feng +Date: Thu Apr 14 21:14:34 2022 +0800 + + Fix #3730 improve paho-mqtt5 ssl tests + +commit 766b302a1ecc6a197ccaf0b6d712dff0bae5803d +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Fri Apr 15 03:40:48 2022 +0000 + + Updated CHANGELOG.md + +commit ec671ceb29c7479745f26c31ae6c73c970d16f81 +Author: Amos Feng +Date: Fri Apr 15 08:43:18 2022 +0800 + + Fix #3728 AWS S3 integration test should remove all objects in finally block (#3729) + +commit 9a282a5971d9d44d6bd16c9ce11267aa84d25924 +Author: Peter Palaga +Date: Wed Apr 13 10:48:31 2022 +0200 + + Import quarkus-bom in Catalog + +commit 6dfc1384e777ca20bfc0f102a43963a917e1904b +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Thu Apr 14 03:28:57 2022 +0000 + + Updated CHANGELOG.md + +commit ed2e54707875da34633c5aaa9aa3e8e46415bb55 +Author: Peter Palaga +Date: Tue Apr 12 23:50:57 2022 +0200 + + fixup 501833 Fix Aws2KinesisTest.kinesis test #3638 + +commit 8f729f4c91d191ec37b5283ea52c34d4ff45d90f +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Wed Apr 13 03:28:33 2022 +0000 + + Updated CHANGELOG.md + +commit 048f1c2d08c26189e4cc577126824ca6a1da8d36 +Author: Zineb Bendhiba +Date: Fri Apr 8 17:24:48 2022 +0200 + + Azure Storage Queue : increase Producer test coverage + Fixes #3577 + +commit 23e1108eaebabf7920b9245361f6afe8fbdfe387 +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Tue Apr 12 03:25:59 2022 +0000 + + Updated CHANGELOG.md + +commit 171483bdbecc0d1599deb7d3c128e333bd636bb6 +Author: Peter Palaga +Date: Mon Apr 11 14:19:34 2022 +0200 + + Reduce the noise in verbose flattened BOMs #3702 + +commit b570562218cfaefa8a2bbee7ef106e35ebeb6113 +Author: Amos Feng +Date: Mon Apr 11 14:36:33 2022 +0800 + + Fix #3656 Improve camel-quarkus-paho-mqtt5 test coverage (#3709) + +commit 8b5173ef901fa7cf0e460ddee6c6706c758f63a0 +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Sat Apr 9 03:18:47 2022 +0000 + + Updated CHANGELOG.md + +commit 501833a1a4bd6c54bf357200611fbf48ed891283 +Author: James Netherton +Date: Fri Apr 8 15:16:36 2022 +0100 + + Fix Aws2KinesisTest.kinesis test + + Fixes #3638 + +commit 6427a9ab087337e2f2216bb4f8f5c1f1f873783c +Author: James Netherton +Date: Fri Apr 8 14:44:28 2022 +0100 + + Avoid creating serialization config for non-serializable classes + +commit 95d4facb798046742ffe54b5e28db927dbff4825 +Author: Zineb Bendhiba +Date: Thu Apr 7 21:21:42 2022 +0200 + + Add missing build dependency link on Mail Integration tests + +commit 059b04ddd6bd6108a0b8a568c9de62fde8111845 +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Fri Apr 8 03:25:13 2022 +0000 + + Updated CHANGELOG.md + +commit 356c3d79dae0b1e349a4b70dc9a0134150b46b79 +Author: aldettinger +Date: Wed Apr 6 17:14:27 2022 +0200 + + Remove the Camel Quarkus BOM section from the documentation + +commit b1f28c6f89592ee6a026bdd87176e1aae24369f9 +Author: James Netherton +Date: Tue Apr 5 07:17:12 2022 +0100 + + Next is 2.9.0 + +commit c9ef99017819e9eeda496d38d7e6be9417f77ab5 +Author: JiriOndrusek +Date: Thu Apr 7 08:29:08 2022 +0200 + + Auto-generated files + +commit a54d979a24a6b33ba58257a7737cc3eff899b97f +Author: JiriOndrusek +Date: Tue Apr 5 09:48:49 2022 +0200 + + Improve mail test coverage #3674 + +commit 7ab46e495ffdc8596ea9f99f43b2a755f3a119e4 +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Thu Apr 7 03:24:16 2022 +0000 + + Updated CHANGELOG.md + +commit eeed286fd87996c74c69aba31584856f7ec0b985 +Author: Peter Palaga +Date: Fri Apr 1 11:36:43 2022 +0200 + + Ban javax.el:el-api in favor of jakarta.el:jakarta.el-api + +commit 93c13d0cc74eb3b7dab1614facdefe240da00052 +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Wed Apr 6 03:23:32 2022 +0000 + + Updated CHANGELOG.md + +commit 84ee17795fdb46a6b4c0f5890e9ae3ee30fbfe2a +Author: Amos Feng +Date: Wed Apr 6 09:04:38 2022 +0800 + + camel-quarkus-paho: Add reflection config for RandomAccessFile (#3691) + +commit c67b3165b440ecf1d964061f0d45a4b7281f0e6e +Author: James Netherton +Date: Tue Apr 5 15:11:56 2022 +0100 + + Test Azure Blob with autowiredEnabled=false + + Fixes #3694 + +commit 936ed3e9286785b4c1d63f3ab42c09dd2fbbc39a +Author: James Netherton +Date: Tue Apr 5 07:45:20 2022 +0100 + + Use hasItems instead of containsInAnyOrder to verify list of blob containers + +commit 02191fab78a32f259df116544568c558af9b0908 +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Tue Apr 5 03:21:59 2022 +0000 + + Updated CHANGELOG.md + +commit a0e4959114c7aaf9bbd5d68dec1f9bcbdc9ac3db +Author: James Netherton +Date: Sun Apr 3 16:19:09 2022 +0100 + + Upgarde Quarkiverse MyBatis to 1.0.2 + +commit 45e72d100be4f71fa2458e63d08a9de1fd53975a +Author: James Netherton +Date: Sun Apr 3 16:17:42 2022 +0100 + + Upgarde Quarkiverse JGit to 1.2.0 + +commit 8e0138c6b9c2dec90c5e7110d5690c05d0fdbe42 +Author: James Netherton +Date: Sun Apr 3 16:14:20 2022 +0100 + + Upgrade optaplanner to 8.19.0.Final + +commit 4469f68a1b67d317590d1d96d5cbd7556f7ac202 +Author: James Netherton +Date: Sun Apr 3 11:06:37 2022 +0100 + + Upgrade Spring to 5.3.18 + +commit 236fabe25d5873003c626d0c7b4ed5aa54284b22 +Author: James Netherton +Date: Sun Apr 3 10:49:15 2022 +0100 + + Upgrade Quarkus Qpid JMS to 0.33.0 + +commit f71e67e0533d2e30df8a43d96b35da99f7bc032b +Author: James Netherton +Date: Sun Apr 3 10:39:26 2022 +0100 + + Upgrade Quarkus to 2.8.0.Final + +commit 3b15dbaa5430b1581857d14dee3047d421b68841 +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Fri Apr 1 03:34:52 2022 +0000 + + Updated CHANGELOG.md + +commit 451f17f61fde889e329fc00df21caab89065c9fd +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Thu Mar 31 03:21:32 2022 +0000 + + Updated CHANGELOG.md + +commit fd4c29e5291ab6d7885f870f10ed969eda2dcf7c +Author: Peter Palaga +Date: Wed Mar 30 12:48:05 2022 +0200 + + Stop managing Snappy in Spark BOM, as it is now managed in quarkus-bom + +commit 152f91743b6c5a9e50bb2181885915ffb598b79d +Author: James Netherton +Date: Wed Mar 30 09:34:52 2022 +0100 + + Fix potential Azure Blob test failures when testing against the real service + + Fixes #3655 + +commit 4875c67832235f0ce2c2ad9b014788b413b71b3f +Author: Zineb Bendhiba +Date: Mon Mar 14 15:12:04 2022 +0100 + + Kafka Oauth test bump Keycloak container version to 16.1.1 & leverage Strimzi dev services container + Fixes #3531 + +commit 34b1aa7bb5515ed52e1d5abb39b19e81c46e2a76 +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Wed Mar 30 03:24:45 2022 +0000 + + Updated CHANGELOG.md + +commit 8ebe489c7b17ec147865ecb71822e8758d7ac04b +Author: James Netherton +Date: Tue Mar 29 14:54:38 2022 +0100 + + Improve MicroProfile Fault Tolerance extension test coverage + + Fixes #3677 + +commit 80642ad479b06f028d1c74e67ee84eb81f6254f9 +Author: aldettinger +Date: Tue Mar 29 17:00:43 2022 +0200 + + paho: Add test coverage for file persistence #3680 + +commit e08002a0f9ff3ef721105176a81e39fccb784221 +Author: Peter Palaga +Date: Tue Mar 29 15:48:28 2022 +0200 + + Ban various logging backends + +commit 2fea1ee4bbb9807b194c20457c9c749c4c835551 +Author: Peter Palaga +Date: Tue Mar 29 15:12:57 2022 +0200 + + Ban jakarta.json-api in favor of org.glassfish:jakarta.json + +commit 701fa138b3bfa45fa8a04bc5aaf7f1edcc7aac76 +Author: Peter Palaga +Date: Tue Mar 29 15:02:10 2022 +0200 + + Ban javax.enterprise:cdi-api + +commit 561b4252acf2b5307e60884ef0026a5d582e245a +Author: Peter Palaga +Date: Tue Mar 29 14:58:01 2022 +0200 + + Ban org.jboss.logging:jboss-logmanager-jdk and org.jboss.logging:jboss-logmanager + +commit e881e6f00d47a28e8870a7444b4a51c34301af60 +Author: Peter Palaga +Date: Tue Mar 29 14:50:08 2022 +0200 + + Ban jakarta.activation:jakarta.activation-api in favor of com.sun.activation:jakarta.activation + +commit 202c9ab9e206d21dab3b7248bce1b88aa33058b7 +Author: Peter Palaga +Date: Tue Mar 29 13:57:13 2022 +0200 + + Ban javax.ws.rs:javax.ws.rs-api + +commit 47fc9b0c2135e3fa1f090b77f2618d0b7cbab971 +Author: Peter Palaga +Date: Tue Mar 29 13:38:32 2022 +0200 + + Ban javax.websocket:javax.websocket-api + +commit a701ce72d8ebd1af8a242a8b268841cc1b8e7528 +Author: Peter Palaga +Date: Tue Mar 29 13:34:05 2022 +0200 + + Ban javax.xml.bind:jaxb-api + +commit 12ee5c4108b9fc638bde1a14e5943cbec737a674 +Author: Peter Palaga +Date: Tue Mar 29 13:27:08 2022 +0200 + + Ban javax.security.enterprise:javax.security.enterprise-api + +commit 17ab865f53cd73f6291c5b81d8ca861bcf174a6c +Author: Peter Palaga +Date: Tue Mar 29 13:22:24 2022 +0200 + + Ban javax.persistence:javax.persistence-api and javax.persistence:persistence-api + +commit 3889a2b93b5d146d6a8e35eaf7d89b69b1d754c0 +Author: Peter Palaga +Date: Tue Mar 29 13:17:40 2022 +0200 + + Ban org.glassfish:javax.el + +commit 3ddc2cdfccaba795464442aa991563cdebc172f2 +Author: Peter Palaga +Date: Tue Mar 29 13:13:24 2022 +0200 + + Ban org.glassfish:javax.json + +commit 5880c2e557450d433ae2517d35ccfa5da058c74c +Author: Peter Palaga +Date: Tue Mar 29 13:08:07 2022 +0200 + + Ban javax.json.bind:javax.json.bind-api + +commit c2d5927411824c268f90ee2a5bba149d2bdf2d56 +Author: Peter Palaga +Date: Tue Mar 29 13:05:05 2022 +0200 + + Ban javax.json:javax.json-api + +commit 9dbce6a60435655f78a19ca649e281c8fb786154 +Author: Peter Palaga +Date: Tue Mar 29 13:02:03 2022 +0200 + + Ban javax.inject:javax.inject + +commit f625e343a675e1d3c94ba83f4c7bc3fd9375f600 +Author: James Netherton +Date: Tue Mar 29 11:22:33 2022 +0100 + + Update antora.yml to point at 3.16.x branches + + This reverts commit a4664f908041ac11874ec78d8ed3c6c618fb23e9. + +commit d95e9850981c4a6b01cfca257ffde135cfaa8ed7 +Author: Peter Palaga +Date: Tue Mar 29 12:07:20 2022 +0200 + + Ban javax.annotation:javax.annotation-api + +commit 3f070fef53b44d3491a4da56978d8ab00fcf6a1b +Author: Peter Palaga +Date: Tue Mar 29 11:12:18 2022 +0200 + + Ban javax.activation:javax.activation-api + +commit 6ea1e2824f8599747356dec08c3fa122be42c8a6 +Author: Peter Palaga +Date: Tue Mar 29 09:54:19 2022 +0200 + + Ban the same JBoss spec artifacts like Quarkus + +commit 9e1eb0c4b8aa48c432c33fafc6d69dd06301c411 +Author: Claus Ibsen +Date: Tue Mar 29 14:43:14 2022 +0200 + + Revert "Attempt to fix website build. Again" + +commit df8c59cf0537d3a8803c495e50234bf5ded39609 +Author: Claus Ibsen +Date: Tue Mar 29 13:36:33 2022 +0200 + + Attempt to fix website build. Again + +commit 9cfd616c25acf4dd95973629ec244f48febe834b +Author: Claus Ibsen +Date: Tue Mar 29 13:20:37 2022 +0200 + + Attempt to fix website build. Again + +commit 5c2b7386bb40e1f12012be1b75e1338a98f63c9b +Author: Peter Palaga +Date: Tue Mar 29 08:55:13 2022 +0200 + + Fixup Create Camel Google Secret Manager Extension + +commit 6ed6688bd21a4855344500644a0797aaa8f12e5c +Author: Peter Palaga +Date: Mon Mar 28 23:08:56 2022 +0200 + + Ban junit 4 #3354 + +commit 939ada9e6f9a4f234ce98c356c4badf0bcba94cf +Author: Peter Palaga +Date: Mon Mar 28 16:25:06 2022 +0200 + + Ban javax.validation in favor of jakarta.validation #3504 + +commit ef15c62b25f45fa6d6881f60f3e9c29af27257ef +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Tue Mar 29 03:24:19 2022 +0000 + + Updated CHANGELOG.md + +commit ec28e152c1ec5e6f1e25002a185c3cbbcd44fd14 +Author: Peter Palaga +Date: Mon Mar 28 09:46:33 2022 +0200 + + Better control what we manage in our BOM #3302 + +commit de31deca8d74056136d916eb95e49836aadb0657 +Author: Claus Ibsen +Date: Mon Mar 28 21:25:39 2022 +0200 + + Attempt to fix website build. + +commit 02ef9346febdf6f180a08782dfa87898ab33cb65 +Author: Claus Ibsen +Date: Mon Mar 28 20:42:47 2022 +0200 + + Attempt to fix website build. + +commit 9e6c99aafae98117eff8852ef927d85aec1166bf +Author: aldettinger +Date: Thu Mar 24 09:23:04 2022 +0100 + + paho: fix NullPointerException when MqqtException occurs during reconnect attempt in native mode #3671 + +commit 8b5ea74816e81aaca4bfa085dd12641ca1c74724 +Author: Andrea Cosentino +Date: Mon Mar 28 14:21:06 2022 +0200 + + Create Camel Google Secret Manager Extension + +commit 18079c39cf632171d29c4cad419087f2e54621b5 +Author: Andrea Cosentino +Date: Mon Mar 28 14:18:03 2022 +0200 + + Create Camel Google Secret Manager Extension + +commit df40b598c7377a4ad3993898b06d7b89bf6126f8 +Author: Andrea Cosentino +Date: Mon Mar 28 14:17:44 2022 +0200 + + Create Camel Google Secret Manager Extension + +commit fcc7015e29c555e55f312ef1147c14b77654d935 +Author: Andrea Cosentino +Date: Mon Mar 28 13:41:24 2022 +0200 + + Create Camel Google Secret Manager Extension + +commit 23e772c554e1ae046c54a7206cd5e07ed0f2865e +Author: Andrea Cosentino +Date: Mon Mar 28 13:13:46 2022 +0200 + + Create Camel Google Secret Manager Extension + +commit 2f6575aeaa08e50d00acff00642ff1d95ff958ab +Author: Andrea Cosentino +Date: Mon Mar 28 13:08:23 2022 +0200 + + Create Camel Google Secret Manager Extension + +commit ac1d4ebe7b4959785ee915977805dac5fb82001a +Author: Peter Palaga +Date: Mon Mar 28 10:38:09 2022 +0200 + + Revert "Add Camel 3.16.0 staging repository" + + This reverts commit f1a894874139e0d350f961fc8da644abfa4d197b. + +commit b0f2797e04060b3991e302fbb7d17ee79688926b +Author: James Netherton +Date: Fri Mar 25 11:41:59 2022 +0000 + + Add more details about @QuarkusIntegrationTest to the testing guide + + Fixes #3650 + +commit 39d89276211d887a277d0563b61c4cdaa1903c2b +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Sat Mar 26 03:14:12 2022 +0000 + + Updated CHANGELOG.md + +commit 79d628532f2718a5ac07cded2631644d3671c546 +Author: James Netherton +Date: Fri Mar 25 10:54:27 2022 +0000 + + Align com.github.java-json-tools:json-patch version with Camel + +commit 48b516880912362d0512373385aa5316ba442b30 +Author: Peter Palaga +Date: Fri Mar 25 11:26:27 2022 +0100 + + Stop importing io.quarkus:quarkus-bom into camel-quarkus-bom #3302 + +commit d5cdca3c7636a0538d98dddd5db98204e92ff5b7 +Author: James Netherton +Date: Fri Mar 25 13:22:48 2022 +0000 + + Revert "Exclude jboss-marshalling-osgi from infinispan-jboss-marshalling" + + This reverts commit 0364b7b3c6f9469844057104fafc600764800c03. + +commit 7020e1be65adfd1e4ac91df93c06ed7c48d3f833 +Author: Zineb Bendhiba +Date: Wed Mar 23 16:57:10 2022 +0100 + + Azure integration tests - upgrade the setup script + +commit 0364b7b3c6f9469844057104fafc600764800c03 +Author: James Netherton +Date: Fri Mar 25 09:04:26 2022 +0000 + + Exclude jboss-marshalling-osgi from infinispan-jboss-marshalling + +commit 76676820eeba51888c1292002be8bf5bcc955439 +Author: James Netherton +Date: Fri Mar 25 08:11:11 2022 +0000 + + Fix loading of XML routes with routes-include-pattern wildcard + + Fixes #3265 + +commit 62c14ec4760a327b606b876f5780dc518692c5d1 +Author: James Netherton +Date: Thu Mar 24 15:20:44 2022 +0000 + + Improve Infinispan extension test coverage + + Fixes #3658 + +commit f3f4be0a4cef197f1569b925c83d3d6341d4b1e4 +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Fri Mar 25 03:15:49 2022 +0000 + + Updated CHANGELOG.md + +commit 82ebfd453cfec9ad03cde4f425681469b7965e19 +Author: Martin Muzikar <46345469+mmuzikar@users.noreply.github.com> +Date: Wed Mar 23 13:09:52 2022 +0100 + + Fix typo in docs & Added tests for NotNull validator checks + +commit a4664f908041ac11874ec78d8ed3c6c618fb23e9 +Author: James Netherton +Date: Wed Mar 23 15:40:16 2022 +0000 + + Keep antora.yml pointing at 3.15.x until 3.16.0 is released + +commit f1a894874139e0d350f961fc8da644abfa4d197b +Author: James Netherton +Date: Wed Mar 23 13:09:07 2022 +0000 + + Add Camel 3.16.0 staging repository + +commit 5bfa653f89af627d1bb5662775345b54bdf17a0f +Author: James Netherton +Date: Wed Mar 23 15:14:50 2022 +0000 + + Reformat POMs + +commit 25f9ee0d5166d0244af3f89d1869ae7293427da9 +Author: James Netherton +Date: Fri Mar 18 12:22:02 2022 +0000 + + Temporarilly disable Aws2KinesisTest.kinesis due to #3638 + +commit 571e7f0f2c1e9f2056ea11dbe589bd693173cadd +Author: JiriOndrusek +Date: Tue Mar 8 09:44:20 2022 +0100 + + 3579 Improve quartz test coverage + +commit fa1642a0af71382244279a314ca6fcbb6084fc07 +Author: Amos Feng +Date: Fri Mar 11 17:06:30 2022 +0800 + + Fix #3592 add some ReflectiveClassBuildItem for camel-kafka (#3594) + +commit 43641cdbf69f19e9bdd08185dc0d229a89e4c198 +Author: James Netherton +Date: Tue Mar 8 10:50:20 2022 +0000 + + Work around Tika version incompatibilities between Quarkus Tika & Camel Tika #3599 + +commit 295bcaf18e0b84cd7127836672cb03e8c0af32b3 +Author: JiriOndrusek +Date: Mon Feb 21 15:51:05 2022 +0100 + + Test for Debezium mysql - passing additionalProperties results in wrong properties beeing passed #3488 + +commit 381a9459f8ff41d76a4c4349ce028a1b9c6305b6 +Author: James Netherton +Date: Wed Feb 9 11:13:37 2022 +0000 + + Upgrade Camel to 3.16.0 + +commit 539800b08a07a04447794d62f43917fe0ced2652 +Author: James Netherton +Date: Thu Jan 20 07:52:37 2022 +0000 + + Upgrade to Quarkus 2.8.0.CR1 + +commit 99979206baa054d8e8ef36c1b775f3112a6914ba +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Wed Mar 23 03:21:29 2022 +0000 + + Updated CHANGELOG.md + +commit db10322bb8a677158cbabdb2b11ca7fbffc3a577 +Author: Peter Palaga +Date: Tue Mar 22 12:14:07 2022 +0100 + + Avoid compiling regular expressions in loops + +commit 1dceb0557eb7acd0e1a2e7e88cd1f3c39fe86aa0 +Author: James Netherton +Date: Tue Mar 22 07:19:17 2022 +0000 + + Switch from NativeImageTest to QuarkusIntegrationTest + + Fixes #2468 + +commit 10773b92ddb51f7298bdf87d47a8af0f5e7c62ba +Author: aldettinger +Date: Mon Mar 21 18:59:24 2022 +0100 + + file: Ensure FileTest.charset is fixed under Windows #3530 + +commit 8826c399049ae9c84184dd8b01a8d90162bdac7c +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Tue Mar 22 03:19:40 2022 +0000 + + Updated CHANGELOG.md + +commit d8a96ba5699c07765f502f6c7b815ba4525bca99 +Author: Peter Palaga +Date: Mon Mar 21 17:13:12 2022 +0100 + + Tidy geronimo-jms_2.0_spec exclusions + +commit 54125c473225ba649c5a085df52757cf886af487 +Author: aldettinger +Date: Mon Mar 21 16:26:40 2022 +0100 + + file: Rewrite the charset related test #3627 + +commit 3687e39b95c0b5a838702fd73a591a9ed8282382 +Author: James Netherton +Date: Mon Mar 21 11:02:55 2022 +0000 + + Fix registration of consul client API proxy interface + + Fixes #3509 + +commit 5fa53bf7a64d03ce2525dbc88700a301cb73eb4c +Author: Zineb Bendhiba +Date: Tue Mar 1 14:51:27 2022 +0100 + + Slack : fix native support for Webhook URL + add test coverage + Fixes #3541 + +commit 5bc7d3f4609b155f0c58adc87b0542417ec5134e +Author: James Netherton +Date: Fri Mar 18 15:13:51 2022 +0000 + + Fix Gradle native builds for Spring backed extensions + + Fixes #3617 + +commit c226c97dec23b47102553c8bc5395c6940da262f +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Sat Mar 19 03:12:18 2022 +0000 + + Updated CHANGELOG.md + +commit a665ddcff2213dbce29578c1bb9f3a12537f8c25 +Author: aldettinger +Date: Fri Mar 18 17:00:47 2022 +0100 + + Fix the migration guide #3532 + +commit ec1b4adffb18a1182b8918b9465f54ef1dcc731f +Author: aldettinger +Date: Fri Mar 18 16:05:58 2022 +0100 + + Remove ipfs extension #3532 + +commit c7b1b57f6e29d87ee5b16be72b101386a7fe2f4e +Author: aldettinger +Date: Fri Mar 18 15:30:36 2022 +0100 + + Remove weka extension #3532 + +commit 7c9ce0aeed9ce4d9f51d2019e0c224168b1f115d +Author: James Netherton +Date: Fri Mar 18 11:06:10 2022 +0000 + + Upgrade and sync xmlgraphics-commons + +commit 144f3c40d865d355f24e7c2837edb01b2608fa0e +Author: James Netherton +Date: Fri Mar 18 10:11:24 2022 +0000 + + Upgrade cassandra-quarkus-client to 1.1.2 + +commit e835e4c8310f46b45e802b791e4bc4629e6e3442 +Author: aldettinger +Date: Fri Mar 18 10:49:46 2022 +0100 + + Fix release procedure + +commit adba8ab1fc3c5fc70ce89eca3c008a9f038c7f19 +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Fri Mar 18 03:14:32 2022 +0000 + + Updated CHANGELOG.md + +commit 3a9363234195599e361df3e3e367e1177f65caee +Author: Amos Feng +Date: Fri Mar 18 09:27:56 2022 +0800 + + Fix #3432 add a build step to support source location (#3628) + +commit 39808d296678f4dcc37ec054904ad9edb6656f5c +Author: Peter Palaga +Date: Thu Mar 17 12:35:42 2022 +0100 + + Use com.github.java-json-tools:* instead of com.github.fge:* #3632 + +commit ca103a5647af4f16424b18d5894a7923358d2b45 +Author: James Netherton +Date: Thu Mar 17 08:08:31 2022 +0000 + + Upgrade Quarkus to 2.7.5.Final + +commit 025c05c0fcb4f16e7101b3ca5d1a1e7dd335f7e7 +Author: James Netherton +Date: Thu Mar 17 13:21:41 2022 +0000 + + Add 2.8.0 migration guide + +commit 9cb3653f0db39d0918288fdb44a76a55e2ea9b7b +Author: James Netherton +Date: Thu Mar 17 07:59:13 2022 +0000 + + Tidy up DSTU2, DSTU3, R4 & R5 processor classes + +commit 7d49b82585b50230fad0f37c739eedde42a902a4 +Author: James Netherton +Date: Wed Mar 16 13:30:35 2022 +0000 + + Support additional FHIR 2.x versions + + Fixes #3615 + +commit 1efd7d162f1dd81214869667f2efaa8f54c2ff96 +Author: James Netherton +Date: Wed Mar 16 13:28:52 2022 +0000 + + Fixup 63b36f4. Disable FHIR versions not required by default + +commit 230f3b1a54e40b427f0e875d40125a1245adb460 +Author: aldettinger +Date: Thu Mar 17 10:19:44 2022 +0100 + + Fix the antora-playbook.yml link + +commit f2861f0724b0381cdedf76dd6f0931f2b45a3165 +Author: aldettinger +Date: Wed Mar 16 18:07:57 2022 +0100 + + Exclude ipfs from camel-quarkus-test-list #3618 + +commit f7fd8380e8d07222354f54f5c7fe35cc8cfa7e26 +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Thu Mar 17 03:12:56 2022 +0000 + + Updated CHANGELOG.md + +commit 63b36f4b364bf796aad7d9eeb128792ffe9b369e +Author: James Netherton +Date: Tue Mar 15 15:13:50 2022 +0000 + + Disable FHIR versions not required by default + +commit 4898c4247fdd4a3b948b1e7b30e9b8db630d0d44 +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Wed Mar 16 03:14:47 2022 +0000 + + Updated CHANGELOG.md + +commit 26ab5de9065f481dc369579ac00271365ad59b14 +Author: Amos Feng +Date: Wed Mar 16 09:04:30 2022 +0800 + + Fix #3606 to add reflection configs for Schema and its subClasses (#3624) + +commit e60c2f7220d44d8f69e6a7b86a114538dc790e04 +Author: Zineb BENDHIBA +Date: Tue Mar 15 14:01:37 2022 +0100 + + Update integration-tests/slack/README.adoc + + Co-authored-by: James Netherton + +commit f9b58c69d62213a527345080d9f1372c753b2eb5 +Author: Zineb Bendhiba +Date: Mon Mar 14 21:00:29 2022 +0100 + + 📝Slack test : update Readme with new Oauth Configuration and set a channel name that isn't dependent on user slack language + +commit 3224de27abb67e0a3b7f640eefdb8364d15bf319 +Author: aldettinger +Date: Tue Mar 15 13:17:19 2022 +0100 + + Fix cassandraql itests failing on quarkus-platform #3621 + +commit 13fdba10c8044a7797d2c589b6ac8276f8e76346 +Author: James Netherton +Date: Tue Mar 15 10:00:54 2022 +0000 + + Disable flaky GrpcTest.forwardOnError + +commit 7dbf83c7374d9cfdcd17d8a4c0bcf54af259752b +Author: Martin Muzikar +Date: Mon Mar 14 14:43:37 2022 +0100 + + Remote println from SQS test + +commit d50aaefaaff3da0a59e30a567ac50e082eb01eee +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Tue Mar 15 03:12:58 2022 +0000 + + Updated CHANGELOG.md + +commit f9e5fd627dc141914b5433c8b1e913a28ea37ddf +Author: James Netherton +Date: Fri Mar 11 15:41:08 2022 +0000 + + Increase FHIR extension test coverage + + Fixes #3601 + +commit 6d453073443659f0a3b45bdfca81ad6a84184c78 +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Sat Mar 12 03:13:16 2022 +0000 + + Updated CHANGELOG.md + +commit b96a20f23ae7b0dd11fe6afafdb9cb383fc8f0d4 +Author: Zineb Bendhiba +Date: Thu Mar 10 19:11:58 2022 +0100 + + Add azure-servicebus and support-azure-core-http-client-vertx to the Catalog + +commit 6b1e6a50756681d48af795b99b6ce187494515d5 +Author: Zineb Bendhiba +Date: Thu Mar 10 17:02:45 2022 +0100 + + Upgrade Quarkus to 2.7.4.Final + +commit 2c49002c83112fd5c723c16aa09156f0990ded1d +Author: aldettinger +Date: Thu Mar 10 15:43:33 2022 +0100 + + zipfile: complete test coverage #3610 + +commit cb56981f50e04e718dda6dcbb4ceefe8193cdb39 +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Fri Mar 11 03:14:31 2022 +0000 + + Updated CHANGELOG.md + +commit c47252754fe1a6f9134f7dba9c9a03ba01905272 +Author: Zineb Bendhiba +Date: Thu Mar 3 18:49:11 2022 +0100 + + Bump Optaplanner to 8.18.0.Final + +commit a6c9b52dbf18cb58869e028c8b98ed66d607e4e7 +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Thu Mar 10 03:13:23 2022 +0000 + + Updated CHANGELOG.md + +commit c45af8614df9de578dc18ce3f46bdcef29680a7e +Author: aldettinger +Date: Wed Mar 9 18:14:56 2022 +0100 + + Complete the release guide + +commit 5e8ea5b8011481ebfbe0c696ab5ff2c9210edab9 +Author: aldettinger +Date: Wed Mar 9 11:34:12 2022 +0100 + + Fix pom format issue + +commit fdc1ee6b1fbcd6d65e0f32d6ee14875c76b18394 +Author: aldettinger +Date: Wed Mar 9 09:42:07 2022 +0100 + + Next is 2.8.0 + +commit 75a4b1d6d4132b12f610c774a20346cb930f8755 +Author: James Netherton +Date: Tue Mar 8 07:19:23 2022 +0000 + + Add Azure Core HTTP Client Vert.x extension + + Fixes #2196 + +commit 38e18b042d93192a65942f841131e4c82cdc088a +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Wed Mar 9 03:13:00 2022 +0000 + + Updated CHANGELOG.md + +commit 916802cfd43b8d8ac9ae86335d1d2716c9b986cc +Author: aldettinger +Date: Tue Mar 8 16:07:55 2022 +0100 + + Upgrade third party Quarkus extensions prior to release + +commit fec2c11ef3f71e9fa9fea7c40b42aa3ecd97dde4 +Author: Amos Feng +Date: Tue Mar 8 19:38:41 2022 +0800 + + Fix #3553 make beans of InterceptStrategy unremovable (#3593) + +commit b51f6822a4b7b9b00c4438f650c088a018c8e9bb +Author: James Netherton +Date: Tue Mar 8 08:21:31 2022 +0000 + + Merge platform-http-engine tests with platform-http + +commit b549dff7727e75c927e064b8d21041878a782abc +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Tue Mar 8 03:12:22 2022 +0000 + + Updated CHANGELOG.md + +commit 40029d10bfb5f717a602bb2f0c30950217643529 +Author: aldettinger +Date: Mon Mar 7 11:26:17 2022 +0100 + + file: fix a race condition where an exchange is missed due to a call to mockEndpoint.reset() #3584 + +commit 4278b834bb0b87ca84ec8f843754b435611ebb94 +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Sat Mar 5 03:12:40 2022 +0000 + + Updated CHANGELOG.md + +commit 4883774855657eea53afdb395b055023c2aecd3a +Author: aldettinger +Date: Fri Mar 4 17:43:07 2022 +0100 + + Fix warnings in json dataformats itests + +commit a1fb459d6a0a99bb75c0c925d9cd0012d3433cb3 +Author: James Netherton +Date: Fri Mar 4 07:45:44 2022 +0000 + + Remove redundant workarounds for Kotlin compilation on JDK 17 + +commit 33571b9805864df6eacf232ac370afde9a5cca89 +Author: Zineb Bendhiba +Date: Thu Mar 3 19:01:14 2022 +0100 + + Bump Hazelcast client to 3.0.0 + +commit 5c3ea954f5c099131c515c13018d3a103912c0de +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Fri Mar 4 03:14:07 2022 +0000 + + Updated CHANGELOG.md + +commit ba513a7f2187321077e6d3d5be3b04dc87ec77a6 +Author: Peter Palaga +Date: Wed Mar 2 22:37:46 2022 +0100 + + Manage mvel via cq:sync-versions to allow additional consistency checks + +commit 0d91b00d384e6dbc91c4ba28616371ba38a1f784 +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Thu Mar 3 03:13:29 2022 +0000 + + Updated CHANGELOG.md + +commit 4bcc4a1ab4187523620ffaecc4ad1fa9eb2520b1 +Author: Andrea Cosentino +Date: Wed Mar 2 19:16:33 2022 +0100 + + Add Extension for Camel Azure Servicebus + +commit fae0f2fd315b8ee81cedb87de8691af1caea1bd0 +Author: James Netherton +Date: Wed Mar 2 15:56:02 2022 +0000 + + Upgrade Quarkus to 2.7.3.Final + +commit 8681c768ab9e241adaa608e9612de0a1cb350796 +Author: JiriOndrusek +Date: Wed Feb 23 12:01:27 2022 +0100 + + xImprove camel-quarkus-bean-validator test coverage #3567 + +commit 99ddff8841c88612348b8b39043465284aec5404 +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Wed Mar 2 03:12:23 2022 +0000 + + Updated CHANGELOG.md + +commit ff25795df9f344a90b1e89a397358bc4f19af763 +Author: aldettinger +Date: Tue Mar 1 09:06:15 2022 +0100 + + jsonpath: fix different number of ObjectMapper modules between JVM and native mode #3582 + +commit cdaf5193834e16757b3cb2933dc1dadf59e35a92 +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Fri Feb 25 03:12:30 2022 +0000 + + Updated CHANGELOG.md + +commit de2c070894ab424c2b9f1f93c50f5f3b1ac0dad6 +Author: James Netherton +Date: Thu Feb 24 08:58:40 2022 +0000 + + Ensure correct camel-quarkus-examples branch for maintenance branch PRs + + Fixes #3574 + +commit fb9d0948814b97c75b13d5934dd1db649ac1b058 +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Thu Feb 24 03:12:26 2022 +0000 + + Updated CHANGELOG.md + +commit 7b74653ebde068c914a28b3762819bcff227861a +Author: James Netherton +Date: Wed Feb 23 14:38:19 2022 +0000 + + Exclude optional reactor-netty-http-brave + +commit fbc18628c7676acab6704ccaa71552beff7c4795 +Author: aldettinger +Date: Wed Feb 23 15:40:31 2022 +0100 + + Fix JSON keys are unquoted when using writeAsString in native mode #3571 + +commit 71a49e182d4017fd6b257b2788251a188b684f54 +Author: James Netherton +Date: Wed Feb 23 11:10:52 2022 +0000 + + Add quarkus.log to .gitignore + +commit 3f48d9d76998fbaa518c3fdc4b9cd2359f3ebbec +Author: James Netherton +Date: Wed Feb 23 09:19:27 2022 +0000 + + Upgrade Quarkus to 2.7.2.Final + +commit 22f6c4703d37d86c2d17de8eac2349af1708e5b3 +Author: James Netherton +Date: Tue Feb 22 15:10:04 2022 +0000 + + Increase azure-storage-blob extension test coverage + + Fixes #3561 + +commit 6fe10c513aae5337856254c00bb98eca0a6301f3 (toDelete03, toDelete02) +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Wed Feb 23 03:10:36 2022 +0000 + + Updated CHANGELOG.md + +commit c0a0d600465664520ba3b77471365aa96e93cc58 +Author: Peter Palaga +Date: Thu Feb 17 10:06:59 2022 +0100 + + Deprecate AHC and AHC-WS extensions #3558 + +commit 1ab5c18511a3b9b73d483066fe783d851df3b7ed +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Fri Feb 18 03:12:11 2022 +0000 + + Updated CHANGELOG.md + +commit d6c945201450d83b795068b0377d8f7cea6b71f7 +Author: James Netherton +Date: Thu Feb 17 14:23:19 2022 +0000 + + Upgrade Azurite container image to 3.15.0 + +commit 2896547bdeed2078642f7cb2d283bc1d4cab09e9 +Author: Amos Feng +Date: Thu Feb 17 16:09:18 2022 +0800 + + Fix #3551 ban all non-canonical JTA specs artifacts + +commit bf18e48a4d16d560569f796f45a456ddfb6c4390 +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Thu Feb 17 03:12:10 2022 +0000 + + Updated CHANGELOG.md + +commit aec0df132e1bd3fdb0ff8287ff1a4725936324a6 +Author: aldettinger +Date: Wed Feb 16 16:00:36 2022 +0100 + + gson: complete doc and test coverage #3556 + +commit 39de94aa1cd39df411149b79b59a9dc1aea074b3 +Author: James Netherton +Date: Wed Feb 16 09:43:01 2022 +0000 + + Improve available port discovery in tests + + Fixes #3199 + +commit fcdff3738fdc546208db9660a8e5c9a797e171c3 (3488-debezium-mysql-=addition-properties) +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Wed Feb 16 03:12:18 2022 +0000 + + Updated CHANGELOG.md + +commit a7b0531be8522297de1ace754247c81615686719 +Author: Amos Feng +Date: Wed Feb 16 10:20:26 2022 +0800 + + Fix #3548 to exclude geronimo-jta_1.1_spec in camel-activemq (#3550) + +commit 0b7c1fdfb9a52266fb515e7770cdd2aacde622f2 +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Tue Feb 15 03:12:14 2022 +0000 + + Updated CHANGELOG.md + +commit 0c07d1a7d297e52d76f637eba7ba139e5f26f8d3 +Author: James Netherton +Date: Mon Feb 14 08:25:47 2022 +0000 + + Fix link to Quarkus Freemarker docs + +commit 78aaf9dddf2d653a4a89da16c43ef355c1823fe1 +Author: James Netherton +Date: Mon Feb 14 08:13:13 2022 +0000 + + Fixup e72113e send optaplanner test messages asynchronously + +commit e5a49889a1e4cc9413f094f168ea4ff1a496aec4 +Author: aldettinger +Date: Fri Feb 11 17:24:58 2022 +0100 + + Remove freemarker inaccurate documentation + +commit 7f937f9e2163d76f7d8a1eb58f3a77997946d162 +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Sat Feb 12 03:12:07 2022 +0000 + + Updated CHANGELOG.md + +commit ad7aa0f7661865fd70c968bf783b39ded3e96ea5 +Author: Peter Palaga +Date: Fri Feb 11 16:51:42 2022 +0100 + + Deprecate camel-quarkus-spark #3466 + +commit 724d328340006a4d939d2a7a4cf6ad3c11f869ea +Author: Peter Palaga +Date: Fri Feb 11 17:06:58 2022 +0100 + + Honor extension deprecation in Catalog and in documentation + +commit 242bae00e664d152496f09a58b86b8d4f4760edd +Author: James Netherton +Date: Fri Feb 11 15:02:28 2022 +0000 + + Remove duplicate software.amazon.awssdk:iam dependency declaration + +commit e72113e8e67347d057b23dd918ef3a2f9731527e +Author: James Netherton +Date: Fri Feb 11 14:09:57 2022 +0000 + + Poll for optaplanner results to avoid timeouts on slow machines + +commit 64a18af14d43cd7ecd60ed6a80266370aba72cbb +Author: JiriOndrusek +Date: Thu Nov 4 16:19:48 2021 +0100 + + DebeziumMongodbTest skipped tests #3213 + +commit 891a8632571f25176e16f6e3f6752c6aa6f87b27 +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Fri Feb 11 03:09:54 2022 +0000 + + Updated CHANGELOG.md + +commit d640529e956b6c09e07d09f300c0b9495e30cf6b +Author: James Netherton +Date: Thu Feb 10 13:35:17 2022 +0000 + + Disable flaky messaging resequence test on GitHub CI (#2957) + +commit 90ea9cbe49567fe5154a3942ab060f797081fe0d +Author: James Netherton +Date: Thu Feb 10 09:16:36 2022 +0000 + + Upgrade Maven Wrapper to 3.1.0 + +commit dc137fc807ddb456a22e89b251c744d063a18c42 +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Thu Feb 10 03:12:22 2022 +0000 + + Updated CHANGELOG.md + +commit dabf90533f5be3b7ff5b548c35e712644d4fd10d +Author: James Netherton +Date: Wed Feb 9 07:26:13 2022 +0000 + + Run integration tests on Windows + + Fixes #3342 + +commit 86d954aa17e49e8ff4e0fcffa5678e0e0e8a592b +Author: James Netherton +Date: Mon Feb 7 11:03:03 2022 +0000 + + Fix build on windows + + Fixes #1429 + +commit 5c78622d3acc907d55ba13e6e187d74ab2669edb +Author: James Netherton +Date: Mon Feb 7 10:43:19 2022 +0000 + + Add capability to skip testcontainers tests + +commit 74f254a5b74357317e4dd0f96205a78eb59a4711 +Author: James Netherton +Date: Mon Feb 7 15:14:39 2022 +0000 + + Disable FileTest.charset on Windows due to #3530 + +commit 59a06112246848053f1159ea74729f5d14de07ce +Author: James Netherton +Date: Mon Feb 7 10:38:27 2022 +0000 + + Disable CamelMainRoutesIncludePatternWithAbsoluteFilePrefixDevModeTest on Windows due to #3529 + +commit 143ee2153580cca1b4271dfd5b1486fb9a979e92 +Author: Amos Feng +Date: Tue Apr 20 14:12:08 2021 +0800 + + Fix #1384 camel-mybatis native support + +commit 9953f2d5b8799e83c9a4c07ebff64dc8d4316f10 +Author: James Netherton +Date: Wed Feb 9 11:20:23 2022 +0000 + + Sync versions in antora.yml + +commit 12d696ac8133360c443c075d697ef8fcaaa81850 (sql-oracle, 3488_deezium-additional-parameters) +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Wed Feb 9 03:12:10 2022 +0000 + + Updated CHANGELOG.md + +commit 0866f9f8f27b5fa13a73b31cbd0779e58496a967 +Author: Peter Palaga +Date: Mon Feb 7 14:22:46 2022 +0100 + + Incorrect version of quarkus-maven-plugin may be resolved #3520 + +commit 74271cc296fc027bc96ad40f408778a20bce9d9a +Author: Peter Palaga +Date: Tue Feb 8 17:11:29 2022 +0100 + + Upgrade to Quarkus 2.7.1 + +commit 7b31903913fb427d56166e6f075f66fb2520af6d +Author: Peter Palaga +Date: Tue Feb 8 16:43:13 2022 +0100 + + Exclude json-simple from camel-slack, workaround for CAMEL-17619 + +commit 31e416ed7fa4d8f8cf7274a6c58cbb3428ced7d8 +Author: Denis Istomin +Date: Tue Feb 8 18:16:36 2022 +0100 + + #3503 Add xslt.features support + +commit c8c39c0a3dea03a3724b5eb1c13136e05ce66e68 +Author: James Netherton +Date: Tue Feb 8 14:58:04 2022 +0000 + + Work around components with unexpectedly different adoc file names + +commit d65dff2a8aaf779c04d19aa4a97cf46e8f51bf1c +Author: James Netherton +Date: Tue Feb 8 14:16:53 2022 +0000 + + Fix failing RESTOpenAPITest + +commit 5d71f25de1ae1f0d414128334185c25e88358083 +Author: Peter Palaga +Date: Tue Feb 8 13:25:40 2022 +0100 + + Update extension metadata files + +commit e23f1df89eea7a6d9d059b610492d363944a497f +Author: Peter Palaga +Date: Tue Feb 8 12:13:02 2022 +0100 + + Remove IPFS and Weka extensions temporarily, workaround #3532 + +commit 90f3d3f82b670f28dd6b2026403f6dc509f706bc (bad-milp, 3488_debezium-mysql) +Author: James Netherton +Date: Fri Feb 4 14:55:31 2022 +0000 + + Fix groovy antora update script execution + +commit 785dac4ca7d888249a21f427e93bb0e18c44f92e +Author: James Netherton +Date: Tue Feb 1 08:17:51 2022 +0000 + + Disable ConsulIT due to #3509 + +commit e3a41408e5dbabfbde54528ff1c7dacd88b921a4 +Author: JiriOndrusek +Date: Mon Jan 10 13:26:13 2022 +0100 + + deadLetterChannel does not work in BaseRouteBuilder configure method #3436 + +commit 5c29625ee6fd396837a35f864f7dea31b2a57fc6 +Author: Zineb Bendhiba +Date: Wed Dec 22 16:16:52 2021 +0100 + + Upgrade to Camel 3.15.0 + +commit 328c70b2c5b9b05b0eec4925bd46e894df0fb9de +Author: Amos Feng +Date: Mon Feb 7 22:14:29 2022 +0800 + + update usage.adoc + +commit c8db766c2296d909f4157aa44d66fd95caebba0c +Author: Amos Feng +Date: Sat Jan 22 23:34:37 2022 +0800 + + Fix #3251 expose REST DSL services to quarkus openapis + +commit 6cdc2d554d30186216ca91132c6a8d1a97ac22e6 +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Tue Feb 8 03:12:22 2022 +0000 + + Updated CHANGELOG.md + +commit 3f3d307b96e86fa48a27626eed115c44b635d6a5 +Author: James Netherton +Date: Wed Feb 2 14:52:03 2022 +0000 + + Add release guide notes for updating k8s version labels in example projects + +commit b7e7fb7a61f21e1790b63c8f76ba0b354cc07a9e +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Sun Feb 6 03:11:21 2022 +0000 + + Updated CHANGELOG.md + +commit ab74b6fd078935c8b6f4c93e7a29deabe9f086ee +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Sat Feb 5 03:12:46 2022 +0000 + + Updated CHANGELOG.md + +commit 0d8e2b0905024324cb11dc54459c0e6207a6b8ae +Author: James Netherton +Date: Fri Feb 4 14:36:12 2022 +0000 + + Clean up usage of quarkus.test.flat-class-path + +commit 6111679cef631d091056a724f487ccf50e75f758 +Author: James Netherton +Date: Fri Feb 4 14:26:54 2022 +0000 + + Build with Maven 3.8.4 + +commit 0fb2347068ab4e126fea9faabd9a2afdf0281de6 +Author: James Netherton +Date: Fri Feb 4 14:08:17 2022 +0000 + + Expand Cassandra CQL extension test coverage + + Fixes #3514 + +commit 81352df837494af5baa6d92a1ea7fe45981edff9 +Author: James Netherton +Date: Fri Feb 4 14:04:27 2022 +0000 + + Improve SQL extension docs for native mode aggregation repository suppport + +commit 85c263ae6952c79248c2d5490dff916ee6eee686 +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Fri Feb 4 03:11:32 2022 +0000 + + Updated CHANGELOG.md + +commit 96678b7a4cdc0130c85cb22e9ce1fd0b5acfd5d0 +Author: Peter Palaga +Date: Wed Feb 2 22:00:11 2022 +0100 + + Prevent various plugins from resolving commons-logging:commons-logging #3517 + +commit 33ba6b7cfb37f4c6c7525654dc2beae60a1e5872 +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Thu Feb 3 03:10:29 2022 +0000 + + Updated CHANGELOG.md + +commit 906632ccbf13fa2afbf957098fb803bdebfacbf2 +Author: James Netherton +Date: Wed Feb 2 13:18:03 2022 +0000 + + Fix nitrate collection tests on slow machines + +commit bb95384bd745efcc31e9eb851af82034b4bf69ea +Author: James Netherton +Date: Wed Feb 2 07:50:19 2022 +0000 + + Clean up usage of deprecated Quarkus APIs + +commit 48af67fee87b408b09eb120bac90ca6ed5d965dd +Author: James Netherton +Date: Wed Feb 2 09:23:47 2022 +0000 + + Upgrade formatter-maven-plugin to 2.17.1 + +commit 35b68bde25551e020837a5e7cf9ab7c6a033548b +Author: James Netherton +Date: Tue Feb 1 15:21:26 2022 +0000 + + Fix deprecation warnings and typos in csimple extension + +commit 13aa2514f2bd5366f5fae0e9e2d5bb4900a318d2 +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Wed Feb 2 03:09:56 2022 +0000 + + Updated CHANGELOG.md + +commit 32307021344af2b16a433553dd7d5d48b6a268eb +Author: David Jencks +Date: Mon Jan 31 15:36:52 2022 -0800 + + fix update script + +commit 2254061c78ee4500775f174f8ba76c3ad6749aaa +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Tue Feb 1 03:14:17 2022 +0000 + + Updated CHANGELOG.md + +commit 7dc48c42ecfed4562e4eb2e4aa4f3a812af7f409 +Author: Amos Feng +Date: Sat Jan 29 13:43:34 2022 +0800 + + Fix #3496 Ban javax.servlet:javax.servlet-api in favor of jakarta.servlet:jakarta.servlet-api + +commit 644782d4058b8ad895cc7328a2b86b14df076cdf +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Sat Jan 29 03:12:30 2022 +0000 + + Updated CHANGELOG.md + +commit 32ff43157c21ef7f89e49818f13e7982b1d76ffd +Author: James Netherton +Date: Fri Jan 28 09:45:44 2022 +0000 + + Next is 2.8.0 + +commit f1922458dd59a74221ac00288b8e1c067c3ea92a +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Fri Jan 28 03:10:05 2022 +0000 + + Updated CHANGELOG.md + +commit b050497cf55391c416e2886f88c677f16d54f472 +Author: Peter Palaga +Date: Thu Jan 27 16:33:12 2022 +0100 + + Use parametrized groupId for quarkus-maven-plugin so that it is possible + to run our tests with + io.quarkus.platform:quarkus-maven-plugin + +commit 2faae75c712a44b33572bc872808fdb0ceb06ea1 +Author: Peter Palaga +Date: Thu Jan 27 18:19:33 2022 +0100 + + Stop managing artifacts managed in Quarkus BOM + +commit 999e963cc28caf8bac6cb32acdb8fc0734437297 +Author: Peter Palaga +Date: Thu Jan 27 18:03:45 2022 +0100 + + Rely on guava managed in Quarkus BOM (unfortunately without findbugs + exclusion) + +commit 151bad1aafa1010a718862a410658ba9497a08fb +Author: Peter Palaga +Date: Fri Oct 22 18:58:24 2021 +0200 + + Import quarkus-bom before camel-quarkus-bom in tests #3222 + +commit b3d6d4862f4c7bfd75b221406af114ec2e3ba0a5 +Author: James Netherton +Date: Thu Jan 27 10:59:21 2022 +0000 + + camel.main.durationMaxSeconds is not honoured + + Fixes #3394 + +commit b83bdebd7a94bd5b9fef4407374ecc9382faff86 +Author: James Netherton +Date: Thu Jan 27 11:07:26 2022 +0000 + + Upgrade Quarkus Qpid JMS to 0.32.0 + +commit 7ad4a80c4c67801b91edc87e723c571c1f478d10 +Author: James Netherton +Date: Tue Jan 25 15:03:05 2022 +0000 + + Upgrade Camel to 3.14.1 + +commit b586b73c5d1b82d6277544280884cc7e6936605b +Author: aldettinger +Date: Thu Jan 27 12:48:40 2022 +0100 + + Removed the deprecated @BuildTimeAvroDataFormat annotation #2791 + +commit b98a643a525a5619dace9094064c976340f9ead2 +Author: Peter Palaga +Date: Wed Jan 26 21:43:15 2022 +0100 + + CVE-2020-8908 guava: local information disclosure via temporary directory created with unsafe permissions #3494 + +commit ec5ea466594c719db1bce40e4b3d26765c0134a2 +Author: James Netherton +Date: Thu Jan 27 08:25:33 2022 +0000 + + Update min-maven-version in antora.yml + +commit fb128d7ffcf4316de91ff47dfc03a2a613fc0488 +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Thu Jan 27 03:11:22 2022 +0000 + + Updated CHANGELOG.md + +commit ad3283f0ceb8f3e89ee166df199eedbd38abdb5c +Author: Peter Palaga +Date: Wed Jan 26 18:56:56 2022 +0100 + + Require Maven 3.8.1+ to build Camel Quarkus + +commit e783b844f27feeb93659df56968ed451efa6151d +Author: Peter Palaga +Date: Wed Jan 26 16:45:33 2022 +0100 + + Manage camel-quarkus-catalog in camel-quarkus-bom to allow Camel K to + use Quarkus Platform BOMs #3347 + +commit dc5b6c49ef91e7ba53b7493a2369aa6dd20c83cd +Author: James Netherton +Date: Wed Jan 26 15:20:59 2022 +0000 + + Upgrade Quarkus to 2.7.0.Final + +commit 3b9e5ce3d43befd0e4599ed8a8b19b9f6cd044ce +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Wed Jan 26 03:12:47 2022 +0000 + + Updated CHANGELOG.md + +commit 9714a1635358ce7181f23eda03e616805cfe6386 +Author: Peter Palaga +Date: Tue Jan 25 14:19:49 2022 +0100 + + jackson-asl can have a different from jackson1 version on some occassions #3302 + +commit e28af49dd40706921249f12d768975e8f88f845e +Author: Peter Palaga +Date: Tue Jan 25 13:59:22 2022 +0100 + + Manage ca.uhn.hapi:hapi-base for more determinism accross extensions + #3302 + +commit 1389b06727f5a6e86015a6bba32c1dc76b6ab893 +Author: Peter Palaga +Date: Mon Jan 24 17:12:28 2022 +0100 + + Manage all Camel artifacts we depend on #3302 + +commit 1490868f0f139eb3d8e0dea336940d5fff5fdf55 +Author: James Netherton +Date: Tue Jan 25 07:16:38 2022 +0000 + + Remove quarkus.camel.main.enabled configuration property + + Fixes #3446 + +commit 7936c0a6263893e10b61cdefd85aef292becaf32 +Author: Zineb Bendhiba +Date: Mon Jan 24 16:50:49 2022 +0100 + + 📝 Update Salesforce doc, with more details on setting developer account + +commit d378bf9b85fc30b6bfc639b93c18ca6a9ce17c6b +Author: Zineb Bendhiba +Date: Mon Jan 24 17:34:38 2022 +0100 + + Bump Optaplanner to 8.16.0.Final and enable CI tests + Fixes #3483 + +commit 097daebc5694b8a9641ebb6e5c907d4710e0022e +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Tue Jan 25 03:12:16 2022 +0000 + + Updated CHANGELOG.md + +commit f8f6cf35e2aab2d46e9fe68f43411a319b835449 +Author: David Jencks +Date: Sat Jan 22 13:09:44 2022 -0800 + + RI-table compatibility table + +commit a1157e61e0366a304c25fd7db142512fef473421 +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Sat Jan 22 03:12:37 2022 +0000 + + Updated CHANGELOG.md + +commit 55ed125d09bb86c394370fc78af31f729ab2b72d +Author: James Netherton +Date: Fri Jan 21 14:35:33 2022 +0000 + + Add NOTE section for smallrye-reactive-messaging usage docs + +commit 1002e74c8759ce189c8062fff8bd8a4c49a344bf +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Fri Jan 21 03:12:19 2022 +0000 + + Updated CHANGELOG.md + +commit 73ffc7ef7f8882f0ba49bb89d8f7bfbe233a5f82 +Author: James Netherton +Date: Thu Jan 20 07:18:02 2022 +0000 + + Avoid creating CamelBeanBuildItem for health checks if they are disabled + + Fixes #3470 + +commit fc97c4b6bdabf751c54d1cc5da6cff3a7a9d276d +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Thu Jan 20 03:12:19 2022 +0000 + + Updated CHANGELOG.md + +commit 0d0f0f1cbad8aecc843df3f067bb82f6444ad669 +Author: Freeman Fang +Date: Thu Dec 23 12:08:42 2021 -0500 + + java.lang.UnsatisfiedLinkError: no awt in java.library.path in native tests + +commit c060ee300cd9b7a2dca3ac77830a63446cb7ff34 +Author: Freeman Fang +Date: Tue Dec 21 15:58:04 2021 -0500 + + Upgrade Quarkus to 2.7.0.CR1 + +commit ce20ec1df02e339a2366be888ecb999c75b4aa74 +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Wed Jan 19 03:12:10 2022 +0000 + + Updated CHANGELOG.md + +commit 080bdedc9e3d620d49a9010cdde5c7592e680325 +Author: Zineb Bendhiba +Date: Tue Jan 18 15:38:13 2022 +0100 + + 📝 Improve documentation on setting up the Salesforce developer account + +commit 3f0f0c7d1ece58e46c50a8e36f8728e98c6fba13 (james/main) +Author: Zineb Bendhiba +Date: Tue Jan 18 12:46:30 2022 +0100 + + Update Salesforce Integration tests to Salesforce API upgrade + +commit ca8ad1c1b41a70b77abd1a0451dd6b30c56253bf +Author: JiriOndrusek +Date: Mon Jan 17 12:59:32 2022 +0100 + + Refactor aws2-quarkus-client-ddb(s3) by copying files (not duplicating) #3236 + +commit 6cad4cc7c9d0c46ac0d6ef92af1c4cb7f3557e3f +Author: Peter Palaga +Date: Mon Jan 17 23:21:22 2022 +0100 + + Ban netty-all #3464 + +commit a2017c872e38540b926c42fc2dc44e4ba95ba7b9 +Author: JiriOndrusek +Date: Wed Jan 12 16:12:18 2022 +0100 + + aws2-quarkus-client Verify that no client except quarkus one is used during test #3447 + +commit 193d8d355b5ae37c0152f6d44a74707e1f1aebc1 +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Tue Jan 18 03:12:33 2022 +0000 + + Updated CHANGELOG.md + +commit 3fdf72308791bc6bf37c877d5f40b952a8594659 +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Sat Jan 15 03:12:47 2022 +0000 + + Updated CHANGELOG.md + +commit 4b8f4d2f0e567cf478a101dbde2c1dccfb4527df +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Fri Jan 14 03:12:06 2022 +0000 + + Updated CHANGELOG.md + +commit 5dbb2cabc2669393985efab0192e48a59ebc13fe +Author: aldettinger +Date: Wed Jan 5 10:49:43 2022 +0100 + + Make local maven settings applied to surefire plugin so that Quarkus could build the application model accordingly + +commit e1eba15595adf22c43a130b9581788ff78e77e12 +Author: James Netherton +Date: Thu Jan 13 08:17:06 2022 +0000 + + Add 2.7.0 migration guide + +commit 6d161fc74af7b243413284587ccc61eccd3d3852 +Author: James Netherton +Date: Wed Jan 12 15:35:01 2022 +0000 + + Remove vertx-kafka extension + + Fixes #3358 + +commit 04ea0636506c2d7504fbb83cb992262ae5e5e963 +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Thu Jan 13 03:12:59 2022 +0000 + + Updated CHANGELOG.md + +commit 8f3eb2118fa02a5e95074cc512008cf0f6721997 +Author: Peter Palaga +Date: Wed Jan 12 17:05:16 2022 +0100 + + Ban log4j 1.x #3451 + +commit d1dc1057f5c0370be2ffafccaf442f6893d0f7d0 +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Tue Jan 11 03:12:22 2022 +0000 + + Updated CHANGELOG.md + +commit 84338e6d41e9f66277a98142a5018a41a02c0def +Author: Aurélien Pupier +Date: Mon Jan 10 10:14:37 2022 +0100 + + Fix description of extension core runtime + + Signed-off-by: Aurélien Pupier + +commit 717793aea97e41e9b3368f9d04fe29c165e689c4 +Author: James Netherton +Date: Mon Jan 10 08:54:45 2022 +0000 + + Avoid usage of deprecated io.quarkus.arc.AlternativePriority + +commit 18896ef19aa344a926839635dcc9747bcc43b7e0 +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Sat Jan 8 03:13:06 2022 +0000 + + Updated CHANGELOG.md + +commit 40ea0df4d009e7f56178ed354034d6ad6e175597 +Author: James Netherton +Date: Fri Jan 7 13:27:27 2022 +0000 + + Add test coverage for OpenTelemetry WithSpan annotation + +commit 2de05581a78444f5fab1b85a4e043a149a75efef +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Wed Jan 5 03:13:29 2022 +0000 + + Updated CHANGELOG.md + +commit 288bcd051b33c5c0419455ff5f2ce92625933ad4 +Author: aldettinger +Date: Mon Jan 3 17:23:05 2022 +0100 + + Setup a reproducer showing that camel.main.durationMaxSeconds is not honoured #3394 + +commit 7bce4daf061558cbb9534055da6c27a5eb2d8835 +Author: James Netherton +Date: Tue Jan 4 15:32:24 2022 +0000 + + Exclude commons-logging from htmlunit-driver + +commit b660cc65fa331d3afa990d737a9e63e6cfdbd16c +Author: James Netherton +Date: Tue Jan 4 14:46:59 2022 +0000 + + Fix timestamp validation in syslog integration tests + +commit 0d04362a6ec5227659ed49c7a7d4a0b1f198eff0 +Author: James Netherton +Date: Tue Jan 4 10:43:57 2022 +0000 + + Add test coverage for Quarkus SecurityIdentity & Principal in platform-http routes + + Fixes #3353 + +commit e37ecd9cd48aa330d93f5a8f7b79952e9e33aa9a +Author: James Netherton +Date: Tue Jan 4 10:43:49 2022 +0000 + + Restore maven-compiler-plugin source & target properties for intellij + +commit d6d5aa58d630e2491f6129146d2d7017bf0a5a72 +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Tue Jan 4 03:12:28 2022 +0000 + + Updated CHANGELOG.md + +commit 0919aad8e26a7413b8f993dca57a374a8a036364 +Author: Zineb Bendhiba +Date: Fri Nov 19 10:44:01 2021 +0100 + + Bump Optaplanner version to 8.14.0.Final + +commit 55fd4acabd102233e9f23b3d512848e465476561 +Author: aldettinger +Date: Mon Jan 3 13:29:55 2022 +0100 + + Explicit that the cron extension should be used in conjunction with another extension offering an implementation + +commit 6d95db3e2794ecb75aa5f7f4bcb0daaf1f93c31a (main) +Author: David Jencks +Date: Sun Jan 2 21:28:46 2022 -0800 + + RI info + +commit d803805422e831d29a7b863e83168bc82623cb6a +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Fri Dec 31 03:11:38 2021 +0000 + + Updated CHANGELOG.md + +commit 44943f02274f75ba530449a74b1e13e2fceb2887 +Author: David Jencks +Date: Mon Dec 27 19:54:59 2021 -0800 + + update to docs local build v2 + +commit 5de53f019d32d6217f1e0237bb88923b0c630e96 +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Sat Dec 25 03:11:35 2021 +0000 + + Updated CHANGELOG.md + +commit 7ce5eba1e6a09d43b0b4e4415131a0e5a4eddfeb +Author: Andrea Cosentino +Date: Thu Dec 23 21:29:55 2021 +0100 + + Added Json-Patch Extension + +commit 7e6a9ce48cda57b96ec8db9df09492ccebc80257 +Author: Andrea Cosentino +Date: Thu Dec 23 18:31:55 2021 +0100 + + Added Json-Patch Extension + +commit c5dc28b4774b6b3e5d24f63b937d71ec741d0b39 +Author: Andrea Cosentino +Date: Thu Dec 23 18:18:05 2021 +0100 + + Added Json-Patch Extension + +commit 6f5b6b78fca0cdd16e19dce68814dd5ce9eec770 +Author: Andrea Cosentino +Date: Thu Dec 23 15:35:04 2021 +0100 + + Added Json-Patch Extension + +commit 0f8244543925e673e51ef54ee18e37f0cd104509 +Author: Andrea Cosentino +Date: Thu Dec 23 15:30:53 2021 +0100 + + Added Json-Patch Extension + +commit 189af5fc6bafcb6365789829cc49860a6879f6b6 +Author: Andrea Cosentino +Date: Thu Dec 23 08:11:38 2021 +0100 + + Added Json-Patch Extension + +commit 2d5f335636877ef560ad35977b2c5de88ca26278 +Author: Zineb Bendhiba +Date: Thu Dec 23 12:44:38 2021 +0100 + + Manage Eclipse jgit version and jzlib version + Fixes #3414 + +commit 5e674dc1285b68634c5b0093050d4e836a8dd186 +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Fri Dec 24 03:11:19 2021 +0000 + + Updated CHANGELOG.md + +commit caaa116d78fd90ea695dbbf3c92d850a3863fa41 +Author: Zineb Bendhiba +Date: Thu Dec 23 10:57:52 2021 +0100 + + 📝Add released branch to official documentation + +commit 4decca82a9866466047b1f1e075ae2840b79d53b +Author: Zineb Bendhiba +Date: Thu Dec 23 07:40:34 2021 +0100 + + Force Bouncycastle dependency bcutil-jdk15on version + +commit 32467ec88de2414f0694ad279b6019b1ec856a13 +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Thu Dec 23 03:11:21 2021 +0000 + + Updated CHANGELOG.md + +commit d44ee757432550ed773ede46751a32c027207c30 +Author: Zineb Bendhiba +Date: Wed Dec 22 15:35:08 2021 +0100 + + 📝 Use Quarkus Platform Maven Wrapper + +commit 5f9ba6421984288965a2198e654e6f80324d2281 +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Wed Dec 22 03:09:14 2021 +0000 + + Updated CHANGELOG.md + +commit b6383e20941af54be9da5aa5ac0d442b8a255dcb +Author: Peter Palaga +Date: Tue Dec 21 18:37:14 2021 +0100 + + ⏪️ Revert software.amazon.awssdk:apache-client dependency override + Fixes #3366 + +commit c4b683f09e74f9947b5c3f3e946c0083a026aedc +Author: Peter Palaga +Date: Tue Dec 21 18:37:05 2021 +0100 + + Ban commons-logging and commons-logging-api #3405 + +commit 5cdc096c164db77480714e603174691f82ab5b20 +Author: Peter Palaga +Date: Tue Dec 21 17:36:48 2021 +0100 + + Upgrade to quarkiverse-amazonservices 1.0.2 + +commit ae2ded101723dce551f874bccb66b57b71f5a330 +Author: Zineb Bendhiba +Date: Tue Dec 21 15:03:31 2021 +0100 + + Next is 2.7.0 + +commit 4a5c25b4f9f593ba63a5e28e86752e7a17fa4726 +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Tue Dec 21 03:11:42 2021 +0000 + + Updated CHANGELOG.md + +commit d19a0f5fc9fbd244aa58816e47691581860ced6c +Author: David Jencks +Date: Sat Dec 18 21:36:11 2021 -0800 + + try to prevent license check plugin from objecting to generated yml files + +commit 4554d9c7c278de7e93d43b4f4fb224d4e1df574d +Author: David Jencks +Date: Sat Dec 18 17:51:40 2021 -0800 + + add generated yml + +commit 789022d192bdb0e580178fa06fa43565360ec4cc +Author: David Jencks +Date: Sat Dec 18 17:51:12 2021 -0800 + + remove outdated generated partials + +commit c0fab16ac3416229dc73e368602d148e17d71b19 +Author: David Jencks +Date: Wed Dec 15 18:51:32 2021 -0800 + + base component tables on yml rather than attributes + +commit 72271073ab91fa61dc54830fda374ca14939367f +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Sun Dec 19 03:12:18 2021 +0000 + + Updated CHANGELOG.md + +commit 87e3759aa584dc2a8fb97a72fe4af631437c4aca +Author: James Netherton +Date: Thu Nov 18 07:31:39 2021 +0000 + + ⬆️ Upgrade Camel to 3.14.0 + +commit 4b4228e5df8dc74d281df1dd4d9badd143f3b6ca +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Sat Dec 18 03:11:43 2021 +0000 + + Updated CHANGELOG.md + +commit 393a026f3dfab371da7da311709184a4a193412c +Author: Zineb Bendhiba +Date: Fri Dec 17 15:33:09 2021 +0100 + + ⬆️ Upgrade Tika version + +commit 4e3943315ba6db26caf6e5eec10e2e17024198ee +Author: Zineb Bendhiba +Date: Fri Dec 17 14:01:20 2021 +0100 + + Upgrade Quarkiverse jgit and Amazon services + +commit e599e23cad5b1b2c7ba6dbfa860068e5ddbfaff3 +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Fri Dec 17 03:11:09 2021 +0000 + + Updated CHANGELOG.md + +commit 43cede1eca3fc257387ba448b371228df9669044 +Author: David Jencks +Date: Tue Dec 14 16:49:12 2021 -0800 + + local build setup + + fix tooling enough so it doesn't break build + +commit e4b94bf5aa18a9e367e9c01046d0a4628e071503 +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Thu Dec 16 03:11:43 2021 +0000 + + Updated CHANGELOG.md + +commit f021cd2f830f0feacdb887de75145cfee27cded8 +Author: Zineb Bendhiba +Date: Wed Dec 15 16:17:30 2021 +0100 + + ⬆️ Upgrade kotlin to 1.6.10 + +commit 5a8fc4835cdb4b8f4b9fe4c361d9f75313d57071 +Author: Zineb Bendhiba +Date: Wed Dec 15 14:54:44 2021 +0100 + + ⬆️ Upgrade Quarkus 2.6.0.Final + +commit a726c53249e33ad2018cf36103fd6d7ae8988ff8 +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Wed Dec 15 03:11:16 2021 +0000 + + Updated CHANGELOG.md + +commit cf55c4fba1110fbcbab4268c5a17a92b2391eb17 +Author: JiriOndrusek +Date: Fri Nov 5 13:29:09 2021 +0100 + + Sql doc update because of the failure with external oracle database #3256 + +commit 79bd140673d49447aa6ff7b7a54aa38c70b22f8d +Author: aldettinger +Date: Mon Dec 13 16:23:22 2021 +0100 + + protobuf: Missing method "getName" when using contentTypeFormat=json in native mode #3382 + +commit 5f83427d3c0330c7ed0db0cf3ffcea8c687669b4 +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Tue Dec 14 03:11:10 2021 +0000 + + Updated CHANGELOG.md + +commit a8a1c289ae04b043422f9b1f329e39cadd526ef4 +Author: Zineb Bendhiba +Date: Mon Dec 13 16:59:13 2021 +0100 + + ⬆️ Use the Quarkus Artemis BOM and upgrade to 1.0.2 + Fixes #3381 + +commit e9705ebe5101fce957a63d2525cc6d22ecbecd8c +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Mon Dec 13 03:11:19 2021 +0000 + + Updated CHANGELOG.md + +commit 6731c512c557e567fe916cd68f40afb143fce1b7 +Author: Amos Feng +Date: Mon Dec 13 08:49:59 2021 +0800 + + Fix #3374 to use File.separatorChar when get fqcn from generated … (#3380) + + * Fix #3374 to use File.separatorChar when get fqcn from generated xslt class files + + * Fix XmlTest to work on Windows + +commit 54cced2767dfcc82e984d42fe18e271c45d4e1b6 +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Sun Dec 12 03:09:28 2021 +0000 + + Updated CHANGELOG.md + +commit 828aff810d918a04f227f07fde047fea0093e425 +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Sat Dec 11 03:11:10 2021 +0000 + + Updated CHANGELOG.md + +commit 312dfd7177b88268372d86d48ff58706270fbbf5 +Author: Peter Palaga +Date: Fri Dec 10 14:51:05 2021 +0100 + + Ban log4j-core and log4j-slf4j-impl #3377 + +commit 0a8934d8582521b8eecd4802e84c5d6f81560781 +Author: Peter Palaga +Date: Fri Dec 10 14:22:50 2021 +0100 + + Sort bannedDependencies alphabetically + +commit a137cae26c6173c1137cf4c9e48cb454a9b1be64 +Author: Peter Palaga +Date: Thu Dec 9 18:16:59 2021 +0100 + + Remove com.amazonaws:aws-java-sdk-swf-libraries from the BOM #3375 + +commit 5b7236c9eca322eb486dfb6210a4a54ff0bbd91b +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Fri Dec 10 03:11:19 2021 +0000 + + Updated CHANGELOG.md + +commit 77cee8366620ca5e774c38080b8cf9b98027a4da +Author: James Netherton +Date: Thu Dec 9 10:23:00 2021 +0000 + + Ensure consistent version of software.amazon.awssdk dependencies + +commit 274610ea2e58e9e446c89f4903edc44fb6604545 +Author: Peter Palaga +Date: Thu Dec 9 12:28:28 2021 +0100 + + Exclude maven-artifact from camel-quarkus-debezium-mongodb #3372 + +commit 895a6f0b28fc76c09f1e13ead6f04315ca4f60ec +Author: Zineb BENDHIBA +Date: Thu Dec 9 14:06:06 2021 +0100 + + ✅ Test AWS2 SQS in isolation (#3352) + + Fixes #2606 + +commit 17c21667c56e70869a0ef3114c287a9e7cd047f3 +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Thu Dec 9 03:11:20 2021 +0000 + + Updated CHANGELOG.md + +commit d5ddf9b25fdfbacd5ff5d77d284ceb72745ee221 +Author: James Netherton +Date: Mon Dec 6 16:21:36 2021 +0000 + + Disable vertx-kafka integration tests and native build due to #3358 + +commit 2fff5065480ecbf79f0ea7b0c8fffd17fbb8ca8a +Author: James Netherton +Date: Thu Nov 11 14:04:24 2021 +0000 + + Upgrade Quarkus to 2.6.0.CR1 + +commit be247062ab1c00e25f2c281fe2e717e02d94ec4c +Author: James Netherton +Date: Wed Dec 8 13:47:45 2021 +0000 + + Use yq installed on the GitHub actions VM instead of downloading and installing it + + Fixes #3355 + +commit 0a41fa9a6f0c5c19224729f4f3dbb61b4435deac +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Wed Dec 8 03:12:09 2021 +0000 + + Updated CHANGELOG.md + +commit c36f034aa75f9385e5c99c1002705a5927b9b5e1 +Author: Peter Palaga +Date: Tue Dec 7 15:38:05 2021 +0100 + + Ban javax.enterprise:cdi-api in favor of jakarta.enterprise:jakarta.enterprise.cdi-api #3364 + +commit d9b99216b9328c89fd6f4c96fdc2e34c98bcb343 +Author: Peter Palaga +Date: Tue Dec 7 15:23:19 2021 +0100 + + Ban geronimo-jms_*_spec #3363 + +commit 9902f21d38c7e4d203cac7680c0dbf7325623738 +Author: Peter Palaga +Date: Tue Dec 7 14:28:27 2021 +0100 + + Ban com.sun.activation:javax.activation #3361 + +commit 554ace1ee8cf470c90f2d456aaf4117a099d7563 +Author: Peter Palaga +Date: Tue Dec 7 13:41:16 2021 +0100 + + Workaround for NoSuchFileException: .../target/classes when executing a + codegen task https://github.com/quarkusio/quarkus/issues/21718 + +commit 3c9fc9cd9b142b21686c694d4b67e5dc0063c112 +Author: Freeman Fang +Date: Fri Nov 26 10:56:33 2021 -0500 + + fix [JDK17]kudu:integration test failed in native mode #3340 + +commit 5793c90c4101204cac160e93dc1a324c78b24fbc +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Tue Dec 7 03:12:22 2021 +0000 + + Updated CHANGELOG.md + +commit 914b38ffd16bb54894c3414cba4e5935a76f0e29 +Author: aldettinger +Date: Thu Dec 2 18:09:40 2021 +0100 + + Fix AWS Lambda failing itest #3356 + +commit e5bdd8227bf084a6160780c574bae7aaf71ee33a +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Thu Dec 2 03:12:21 2021 +0000 + + Updated CHANGELOG.md + +commit 46e33bf46e2c63a29b0506b834071fc89d0370d4 +Author: James Netherton +Date: Wed Dec 1 08:08:10 2021 +0000 + + Fix bash syntax error in CI integration tests step + +commit cb9c92008820642be374fa136f9b53a4677777d6 +Author: Zineb BENDHIBA +Date: Wed Dec 1 10:30:18 2021 +0100 + + :white_check_mark: Kafka Oauth Integration test with Strimzi and Keycloak (#3336) + + Fixes #2872 + +commit ed6675fa1f08e646e08daf7dc78dbed6912af008 +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Wed Dec 1 03:11:23 2021 +0000 + + Updated CHANGELOG.md + +commit 44c0eff343674ea9d8bfa40e1d1c479da298d405 +Author: James Netherton +Date: Tue Nov 30 09:43:55 2021 +0000 + + Avoid hard coding Bindy resource path for NativeImageResourceDirectoryBuildItem + + Fixes #3348 + +commit 5c269bdc42377988d89925afd005400fb2d49977 +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Sat Nov 27 03:11:10 2021 +0000 + + Updated CHANGELOG.md + +commit ca22f2d2cec82c36435aa23add73e43000f639b2 +Author: James Netherton +Date: Fri Nov 26 10:28:47 2021 +0000 + + Fix misalignment of protobuf dependencies + +commit f9f97cdf0725de1e92dafb29ad406a1ae93fd843 +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Fri Nov 26 03:11:29 2021 +0000 + + Updated CHANGELOG.md + +commit 958e2f6a5de380f7da755ada78ede5c367b227ce +Author: Peter Palaga +Date: Thu Nov 25 17:04:04 2021 +0100 + + Ban com.google.code.findbugs:jsr305 unconditionally #3335 + +commit f2be8e5283840e183448b7ecbc02e3773bc583c3 +Author: James Netherton +Date: Thu Nov 25 08:36:45 2021 +0000 + + Remove camel-quarkus-support-common + + Fixes #3243 + +commit 85665e971b43ba5662b009b8f8696a09ad677b8f +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Thu Nov 25 03:12:12 2021 +0000 + + Updated CHANGELOG.md + +commit 29e55dc8f9195203f6936f08cd4d28bb05e5718e +Author: James Netherton +Date: Wed Nov 24 10:33:03 2021 +0000 + + Add manifest to camel-quarkus-support-spring source JARs + + Fixes #3321 + +commit 73211f2d0fc44d7517440380e94e551934bbc189 +Author: JiriOndrusek +Date: Mon Nov 22 15:27:38 2021 +0100 + + Sql test using derby doesn't start dev service and shows class loading issue if stored procedure is called #3260 + +commit 4a9a5612ae55d8d8bc61e5b1140ee3d63ad3d03d +Author: James Netherton +Date: Wed Nov 24 11:36:18 2021 +0000 + + Verify that kafka.bootstrap.servers property is available before attempting to use it for dev services + + Fixes #3329 + +commit f2f8fe1fb18c51ff0926a4af8c8542c73c3af85d +Author: aldettinger +Date: Mon Nov 22 15:11:21 2021 +0100 + + core: Add RouteConfigurationsBuilder before regular RoutesBuilder when camel main is disabled #2978 + +commit c82a51c72b37e3d8c6fb1377d7e27ea6f773584f +Author: James Netherton +Date: Thu Nov 18 07:45:29 2021 +0000 + + JFR Native support + + Fixes #2151 + +commit 506b229dbe21dc5fa8a119606801e0e9a515d1e8 +Author: Claus Ibsen +Date: Wed Nov 24 07:07:55 2021 +0100 + + Fix xref links, remove them (its hard to understand how to link between sub projects) + +commit c646d3416aa4c8d4c5b48742c9f4f94e804a7fd2 +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Wed Nov 24 03:11:12 2021 +0000 + + Updated CHANGELOG.md + +commit 1b6a587fdebb1282b42c7befd8a41d324d202475 +Author: James Netherton +Date: Tue Nov 23 14:29:54 2021 +0000 + + Fix MicroProfileHealthTest.testFailureThreshold test failure + + Fixes #3277 + +commit 7dc82684910a20ea10159950390773ed6e3896c7 +Author: James Netherton +Date: Tue Nov 23 10:32:45 2021 +0000 + + Repalce reference to quarkus-vertx-web with quarkus-vertx-http + +commit 886b58a0764379642f27bcaca488f667683dba36 +Author: James Netherton +Date: Tue Nov 23 10:29:14 2021 +0000 + + Document that vertx-websocket consumers run on the Quarkus Vert.x web server + + Fixes #3318 + +commit 2e47c10d38f8098c772a85cc539a14d884d6a8c0 +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Tue Nov 23 03:11:07 2021 +0000 + + Updated CHANGELOG.md + +commit 90c88b3a0db7054b2c4ae24d576da96538cd4d95 +Author: Zineb Bendhiba +Date: Mon Nov 22 16:37:34 2021 +0100 + + Next is 2.6.0 + +commit 79b7a7a37577d8eff9e00654b2eadc640402a39c +Author: JiriOndrusek +Date: Fri Nov 19 10:00:34 2021 +0100 + + Graceful shutdown strategy used as default one + +commit 86f7cc8fb89fe63efdb3204ceae37407808f336a +Author: Freeman Fang +Date: Fri Nov 19 15:04:54 2021 -0500 + + Disable FOP integration test failed in native mode on Mac OS #3280 + +commit 0041b1f96cc58e004081e51e6cdf98c2b3a99959 +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Sat Nov 20 03:11:23 2021 +0000 + + Updated CHANGELOG.md + +commit fcb60efe89ebc9571803ae334a5882246b4d305d +Author: Peter Palaga +Date: Fri Nov 19 12:38:38 2021 +0100 + + Make building possible with Java 11 through 17 + +commit 7fa3f7fcc2f28ba0926676c8274d74c7d62b4f59 +Author: Peter Palaga +Date: Fri Nov 19 12:40:33 2021 +0100 + + Make maven-release-plugin happy + +commit 5a06580d92e2856fb829c246e87ccbc9448a6a24 +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Fri Nov 19 03:12:25 2021 +0000 + + Updated CHANGELOG.md + +commit 01ed8e5fa4c8b953c7e96fbf7029016f72f06ba9 +Author: Zineb Bendhiba +Date: Thu Nov 18 10:39:29 2021 +0100 + + Bump nimbus-jose-jwt version from Quarkus bom + +commit cda142bedaace9d651a09878c58bc9af668f64e6 +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Thu Nov 18 03:12:04 2021 +0000 + + Updated CHANGELOG.md + +commit d865284052d5d4f794e57ffef576cf032d90f2e7 +Author: James Netherton +Date: Wed Nov 17 15:56:19 2021 +0000 + + Upgrade Quarkus Qpid JMS to 0.30.0 + +commit 9266d5211ac4f0f04333bc3be8c2b123d66d0dfa +Author: Zineb Bendhiba +Date: Tue Nov 16 20:36:45 2021 +0100 + + Use Atlasmap jandex index for atlasmap bean discovery + Fixes #2578 + +commit 62805ab153600bf756b47adaeddcb3678d302598 +Author: Zineb Bendhiba +Date: Tue Nov 16 20:32:10 2021 +0100 + + Update Atlasmaps reflective class build configuration due to Atlasmap 2.3.x improvements + +commit 1a7f50be8f1cd30425d64589cf3f7c5c5cb2bb14 +Author: Zineb Bendhiba +Date: Sat Nov 13 20:23:48 2021 +0100 + + Enable Atlasmap tests and fix loading URL resources in native mode + fixes #3189 + +commit 135c76a7cf7ac6200659587f3e359f7cb71df90c +Author: James Netherton +Date: Wed Nov 17 12:35:40 2021 +0000 + + Disable docs xref checks until #3307 is fixed + +commit 6f670fc3f43040fd0e8fbfeb493801379b4e6e20 +Author: James Netherton +Date: Tue Nov 9 09:03:17 2021 +0000 + + Disable MicroProfileHealthTest.testFailureThreshold due to #3277 + +commit 556887f2f033eed0884bc150e18a1c109b099006 +Author: James Netherton +Date: Wed Nov 3 11:57:23 2021 +0000 + + Disable AtlasMap native tests due to #3189 + +commit d80b60c906002aba5d29c10e9fdfab0d037a57cd +Author: James Netherton +Date: Mon Oct 25 15:33:20 2021 +0100 + + Use hard coded azure-bom version property since it has been removed from camel-parent & camel-dependencies + +commit 1584a7b44bdd09696d050a2f2e1913b508c0696f +Author: James Netherton +Date: Fri Oct 8 11:40:29 2021 +0100 + + Upgrade Camel to 3.13.0 + +commit 3ee7372d59f403a5c93777cfbf2b5d13f0c11f02 +Author: James Netherton +Date: Wed Nov 17 10:45:35 2021 +0000 + + Fix broken links to SmallRye Reactive Messaging documentation + +commit 2634a06b7938ec14bd8ebb07aeb9fd9461a43471 +Author: James Netherton +Date: Wed Nov 17 10:18:53 2021 +0000 + + Upgrade Quarkus to 2.5.0.Final + +commit 34e43c6d339bdc461cd811a6a9378a8c8075dcf9 +Author: aldettinger +Date: Tue Nov 16 14:30:54 2021 +0100 + + Add route configuration test coverage for endpoint route builder #2078 + +commit a9d36a89ab88d7c26e77a2b4829ea93c76ed0ec5 +Author: Peter Palaga +Date: Tue Nov 16 21:31:21 2021 +0100 + + Make the dependency management more consistent #3302 + +commit 53947b61e54ee22707747e0fb42fd380efb43485 +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Wed Nov 17 03:11:22 2021 +0000 + + Updated CHANGELOG.md + +commit b2755b3ef9b654a3fb3639b783c294a450abb9b8 +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Tue Nov 16 03:11:20 2021 +0000 + + Updated CHANGELOG.md + +commit 9a80835699e0d5e8af4eb5081b7dabfe54b80d1e +Author: Peter Palaga +Date: Sun Nov 14 22:31:37 2021 +0100 + + Revert "Fixup 218bef4 Special fix for JMS extensions depending on" + + This reverts commit 000d5e1add0af0f7683c5ba8258e3b90bb3b2ad7. + + This was properly fixed in Platform BOM generator 0.0.35, see + https://github.com/quarkusio/quarkus-platform-bom-generator/issues/86 + +commit d703bb569bb08d36906c514d0e6c6c244482084a +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Mon Nov 15 03:12:11 2021 +0000 + + Updated CHANGELOG.md + +commit ee8ef279db17502fa7d1a852acbe7b4f47dc4382 +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Sat Nov 13 03:11:13 2021 +0000 + + Updated CHANGELOG.md + +commit 809e7c7bcc1b54fe5e58eb4dc531f1c4352f04fd +Author: James Netherton +Date: Fri Nov 12 10:23:50 2021 +0000 + + Remove management of netty-tcnative-boringssl-static + +commit 47f9ac630bf79ecace8a4ac6699f7b1900e33686 +Author: James Netherton +Date: Fri Nov 12 08:39:08 2021 +0000 + + Avoid using Camel Salesforce DTO types as the return type or method parameters in integration tests + + Fixes #3259 + +commit 17cda627419376b0c449f7e1104a6406193e294e +Author: Peter Palaga +Date: Fri Nov 12 11:06:20 2021 +0100 + + Improve Release guide + +commit 5c7f70b9b213b77e149a3afc83e3179a5a537199 +Author: Andrea Cosentino +Date: Fri Nov 12 07:49:27 2021 +0100 + + Hacktoberfest 2021 label removal + +commit 3d59cbc32f0379601c1af258773e7efafc85fecd +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Fri Nov 12 03:11:18 2021 +0000 + + Updated CHANGELOG.md + +commit ff97e825984022a10b5c97db69d11c3846f81610 +Author: JiriOndrusek +Date: Fri Nov 5 13:15:48 2021 +0100 + + Sql tests with external oracle database fail #3256 + +commit d7c3737c1e2412957bae192cd0b7e1167800869d +Author: JiriOndrusek +Date: Thu Nov 11 14:10:29 2021 +0100 + + Debezium tests are using JUnit 4 Assertions and Assumptions #3289 + +commit 8d343bd4e2155e90a903cd940a597dee412b9cda +Author: Amos Feng +Date: Tue Nov 2 17:30:33 2021 +0800 + + Re-enable Kafka ssl sasl tests (#3252) + + * Revert "Temporarily disable kafka-sasl & kafka-ssl tests due to #3239" + + This reverts commit 25a3d41b578c610224a0126f52e2176fd05fdf53. + + * Fix #3239 to override KAFKA_ADVERTISED_LISTENERS env + + * sync avro.version + +commit 539eee9ee3b2fdb0088395e9e9caab72e097fd85 +Author: James Netherton +Date: Wed Oct 27 10:35:20 2021 +0100 + + Temporarily disable kafka-sasl & kafka-ssl tests due to #3239 + +commit c09e4f3b48047245c71853b39461d84d9c0f4664 +Author: James Netherton +Date: Thu Oct 14 07:49:19 2021 +0100 + + Upgrade Quarkus to 2.5.0.CR1 + +commit 22ad4182ca3f53e730a600f42f4b5d6192bcd3ca +Author: Amos Feng +Date: Thu Nov 11 17:26:29 2021 +0800 + + Fix #3284 to get kafka.bootstrap.servers from DevServicesLauncherConfigResultBuildItem (#3287) + +commit 72cee536be7819239e498764133a900fc79e63a0 +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Thu Nov 11 03:09:30 2021 +0000 + + Updated CHANGELOG.md + +commit 000d5e1add0af0f7683c5ba8258e3b90bb3b2ad7 +Author: Peter Palaga +Date: Wed Nov 10 15:32:09 2021 +0100 + + Fixup 218bef4 Special fix for JMS extensions depending on + quarkus-qpid-jms - Cannot run tests against alternative BOMs #3258 + +commit 81e9c0f3f120456b60e1e384b9240c478d55e090 +Author: James Netherton +Date: Wed Nov 10 13:32:31 2021 +0000 + + Remove BOM reference to non existent camel-quarkus-xstream-common-deployment dependency + +commit 7ede271611b98a676af724ce4d2543e94ffb6a0d +Author: Amos Feng +Date: Wed Nov 10 21:01:46 2021 +0800 + + Fix #3276 to make sure all objects have been deleted after each test in AWS2 S3 (#3279) + +commit 21fdb08899d12ff8d1ac6f89800f517afde37c39 +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Wed Nov 10 03:12:12 2021 +0000 + + Updated CHANGELOG.md + +commit 7d01c2a32a3abb7ae8307e5b870d41eaea2d6df3 +Author: Peter Palaga +Date: Tue Nov 9 15:09:48 2021 +0100 + + Fixup 218bef4 Special fix for Solr - Cannot run tests against + alternative BOMs #3258 + +commit 1a0c347cc8528ce9cda3a17b46d2689269216832 +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Tue Nov 9 03:11:35 2021 +0000 + + Updated CHANGELOG.md + +commit 86e69dbf651c2fa153c3b4a1c810b479da55d35c +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Sat Nov 6 03:12:16 2021 +0000 + + Updated CHANGELOG.md + +commit a331a0d504b5736c89a8d9583cd31209c976b177 +Author: aldettinger +Date: Fri Nov 5 13:17:10 2021 +0100 + + avro: Fix the documentation about avro schema build time parsing #3270 + +commit bb1b3dc1f082712c7f8a1c3b0d0deb47b506eccd +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Fri Nov 5 03:11:13 2021 +0000 + + Updated CHANGELOG.md + +commit 2874a60d89b3181a68773266936b3c95366d5d8a +Author: Vladimir Konkov +Date: Fri Nov 5 04:27:36 2021 +0300 + + Remove not needed anymore BeansWeakCache substitution. Closes #3226 (#3264) + +commit 5f666c71bdc1179b6a3788f3d6fa272b0939a1ce +Author: Peter Palaga +Date: Thu Nov 4 09:20:25 2021 +0100 + + Fixup 218bef4 Deactivate the virtualDepenencies profile via -DnoVirtualDependencies rather than !virtualDependencies #3258 + +commit 218bef4b44095b3bc0f28931faced883b5614d10 +Author: Peter Palaga +Date: Wed Nov 3 13:01:32 2021 +0100 + + Cannot run tests against alternative BOMs #3258 + +commit dc433f7d00de425f81f9b21550af5cfdbfedb9ec +Author: JiriOndrusek +Date: Wed Nov 3 16:35:23 2021 +0100 + + Sql - enable stored procedure test for different db types #3080 + +commit 4bebde12ac9a80df5aee7ad2c87e655dca64ca80 +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Thu Nov 4 03:12:28 2021 +0000 + + Updated CHANGELOG.md + +commit a2f9cf851641d797b7cabca7074cfeb3ab128580 +Author: aldettinger +Date: Tue Nov 2 16:49:07 2021 +0100 + + Expand route configurations test coverage #2978 + +commit 0c4446a76719bd54d7d684e32139f4bc960278e2 +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Wed Nov 3 03:11:10 2021 +0000 + + Updated CHANGELOG.md + +commit 7bfd50f3eec20b3f6a02ee0d0caaa5cbf06ec0dd +Author: Amos Feng +Date: Tue Nov 2 20:31:10 2021 +0800 + + Fix #3254 to re-enable KafkaSaslSslIT and KafkaSslIT native tests (#3255) + +commit 1820104f1ffa12adcc595b3f21c939f31a59522f +Author: Peter Palaga +Date: Tue Nov 2 09:37:58 2021 +0100 + + Add Amazon keyword to Quarkus metadata of AWS extensions + +commit 391b4a261771d33643a690c13101033b39869cc9 +Author: Peter Palaga +Date: Tue Nov 2 09:37:26 2021 +0100 + + Reorder dependencies in + integration-tests/aws2-quarkus-client-grouped/pom.xml + +commit 68128019338a87e7e19e9dd4316c6842bfa27434 +Author: Peter Palaga +Date: Tue Nov 2 08:59:32 2021 +0100 + + Make sure all AWS extensions tested with Quarkus clients have the option documented #3201 + +commit 0644b64bdd16a77cf92427d428087a9700b850a2 +Author: JiriOndrusek +Date: Mon Nov 1 13:36:51 2021 +0100 + + Sql - native tests fail on NPE during db initialization #3247 + +commit 26ebed5d348f4dc44f72ba37ca458dd8b3eb6969 +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Tue Nov 2 03:12:30 2021 +0000 + + Updated CHANGELOG.md + +commit 25b8fd5b2dd173c8cd44a147141793af9cdb15b3 +Author: Peter Palaga +Date: Mon Nov 1 11:18:19 2021 +0100 + + Assert that Component DSL and Endpoint DSL work for AtlasMap + +commit fc5520e6fd58fb04ad1a3dfd870c747c700a27e4 +Author: James Netherton +Date: Mon Nov 1 15:42:17 2021 +0000 + + Add notes about the salesforce-maven-plugin to the Salesforce extension docs + +commit 6db7bd94a98900211d4f1d7ffab349f7fef4e86b +Author: JiriOndrusek +Date: Mon Nov 1 10:49:50 2021 +0100 + + Added explanation that Quarkus-amazon-lambda can not be used by aws2-lambda + +commit 1ba20292a45baaa731c5b870d353910b6d53e775 +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Sat Oct 30 03:11:11 2021 +0000 + + Updated CHANGELOG.md + +commit d336d134b9912051f447a2df96b2ed95641c91af +Author: James Netherton +Date: Fri Oct 29 09:40:56 2021 +0100 + + Align Azurite container version with Camel + +commit 7520b873437ecd76c00bb640c52411eb12faaeab +Author: James Netherton +Date: Fri Oct 29 08:17:16 2021 +0100 + + Use log await strategy for Spring RabbitMQ container + +commit 34fb249437011ef8979f9770b86cb8cc0109d733 +Author: aldettinger +Date: Wed Oct 27 17:20:44 2021 +0200 + + Remove bulkhead related tests as this is not yet implemented in Camel #2876 + +commit 6db35169fd1a2880c683c830e2c75bd923b3da04 +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Thu Oct 28 03:11:16 2021 +0000 + + Updated CHANGELOG.md + +commit d85861f65f5751901de580416c466e6994366f6a +Author: Amos Feng +Date: Thu Oct 28 08:52:25 2021 +0800 + + Fix #3095 improve the aws2-s3 doc to explain chunk_signature in multi part upload (#3237) + +commit 9b78b3f661ce7a812affe81ec97ef51ee3ab4ef3 +Author: James Netherton +Date: Wed Oct 27 11:07:23 2021 +0100 + + Use log await strategy for RabbitMQ container + +commit 0b0fbe4a12079c6a3d3c5418b845f904a9153454 +Author: James Netherton +Date: Wed Oct 27 08:56:07 2021 +0100 + + Fix anotra version replacement script + +commit c790ef437929b9b678f4e1c36275be3e4f64f48f +Author: James Netherton +Date: Wed Oct 27 08:30:03 2021 +0100 + + Simplify defining-camel-routes.adoc and remove camel-k-version property + +commit 93d0a6971f96d4fa195d04aeacb6142fcbaa1fac +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Wed Oct 27 03:12:17 2021 +0000 + + Updated CHANGELOG.md + +commit f3506a8f89a94ecfd54dc8e214620c1525fe7a6b +Author: David Jencks +Date: Mon Oct 25 11:00:55 2021 -0700 + + latest to next + +commit 4780f41761c77e6fbfd20e7d690399eca6b6d232 +Author: James Netherton +Date: Tue Oct 26 11:52:28 2021 +0100 + + Stub GeoCoder nominatim APIs + +commit 5a3fbf198152c74645a52a5187ff3041cc0302db +Author: James Netherton +Date: Tue Oct 26 10:01:14 2021 +0100 + + Disable MongoDB dev services in slack itest + +commit c0ba72bfa7d29e62c0d21cae1a7ecc62ea865691 +Author: Peter Palaga +Date: Mon Oct 25 23:09:56 2021 +0200 + + Fixup 9d8f38a4 Check whether/how the clients for Quarkus AWS extension can be used in Camel routes #2592 + +commit eeca24427cc68fe35525a2b80297acf5ff273f5e +Author: Peter Palaga +Date: Tue Oct 26 10:13:45 2021 +0200 + + Revert "Could not find io.netty:netty-tcnative-boringssl-static #3115" + + This reverts commit e3b4e6f4264f0328c3d06e8f6a9f2b8edb93153a. + +commit 037e4ad6e5be0fde8951f02492c4b2803c523eb2 +Author: Peter Palaga +Date: Mon Oct 25 22:48:14 2021 +0200 + + Revert "Import quarkus-bom before camel-quarkus-bom in tests #3222" + + This reverts commit 2ed38876f18d9e8aabbdd7a24580f2fa556f083a. + +commit 165fdfa3efa91368e63c02c703a273ec636e8398 +Author: Peter Palaga +Date: Mon Oct 25 18:58:05 2021 +0200 + + Temporary disable Tika native tests #3230 + +commit c88711bac759d52253ce5e5d3582305d4fb61c9b +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Tue Oct 26 03:11:16 2021 +0000 + + Updated CHANGELOG.md + +commit 9d8f38a405f2c24b361a2030a1f455cdbf129bb6 +Author: JiriOndrusek +Date: Mon Oct 25 09:30:00 2021 +0200 + + Check whether/how the clients for Quarkus AWS extension can be used in Camel routes #2592 + +commit 0a6f53f242f776165da502cd588158d8c3e5c957 +Author: JiriOndrusek +Date: Wed Oct 20 12:41:35 2021 +0200 + + Aws2 tests with localstack don't need to use long timeouts #3207 + +commit 2ed38876f18d9e8aabbdd7a24580f2fa556f083a +Author: Peter Palaga +Date: Fri Oct 22 18:58:24 2021 +0200 + + Import quarkus-bom before camel-quarkus-bom in tests #3222 + +commit e3b4e6f4264f0328c3d06e8f6a9f2b8edb93153a +Author: Peter Palaga +Date: Fri Oct 22 19:31:37 2021 +0200 + + Could not find io.netty:netty-tcnative-boringssl-static #3115 + +commit 1dc2f7a5258793d91d0485baf04cddb17f99495f +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Sat Oct 23 03:11:12 2021 +0000 + + Updated CHANGELOG.md + +commit 446734d57413fd3dac298b134a696015d3c52432 +Author: David Jencks +Date: Wed Oct 20 20:00:09 2021 -0700 + + update indexer,jsonpath versions and util/jsonpath-util.js + +commit 92a79ca3326dc7aad6286fedbd21c746f87d6c5f +Author: David Jencks +Date: Wed Oct 20 14:09:17 2021 -0700 + + add warning comment to antora.yml update script: running it on a branch will break antora.yml + +commit 71f3984d354cfb3ed6f5a0b809c7487135206463 +Author: David Jencks +Date: Wed Sep 29 22:23:01 2021 -0700 + + update to new indexer,jsonpath syntax + + attribute quarkus-examples-version needed + +commit 81cfd60424319869f74ba9651bd6ad64107e8b2b +Author: Peter Palaga +Date: Fri Oct 22 18:24:32 2021 +0200 + + Next is 2.5.0 + +commit c9839fb3aa434c6851b5a27d2faf8240bda2ac18 +Author: Peter Palaga +Date: Mon Oct 18 23:53:06 2021 +0200 + + Improve the description of camel-quarkus-openapi-java #3192 + +commit 1ba8dc7476f1da1fdcd1b3f94b7e6001c892f075 +Author: Peter Palaga +Date: Mon Oct 18 23:51:22 2021 +0200 + + Update extension metadata + +commit 9c00257c11ffdb6b639b460ff1340602a8bbe89f +Author: Peter Palaga +Date: Mon Oct 18 23:42:33 2021 +0200 + + Improve the description of camel-quarkus-sql #3193 + +commit 97ed13dcc69b49db637553242b9b2b4ad929efad +Author: Peter Palaga +Date: Mon Oct 18 23:40:11 2021 +0200 + + Improve the Avro extension page #3194 + +commit 2c04a067a4fb94ff7fce8b013058da1669311bc2 +Author: Peter Palaga +Date: Mon Oct 18 23:15:02 2021 +0200 + + Improve AWS2 S3 docs #3195 + +commit 1ef0feb77e9cc0722966915db723e205aa46cd5c +Author: Peter Palaga +Date: Mon Oct 18 12:37:25 2021 +0200 + + Improve AWS2 DDB docs #3195 + +commit 03b6dbb4be7ddd0320ecb9b06100c9a6a089925a +Author: Amos Feng +Date: Thu Oct 21 17:13:01 2021 +0800 + + Fix #3206 to produce RunTimeConfigurationDefaultBuildItem with camel.component.kafka.brokers property + +commit a8fa638b701f1594c1e5fedc5f1da7dfa95e2164 +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Fri Oct 22 03:12:25 2021 +0000 + + Updated CHANGELOG.md + +commit de0bcfd9fafd73d0777968bc27e62bb1163aa2ff +Author: James Netherton +Date: Thu Oct 21 18:01:44 2021 +0100 + + Upgrade Quarkus Qpid JMS to 0.29.0 + +commit 062d113bed33f41bdd2f5827e29b88e71ae46713 +Author: James Netherton +Date: Wed Oct 20 11:50:46 2021 +0100 + + Use JDK 17 in alternative JVM jobs + +commit 4172e6161a1078190b84f9cccb405305ab21011a +Author: aldettinger +Date: Thu Oct 21 16:36:45 2021 +0200 + + doc: rephrase the section about charsets in native mode to remove link to substratevm 19.3.0 source code #3219 + +commit b9fff5f615924ed74f8ad0b2e26c651f296e3019 +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Thu Oct 21 03:11:10 2021 +0000 + + Updated CHANGELOG.md + +commit 915cb37fa50c957cbd5adc22c1150fb53fa5087a +Author: James Netherton +Date: Wed Oct 20 11:11:14 2021 +0100 + + Revert "Temporarily disable messaging JVM mode tests due to #3173" + + This reverts commit 979a565b8056e6f6a9e54c125fd8cfa6997c771d. + +commit 030862bb0befbe2ffc1115f24c37e0688cf734b0 +Author: James Netherton +Date: Wed Oct 20 11:03:25 2021 +0100 + + Revert "Temporarily disable Tika native build due to #3130" + + This reverts commit 29db4f04b269d0605f64fab39bee1c82b75419ff. + +commit 5a0c2b446cbfb81029ba32ce0f8e38d338ca911e +Author: James Netherton +Date: Wed Oct 20 11:02:52 2021 +0100 + + Upgrade Quarkus to 2.4.0.Final + +commit 05163b501b2d573b1ce2450a645631e90055af17 +Author: James Netherton +Date: Wed Oct 20 10:53:47 2021 +0100 + + Add missing shiro reflective class configuration for commons-beanutils converters + + Fixes #3208 + +commit af2d9142efa3e4c5f62c5eed723716dc1e32bc84 +Author: JiriOndrusek +Date: Tue Oct 19 16:34:53 2021 +0200 + + ddb - start consumer at the time it is needed + +commit 44429b1779ca419b9a82c65dbdd01d388a64356e +Author: Vratislav Hais +Date: Thu Sep 2 14:02:21 2021 +0200 + + [aws-sqs] Fix tests to work with aws credentials + +commit 970c6ab1e7ac84e6ca24e578ec6725f5e7b3e971 +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Wed Oct 20 03:11:06 2021 +0000 + + Updated CHANGELOG.md + +commit 0caa4c491a9711e21490bfa3f5c091411aaafcd3 +Author: Amos Feng +Date: Wed Oct 20 10:49:05 2021 +0800 + + Fix #3157 to make sure the brokers option is configured in native mode (#3198) + + * Fix #3157 to make sure the brokers option is configured in native mode + + * override the camel.component.kafka.brokers in KafkaDevServicesDisabledTest + +commit f3973b64128e61bd1af329a2cf560bab283f6a40 +Author: James Netherton +Date: Tue Oct 19 13:42:28 2021 +0100 + + Upgrade Quarkiverse Minio to 2.3.0 + +commit bb9b0e972ae71176b0bc6de7e354eda480fcbc01 +Author: James Netherton +Date: Tue Oct 19 10:05:32 2021 +0100 + + Use log await strategy for ipfs container + +commit 56a28d33a99128e379c42085f7211b2279a67fd1 +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Tue Oct 19 03:11:05 2021 +0000 + + Updated CHANGELOG.md + +commit 64e573611bfb67c83b0603709d104b5470949906 +Author: James Netherton +Date: Fri Oct 15 14:56:48 2021 +0100 + + Remove quarkiverse-google-cloud-services dependencies + +commit b9ed465f78fd5d7ed11be9930e225da5e80edb0b +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Sat Oct 16 03:10:58 2021 +0000 + + Updated CHANGELOG.md + +commit f47526f6bb63157a32d8df68f408320637c5c173 +Author: aldettinger +Date: Thu Oct 14 13:21:04 2021 +0200 + + Aws2-lambda: Add event source mapping test #2749 + +commit 1bc47aa89326316a6ed645d79080b69e69e7467e +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Fri Oct 15 03:11:13 2021 +0000 + + Updated CHANGELOG.md + +commit 6eb46a075bbe6c80b9e95031c59281769171627d +Author: David Jencks +Date: Thu Oct 14 09:04:50 2021 -0700 + + Add requires attribute to playbook + + Update dependencies + + Update util script used by requires + + Correct typo in groovy script + +commit b140ca220ddeb4be5f99d2ba11d63b669fd5ab06 +Author: Peter Palaga +Date: Thu Oct 14 12:34:43 2021 +0200 + + Improve the User guide + +commit e5dc2acb1350667f0fc95e716f86079bec7bfb69 +Author: James Netherton +Date: Thu Oct 14 09:37:11 2021 +0100 + + Fix source code formatting in native mode reflection docs + +commit d0fe6a1acd416efc741f6187c1ec0fd1f0baf590 +Author: James Netherton +Date: Thu Oct 14 09:23:21 2021 +0100 + + Simplify native mode locale docs section + +commit 38b753ca6cc53972e0625d4dfe4260c6517297f4 +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Thu Oct 14 03:12:20 2021 +0000 + + Updated CHANGELOG.md + +commit 979a565b8056e6f6a9e54c125fd8cfa6997c771d +Author: James Netherton +Date: Wed Oct 13 11:36:49 2021 +0100 + + Temporarily disable messaging JVM mode tests due to #3173 + +commit 29db4f04b269d0605f64fab39bee1c82b75419ff +Author: James Netherton +Date: Fri Oct 1 14:39:53 2021 +0100 + + Temporarily disable Tika native build due to #3130 + +commit e9132f3f0a657bfaaa4ae798a6ac2fc2c4ebaadc +Author: James Netherton +Date: Wed Sep 22 17:27:38 2021 +0100 + + Upgrade Quarkus to 2.4.0.CR1 + +commit 2db1afeb9e5ff47ddbf20dcfc836f85b175b8fbd +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Wed Oct 13 03:12:21 2021 +0000 + + Updated CHANGELOG.md + +commit b29df6183aa16d965473b7fe8dab902752d0cc70 +Author: Zineb BENDHIBA +Date: Tue Oct 12 20:30:57 2021 +0200 + + Update declaring Bean Capability (#3178) + + Fixes #3172 + +commit abd2673ecf4dc9ac0c62249c34af392867fb4018 +Author: Amos Feng +Date: Tue Oct 12 20:23:03 2021 +0800 + + Fix #3169 to add S3 KMS encryption test (#3176) + +commit ee27b6448d2d8dbd935e209a09bab5500f588777 +Author: James Netherton +Date: Tue Oct 12 07:33:24 2021 +0100 + + Fix path to spring boot docs + +commit 3083d8647d2e84f80df2d994cd46f60f0afa9a4b +Author: JiriOndrusek +Date: Fri Oct 8 13:37:57 2021 +0200 + + AWS Aws2DdbQuarkusClientTest fails with real AWS #3174 + +commit ea1ad4e4e0999b4361541314a75340821c061016 +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Tue Oct 12 03:11:35 2021 +0000 + + Updated CHANGELOG.md + +commit c71106e9a3b40f9e35ab04dcadd1354a949dff25 +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Fri Oct 8 03:12:18 2021 +0000 + + Updated CHANGELOG.md + +commit 77da31bb255aed1c506397f117fbed7c02684319 +Author: Peter Palaga +Date: Thu Oct 7 20:13:46 2021 +0200 + + AWS S3 tests should delete all buckets they create #3167 + +commit a17b49073e210d73e216ca47b535d59eb4cf6eec +Author: Freeman Fang +Date: Wed Oct 6 12:04:37 2021 -0400 + + fix Aws2S3Test could fail with real AWS S3 service caused by bucket name conflicts #3163 + +commit c1fd5ebbfbba7bb44bed791eb2acae84bb1bc065 +Author: James Netherton +Date: Thu Oct 7 08:10:08 2021 +0100 + + Switch back to using containers for ActiveMQ messaging tests + +commit 2f7e41beb062b21a691ad2400d4f5754ca400785 +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Thu Oct 7 03:11:24 2021 +0000 + + Updated CHANGELOG.md + +commit 7ec6d6619cdf7c70a91f5935cd1c758eff795e57 +Author: Peter Palaga +Date: Wed Oct 6 19:00:08 2021 +0200 + + CI build should test example projects with camel-quarkus SNAPSHOT #3160 + +commit f06e07f159e448a0ed3eb65f4036458a9e40c384 +Author: James Netherton +Date: Wed Oct 6 09:27:17 2021 +0100 + + Check whether service binding is enabled before creating QuarkusKafkaClientFactory + + Fixes #3154 + +commit b889ce4a0dc3563c224d90ff6ca3ebd075ae24f2 +Author: Peter Palaga +Date: Wed Oct 6 11:15:35 2021 +0200 + + Document how to pass parts of release announcement to Quarkus team + +commit f8604b517d78eaf7754cfd21c098ad57049791b0 +Author: James Netherton +Date: Mon Oct 4 10:36:14 2021 +0100 + + Register CDI event bridges only when required + + Fixes #3149 + +commit a7650544ee19441fcfe43d48a6da03af66702e3b +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Wed Oct 6 03:09:17 2021 +0000 + + Updated CHANGELOG.md + +commit 9b076c06dfc3456ffff0898f9b984c69e66fe646 +Author: aldettinger +Date: Tue Oct 5 17:09:57 2021 +0200 + + Revert "Enable Aws2TestEnvContext to handle setting up Quarkus AWS configuration properties" + + This reverts commit cb4f00f44a7bdb613dbd174da32a5cef913a8b0e. + +commit 991123a3277757e4c62a7c97f9062daa4318cc4c +Author: aldettinger +Date: Tue Oct 5 17:09:18 2021 +0200 + + aws2-lambda: Add lambda function version operations test #2749 + +commit 80a75ae5c73d34a0f6cb00a8ab52432420078f9f +Author: Zoran Regvart +Date: Tue Oct 5 10:38:13 2021 +0200 + + Fix anchor to components/log-component.adoc + +commit 7b67530a1a8d01488548b81f0176f6ed80917aaf +Author: Peter Palaga +Date: Tue Oct 5 09:28:40 2021 +0200 + + Next is 2.4.0 + +commit f7ec28a399bfbb5e88dd855cf7bbadc719e80351 +Author: James Netherton +Date: Mon Oct 4 15:54:13 2021 +0100 + + Remove redundant reflective class configuration for ThreadPoolProfileConfigurationProperties + + Fixes #2828 + +commit c35fb6f4f9f05121955710a0d8c0dccf8e61113a +Author: James Netherton +Date: Mon Oct 4 15:45:02 2021 +0100 + + Remove reflective class registration for subclasses of ServiceCallConfiguration + + Fixes #2955 + +commit 4a58af3a9886f2f86381c0a085a8595456747fb3 +Author: James Netherton +Date: Mon Oct 4 15:26:58 2021 +0100 + + Enable sqsAutoCreateDelayedQueue test + + Fixes #3097 + +commit 934adba40096d039b0438b1ae939d26aeb20a913 +Author: James Netherton +Date: Mon Oct 4 15:08:55 2021 +0100 + + Remove workaround for gRPC producers with TLS + + Fixes #2966 + +commit 045d2a55041437fc6a2d645b71918d553a18bd36 +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Tue Oct 5 03:11:19 2021 +0000 + + Updated CHANGELOG.md + +commit c8793b83391e43760985ef62a1ae4854f7a363f6 +Author: James Netherton +Date: Thu Sep 30 13:35:41 2021 +0100 + + Upgrade Camel to 3.12.0 + +commit c2b0a82f4c95c2f32cc01885ec9cc7abdf4d1f83 +Author: Andrea Cosentino +Date: Mon Oct 4 07:25:46 2021 +0200 + + Opted in Hacktoberfest 2021 + +commit 673ec2fad80e4953d82c397d72be84869588283f +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Sat Oct 2 03:11:14 2021 +0000 + + Updated CHANGELOG.md + +commit 115d1bb8168b89597942ebf58363ac2e6f8f1e7c +Author: Peter Palaga +Date: Fri Oct 1 17:04:56 2021 +0200 + + Avoid release:prepare failure "The version could not be updated: + ${quarkus.platform.version}" + +commit cb4f00f44a7bdb613dbd174da32a5cef913a8b0e +Author: James Netherton +Date: Thu Sep 30 10:07:11 2021 +0100 + + Enable Aws2TestEnvContext to handle setting up Quarkus AWS configuration properties + + Fixes #3137 + +commit be5149cf3b17bd153d07d9edfb5839a30d25f38a +Author: James Netherton +Date: Fri Oct 1 07:36:05 2021 +0100 + + Enable auto replacement of camel-spring-boot docs branch reference + +commit 329a3f2592e10a625d0e817085462b683695dad6 +Author: David Jencks +Date: Thu Sep 30 14:46:35 2021 -0700 + + further partial website simplifications + +commit fd8705687ab103155fbb838f00a5e2bec57df09e +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Fri Oct 1 03:10:55 2021 +0000 + + Updated CHANGELOG.md + +commit f9ca5c74d636a0e313faecf791b5a1f481fc594f +Author: David Jencks +Date: Thu Sep 30 11:54:13 2021 -0700 + + Add latest non-prerelease eips + +commit 877c3662a4ad28fb0b1587eda5f419d273212d5d +Author: James Netherton +Date: Thu Sep 30 07:09:16 2021 +0100 + + Upgrade Quarkus Qpid JMS to 0.28.0 + +commit 3dcf8e534e1c925b6d67063bbb191bcd33d36541 +Author: James Netherton +Date: Thu Sep 30 07:07:55 2021 +0100 + + Upgrade Quarkus to 2.3.0.Final + +commit 9eb6710cc79779eeb968884ed8dec212c5fc990c +Author: James Netherton +Date: Thu Sep 30 07:45:22 2021 +0100 + + Fixup 49b5376 import correct set of BOMs + +commit 49b5376d7f22c3fe574666ff1249cad5bf36bf10 +Author: Amos Feng +Date: Wed Sep 29 09:50:41 2021 +0800 + + Test Quarkus S3 extension with Camel Quarkus AWS 2 S3 + Fixes #2590 + +commit 4427ba0a2dc59b352817a1aef3674205b9fa166f +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Thu Sep 30 03:11:05 2021 +0000 + + Updated CHANGELOG.md + +commit 64fec14c093f3eb458a561b690fd85e4017daf14 +Author: Peter Palaga +Date: Tue Sep 28 14:44:51 2021 +0200 + + Make integration tests runnable against Quarkus Platform BOM #3134 + +commit 468b46818525db15abd3c7877f50c1575f3edb32 +Author: aldettinger +Date: Wed Sep 29 14:43:36 2021 +0200 + + aws2-lambda: Add lambda function tag operations test #2749 + +commit 71c6b3f037d93effd7a1ec9f63c5e2cf70f4f0fc +Author: James Netherton +Date: Wed Sep 29 08:03:30 2021 +0100 + + Add missing grouped test modules to formatting steps + +commit 5758a5b675aac5d5bccf00fe97caa950b0f9a08d +Author: James Netherton +Date: Wed Sep 29 10:36:37 2021 +0100 + + Fix list continuation in aws2-ddb docs + +commit ce1db4d558f4468a6f3d996c276465b3b7d3a33a +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Wed Sep 29 03:11:31 2021 +0000 + + Updated CHANGELOG.md + +commit 52ad9e646be97f1974e5903b956d77b417ffa824 +Author: James Netherton +Date: Tue Sep 28 08:58:05 2021 +0100 + + Test Quarkus DynamoDB extension with Camel Quarkus AWS 2 DDB + + Fixes #2776 + +commit 99fdc0e0d18935c8e0ab933cd9a2f3e3701509e1 +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Tue Sep 28 03:12:17 2021 +0000 + + Updated CHANGELOG.md + +commit 003a1b87c640ad0b42c5504fd97b59ae741c3964 +Author: Zineb Bendhiba +Date: Wed Sep 8 15:43:39 2021 +0200 + + Improve Kafka test coverage + Fixes #2627 + +commit 21468a3913a095dd2156a98c751ae0d8d3be3ae4 +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Sat Sep 25 03:11:07 2021 +0000 + + Updated CHANGELOG.md + +commit 0fd495726eb0f5a35df9e1dc1a6104eaae3214cf +Author: James Netherton +Date: Thu Sep 23 11:49:49 2021 +0100 + + Add notes on Quarkus Dev Services to JDBC & SQL extension docs + +commit 301a6660ddea8702dddc46fc5a55847b986b3cbe +Author: aldettinger +Date: Wed Sep 22 14:07:57 2021 +0200 + + aws2-lambda: Add alias tests #2749 + +commit 34d853b50499f52157def48b06196b5ea47595ea +Author: James Netherton +Date: Thu Sep 23 09:04:53 2021 +0100 + + Improve Kafka integration with Quarkus dev services + + Fixes #3121 + +commit d8c8a846ba6078ab92df8adbe7d6a5d39f1ba289 +Author: Peter Palaga +Date: Thu Sep 23 15:06:59 2021 +0200 + + Use camel-quarkus-build-parent-it as a direct parent of each test module + +commit 43ede15e8675c094df663980a47eef1178782b4d +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Fri Sep 24 03:11:29 2021 +0000 + + Updated CHANGELOG.md + +commit cbfd86cc8d16603b968ed05583725f2c8db0cccc +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Thu Sep 23 03:11:15 2021 +0000 + + Updated CHANGELOG.md + +commit 99eeee7554ecf9fa8a03c26234f6a3438c50bba4 +Author: James Netherton +Date: Fri Sep 17 15:47:34 2021 +0100 + + Temporarily add netty-tcnative-boringssl-static to the BOM to work around netty-bom issues + +commit 5191e5faa426da82b19901d9e143094684bb7dc8 +Author: James Netherton +Date: Tue Sep 14 15:48:37 2021 +0100 + + Work around cassandraql depending on Quarkus Vert.x extensions that no longer exist + +commit ae7b55581151eeb737c8a9d7981c9977328a4752 +Author: James Netherton +Date: Thu Aug 19 09:56:45 2021 +0100 + + Upgrade Quarkus to 2.3.0.CR1 + +commit 15f6215a8148f8e87ae18c2ac9d8be704e5e0241 +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Wed Sep 22 03:10:57 2021 +0000 + + Updated CHANGELOG.md + +commit 70b109d29fe729ef86fd37bbb4b806f54bc0eaa9 +Author: David Jencks +Date: Mon Sep 20 08:26:04 2021 -0700 + + replicate more of the main camel website build: use @djencks/asciidoctor-jsonpath and include quarkus examples + +commit 57edc736b3ead3cb2fe3c70935cd51032ee795b6 +Author: aldettinger +Date: Wed Sep 15 15:24:47 2021 +0200 + + aws2-lambda: Added updateFunction and getFunction tests #2749 + +commit 9411480bec1649f87262dbf71339ab1884b894e0 +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Tue Sep 21 03:09:43 2021 +0000 + + Updated CHANGELOG.md + +commit 796d4fae64077e3bdcc66812e1fd66b12497fb07 +Author: James Netherton +Date: Mon Sep 20 10:15:50 2021 +0100 + + Upgrade Quarkus to 2.2.3.Final + +commit 0c8de6ca726543df4bbae3edf9d456695c5b1190 +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Mon Sep 20 03:10:56 2021 +0000 + + Updated CHANGELOG.md + +commit 6290af87f13b1cf0389248a36cbf43c42bca4cd5 +Author: Peter Palaga +Date: Sun Sep 19 13:34:07 2021 +0200 + + Fixup 0be98ea Use test grouping for MongoDB extensions #3089 + +commit f4f992f7ed890cb3991ca122c802562a70ba0631 +Author: Zineb Bendhiba +Date: Wed Sep 15 15:07:00 2021 +0200 + + Update Salesforce testCDCAndStreamingEvents test to wait for consuming the right Document + Fixes #3103 + +commit 1137e00880f51a812d2e7b4bf82fa0dc435b0bbd +Author: Zineb Bendhiba +Date: Fri Sep 17 12:29:50 2021 +0200 + + Salesforce: Enable Platform Event custom fields in native mode + Fixes #3067 + +commit 13430473c725ddddb63ea9a8c0ff4faa4614ddd3 +Author: James Netherton +Date: Fri Sep 17 11:59:17 2021 +0100 + + Test platform-http with SSL enabled + + Fixes #3093 + +commit 37433dae67e167ed02a4b6713aef71fb1928c39b +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Sat Sep 18 03:11:05 2021 +0000 + + Updated CHANGELOG.md + +commit 640971eb18e04d4dc2f049fb4593c599164986f1 +Author: Peter Palaga +Date: Fri Sep 17 14:43:24 2021 +0200 + + Remove superfluous camel-quarkus-integration-tests-support-custom-type-converter dependency from the direct test + +commit 6bcfd5aca75fa3f23530d712666f11a06c19dd88 +Author: Peter Palaga +Date: Fri Sep 17 14:01:46 2021 +0200 + + Fixup 68be716 Allow extending an existing Catalog + +commit b5e2bf537771c91d260c8d2cb6b6fe38a675076b +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Fri Sep 17 03:11:05 2021 +0000 + + Updated CHANGELOG.md + +commit 68c66d2f0ca6b0dbaeb57526fa45e887f29200c9 +Author: David Jencks +Date: Thu Sep 16 10:27:13 2021 -0700 + + use Antora 3.0.0-alpha.9 and fail build on warn to check xrefs + +commit be90881163c8e02d876c8d3204a7c58ea62f8860 +Author: aldettinger +Date: Thu Sep 16 15:29:25 2021 +0200 + + Upgrade aws localstack version #2749 + +commit 53838b237df5e1cceabe1c65588d79e5e275a4d9 +Author: aldettinger +Date: Thu Sep 16 15:43:15 2021 +0200 + + Fixed format + +commit cdb46639eac386020335683e1d3959e7fa40f35a +Author: aldettinger +Date: Mon Sep 13 11:10:05 2021 +0200 + + Fix lambda tests on localstack #2595 + +commit 6403eed4eb10f6fe39c45b6d3ad794f3fbaf9260 +Author: James Netherton +Date: Wed Sep 15 09:56:31 2021 +0100 + + Revert back to taking the azure-sdk-bom version from Camel + +commit 8190b7169c2f3793489db162a2264a0030765842 +Author: James Netherton +Date: Wed Sep 15 13:54:20 2021 +0100 + + Improve native support for org.apache.http.impl.client.BasicAuthCache + + Fixes #3079 + +commit 2556689d070c592335f26f4a084a55353ab60108 +Author: James Netherton +Date: Wed Sep 15 15:07:46 2021 +0100 + + Reinstate binance in xchange tests + + Fixes #3016 + +commit dbb286aa51a70cc378d831a5a69fee8a2cbe20da +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Thu Sep 16 03:11:03 2021 +0000 + + Updated CHANGELOG.md + +commit 2469db70810ea413cfaae3b0bad7df54f0ebd241 +Author: James Netherton +Date: Mon Sep 13 16:00:33 2021 +0100 + + Improve handling of quarkus.*.enabled configuration properties + + Fixes #3091 + +commit ac751b8701043f9c5ed6f6bbb3ff947105ab5577 +Author: Vratislav Hais +Date: Wed Sep 15 10:07:27 2021 +0200 + + [#2777] Resolve comments in PR + +commit 01276cdc8d392d82d373b820daae0bddbcd148e9 +Author: Vratislav Hais +Date: Tue Sep 7 10:08:35 2021 +0200 + + [#2777] Increase test coverage of aws2sqs component + +commit e02966758823281ec77aa61764cf1994fac7d456 +Author: James Netherton +Date: Tue Sep 14 07:55:33 2021 +0100 + + Upgrade Quarkus to 2.2.2.Final + +commit 130db500bd753c5413d8bf9fa2d4b0660b7550c7 +Author: James Netherton +Date: Tue Sep 14 07:41:01 2021 +0100 + + Upgrade Camel to 3.11.2 + +commit 0476446405139c7eb187beca5c33fbf5e06e8204 +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Wed Sep 15 03:11:00 2021 +0000 + + Updated CHANGELOG.md + +commit 6b77c9ecf6d836fd28912670835ebb0d3d38aa9d +Author: Zineb Bendhiba +Date: Sun Sep 5 18:49:21 2021 +0200 + + Salesforce : add Platform events test fixes #2938 + +commit 293c62b57bfd17883a919631f68fbafc0e871f1b +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Tue Sep 14 03:11:35 2021 +0000 + + Updated CHANGELOG.md + +commit af916826b83455c3a59f4dd054cf435df013b741 +Author: James Netherton +Date: Fri Sep 10 14:12:33 2021 +0100 + + Add notes on how to configure the Platform HTTP server + +commit 0be98eab82645e86635b11a7c45b49ca533fc423 +Author: James Netherton +Date: Fri Sep 10 10:28:35 2021 +0100 + + Use test grouping for MongoDB extensions + + Fixes #3089 + +commit d6138e20cf33ecbf0c235d9198a8fcd2b0b7bb47 +Author: Peter Palaga +Date: Mon Sep 13 11:28:49 2021 +0200 + + Fixup 9788fb65 Remove leftover extensions-jvm/digitalocean + +commit 8e77630637cffe170ff80b3fa3b737b362e780ff +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Sat Sep 11 03:09:22 2021 +0000 + + Updated CHANGELOG.md + +commit 50b8f28847c3588c132433259d7ba6f37c6cad56 +Author: Peter Palaga +Date: Thu Sep 9 20:46:20 2021 +0200 + + Remove superfluous xml-jaxb dependency from the REST test + +commit c614dc68f912514b36d8ff749ca9815acc18a067 +Author: Amos Feng +Date: Fri Sep 10 21:21:46 2021 +0800 + + Fix #2745 Expand AWS S3 test coverage (#3077) + + * Fix #2745 Expand AWS S3 test coverage + * Multipart upload + * copyObject + * listBuckets + * deleteBucket + * downloadLink + * getObjectRange + + * Fix multipart upload test + +commit e256bf92d2a1fc8600c6c258baae4c2feb8a32c0 +Author: James Netherton +Date: Thu Sep 9 15:25:51 2021 +0100 + + Only configure OpenTracingTracer if Quarkus Jaeger tracing is enabled + + Fixes #3084 + +commit f82c0ea737e91050f4187c2cb8dd35c5848903e2 +Author: James Netherton +Date: Thu Sep 9 09:25:43 2021 +0100 + + Add documentation to OpenApi Java extension about apiContextIdListing limitations + +commit 83821270f5765b401c0a487ba4ec7c212f95c9b2 +Author: James Netherton +Date: Wed Sep 8 14:27:51 2021 +0100 + + Remove redundant dependencies from openapi-java extension + +commit 4ec0c8a33df09c31748aeb5866a000af5e587dda +Author: JiriOndrusek +Date: Fri Sep 3 09:27:52 2021 +0200 + + Sql - enable test with different databases #3053 + +commit 07e77eb246136ecfa0602ee2915a1b082cfd5325 +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Wed Sep 8 03:11:10 2021 +0000 + + Updated CHANGELOG.md + +commit 29950b4a986bb50fb6a4ca3802c88d8775752ed6 +Author: James Netherton +Date: Tue Sep 7 07:44:01 2021 +0100 + + Expand OpenApi Java test coverage + + Fixes #3072 + +commit 4b1a484501285fc566502f8ae57d3c27ba6ac722 +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Tue Sep 7 03:11:05 2021 +0000 + + Updated CHANGELOG.md + +commit 9f475233630fd6ef3022d3f196ff6fec832e240a +Author: Andrea Cosentino +Date: Mon Sep 6 14:53:54 2021 +0200 + + Fixed reference to camel-kamelets-catalog + +commit bc373b8637e3abed4d64c5690e51aad3bc7c6078 +Author: Andrea Cosentino +Date: Mon Sep 6 10:53:38 2021 +0200 + + Fixed reference to Kamelets catalog + +commit a839f66a64f9a66c6c063fed1a04c0cb4ee1539b +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Sat Sep 4 03:10:44 2021 +0000 + + Updated CHANGELOG.md + +commit 83dc1e2147c1a709d2efedc403e8d5c0bbc33397 +Author: Peter Palaga +Date: Thu Sep 2 21:48:28 2021 +0200 + + Upgrade to cq-maven-plugin 1.0.0 - Ignore unlinked modules when listing + extensions + +commit 68be716bd4777db6889b12dc570adff3494b6934 +Author: Peter Palaga +Date: Thu Sep 2 21:44:21 2021 +0200 + + Allow extending an existing Catalog + +commit 510a4b9d746d576547136c44092c73aa26c7ad6d +Author: David Jencks +Date: Thu Sep 2 12:08:56 2021 -0700 + + fix attribute syntax + +commit 39c807beb2500b6a4f9f1d0c11852ef44cfeef0a +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Fri Sep 3 03:11:02 2021 +0000 + + Updated CHANGELOG.md + +commit 6cae8c92a774d54a41b03340c6f1bf06786b6bc3 +Author: James Netherton +Date: Wed Sep 1 14:25:18 2021 +0100 + + Test OpenAPI with YAML responses + +commit ec8667673de38ef209f0ba8295c688889730c406 +Author: James Netherton +Date: Wed Sep 1 11:31:52 2021 +0100 + + Use testcontainers gcloud for Google PubSub itest + +commit 1aa650f3677032499af8640cca2fc5e9062b2c9a +Author: James Netherton +Date: Wed Sep 1 07:12:00 2021 +0100 + + Add additional test coverage for REST DSL methods + + Fixes #3036 + +commit 5ca62e544c1006f8183c588fb2de47d62b291dc6 +Author: Peter Palaga +Date: Tue Aug 31 15:48:51 2021 +0200 + + Document tagging examples in the Release Guide + +commit 313196e0a75894ff9d2e7cbb204b26eebdc7c2d6 +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Wed Sep 1 03:11:02 2021 +0000 + + Updated CHANGELOG.md + +commit 021ed03b8b2e3e57e8228415af1a7120df325706 +Author: Vratislav Hais +Date: Mon Aug 30 05:04:02 2021 +0200 + + [#3028] Increase test coverage of a binding mode of camel-rest component + +commit 5fe8fa9c1bae6cc9eb50c53bf1f38d912737b775 +Author: Peter Palaga +Date: Tue Aug 31 12:54:02 2021 +0200 + + Upgrade to Quarkus 2.2.1.Final + +commit 88743f1ad1c7f0ced1979968b52f7827a8af0522 +Author: Peter Palaga +Date: Tue Aug 31 12:38:09 2021 +0200 + + Update AWS2 test README + +commit 91ed088766144fdbf294abc3b991b97ca5fc2ebd +Author: Peter Palaga +Date: Tue Aug 31 12:33:30 2021 +0200 + + Document mvn cq:await-release -Dcq.version=$VERSION + +commit 67ad8bc9f419083c4bcd2374f189c35977cc3f90 +Author: Peter Palaga +Date: Tue Aug 31 09:45:27 2021 +0200 + + Fixup 01719a21 Exclude main-unknown-args-ignore test from the list of tests for the platform again + +commit a683b4834f8d86beb4f59eba0eaf6e9b2b962f07 +Author: Peter Palaga +Date: Mon Aug 30 12:45:45 2021 +0200 + + Next is 2.3.0 + +commit 985d7c6013862ed9e3f47f74e999dff269cb075a +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Sat Aug 28 03:10:43 2021 +0000 + + Updated CHANGELOG.md + +commit 0cd03d8707dc0f3ce650c840492de2c5762f7b47 +Author: Peter Palaga +Date: Fri Aug 27 18:27:23 2021 +0200 + + Remove false in the release profile + +commit b3dc133327c5e50c1b656c7da1066f46edb0dd3f +Author: Peter Palaga +Date: Fri Aug 27 17:09:30 2021 +0200 + + Add/fix some version scripting to the Release Guide + +commit a6fd3910dc8096169c5ccc290e9bb941b41cbe7d +Author: Peter Palaga +Date: Tue Aug 3 22:57:51 2021 +0200 + + Polish dependency management + +commit 2f67fa5589a45cf8139bad1aaa0a5f6b0bf98342 +Author: Peter Palaga +Date: Fri Aug 27 14:47:13 2021 +0200 + + Upgrade to OptaPlanner Quarkus 8.9.1.Final + +commit d430e50847efab823b4a21b7b5c733f0f77ca7ab +Author: Peter Palaga +Date: Fri Aug 27 13:31:29 2021 +0200 + + Document the usage of partial Quarkus BOMs #3023 + +commit 5f719418879bb5105cea8f8c3ddbd9db3e47d168 +Author: James Netherton +Date: Fri Aug 27 07:57:04 2021 +0100 + + Fix branch names in CI builds section + +commit be5af703fe53f6b64df82a2e47ed301eefab42ea +Author: Peter Palaga +Date: Fri Aug 27 08:34:23 2021 +0200 + + Have each release on a ..x branch to make Antora happy #2853 + +commit a13e58595c4770426bdfad8701de74cc1c524c13 +Author: James Netherton +Date: Fri Aug 27 07:16:05 2021 +0100 + + Remove reference to camel-quarkus-attachments from platform-http docs as it is a non-optional transitive dependency + +commit df8579c2c9105b6da4b316d0b6d9dac2e40f65f3 +Author: Peter Palaga +Date: Thu Aug 26 23:14:27 2021 +0200 + + Set the version in docs/antora.yml when tagging a release #2852 + +commit 2d84693b5b0109ad66138460465c93688e242539 +Author: Peter Palaga +Date: Thu Aug 26 23:11:35 2021 +0200 + + mvn -Papache-release javadoc:javadoc -DskipTests fails in GRPC test + module + +commit e5e768acd680b0d78122fb7eee30b0a70947f3f9 +Author: Peter Palaga +Date: Thu Aug 26 23:54:57 2021 +0200 + + Fixup 5cf60953 SolrTest failure when using CloundContainer #2967 - do not assume the class path resource is accessible via filesystem + +commit 6224538b2474313cc4b2f8497810fa8affc45281 +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Fri Aug 27 03:11:04 2021 +0000 + + Updated CHANGELOG.md + +commit 10d1cd59b05e6250d9f8252471088ec70851e3c9 +Author: Freeman Fang +Date: Tue Aug 24 09:47:26 2021 -0400 + + #2967 reading clould container configuration files from classpath + +commit 5cf60953c6c8df1b9ca83cddd5bf3fbd95652396 +Author: Freeman Fang +Date: Fri Aug 20 14:13:36 2021 -0400 + + fix SolrTest failure when using CloundContainer #2967 + +commit 5beab2962f18c4ac35cf6b3050d1f7cdc7770fd9 +Author: James Netherton +Date: Thu Aug 26 16:42:00 2021 +0100 + + Fix Splunk container exposed ports configuration + +commit ad558eb3c9ddd810f6b268db72b02c7693b7768d +Author: James Netherton +Date: Thu Aug 26 15:03:28 2021 +0100 + + Exclude grpc-netty-shaded in favour of grpc-netty as it is not supported by quarkus-opentelemetry + +commit 375b3cf335a654df43054b9a9368aec92274b668 +Author: Peter Palaga +Date: Thu Aug 26 14:34:58 2021 +0200 + + Remove dummy quarkus.google.cloud.project-id after it was made optional in Quarkiverse Google Cloud 0.10.0 #2858 + +commit 0ee5f421550e4f5ff4d07e241ee1988a3b588c01 +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Thu Aug 26 03:09:01 2021 +0000 + + Updated CHANGELOG.md + +commit 375229446487248774d56ffec0f68ff3715c10d4 +Author: James Netherton +Date: Wed Aug 25 15:28:33 2021 +0100 + + Upgrade to Quarkiverse Google Cloud Services 0.10.0 + +commit cf0e5792f2e125614e039f28735da5c59ef759f2 +Author: James Netherton +Date: Wed Aug 25 15:26:59 2021 +0100 + + Remove override of google-cloud-graalvm-support + + This reverts commit 7dc924aa65bcef1511cecc76f12ec2c9596e57df. + +commit d644cd4c1619661a2e69729366997bb2fab7c066 +Author: James Netherton +Date: Wed Aug 25 15:26:25 2021 +0100 + + Upgrade Quarkus Qpid JMS to 0.27.0 + +commit e6bf71a804328dea2b4ac42522d342aff27e832e +Author: James Netherton +Date: Wed Aug 25 13:03:52 2021 +0100 + + Upgrade Quarkus to 2.2.0.Final + +commit a984f2070e5592ce31090f3d1c4588b0198cd75a +Author: Amos Feng +Date: Wed Aug 25 18:14:50 2021 +0800 + + Fix #2965 to register SunJaxb21NamespacePrefixMapp for reflection + +commit 1fa3f1e958072b81aeb3dea121f8166a8b0ca286 +Author: James Netherton +Date: Wed Aug 25 11:30:28 2021 +0100 + + Add ability to test HL7 extension with multiple HAPI implementations + + Fixes #2744 + +commit b46221765e2e1fd6e8c6f37f276222ede3c7aa08 +Author: James Netherton +Date: Wed Aug 25 08:37:33 2021 +0100 + + Enable Kubernetes extension native tests on CI + +commit e6da932d3da2fc13a5d2372dcd632cde77557257 +Author: James Netherton +Date: Tue Aug 24 16:56:41 2021 +0100 + + Add additional test coverage to messaging extesnions + + * Request / reply + * POJO consuming / producing + * Dynamically computed destinations + +commit e0523964a0e738c5983ecb34930551dbb58e8eb7 +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Wed Aug 25 03:11:00 2021 +0000 + + Updated CHANGELOG.md + +commit 720387e420d1ff41cd888095a371203837ee3d47 +Author: James Netherton +Date: Tue Aug 24 14:06:40 2021 +0100 + + Fix failure of SalesforceTest.testGetAccountByQueryHelper + + Fixes #3022 + +commit 63229992e7b46c76f041d1118bb7856557d0b812 +Author: Peter Palaga +Date: Tue Aug 24 11:20:42 2021 +0200 + + property attribute with @Consume does not work #3021 + +commit 5f5cd36a5f9e6e1dd2b949f8645ce64a5dbe8447 +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Tue Aug 24 03:11:12 2021 +0000 + + Updated CHANGELOG.md + +commit 2aa2c661681b46a0615ac01a2047ee523e295062 +Author: aldettinger +Date: Mon Aug 23 13:11:22 2021 +0200 + + Test setting the kamelet from an external file provided at runtime #3025 + +commit b8ba5f4c4624ea94f5e41e639746702b3cbc0e68 +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Sat Aug 21 03:10:10 2021 +0000 + + Updated CHANGELOG.md + +commit aa7bbd19942ae3f95d1c40a94ab1a1a8f378fca9 +Author: James Netherton +Date: Thu Aug 19 13:29:23 2021 +0100 + + Test camel-xchange with kraken until binance issues are resolved + +commit d9dd921722496962fc3f3f6a77b3955460ef41ff +Author: Peter Palaga +Date: Thu Aug 19 14:10:02 2021 +0200 + + CoreTest.testCamelContextAwareRegistryBeansInitialized failing after RouteBuilder started implementing CamelContextAware #3002 + +commit f4327fc43b669fdebebbb6b6521e721dd5d27aa4 +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Fri Aug 20 03:08:49 2021 +0000 + + Updated CHANGELOG.md + +commit fb36bc6ca368719cd678fea70333871995e1adc5 +Author: James Netherton +Date: Wed Aug 18 17:23:09 2021 +0100 + + Temporarily disable xchange tests #3016 + +commit 7dc924aa65bcef1511cecc76f12ec2c9596e57df +Author: James Netherton +Date: Mon Aug 16 09:43:35 2021 +0100 + + Temporarily override google-cloud-graalvm-support until quarkus-google-cloud-services 0.10.0 is available + +commit 6abc94685864e096925e321788d3d377ba752d65 +Author: James Netherton +Date: Tue Aug 10 11:20:46 2021 +0100 + + Register ApacheXMLDSig security provider for XmlSecurity + + Fixes #2977 + +commit 2f78326132a15ac4b9cc20871e0dcd6208d036b5 +Author: James Netherton +Date: Tue Aug 3 15:36:58 2021 +0100 + + Register SASL security provider for kudu + +commit 94708869d53ef74551b8e73d93ea3fe7d602a108 +Author: James Netherton +Date: Tue Jun 29 11:59:41 2021 +0100 + + Upgrade Quarkus to 2.2.0.CR1 + +commit e0dd8bdec89430c9796a6798c52937fa438273cd +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Wed Aug 18 03:09:20 2021 +0000 + + Updated CHANGELOG.md + +commit 235cc2b5b060197d4a0ae6d9b115d343f6f1e5ee +Author: James Netherton +Date: Tue Aug 17 14:48:43 2021 +0100 + + Ensure ActiveMQ container is fully started before running tests + +commit 3f552e0441ced5cc4a37eeb3383c6c2351123b3e +Author: James Netherton +Date: Tue Aug 17 08:30:17 2021 +0100 + + Reduce console log output from EipTest.throttle + + Fixes #3001 + +commit f520a476127135365aea9005c42f956712f577dd +Author: James Netherton +Date: Mon Aug 16 13:21:32 2021 +0100 + + Add dev mode support to camel-quarkus-kotlin + +commit 088dc750345cb1e13d62cd4e0ef574a5f4b56f5a +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Fri Aug 13 03:11:05 2021 +0000 + + Updated CHANGELOG.md + +commit 14fcebea86410ed83479344902f3bc8ff1cc2c66 +Author: Zineb Bendhiba +Date: Mon Aug 9 15:40:20 2021 +0200 + + Salesforce: Expand Consumer integration tests : add tests for Streaming API + +commit 26e659c573ea3831cfe08f90e5d83b6a44d9d1d3 +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Thu Aug 12 03:10:52 2021 +0000 + + Updated CHANGELOG.md + +commit 40c7ca5936668b987ee0748a76698ee4913f0876 +Author: Peter Palaga +Date: Tue Aug 10 23:16:40 2021 +0200 + + Upgrade to cassandra-quarkus 1.1.1 + +commit f0af35bb8badf60d386f4a5733d109d4552e2d8b +Author: olivier dufour +Date: Tue Aug 10 23:54:42 2021 +0200 + + fix extension creation on Windows + +commit 01719a219a0669e3262cc70e93021cd8af04b177 +Author: James Netherton +Date: Mon Aug 9 15:30:11 2021 +0100 + + Introduce a common set of extendable messaging tests + + Fixes #2914 + +commit 2a09b7b9fea1d519566683217ff6942f9bf5750f +Author: Philippe Schaller +Date: Thu Jul 8 15:08:40 2021 +0200 + + Fix read-lock tests + +commit bf609ca7ff86ac6dfc56effa68766f489637c292 +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Wed Aug 11 03:09:00 2021 +0000 + + Updated CHANGELOG.md + +commit 1fe10af5e7c76da2b3636b2eba436e00401ee895 +Author: James Netherton +Date: Tue Aug 10 13:01:44 2021 +0100 + + Avoid deprecated BuildProducer injection + +commit 9c7cb8f792038694d8e08580f695c7c53a6522f8 +Author: James Netherton +Date: Tue Aug 10 10:28:29 2021 +0100 + + Be more specific about which endpoints are mocked in AdviceWith test + +commit 2f2b61baa2ffc7cea8e15976f7c7d2e99cf04b1e +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Tue Aug 10 03:10:52 2021 +0000 + + Updated CHANGELOG.md + +commit 14daf3c96b4b1c86cc74555e4f5ae706fbff6c7e +Author: Zineb Bendhiba +Date: Sun Aug 8 09:39:26 2021 +0200 + + Remove unnecessary condition from Salesforce testAccountWithBasicInfo test + +commit fee5e52cbff074f8200c8e7e2d82dcce3a1c2c78 +Author: Zineb Bendhiba +Date: Fri Aug 6 12:02:24 2021 +0200 + + Salesforce : Expand producer test coverage + +commit 378dde3f2b5e8c2f696e5dc38e65cadb0f05117b +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Sat Aug 7 03:10:00 2021 +0000 + + Updated CHANGELOG.md + +commit 13971d3fc4c466fb7276ba92177cc6dbc2483226 +Author: Peter Palaga +Date: Fri Aug 6 08:30:08 2021 +0200 + + Fixup cb05578 Use quarkus-grpc-common instead of quarkus-grpc in the gRPC extension + +commit e304605fcfd6fbc986d6ccde22e399a6fd3f44c6 +Author: Peter Palaga +Date: Thu Aug 5 22:35:14 2021 +0200 + + Language component native support #817 + +commit 1ef819ad4b4464dbef473a516c5f73c1f70e7ad2 +Author: Peter Palaga +Date: Thu Aug 5 22:23:10 2021 +0200 + + Test language() DSL method + +commit 4350865bb91dc6073181c7024f55b0efe11e1932 +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Fri Aug 6 03:08:54 2021 +0000 + + Updated CHANGELOG.md + +commit 16289d8f9af656c50fa8e4c9ffb224e30a49f2b6 +Author: Peter Palaga +Date: Thu Aug 5 21:24:48 2021 +0200 + + Upgrade to cq-maven-plugin 0.38.0, keep spaces in simple XML + elements + +commit 08615de42a9641f7b159ce45ad5bea270a03c2db +Author: James Netherton +Date: Thu Aug 5 13:06:01 2021 +0100 + + Remove CamelBoxNativeApplicationStartedNotifier + + Fixes #2830 + +commit a3df3f58284ccb2ec316f231ee890ad4317707da +Author: James Netherton +Date: Thu Aug 5 12:52:26 2021 +0100 + + Remove workaround for Vert.x Buffer conversion + + Fixes #2838 + +commit 558e1a1f42adf571d3081dc6409c532a999622d4 +Author: James Netherton +Date: Thu Aug 5 12:50:46 2021 +0100 + + Upgrade Camel to 3.11.1 + +commit e7b01ea7e1a2c54caed52eb0499fc0ddde10ad08 +Author: aldettinger +Date: Thu Aug 5 10:45:15 2021 +0200 + + xchange: explicitly register the CurrencyNames bundle at build time #2983 + +commit 50bdf792e4e315e8585fa899aa88da3dc9696111 +Author: Peter Palaga +Date: Thu Aug 5 11:18:00 2021 +0200 + + Improve grouped test modules READMEs + +commit 8b108817b6fc61ecaf7a4b2b9a2f342339039e95 +Author: Peter Palaga +Date: Thu Aug 5 10:58:54 2021 +0200 + + Add debug output to figure out for which beans testCamelContextAwareRegistryBeansInitialized fails + +commit b04ea90a4b69985d4f437662772c4cb630d575e7 +Author: JiriOndrusek +Date: Wed Aug 4 10:15:16 2021 +0200 + + Expand AWS DDB tests #2776 + +commit 10bf4004d5211d1f73b9e26e5881ad0b243e5e41 +Author: James Netherton +Date: Wed Aug 4 13:52:38 2021 +0100 + + o# This is a combination of 2 commits. + + Run cq:sync-versions in the CI build to verify properties are in sync + +commit a8d0f0e09ffbda813126bd987246cd9d3f951f64 +Author: James Netherton +Date: Wed Aug 4 13:32:56 2021 +0100 + + Use shaded spring support dependencies in Spring RabbitMQ extension + + Fixes #2980 + +commit d3238fad92d54ba257281779d2c5a3a7691ca3ad +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Thu Aug 5 03:11:19 2021 +0000 + + Updated CHANGELOG.md + +commit b29c25ff97c644472be4c1aad2ce81d8f7d2f992 +Author: James Netherton +Date: Wed Aug 4 13:43:58 2021 +0100 + + Upgrade Quarkus to 2.1.1.Final + +commit ef4b836df511f3971515e66a1ae0cb7f98a8b1c9 +Author: aldettinger +Date: Wed Aug 4 11:13:06 2021 +0200 + + leveldb: remove useless substitutions in favor of graalvm built-in MethodHandles support #1908 + +commit 8bb41b2149b036d792fd551c8c919f1c49eb1f02 +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Wed Aug 4 03:11:03 2021 +0000 + + Updated CHANGELOG.md + +commit 1fac87f04c4a1fea2b1c5b7e06588e4362d7dbeb +Author: aldettinger +Date: Mon Aug 2 16:16:54 2021 +0200 + + jolt: remove the DeepCopySubstitution in favor of Quarkus serialization support #1433 + +commit 10c8517be05ae2d006633f7c78620debfb2708bf +Author: Peter Palaga +Date: Mon Aug 2 21:11:54 2021 +0200 + + Skip querying Jandex for quarkus.camel.native.reflection.include-patterns that have no wildcards fix #2970 + +commit 2379e615d888a72cd9279bbb02d851be57238a91 +Author: JiriOndrusek +Date: Wed Jul 28 14:46:00 2021 +0200 + + Test sending messages to an SNS FIFO topic #2625 + +commit 94af70ed531212f5658e1446e3796b475bb8a9c8 +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Tue Aug 3 03:09:12 2021 +0000 + + Updated CHANGELOG.md + +commit cb05578bdb99db11b90a8b55eaadb64f062676d0 +Author: James Netherton +Date: Mon Aug 2 15:10:12 2021 +0100 + + Use quarkus-grpc-common instead of quarkus-grpc in the gRPC extension + + Fixes #2954 + +commit 8f6a55dc1f81447109fe5242fed66897c9ebeba9 +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Sat Jul 31 03:09:55 2021 +0000 + + Updated CHANGELOG.md + +commit 6ff936771ed44d65888eb6a51cd02ae530bc7f18 +Author: James Netherton +Date: Thu Jul 29 15:21:23 2021 +0100 + + Introduce a build time optimized FastComponentNameResolver + + Fixes #892 + +commit 84423189475400efdfa365d8c94e5b62f91bd63c +Author: Peter Palaga +Date: Thu Jul 29 16:22:39 2021 +0200 + + Test expression EIP DSL method #2628 + +commit b5aa9a8b191a5f434ee6d6e4d3851aaf962914c0 +Author: Peter Palaga +Date: Thu Jul 29 16:22:01 2021 +0200 + + Make method() EIP method discoverable for the audit tooling + +commit 5dff734afa850d8614d3027d15d9a5dbe9a2839f +Author: Peter Palaga +Date: Thu Jul 29 14:54:37 2021 +0200 + + Test doTry(), doCatch() and doFinally() EIP DSL methods #2628 + +commit 2543568c5359ae5914fe998f91bfa05493ef6bcd +Author: Peter Palaga +Date: Thu Jul 29 14:44:33 2021 +0200 + + Test weighted() EIP DSL method #2628 + +commit 9ad2d457f5e9c94a92053df46ae3b1e281e35968 +Author: Peter Palaga +Date: Thu Jul 29 13:35:03 2021 +0200 + + Test validate() EIP DSL method #2628 + +commit df3c9aa341074ce5d1e26bc1d48a90c096a09fb7 +Author: Peter Palaga +Date: Thu Jul 29 10:50:42 2021 +0200 + + Test throttle() EIP DSL method #2628 + +commit 2981142ab5ea280a60a86d076d47f06dfcc41f9c +Author: Peter Palaga +Date: Thu Jul 29 10:18:08 2021 +0200 + + Test threads() EIP DSL method #2628 + +commit b0a6b568bce1aa5e7756faad5bf8a893fcecf376 +Author: aldettinger +Date: Thu Jul 29 10:11:59 2021 +0200 + + Fix foundation core faulttolerance itest package name + +commit 55093dc4c8ab04f71ed038ea8d2cd0ae6aa2a6f3 +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Fri Jul 30 03:10:41 2021 +0000 + + Updated CHANGELOG.md + +commit b0688c9da966d5556cc71b174a89fb5d49044415 +Author: Martin Muzikar <46345469+mmuzikar@users.noreply.github.com> +Date: Thu Jul 29 08:16:47 2021 +0200 + + Removed static modifier from top level class example + +commit 03c60b46b785180b7ff76435a8a1fa1729da1029 +Author: Peter Palaga +Date: Wed Jul 28 22:08:56 2021 +0200 + + Improve the Configuration by convention section of the configuration guide + +commit c8dd89c6d17e00ddd5622b4146fd0b418ae420df +Author: Peter Palaga +Date: Wed Jul 28 18:20:52 2021 +0200 + + Keep consul-client in sync with Camel + +commit bf776c9508a6a0b6a5b1256aaf2e5a8472ef5f7a +Author: Peter Palaga +Date: Wed Jul 28 18:20:05 2021 +0200 + + Test resequence().stream() EIP DSL method #2628 + +commit f74e9933f46d1e8a670c7f07b74f7b96aab8c842 +Author: Peter Palaga +Date: Wed Jul 28 15:34:10 2021 +0200 + + Test sticky() EIP DSL method #2628 + +commit bbd4931d1c176ec8298d4605f750d80653e9c037 +Author: Peter Palaga +Date: Wed Jul 28 15:15:23 2021 +0200 + + Test step() EIP method #2628 + +commit cb0dfa392b9127e0a705ed4192105084884d9176 +Author: Peter Palaga +Date: Tue Jul 27 18:11:06 2021 +0200 + + Fix and test serviceCall EIP #2628, fix #2952 + +commit 9c96fada8bbb25f6f73c3e05722a229d1b2759df +Author: Peter Palaga +Date: Tue Jul 27 13:48:34 2021 +0200 + + Test script().groovy() EIP #2628 + +commit 56bd770c39387dadfeb4de3f6409bb5c6dc7d435 +Author: Peter Palaga +Date: Tue Jul 27 12:23:58 2021 +0200 + + Test sample() EIP #2628 + +commit 3f010f744364d809ea8bafbf0adcf08aadad584c +Author: Peter Palaga +Date: Fri Jul 23 21:35:07 2021 +0200 + + Test routingSlip() EIP #2628 + +commit 9fda0283b19298b782894f0146f6f5504a000b30 +Author: Peter Palaga +Date: Fri Jul 23 19:10:13 2021 +0200 + + Test roundRobin() EIP #2628 + +commit c1e13bad0419003f876d39fa412c973a8902831d +Author: Peter Palaga +Date: Fri Jul 23 18:57:11 2021 +0200 + + Test rollback() EIP #2628 + +commit 55bf8c6062c9d576f020925f11850e7f9adae77a +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Thu Jul 29 03:10:20 2021 +0000 + + Updated CHANGELOG.md + +commit f5dca17062098c44b710cbbabc56dfc3b7bc36fc +Author: Peter Palaga +Date: Wed Jul 28 18:27:59 2021 +0200 + + Polish the wording of the Configuration docs page + +commit 76240287e50c276ff2f8b84bf32e7705e422e530 +Author: JiriOndrusek +Date: Tue Jul 27 10:17:11 2021 +0200 + + AWS2 ddb-streams integration tests failures #2860 + +commit 6202e22a84c7c2d1099bd58b64ffe5ca4863b96c +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Wed Jul 28 03:10:47 2021 +0000 + + Updated CHANGELOG.md + +commit 4744f5d6d264a50bacd3c4c1a6c8b4f9253ed833 +Author: Peter Palaga +Date: Tue Jul 27 09:58:51 2021 +0200 + + Document upgrading Camel Quarkus in Quarkus platform + +commit 09935b880028899fc7992a11e65e728a622ecfa5 +Author: Zineb Bendhiba +Date: Tue Jul 27 09:26:40 2021 +0200 + + Next is 2.2.0 + +commit 86474cb07f2ea349ca0e5d649d6c0f7331070122 +Author: aldettinger +Date: Tue Jul 27 09:17:56 2021 +0200 + + Fix typos in core documentation + +commit 2471cbf6b06207772fd28e77ed5c9a66451ba78a +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Tue Jul 27 03:08:40 2021 +0000 + + Updated CHANGELOG.md + +commit 7a0df68646419f7927eaf4ddec141a6bcfeb652e +Author: Peter Palaga +Date: Mon Jul 26 18:24:03 2021 +0200 + + Stress the more preferred way of configuring components via CDI by moving it up + +commit 736b19727fc635ebbde101d4c5decebf51b9adc5 +Author: James Netherton +Date: Mon Jul 26 12:00:30 2021 +0100 + + Expand ElasticSearch REST test coverage + + Fixes #2819 + +commit 4c701684c263ca5446275b74ad3e739ba0a2b6aa +Author: James Netherton +Date: Fri Jul 23 11:43:32 2021 +0100 + + Fix broken link to command-mode itest + +commit ce860720074c8ebc1419f35e8624cf0acbb48856 +Author: James Netherton +Date: Fri Jul 23 11:44:38 2021 +0100 + + Automate the generation of documentation for the transferException option + +commit 97be7f960cef7a1abc8e8b8488b1e8eb8577fd8a +Author: James Netherton +Date: Fri Jul 23 11:12:56 2021 +0100 + + Add native support for transferException + + Fixes #1868 + +commit de8032b558ee22ce4af27c5e098e48081c7bd00a +Author: JiriOndrusek +Date: Fri Jul 23 13:32:00 2021 +0200 + + [Camel 3.11] Solr cloud integration tests are failing #2814 + +commit e56a3d235bef0d82407ca1fb9747c275e83c798b +Author: James Netherton +Date: Fri Jul 23 14:49:11 2021 +0100 + + Test Quarkus and Camel ElasticSearch REST client configuration + + Fixes #2714 + +commit b30f045e6b990288f96cb6e406f4b8f6acdf36b6 +Author: Peter Palaga +Date: Mon Jul 26 12:10:54 2021 +0200 + + Remove an outdated sentence from the SQL extension docs, which was related to quarkus.camel.sql.script-files that was removed recently + +commit ea8718c49f1b259264d14485f0d253b33fd7cc85 +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Sat Jul 24 03:10:44 2021 +0000 + + Updated CHANGELOG.md + +commit 54c48e6a5ad4f70c13504f4cb159ed524986f186 +Author: Zineb BENDHIBA +Date: Fri Jul 23 15:25:43 2021 +0200 + + Upgrade Quarkus Debezium to 1.6.1.Final and Quarkus Google Cloud to 0.9.0 (#2937) + +commit 055ed05a73a1cfe1465dba15546f44c88c63ff64 +Author: James Netherton +Date: Fri Jul 23 07:19:49 2021 +0100 + + Upgrade Quarkus Qpid JMS to 0.26.0 + +commit 61ffea5dfa848bd707deb68d94d59adba82e1188 +Author: Zineb Bendhiba +Date: Wed Jul 21 11:26:39 2021 +0200 + + Update Salesforce integrations tests Readme to add Wiremock informations + +commit 3ff5c7f08bba254a1427dbdae0be2c80a51265fb +Author: Zineb BENDHIBA +Date: Wed Jul 21 11:13:32 2021 +0200 + + Update integration-tests/salesforce/src/main/java/org/apache/camel/quarkus/component/salesforce/SalesforceRoutes.java + + Co-authored-by: Peter Palaga + +commit c92c1e0eb9674a2567c9ceee1eca4f76d62e5cc8 +Author: Zineb Bendhiba +Date: Thu Jul 1 10:11:19 2021 +0200 + + Salesforce - Mock existing integration tests + Fixes #2667 + +commit 3289222f43a8028c4a5fabf5cfacfe12db97e04c +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Fri Jul 23 03:08:55 2021 +0000 + + Updated CHANGELOG.md + +commit 170ef2f4fb5a77268b48d63bc8173b6b2327ab36 +Author: Peter Palaga +Date: Thu Jul 22 15:57:55 2021 +0200 + + Upgrade to Quarkus 2.1.0.Final + +commit 0469ce64e90a957697bc815ec1ab5b640deb1e22 +Author: Peter Palaga +Date: Thu Jul 22 14:10:58 2021 +0200 + + Fixup 8522d9f Test removeProperty() and removeProperties() EIP DSL methods #2628 + +commit ccfeb8fa37c7052513181096003c42401aee9946 +Author: Peter Palaga +Date: Thu Jul 22 13:41:34 2021 +0200 + + Upgrade to Optaplanner 8.8.0 + +commit b5602f775c3643906dc145d528cd29c6b15090a7 +Author: James Netherton +Date: Thu Jul 22 09:33:26 2021 +0100 + + Use default timer delay for main-unknown-args itest application + +commit 855e26f57e7710c91b058c50080b1a1a027f4e16 +Author: James Netherton +Date: Wed Jul 21 16:35:41 2021 +0100 + + Use static issues to report nightly sync workflow failures + +commit 7ecfd4eac51d2a417f0ff338e5c8c5696322a1fb +Author: Peter Palaga +Date: Wed Jul 21 16:41:55 2021 +0200 + + Make the creation of a GitHub release a part of the release process fix #2864 + +commit 17d64d188654373f06d0a634f8fb7993fd296143 +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Thu Jul 22 03:10:20 2021 +0000 + + Updated CHANGELOG.md + +commit abcc535f5e10101760b30335f463016f3049d366 +Author: Freeman Fang +Date: Fri Jul 16 16:15:16 2021 -0400 + + fix js-dsl integration test failure #2908 + +commit b8c1a4bd3abdd0237c106526739f809a128c3f18 +Author: Zineb Bendhiba +Date: Tue Jul 20 13:50:21 2021 +0200 + + add zbendhiba public key + +commit 8e4c6e6b99a2450cb5db95404b5d4549fb1ad304 +Author: James Netherton +Date: Wed Jul 21 13:52:22 2021 +0100 + + Document the options for configuring the ElasticSearch REST client + + Fixes #2502 + +commit 10197de7b4573b49c37327e0df92b74dce9ee5a4 +Author: James Netherton +Date: Tue Jul 20 14:53:20 2021 +0100 + + Support JMS ObjectMessage + + Fixes #2599 + +commit e1dc66fee22a97ed53158612c2f4e2cc183a58dd +Author: James Netherton +Date: Wed Jul 21 09:29:26 2021 +0100 + + Use quarkus.native.resources.includes in place of IncludeResources native build arg + +commit 70bb59bfc72ab51b6e878b107f3d2decc31f1134 +Author: James Netherton +Date: Tue Jul 20 13:43:32 2021 +0100 + + Expand Netty test coverage + + Fixes #2636 + +commit b31c0d9d9df00e18cc871e5cdb1f05f2a58cdfd3 +Author: James Netherton +Date: Tue Jul 20 13:15:31 2021 +0100 + + Remove redundant SQL itest serialization configuration + +commit 03d2ff084a98470379cabddbb931c241fb812565 +Author: James Netherton +Date: Tue Jul 20 13:10:24 2021 +0100 + + Remove quarkus.camel.sql.script-files configuration property + + Fixes #2823 + +commit e288fd9e08d04b2e2e3a198706a1bdf4f223f216 +Author: James Netherton +Date: Wed Jul 21 07:56:27 2021 +0100 + + Minor grammatical correction to native mode serialization docs + +commit f46b4142c685f5f69e98f669c0ebd1f2e3d18c4f +Author: James Netherton +Date: Tue Jul 20 15:13:06 2021 +0100 + + Remove reflective class registration for ScramSaslClientFactory + + Fixes #2850 + +commit 2d3d8393ffbdb4169e5d9750ed48d90be605692d +Author: JiriOndrusek +Date: Wed Jul 14 11:59:22 2021 +0200 + + Laveraging quarkus-security + +commit 3e218bd20e9643854600598d562044fb866b38e9 +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Wed Jul 21 03:08:42 2021 +0000 + + Updated CHANGELOG.md + +commit d2ec142c118eb5a227881f87d5687b674eab2cb3 +Author: Zoran Regvart +Date: Tue Jul 20 20:24:44 2021 +0200 + + fix: broken links + +commit e16d4169fbbb5d328d43724e45e6c026fb4758b1 +Author: James Netherton +Date: Tue Jul 20 09:39:26 2021 +0100 + + Build with JDK 16 as 15 is EOL + +commit 358d26a772959b005161d3c20bc877d7136aa7dc +Author: JiriOndrusek +Date: Tue Jul 20 13:41:09 2021 +0200 + + Use of serialization feature of Quakus (includes Sql and Nitrite) (#2904) + +commit dd634d7abdc69d056b1de5562773256bb23e9817 +Author: Peter Palaga +Date: Tue Jul 20 11:31:02 2021 +0200 + + Move the paragraph about quarkus-bom down to where it is relevant + +commit 8ef456d7f3bf5a7f65ac18f7d0a9877c85105ef1 +Author: Martin Muzikar <46345469+mmuzikar@users.noreply.github.com> +Date: Tue Jul 20 11:17:58 2021 +0200 + + Add information about BOMs and precedence of them (#2912) + + Add information about BOMs and their precedence + +commit d6a909130b58baf2ed5224b7547dad52f0b069e8 +Author: James Netherton +Date: Mon Jul 19 14:02:48 2021 +0100 + + Prevent configuration of QuarkusKafkaClientFactory if quarkus-kubernetes-service-binding is not on the classpath + + Fixes #2901 + +commit fa7a4e512b5a5a2d43233e1e3bd20830ce043750 +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Tue Jul 20 03:10:56 2021 +0000 + + Updated CHANGELOG.md + +commit e4a94bebf7abf45d89b0a012dea6cf4259c62003 +Author: JiriOndrusek +Date: Mon Jul 19 10:49:20 2021 +0200 + + camel-quarkus-minio: quarkus.minio.url is mandatory and must be a valid url + +commit 6489700899e9e60185d71514a8a96b330e5048be +Author: James Netherton +Date: Mon Jul 19 07:43:59 2021 +0100 + + Upgrade Quarkus to 2.1.0.CR1 + +commit dc066d80d355b0fe93ff94ce1c32ea04b1c2032c +Author: Freeman Fang +Date: Thu Jul 15 17:22:34 2021 -0400 + + fix can't build camel-fhir extension native image #2906 + +commit d38d8b739dbd4e37d2abe6f5ecfee8e5529ece4a +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Fri Jul 16 03:11:15 2021 +0000 + + Updated CHANGELOG.md + +commit 7054a3a0dd7c097a30a85dec85d0c726671963c2 +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Thu Jul 15 03:09:12 2021 +0000 + + Updated CHANGELOG.md + +commit 660f757988a655f8d50f1ac2f56ddd103d370131 +Author: James Netherton +Date: Fri Jul 2 08:15:52 2021 +0100 + + Build with Maven 3.8.1 + +commit 8522d9fb64c7a967938615825050b5969dd41213 +Author: Peter Palaga +Date: Fri Jul 9 21:52:56 2021 +0200 + + Test removeProperty() and removeProperties() EIP DSL methods #2628 + +commit 32fcc21c93be783087630e4dade205fde3ea28eb +Author: Peter Palaga +Date: Fri Jul 9 19:25:43 2021 +0200 + + Test removeHeader() and removeHeaders() EIP DSL methods #2628 + +commit 6c47431ab17183ca5186797758a23c98099a7a46 +Author: Peter Palaga +Date: Fri Jul 9 18:47:15 2021 +0200 + + Test recipientList() EIP DSL method #2628 + +commit 9bf5ca08b56044239827736aa11449ad0a42c0f7 +Author: Peter Palaga +Date: Thu May 20 23:53:18 2021 +0200 + + Test pollEnrich() EIP DSL method #2628 + +commit ff910bf0bfafec379f4c98719a1ea1fea966d4d8 +Author: Peter Palaga +Date: Thu May 20 23:52:52 2021 +0200 + + Generalize Seda test + +commit 45ae17d6be66ecaa341062fdb43bf59eacc10c7e +Author: Peter Palaga +Date: Thu May 20 17:58:24 2021 +0200 + + Test multicast() EIP DSL method #2628 + +commit 7c728301007efa7a804c3c5864fa95fb2427c4e9 +Author: Peter Palaga +Date: Thu May 20 17:54:09 2021 +0200 + + Test loop() EIP DSL method #2628 + +commit 2add5cf4a390849535bd4700ad024a8b1bc6ba9a +Author: Peter Palaga +Date: Thu May 20 15:24:04 2021 +0200 + + Test faultToleranceConfiguration() EIP DSL method #2628 + +commit 5bacca356d9827a81cc9c80b5e04c39cf1021823 +Author: Peter Palaga +Date: Thu May 20 14:30:12 2021 +0200 + + Test failover() EIP DSL method #2628 + +commit c82222d07d546d3cfb02838ff6fbb48ec4dd7c12 +Author: Peter Palaga +Date: Thu May 20 14:19:19 2021 +0200 + + Test enrich() EIP DSL method #2628 + +commit d60a4440b23efb852b5506424e652019b636a4f4 +Author: Peter Palaga +Date: Wed May 19 22:18:23 2021 +0200 + + Test dynamicRouter() EIP DSL method #2628 + +commit 782f8240a7c7ef4f0a27f85a704d74d31513ba34 +Author: Peter Palaga +Date: Wed May 19 17:42:57 2021 +0200 + + Test claimCheck() EIP DSL method #2628 + +commit 9c99a0a1e3d67f71403f51e036fb7b3fbf7c5e70 +Author: Peter Palaga +Date: Wed May 19 17:05:34 2021 +0200 + + Test resequence() and batch() EIP DSL methods #2628 + +commit aba774d8d71eeeca91a6bcb2093f13e032e32d5b +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Wed Jul 14 03:09:53 2021 +0000 + + Updated CHANGELOG.md + +commit 9344d527b2979a859e3678746bb55e54fa1abcc5 +Author: James Netherton +Date: Mon Jul 12 13:18:16 2021 +0100 + + Test OpenTelemetry invocation of Camel routes from JAX-RS services + +commit 5e07d0c438c9206f9c29338cdf39ff75072e6ef6 +Author: James Netherton +Date: Mon Jul 12 09:15:22 2021 +0100 + + Test OpenTracing @Traced beans in conjunction with Camel routes + +commit fab4b76a24ab4cc51ddc7c240dfc90b8318fbd02 +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Tue Jul 13 03:10:47 2021 +0000 + + Updated CHANGELOG.md + +commit 0f61f2fccf3b7c2a062a78199857f83958e06855 +Author: James Netherton +Date: Fri Jul 9 14:25:41 2021 +0100 + + Remove redundant jdk-8-classpath profile + +commit 579516f5965dac617d7e4c47073dc8cb0997265d +Author: Peter Palaga +Date: Mon Jul 12 15:01:16 2021 +0200 + + Warn users that not all combinations of artifacts managed by + quarkus-universe-bom are tested + +commit cdb025cf9d0ba840828e011d26c63c251cb63221 +Author: Zineb Bendhiba +Date: Mon Jul 12 09:30:27 2021 +0200 + + add info about usage of nimbus-jose-jwt + +commit 58202a22752585c47241ea0731f6777644a3566a +Author: George Gastaldi +Date: Mon Jul 12 00:54:33 2021 -0300 + + Remove extra .Final in plugin version + +commit 92ac434208130d202d904e3f10047c38fb6594e5 +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Sat Jul 10 03:09:55 2021 +0000 + + Updated CHANGELOG.md + +commit 74b8bb957c533f6c23201768ce278080cbf839d6 +Author: James Netherton +Date: Fri Jul 9 07:44:54 2021 +0100 + + Add a summary page for messaging extensions + + Fixes #2856 + +commit a85803f5631e717b8f6145e941b54a3e9df2ebbf +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Fri Jul 9 03:09:56 2021 +0000 + + Updated CHANGELOG.md + +commit 11c3f0ac5a9f0b246a6c172c1edb7d39d0fced18 +Author: James Netherton +Date: Tue Jul 6 08:28:37 2021 +0100 + + Leverage catalog metadata to discover unremovable types + + Fixes #2822 + +commit 93443a0dda1e40c9561cbc34eb9bb6652fcf5fcc +Author: aldettinger +Date: Thu Jul 8 09:52:36 2021 +0200 + + Remove useless docker-java8 profile + +commit 39ecf86a2e07446c4ae25c7ddd90aaa6cf7d1a8f +Author: James Netherton +Date: Thu Jul 8 07:11:11 2021 +0100 + + Fix native tests matrix json evaluation on nightly sync jobs + +commit 2ded036c843bd5bd3e0776ab54c61c771e2421ea +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Thu Jul 8 03:10:13 2021 +0000 + + Updated CHANGELOG.md + +commit 31b1d5d20740ad572637570309bab4af6055778c +Author: aldettinger +Date: Wed Jul 7 19:02:14 2021 +0200 + + kudu: remove the useless test harness logic dedicated to Java 8 #2885 + +commit 1940097e1f23493e40f7061d7e3ef404a15555cd +Author: James Netherton +Date: Tue Jul 6 10:23:30 2021 +0100 + + Avoid producing FeatureBuildItem in support extensions + + Fixes #2873 + +commit 086bd5d0c38bcf9a57e00d676adb430b81a63f66 +Author: James Netherton +Date: Tue Jul 6 15:44:13 2021 +0100 + + Upgrade Quarkus to 2.0.1.Final + +commit 0f9453c02e71dae301454f44b7c38c86e4163699 +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Wed Jul 7 03:10:06 2021 +0000 + + Updated CHANGELOG.md + +commit ad6f720e41a06206e48971bf7b68bb93887009b6 +Author: Zineb BENDHIBA +Date: Tue Jul 6 15:01:59 2021 +0200 + + kafka : impossible to authenticate with oauth2 (#2879) + + fixes #2878 + +commit 7729b525a66dd67562172e32c1ac182136862a56 +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Tue Jul 6 03:10:42 2021 +0000 + + Updated CHANGELOG.md + +commit 22e72ec7ae7de7f7699905c3de1f8fd519cefcb6 +Author: aldettinger +Date: Fri Jul 2 10:41:49 2021 +0200 + + Add test for camel.faulttolerance.* properties #2780 + +commit c1612ed16561bebb91184c0ca3d8ecd613fb9b3a +Author: aldettinger +Date: Mon Jul 5 15:24:08 2021 +0200 + + Regenerate format + +commit b5b34f31efa3f1033667c5a4b0694bcba1a03b61 +Author: James Netherton +Date: Fri Jul 2 10:43:54 2021 +0100 + + Default to JDK 11 source & target compiler options + +commit 8e41b4f8c59f0f4309cd8751711dc124e088ac11 +Author: James Netherton +Date: Fri Jul 2 14:06:46 2021 +0100 + + Use autowiring for QueueServiceClient + +commit 1c5821c7e4956d8c37f19e12dd375d4fad915830 +Author: James Netherton +Date: Fri Jul 2 14:07:17 2021 +0100 + + Clean up unnecessary use of @Unremovable + +commit 793643132b121eb97dcf338c6a2b6ee9ddd95b42 +Author: Amos Feng +Date: Mon Jul 5 10:07:53 2021 +0800 + + Fix #2869 to combine build sanity checks into a single scirpt + +commit 8259c7d65a4124b7f8484c467e7417bfcb0c2555 +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Sat Jul 3 03:10:03 2021 +0000 + + Updated CHANGELOG.md + +commit 7d56d88595496f78c3f8c985f4feb0d103b77aaf +Author: James Netherton +Date: Fri Jul 2 10:18:16 2021 +0100 + + Fix check-format profile for groovy validate-jvm-native-since execution + +commit 604143c663afd4e1fd9ed4d73c10960003356a06 +Author: Amos Feng +Date: Fri Jul 2 15:44:02 2021 +0800 + + Fix #2763 to ensure jvmSince and nativeSince not newer that current version (#2866) + +commit dcc8eb6d9f25c819536116dd99222c24e57832a2 +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Fri Jul 2 03:10:04 2021 +0000 + + Updated CHANGELOG.md + +commit f6c9389c1de2edbe0e5ee3f9272ba753099156a6 +Author: James Netherton +Date: Thu Jul 1 11:31:23 2021 +0100 + + Fix usage of incorrect @Produces annotation + +commit 9be7fed5e6faf4e9a57c426ddff59463924bee5c +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Thu Jul 1 03:10:50 2021 +0000 + + Updated CHANGELOG.md + +commit e6febd81f17dff5094c50750a5fa67c9bc1c4edc +Author: Peter Palaga +Date: Wed Jun 30 16:21:50 2021 +0200 + + Upgrade to OptaPlanner 8.0.0.Final + +commit ef853906cb805f12b76e387767555b9cfda020ca +Author: Peter Palaga +Date: Wed Jun 30 15:56:05 2021 +0200 + + Upgrade to Debezium 1.6.0.Final + +commit e5356e9a3f3dad44d9ce323cf676fc566c4aedff +Author: Peter Palaga +Date: Wed Jun 30 15:55:28 2021 +0200 + + Upgrade to Cassandra Quarkus 1.1.0 + +commit 3f13cedeb968c81aac96965d781d377ab1776d3c +Author: Peter Palaga +Date: Wed Jun 30 15:54:54 2021 +0200 + + Upgrade to Quarkus Hazelcast Client 2.0.0 + +commit 5967ae2f7a3f9ebc7d55a30eed705ebe49bca197 +Author: JiriOndrusek +Date: Tue Jun 29 13:11:15 2021 +0200 + + Class loader issues in AvroRpcTest with Quarkus 2.0.0.Alpha3 #2651 + +commit a6a8a9270f3e83ad1350fcad4e9d1274c41fe692 +Author: aldettinger +Date: Wed Jun 30 10:10:26 2021 +0200 + + Fixed typos + +commit 60f9c9af7c40e7e21d0199da19436cbb5bdd5657 +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Wed Jun 30 03:09:59 2021 +0000 + + Updated CHANGELOG.md + +commit ce9794ad7b979e5a0b85bf47270040aee1aecd47 +Author: James Netherton +Date: Tue Jun 29 07:44:23 2021 +0100 + + Add OpenTelemetry extension + + Fixes #2084 + +commit 811cd77e53276322f0d245712b878a9fdfda1cf6 +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Tue Jun 29 03:11:14 2021 +0000 + + Updated CHANGELOG.md + +commit e5ea0e85d524b68c492f96d63b6d45f930432bd5 +Author: James Netherton +Date: Mon Jun 28 11:10:30 2021 +0100 + + Remove Camel 3.11 staging repository + +commit f5eb6e717d8e5f9296a01737cdf3f03d5bd6c33c +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Sat Jun 26 03:10:00 2021 +0000 + + Updated CHANGELOG.md + +commit e90c9bdcf550459839418a44f9760d0971345441 +Author: Peter Palaga +Date: Fri Jun 25 17:46:57 2021 +0200 + + Improve extension descriptions + +commit cbaba0a7d4437d52567c541923e6ac01da539ee8 +Author: Peter Palaga +Date: Fri Jun 25 16:35:34 2021 +0200 + + Fix a typo in the Core extension description + +commit 70d12e6ccd4696e24ecdc76c89c7befd6652056f +Author: Peter Palaga +Date: Fri Jun 25 16:31:49 2021 +0200 + + Next is 2.1.0 + +commit 31bf0a4149f46eee0f2b0b1ddbf02a428afd967d +Author: Peter Palaga +Date: Wed Jun 23 15:46:56 2021 +0200 + + Add a section about testing to the Contributor guide, fix #2607 + +commit e0ac12e2a7014f0e6bbcf06289a3e895d6331cdd +Author: Peter Palaga +Date: Fri Jun 25 12:07:36 2021 +0200 + + Upgrade to Minio 2.0.0 + +commit e2c61818bb43ce43d2a3442a0fc30b8e792c26fe +Author: Amos Feng +Date: Fri Jun 25 13:43:17 2021 +0800 + + Fix #2285 upgrade to use the lasest narayana lra-coordinator + +commit 79de41b638ee585688386421fae75b7aabf13daa +Author: Freeman Fang +Date: Wed Jun 23 20:31:05 2021 -0400 + + Fix InfinispanTest failed on Mac #2840 + +commit 68bbcac357f37f8ebe30bc90f14681364b8afb60 +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Fri Jun 25 03:10:10 2021 +0000 + + Updated CHANGELOG.md + +commit ed5cc241e2971c7ebe5c17902a5a21f10daa3580 +Author: James Netherton +Date: Thu Jun 24 08:21:20 2021 +0100 + + Remove reference to obsolete ContainerResourceLifecycleManager + +commit 5e6965b1ccd19d35fb51a0d5044eb055e34ce0c2 +Author: James Netherton +Date: Thu Jun 24 08:18:34 2021 +0100 + + Add a section about mocking remote endpoints to Testing page of user guide + + Fixes #2834 + +commit 68c4b55dce0339e301e143a8ff962e694a26fbe8 +Author: James Netherton +Date: Thu Jun 24 12:49:56 2021 +0100 + + Add a TypeConverter for platform-http to convert Buffer to ByteBuffer and work around #2838 + +commit 353cc54b220a7f90e0ec59a36972591c84ace6ed +Author: Peter Palaga +Date: Thu Jun 24 14:24:54 2021 +0200 + + Disable xref checks as long as there is no 3.11.x branch of Camel docs + +commit d428a49bdbc99c5a4e728a66704a6a0254a51249 +Author: Peter Palaga +Date: Thu Jun 24 14:09:25 2021 +0200 + + Fixup fee98005 Upgrade to Quarkus 2.0.0.Final + +commit 0d1bd0eeaada2f5910716ee80dca1b0dce5a6e5a +Author: Peter Palaga +Date: Thu Jun 24 14:08:36 2021 +0200 + + Upgrade to Debezium 1.6.0.CR1 + +commit 1dce60e48d87d1812516e186aea215f8b5349056 +Author: Peter Palaga +Date: Wed Jun 23 22:31:34 2021 +0200 + + Upgrade to Quarkus Freemarker 0.3.0 + +commit 6ad2531be4c8cbc9c9728af51c558b68cb3e7455 +Author: Peter Palaga +Date: Wed Jun 23 21:58:11 2021 +0200 + + Reformat via mvn process-resources -Pformat + +commit 35f8b20efcb25be91e8d223d4d7c6aceb0f32ef8 +Author: Peter Palaga +Date: Wed Jun 23 21:55:30 2021 +0200 + + Upgrade to Quarkus Google Cloud Services 0.8.0 + +commit 46676d834b81a5b434a66845b0c9d5d4af9f2b37 +Author: Peter Palaga +Date: Wed Jun 23 21:42:50 2021 +0200 + + Remove APNS after it was removed from Camel + +commit e5ae7a4346ef16192860a8fc8b04ef20263eeade +Author: Peter Palaga +Date: Wed Jun 23 21:16:21 2021 +0200 + + Add Camel 3.11.0 staging repository + +commit 48264ad070d969b171ea06bb67c45ca1c1017ef0 +Author: James Netherton +Date: Mon Jun 21 14:18:02 2021 +0100 + + Align bcpg-jdk15on with Quarkus bouncycastle version + +commit 53b033eb5b41062ad6dedc89c4a3f8c65e6b352d +Author: James Netherton +Date: Mon Jun 21 10:44:41 2021 +0100 + + Disable failing solr cloud tests #2814 + +commit 3a18b28418dab1e4dfc41c95f80caf6ead35362a +Author: James Netherton +Date: Tue Jun 22 13:11:33 2021 +0100 + + Remove vertx-http itest SSL workaround + + Fixes #2704 + +commit 1a7dd94544da47be44ccdbacf86b9ebf1dbab60d +Author: James Netherton +Date: Tue Jun 22 13:08:02 2021 +0100 + + ThreadPoolBulkhead not available in smallrye-fault-tolerance 5.1.0 + + Fixes #2696 + +commit f42e691573a68c1d4270482e4ac98911c5a12211 +Author: Zineb Bendhiba +Date: Thu May 27 13:27:54 2021 +0200 + + Upgrade to Camel 3.11.0 + +commit 665f4bb71ddfcb0fc461bafe1e0756415876a281 +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Thu Jun 24 03:10:03 2021 +0000 + + Updated CHANGELOG.md + +commit 29fa3000179eed3c0b3f98169ad7dad370907006 +Author: James Netherton +Date: Wed Jun 23 12:41:37 2021 +0100 + + Use a custom NativeImageStartedNotifier for box native tests to work around #2830 + +commit 15ce1f1726fc9bbf92e01314df1a4f879ef19623 +Author: Peter Palaga +Date: Wed Jun 23 15:50:41 2021 +0200 + + Upgrade to Quarkus QPID 0.25.0 + +commit b3a363582490ecc0f90cd8eaa7239b211b686f18 +Author: Amos Feng +Date: Fri Jun 11 12:56:20 2021 +0800 + + introduce integration-tests-support-activemq + +commit 241bebe559b037e867acc5b65ca4ff0e1d7bd69e +Author: Amos Feng +Date: Tue Jun 8 08:49:51 2021 +0800 + + Fix #2727 to use embeddedActiveMQ for messageing and jta integration tests + +commit cc871668a2704f638db85028a92f0969be91070e +Author: Peter Palaga +Date: Fri Jun 18 12:17:36 2021 +0200 + + Adapt to io.quarkus.kafka.client.runtime.KafkaRuntimeConfigProducer.createKafkaRuntimeConfig() switching from @Named to @Identifier + +commit fee9800500515abc72e5b7c3bd34ed74cdbce3e3 +Author: Peter Palaga +Date: Tue Jun 8 08:42:40 2021 +0200 + + Upgrade to Quarkus 2.0.0.Final + +commit fd010b61c85d5057e697f42071b09e7eec918be5 +Author: James Netherton +Date: Wed Jun 23 12:35:56 2021 +0100 + + Fix Salesforce native CNFE java.io.InputStream + + Fixes #2831 + +commit 5fdc350f4a749212bddb87b07c027eb50cd36bbb +Author: Zineb Bendhiba +Date: Wed Jun 23 13:46:16 2021 +0200 + + Add the creation of the document + +commit 6dd8a139d265304e943fd21e929e3a3660b042e3 +Author: James Netherton +Date: Wed Jun 23 13:28:44 2021 +0100 + + Fix first-steps xref in command-mode.adoc + +commit e50d8459c0150c282b073530944daaef0384b949 +Author: Peter Palaga +Date: Wed Jun 23 12:53:07 2021 +0200 + + Revisit user guide testing page, fix #2679 + +commit 4a91d8fd58fafc7aad0694db049ddba6bcc85b62 +Author: James Netherton +Date: Wed Jun 23 08:26:51 2021 +0100 + + Set mock endpoint expected message count for LevelDB aggregate binary test + +commit 426e19ea19a11abfe56d024bd38e203e718ed306 +Author: James Netherton +Date: Wed Jun 23 08:52:10 2021 +0100 + + Deprecate quarkus.camel.sql.script-files configuration property + +commit ecc693205590fbfed23da2bd49c080423f838c34 +Author: Peter Palaga +Date: Tue Jun 22 23:11:28 2021 +0200 + + Update the Command mode docs page, fix #2782 + +commit 038d7058858613db7708e320211a92f6ce7b6510 +Author: aldettinger +Date: Wed Jun 23 09:35:05 2021 +0200 + + fix typo + +commit 620261806a6b5f42204908fb975bdea2339e9775 +Author: Peter Palaga +Date: Tue Jun 22 18:27:28 2021 +0200 + + Migration guide: mention Quarkus 2.0 migration guide, + camel-quarkus-xml-io artifact replaced by camel-quarkus-xml-io-dsl + +commit d4026e84697c042aad31b76faa980e8de2d54f0f +Author: aldettinger +Date: Tue Jun 22 18:37:34 2021 +0200 + + Test camel.threadpool.* set of properties #2781 + +commit b299b0d22e72fcb1e90c79096acda7809d0b4e12 +Author: James Netherton +Date: Tue Jun 22 07:49:37 2021 +0100 + + Manage Groovy dependencies with groovy-bom import + + Fixes #2812 + +commit 32b53f73e17716547368919f3678a4ba101bf532 +Author: Peter Palaga +Date: Mon Jun 21 22:12:32 2021 +0200 + + Upgrade to Quarkiverse Google Cloud Services 0.8.0.CR1, Fix #2816 Let quarkus-google-cloud-services or com.google.cloud:libraries-bom align opencensus, perfmark & Co. + +commit c5bdc1058522cc0f54e22cca69afac740b90fc56 +Author: aldettinger +Date: Mon Jun 21 15:19:00 2021 +0200 + + Tested and documented the specification of custom beans in application.properties #2778 + +commit e0ac2cc1501fd6719dd11383618466198ce313a5 +Author: James Netherton +Date: Tue Jun 22 07:31:24 2021 +0100 + + Increase heap size for camel-main sync job + +commit 0c3cba4fc4756c604792f3f54d130a9f6a13ff36 +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Tue Jun 22 03:11:12 2021 +0000 + + Updated CHANGELOG.md + +commit 16d09ea8b4fe77d3c2895e0be755e1c2d3efeef8 +Author: Peter Palaga +Date: Mon Jun 21 11:34:12 2021 +0200 + + Replace quarkus.camel.native.resources.* with quarkus.native.resources.* fix #988 + +commit dca1165117085f9e15414654ce20aa5730109e81 +Author: Peter Palaga +Date: Mon Jun 21 13:08:15 2021 +0200 + + Unmanage unnecessary google dependencies fix #2689 + +commit d151836f040655985d3cc5c4aac1b437aa25b088 +Author: James Netherton +Date: Mon Jun 21 11:24:18 2021 +0100 + + Use --fail-at-end for nightly sync jobs integration tests + +commit 5cfcffb77c866f370b272743f56641b38fd8af98 +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Sun Jun 20 03:08:41 2021 +0000 + + Updated CHANGELOG.md + +commit 37fa7ac82be10f07b26a1bfff5092a571effe050 +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Sat Jun 19 03:10:20 2021 +0000 + + Updated CHANGELOG.md + +commit 15fe3991e6ba174a1f2facc498df4138745befd1 +Author: Peter Palaga +Date: Fri Jun 18 19:52:21 2021 +0200 + + Remove camel-quarkus-main #2391 + +commit c1c2b1dd7b15a19469c5e43bd7502bdddadbe096 +Author: Peter Palaga +Date: Wed Jun 9 22:14:43 2021 +0200 + + Upgrade to azure-bom 1.0.3 and fix #2207 Upgrading to Jackson 2.12.1 via Quarkus BOM 1.12 breaks Azure SDK v12 extensions + +commit f9d04db50b2b8b00274851cc26c40d0df4e5ac19 +Author: James Netherton +Date: Fri Jun 18 15:59:38 2021 +0100 + + Reduce Splunk minimum free disk space requirement + +commit 9b4232dde085d114f8d502dec770284ea51ef3d3 +Author: Peter Palaga +Date: Fri Jun 18 17:55:37 2021 +0200 + + Reformat via mvn process-resources -Pformat -N + +commit 43960d8e5bafbfd8c42a33ee08fdf79a033a831e +Author: James Netherton +Date: Fri Jun 18 11:16:51 2021 +0100 + + Initialize NTLMEngineImpl at runtime + + Fixes #2793 + +commit 5c969cac27abd1af122b895fc0a7e7f26b69df25 +Author: James Netherton +Date: Fri Jun 18 10:51:03 2021 +0100 + + Expand HTTP extension test coverage + + * Proxy server tests + * Basic authentication tests + * Compressed response tests + + Fixes #2794 + +commit 52a2c91a93f52c51ab900e4b7d56553fca3ce985 +Author: Peter Palaga +Date: Fri Jun 18 12:44:37 2021 +0200 + + Upgrade to Cassandra Quarkus 1.1.0-rc2, fix #2801 + +commit f014674f3a5bf48a043c024700e9424e77c89dbc +Author: James Netherton +Date: Fri Jun 18 14:27:00 2021 +0100 + + Remove redundant apt dependency from camel-quarkus-bom + +commit 6083fa14d8753cc25010bc08d9d264ffae156f53 +Author: Peter Palaga +Date: Tue Jun 15 18:35:49 2021 +0200 + + Upgrade to Optaplanner 8.7.0.Final + +commit 218ea47ca6cf653f4bfb3a53cee6bbd9dbc98ad5 +Author: Peter Palaga +Date: Tue Jun 15 18:27:13 2021 +0200 + + Upgrade to Debezium 1.6.0.Beta2, fix #2724 + +commit f8aa633dbe0c4ba3b6ef46083dbe8f2c16c90599 +Author: Peter Palaga +Date: Tue Jun 15 18:20:05 2021 +0200 + + Upgrade to Cassandra Quarkus 1.1.0-rc1 + +commit 9dbe61849af84b80b107351231c8601caaa1e4cc +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Fri Jun 18 03:10:34 2021 +0000 + + Updated CHANGELOG.md + +commit f1cc006063214eddb7e047fc2580a932bbd8531f +Author: aldettinger +Date: Thu Jun 17 13:23:24 2021 +0200 + + Expand jsonpath test coverage #2783 + +commit fa00983fb5d117284ddf9d5dcd36c7fc876a964c +Author: Freeman(Yue) Fang +Date: Thu Jun 17 09:27:20 2021 -0400 + + fix hazelcast integration-test failed in native mode(On Mac) #2719 (#2789) + +commit 7868cb2617358b5eb7217e32bc3e1e43b321a486 +Author: Andrea Cosentino +Date: Thu Jun 17 14:06:46 2021 +0200 + + Website build fixed after commit of kamelet docs + +commit d5ea76670cb0283b9e59ecc69e5a9b770415ae43 +Author: Andrea Tarocchi +Date: Wed Jun 16 16:59:10 2021 +0200 + + fix #2733 : Native support for kamelet.yaml discovery. + +commit 1447cfb218d3e566be5431cd3e0dd6146463aace +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Thu Jun 17 03:08:12 2021 +0000 + + Updated CHANGELOG.md + +commit bb26ab660c543b3caca5bf914399501ad9acdc68 +Author: Freeman(Yue) Fang +Date: Wed Jun 16 16:02:38 2021 -0400 + + Fix JSON Jackson jacksonConversionPojo test-squashed #2726 (#2790) + +commit b856df58078471e027c7d8e7dbc586ba8d37b87f +Author: James Netherton +Date: Wed Jun 16 12:28:33 2021 +0100 + + Test Quarkus and Camel Infinispan client configuration + + Fixes #2713 + +commit 3ce3329c55cf3d8155dce7fcc610ca0b75d34550 +Author: Peter Palaga +Date: Wed Jun 16 16:22:07 2021 +0200 + + Increase Maven's heap size in Quarkus daily job + +commit e4d2f9dd806149afc91d79c41f0d422a357cedf4 +Author: Peter Palaga +Date: Wed Jun 16 11:25:00 2021 +0200 + + Fixup #2658 Intermittent failures in MongoDbTest.testTailingConsumer() and MongoDbTest.testPersistentTailingConsumer() + +commit 4ca94cfe466a6346d9f31a6dc66c07d072a65f87 +Author: James Netherton +Date: Wed Jun 16 08:19:33 2021 +0100 + + Avoid leaking localstack containers when ryuk is disabled + +commit fece62ae9cdd18769cbc1150094b0c990c30062d +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Wed Jun 16 03:10:27 2021 +0000 + + Updated CHANGELOG.md + +commit 8f302f5deeed0801c61f4e16925e48c08bba9e5a +Author: aldettinger +Date: Tue Jun 15 16:57:31 2021 +0200 + + Deprecated @BuildTimeAvroDataFormat in favor of quarkus-avro build time class generation #2513 + +commit 1bca4571b8aa22596b8afbeae183951018748024 +Author: Peter Palaga +Date: Tue Jun 15 16:50:01 2021 +0200 + + Exclude org.bouncycastle:bcprov-debug-jdk15on from camel-as2 because we + get a non-debug variant of it managed from Quarkus. + +commit b8e1ba5e28e9ae819f2bf4224919ecff39f48abd +Author: Peter Palaga +Date: Tue Jun 15 17:05:15 2021 +0200 + + --fail-at-end in initial mvn install of Quarkus daily build + +commit 1b2a507a0c04f149547b0d32dc8d908dd96a0656 +Author: mmuzikar +Date: Tue Jun 15 13:49:43 2021 +0200 + + Fix typo in JIRA relationship name + +commit c18de52d9a0037709da911cd2bb606bfd12c6199 +Author: James Netherton +Date: Tue Jun 15 14:48:21 2021 +0100 + + Fix typo in 2.0.0 migration guide follow->following + +commit 65669c8d07b51a662122b5f925c3550d6a4cec19 +Author: James Netherton +Date: Tue Jun 15 09:46:58 2021 +0100 + + Remove health configuration workaround + +commit 6e27fedbc08f252862b0eb65413b2f06c5404fd2 +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Tue Jun 15 03:12:51 2021 +0000 + + Updated CHANGELOG.md + +commit 3ef951286425c8a021e4ec0ca041780a4336abd8 +Author: James Netherton +Date: Mon Jun 14 09:29:52 2021 +0100 + + Adapt Observability docs page to Quarkus 2.0.0 + + Fixes #2659 + +commit 1eca8dae7adaef921349bdc1414a8d86a6c59a33 +Author: James Netherton +Date: Mon Jun 14 09:20:04 2021 +0100 + + Test setting MLLP default charset from system property for native mode + + Fixes #2554 + +commit bd4bea4d49374e9ead15c69c6d5119482b9892c8 +Author: James Netherton +Date: Mon Jun 14 07:10:59 2021 +0100 + + Retry Solr cloud container 'is started' steps on failure + + Fixes #2766 + +commit 41098df51b4ed08dd2b67887dc3d7e07f380609c +Author: Zineb Bendhiba +Date: Fri Jun 11 15:05:30 2021 +0200 + + Kafka - add Kafka Idempotent repository test + Fixes #2626 + +commit 040da37ced33c76cda54639a889607dd1a90df8f +Author: Freeman Fang +Date: Fri Jun 11 10:48:28 2021 -0400 + + fix Unable to determine the status of the running process in TimerIT without resteasy #2772 + +commit 5bd966ddcd4042d2fd513b30fd9367de8fa29e5b +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Sat Jun 12 03:10:19 2021 +0000 + + Updated CHANGELOG.md + +commit 138b8e188283f6fdabe472c41fe089a0b546c488 +Author: aldettinger +Date: Thu Jun 10 15:41:33 2021 +0200 + + kamelet: Avoided using a Locale in native test + +commit ac2d18335dc2c4e075487e81caad3338caa2ffda +Author: aldettinger +Date: Thu Jun 10 15:27:05 2021 +0200 + + Kamelet extension: added test for kamelet discovery mechanism #2652 + +commit 7b9a771ce40eff83bcf23e8b89ccfc3a0ea4c5dd +Author: James Netherton +Date: Fri Jun 11 11:51:40 2021 +0100 + + Avoid port clashes where it may already be reserved via the build-helper-maven-plugin + +commit 8a165d3cf0065761a67a02181ce1cd4aa91f3d50 +Author: James Netherton +Date: Fri Jun 11 10:50:03 2021 +0100 + + Use autoOffsetReset earliest to avoid missing messages sent by the Kafka producer + +commit fcd4c89f048f1a9302a9cf142bd3736e62a3ea81 +Author: James Netherton +Date: Fri Jun 11 07:31:04 2021 +0100 + + Fix camel.main.dump-routes + + Fixes #2761 + +commit 654c08b214f281aadb8abf4017324925b99f915a +Author: James Netherton +Date: Fri Jun 11 07:28:31 2021 +0100 + + Avoid duplicating code in BaseModel & FastCamelContext + + Fixes #2752 + +commit 3e59201a961399fe89e271848014979ec03f8e93 +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Fri Jun 11 03:42:20 2021 +0000 + + Updated CHANGELOG.md + +commit 46776bfe5ac4faf394c9a2df7afabdbb5d3ba438 +Author: Peter Palaga +Date: Thu Jun 10 00:04:26 2021 +0200 + + Fix Qute component metadata in Camel Quarkus catalog fix #2701 + +commit 9cea2f0bc24089e58874b457aa00c7eaa39b07df +Author: Peter Palaga +Date: Wed Jun 9 23:10:59 2021 +0200 + + Unregister MongoDb's ChangeStreamDocument from reflection once it is provided by Quarkus fix #2649 + +commit bb915e85c002de22694570294e940cf22a2d5a24 +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Thu Jun 10 03:32:47 2021 +0000 + + Updated CHANGELOG.md + +commit b48ec67288c3fbce1461f3252cc0b0bb623137d8 +Author: Luca Burgazzoli +Date: Wed Jun 9 18:14:31 2021 +0200 + + yaml-dsl: enable flow mode deserialization by default + +commit 2ec6ab7448a4b3a593368bca0105ed550b8c7a4a +Author: James Netherton +Date: Wed Jun 9 11:21:23 2021 +0100 + + camel-jackson-avro data format native support + + Fixes #2610 + +commit 55ecd1181d8700517829f5f6498945735615e333 +Author: James Netherton +Date: Wed Jun 9 11:27:33 2021 +0100 + + Avoid potential locale issues based on feedback in #2742 + +commit fbef243c901fd20ea506632154b7152f3f4834db +Author: JiriOndrusek +Date: Tue Jun 8 16:30:26 2021 +0200 + + Sql aggregator does not work in native mode, solve DefaultExchangeHolder globally. + +commit 78f03720944ce50481a9b63fe8b70cdb78a5443e +Author: Luca Burgazzoli +Date: Tue Jun 8 21:44:52 2021 +0200 + + core: sync BaseModel and FastCamelContext with Camel main + +commit 4296da0a06aa2d30c58538f1fcc9d550a4d52b8a +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Wed Jun 9 03:23:48 2021 +0000 + + Updated CHANGELOG.md + +commit 9e5b7150f5c921ad9e87c538c18157ec750a5751 +Author: JiriOndrusek +Date: Tue Jun 8 12:19:16 2021 +0200 + + Intermittent failures in MongoDbTest.testTailingConsumer() and MongoDbTest.testPersistentTailingConsumer() #2658 + +commit 5a18c7d3dadcfa0148f4a5236a4ebd0addb83b74 +Author: Peter Palaga +Date: Tue Jun 8 10:27:08 2021 +0200 + + Intermittent failures in Aws2SqsSnsIT fix #2741 + +commit 73711b01a251423e15f91be86857ef194779b4bf +Author: James Netherton +Date: Tue Jun 8 11:46:52 2021 +0100 + + Fix typo directori -> directory + +commit 21b0e34fefc5d0717b09b0b07311efaaec998c54 +Author: James Netherton +Date: Tue Jun 8 09:12:25 2021 +0100 + + Add integration test for discovering custom ProtobufMapper beans + +commit 41c41d2d267193d4daee10c002f5300af546e33b +Author: Peter Palaga +Date: Tue Jun 8 00:04:13 2021 +0200 + + Move OptaPlanner and Debezium version properties to primary dependencies section + +commit e77a43fb4761d516349f10cef0fbf9f5e555f33b +Author: Peter Palaga +Date: Mon Jun 7 23:43:22 2021 +0200 + + Unable to determine the status of the running process in LogIT without resteasy fix #2737 + +commit aa087b578eb5060b9fd27ce3d0cf6c4b38a3bffd +Author: Peter Palaga +Date: Mon Jun 7 13:48:43 2021 +0200 + + Upgrade to Minio 2.0.0.CR3 + +commit ead6ab8e84588eb6d66b469aa6a8d1497e3fa5d5 +Author: aldettinger +Date: Mon Jun 7 22:00:27 2021 +0200 + + Fixed the CryptoIT test #2673 + +commit 3ce5294074ae8d36e8d59d2bcec4376d4aaa05fe +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Tue Jun 8 03:34:31 2021 +0000 + + Updated CHANGELOG.md + +commit e452faf362540edeafeca2f5d1376856c5e33b53 +Author: Andrea Tarocchi +Date: Mon Jun 7 22:35:13 2021 +0200 + + fixed #2736 + +commit 7547d0eecb929cda640ad73523cdb4b2e71340b4 +Author: James Netherton +Date: Mon Jun 7 13:38:40 2021 +0100 + + Improve KafkaClientFactory integration + + Fixes #2486 + +commit 32de5709519162a0a99c828199cccabf918f02e0 +Author: James Netherton +Date: Mon Jun 7 12:45:54 2021 +0100 + + Disable dev services for Kafka itests + + Fixes #2729 + +commit 8f7747f07405ccd769297d7e31e8e67206cf578f +Author: James Netherton +Date: Mon Jun 7 10:25:57 2021 +0100 + + Fix MasterTest health check endpoint path + + Fixes #2660 + +commit d43ba4aeba45c5682c0c84a8fc73ec1dc1b8c09f +Author: Peter Palaga +Date: Mon Jun 7 11:41:10 2021 +0200 + + Temporarily disable MongoDbTest.testTailingConsumer() and MongoDbTest.testPersistentTailingConsumer() #2658 + +commit 3c816e266991a8d5f189443b35e1ed2a10c8d191 +Author: Peter Palaga +Date: Sun Jun 6 22:24:14 2021 +0200 + + Fail at end of the build if any of the tests fails + +commit d654d939a0c7f87d004204b991715241d739379f +Author: Peter Palaga +Date: Sun Jun 6 22:09:03 2021 +0200 + + Increase timeout in FTPS tests + +commit 4a7527e579ca0cf0833b9667f29e944b915ea3ee +Author: Peter Palaga +Date: Fri Jun 4 23:49:20 2021 +0200 + + Fixup 8ce5068 Intermittent failures in MongoDbTest.testTailingConsumer() #2658 + +commit 49c8951a3fb11cd433f6c854f17bc101d11b7bc7 +Author: Peter Palaga +Date: Fri Jun 4 19:15:01 2021 +0200 + + Upgrade to Quarkiverse Freemarker 0.3.0.CR1 + +commit cf2d4032f19c98c1d03fdb38e764a06385ef99cf +Author: Peter Palaga +Date: Fri Jun 4 17:07:20 2021 +0200 + + Disable Kafka SASL tests for now #2729 + +commit 7be519d2110b9b933eb20d3cccfe6e596cd627a7 +Author: Peter Palaga +Date: Fri Jun 4 15:24:05 2021 +0200 + + Workaround #2724 cassandra-driver-core 3.5.0 managed in Debezium BOM too old for testcontainers 1.15.3 + +commit 3fe451c2c5e380ef6fbdc82e65110997f2c20e8d +Author: Peter Palaga +Date: Fri Jun 4 14:19:43 2021 +0200 + + Upgrade to Quarkiverse Google Cloud Services 0.7.0 + +commit f27404b16946a778bbe74d1ff6c3147a291b913c +Author: Peter Palaga +Date: Fri Jun 4 14:01:04 2021 +0200 + + ClassNotFoundException: + com.aayushatharva.brotli4j.decoder.DecoderJNI$Wrapper in Google Storage, + PubSub and BigQuery test #2692 + + Fixed by the upgrade to Quarkus 2.0.0.CR3 + + This reverts commit ff1bf3a191db256a7a3835715a615dd8e5467d5c. + +commit 6ffa40bb03a486b77b14f06b3aeae4dc5e389d5a +Author: Peter Palaga +Date: Fri Jun 4 13:55:53 2021 +0200 + + Upgrade to Quarkus 2.0.0.CR3 + +commit 469ab1ac4e16d6bdba59a50a86f0ce9d42975294 +Author: Peter Palaga +Date: Fri Jun 4 12:53:36 2021 +0200 + + Import Debezium BOM #1310, sync Debezium version with Camel + +commit 35a5aedf01e5b1ceb2958f52dbd374c8250c6225 +Author: Peter Palaga +Date: Fri Jun 4 12:35:10 2021 +0200 + + Remove camel-quarkus-componentdsl and camel-quarkus-endpointdsl extensions #2354 + +commit 639e4ad65f93f6d178a43fac1fae8e8d277e4a50 +Author: Peter Palaga +Date: Fri Jun 4 12:25:46 2021 +0200 + + Remove -H:+InlineBeforeAnalysis from Spring RabbitMQ test once Quarkus has InlineBeforeAnalysisBuildItem #2416 + +commit f89cd78ecc532514eb23ad7fee6dbc3cfd319420 +Author: Peter Palaga +Date: Fri Jun 4 12:19:20 2021 +0200 + + Fixup e780587 Expand Sql test coverage #2623 + +commit 3fbf96d97cfe98e26970f5ca3fc6c101d1dfa3fc +Author: Peter Palaga +Date: Fri Jun 4 12:15:40 2021 +0200 + + Remove camel-quarkus-xml-io #2436 + +commit 8aad62e10b25c2cd70119459fe6929e8e0678ab3 +Author: Peter Palaga +Date: Fri Jun 4 11:36:30 2021 +0200 + + Upgrade to minio 8.2.1 in Camel 3.10 breaks Quarkiverse Minio and MinioClientProducer in our test #2503 + +commit abe4a53096f638fc550e2da6c5ffc6a4181f5a5a +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Sat Jun 5 04:24:52 2021 +0000 + + Updated CHANGELOG.md + +commit 6713eceec44fac7fd05378adb1ddfadfd61d38c7 +Author: James Netherton +Date: Fri Jun 4 14:32:10 2021 +0100 + + camel-jackson-protobuf data format native support + + Fixes #2615 + +commit 492724ad6ac439814cc33c5671f6933af18cb34c +Author: James Netherton +Date: Fri Jun 4 14:31:47 2021 +0100 + + Tag jacksonConversionPojo test with @Disabled + +commit e27337abd3fe95837c16fef0fb6357fe5c50fb2c +Author: James Netherton +Date: Fri Jun 4 14:26:24 2021 +0100 + + Add a test for Jackson JsonNode unmarshal + +commit 8868834634fab390c44b5253f4ca5f56e24be4e8 +Author: Amos Feng +Date: Fri Jun 4 21:10:13 2021 +0800 + + Fix #2608 to create destination correctly and re-enable the test case + +commit b5833d531e55eb627f88a4b0edeecc15b19e7126 +Author: Peter Palaga +Date: Thu Jun 3 21:29:17 2021 +0200 + + Workaround #2718 Use com.schibsted.spt.data.jslt.FunctionUtils with an explicit class loader or let it fall back to TCCL + +commit 14f37828693d9e059eda8ab40412a86507ef4baa +Author: Peter Palaga +Date: Thu Jun 3 18:55:49 2021 +0200 + + Make Kafka SSL tests work on Quarkus Platform + +commit 7f561770a7b0de31bc2d4b03fa1214da0da4d320 +Author: JiriOndrusek +Date: Thu Jun 3 15:51:34 2021 +0200 + + Add missing use cases into MongoDb test coverage #2715 + +commit 7508423dc306dd001693402efcce61015fc732ce +Author: James Netherton +Date: Thu Jun 3 15:41:48 2021 +0100 + + Enable test for REST body validation + +commit d3e38273db2a840ff4d33ea44d22e501fd430eae +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Fri Jun 4 04:50:38 2021 +0000 + + Updated CHANGELOG.md + +commit e780587f835fc0a2af7fe71c73625f6208f84007 +Author: JiriOndrusek +Date: Thu May 27 16:22:48 2021 +0200 + + Expand Sql test coverage #2623 + +commit 4e1334dec370312a32c59850bac54fcce5792533 +Author: aldettinger +Date: Wed Jun 2 17:57:30 2021 +0200 + + Added move and delete tests for FTP extension #2645 + +commit 544f461ddac4eaea3ad48f0e116984ef624d2efd +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Thu Jun 3 05:33:53 2021 +0000 + + Updated CHANGELOG.md + +commit 5d2ef77f7fb56379a77eaad55fbe8ab029f92e20 +Author: Freeman Fang +Date: Tue Jun 1 21:56:52 2021 -0400 + + address feedback 2 #2681 + +commit da360444233e3692de5aa3c876320b2b16bf48cb +Author: Freeman Fang +Date: Tue Jun 1 16:24:04 2021 -0400 + + demonstrate how to configure quarkus-jackson extension's own ObjectMapper instance and reuse it in our jackson test #2706 + +commit 0629a6b71930f923d8ca67354ff5e50fb7fa1b4b +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Wed Jun 2 05:51:39 2021 +0000 + + Updated CHANGELOG.md + +commit a529aca78106c84f1db5deb6eda3d9e0f197e844 +Author: James Netherton +Date: Tue Jun 1 16:25:50 2021 +0100 + + Fix vertx-http SSL integration test + + Fixes #2656 + +commit 440f5b9189249d2e9d95b2181ddd598755bc9cd8 +Author: aldettinger +Date: Tue Jun 1 16:30:16 2021 +0200 + + Expanded Saxon test coverage with XPath saxon tests and fixed related native issues #2702 + +commit fc97b40c922ef9be7831421b94a2a73b0e4547d9 +Author: Freeman(Yue) Fang +Date: Tue Jun 1 13:58:01 2021 -0400 + + fix camel-quarkus-jacksonxml:JsonView annotations take no effect in n… (#2682) + + * fix camel-quarkus-jacksonxml:JsonView annotations take no effect in native mode #2681 + + * address feedback:using jandex to read JsonView annotations and add class to reflection list #2681 + +commit e3f7d33e0314ebaa3b61392b0c991793bfbbfc76 +Author: James Netherton +Date: Tue Jun 1 10:39:48 2021 +0100 + + Document usage of dashed query params with platform-http + + Fixes #2685 + +commit c3fa3ffe5e549888d466f5e0b2c4cbdb99386041 +Author: James Netherton +Date: Tue Jun 1 10:11:28 2021 +0100 + + Add `@sync` tag to `smallrye.reactive.messaging.camel.version` property. + + Co-authored-by: Peter Palaga + +commit 19c3c4295853d6d93fd264ec84ae18115c910ccb +Author: James Netherton +Date: Tue Jun 1 08:06:17 2021 +0100 + + Upgrade SmallRye Reactive Messaging Camel to 3.3.2 + +commit 977b28d2083ad2762ec558a26669ee15a71e93b0 +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Tue Jun 1 05:55:11 2021 +0000 + + Updated CHANGELOG.md + +commit 89174b1ed75952d067528368c5b2832abc56f62f +Author: Zineb Bendhiba +Date: Mon May 31 19:21:54 2021 +0200 + + fix typo + +commit 681d5be886465091552c6fed9c37a17c4e2bfb3b +Author: Peter Palaga +Date: Mon May 31 12:50:57 2021 +0200 + + Disable MP fault tolerance tests for now #2696 + +commit 2ec4138ccdfafae3c5761cec234596753259c7ea +Author: Peter Palaga +Date: Mon May 31 12:30:13 2021 +0200 + + Debezium: Unresolved type during parsing: org.eclipse.jetty.util.StringUtil #2695 + +commit ff1bf3a191db256a7a3835715a615dd8e5467d5c +Author: Peter Palaga +Date: Mon May 31 11:26:15 2021 +0200 + + Disable Google Cloud tests for now #2692 + +commit e310c89879d16a9b35be1d159c975eb303902304 +Author: Peter Palaga +Date: Sun May 30 20:26:44 2021 +0200 + + Increase the heap size for initial-mvn-install job because otherwise we + +commit d53ec677916822f6574c52c73cae042ae3f66605 +Author: Peter Palaga +Date: Sun May 30 19:24:43 2021 +0200 + + Do not retain CqCatalog in a ThreadLocal to save ~80MB of Maven build heap + +commit 6578378947453e3813846a5b7574635778a190eb +Author: Peter Palaga +Date: Thu May 27 21:52:01 2021 +0200 + + Upgrade to Quarkus 2.0.0.CR2 + +commit 7d238a1b8354502e1a277ffe0b7d136d857434df +Author: Peter Palaga +Date: Thu May 27 15:26:18 2021 +0200 + + Tidy up dependency versions #1684 + +commit dbc6c5802886878cbff8962735a1a4db85c86d48 +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Sat May 29 05:19:10 2021 +0000 + + Updated CHANGELOG.md + +commit bc1f97479b5a83808ac987cce9abb891dff9da16 +Author: Kevin Dubois +Date: Thu May 27 15:02:56 2021 +0200 + + Fix another typo 'EndpointInject' + +commit c8ef3fda7d85684c338f05bae9a8cad0409251c1 +Author: Kevin Dubois +Date: Thu May 27 14:55:05 2021 +0200 + + Fix typo in EndpointInject title + +commit d38548d539cfb91075523654926fefe6a5bad623 +Author: Freeman(Yue) Fang +Date: Thu May 27 08:16:38 2021 -0400 + + Fix Error when using camel-quarkus-jackson in native mode: java.lang.ClassNotFoundException: com.fasterxml.jackson.module.jaxb.JaxbAnnotationModule #2677 (#2680) + +commit e46b8030e256491bb80a7c1ca7ba0c5c3e7609a7 +Author: James Netherton +Date: Thu May 27 10:12:34 2021 +0100 + + Add tests and documentation for transaction policies + +commit 537eb233a1a508b9e96d534fb03768e871a06c10 +Author: Peter Palaga +Date: Thu May 27 12:11:51 2021 +0200 + + Regenerate virtual dependencies in pom.xml files + +commit fd65906d3e228f40e382d554ccb87455a69235ea +Author: Alexey Loubyansky +Date: Thu May 27 11:00:31 2021 +0200 + + Fix aws2-support dependency on httpclient + +commit cc52b42b8dfc8fbf503ccb4b7550b14603cc3b7f +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Thu May 27 04:16:36 2021 +0000 + + Updated CHANGELOG.md + +commit 307e67141ca9a29880a9569eda81766417b077d1 +Author: James Netherton +Date: Tue May 25 13:14:16 2021 +0100 + + Increase Jira extension test coverage + +commit 4abf2296c30e0704686d1910e55bb42c0f24a78c +Author: James Netherton +Date: Wed May 26 10:02:25 2021 +0100 + + Fix WatchUpdatesConsumer in native mode + +commit 57f0872155fe6115dfdcb26082ae0efec6e88ec4 +Author: James Netherton +Date: Wed May 26 13:51:57 2021 +0100 + + Add camel-quarkus-support-spring to jira extension + +commit 5d69f1de73aff030bbe8337b5de6d03ed2ec4477 +Author: James Netherton +Date: Tue May 25 09:17:14 2021 +0100 + + Exclude jersey from jira extension and use the quarkus-rest-client + + Fixes #2650 + +commit 08b1348dcd1eae3e27b998d92018288d918da5bd +Author: Peter Palaga +Date: Wed May 26 15:49:51 2021 +0200 + + Next is 2.0.0 + +commit f65f3b92610cdc577403fde5fbaf846ae7a58965 +Author: Freeman(Yue) Fang +Date: Wed May 26 10:48:59 2021 -0400 + + jackson: add test coverage #2634 (#2672) + + * jackson: add test coverage #2634 + + (cherry picked from commit e69019354d6a11521d0c61a6183af3b4376ec2bb) + + * jackson: address feedback #2634 + +commit f720b5097318576d81da342528c7c2748191d045 +Author: Peter Palaga +Date: Wed May 26 12:44:15 2021 +0200 + + Await properly in FileTest, avoid premature content checks + +commit f8d6447138ea602da3995312291090448c703435 +Author: Peter Palaga +Date: Wed May 26 12:01:08 2021 +0200 + + Reduce dependencies of Hazelcast test so that it suits into GH actions memory during native compilation + +commit f585308369d277651b1752d8d1cda7b357022156 +Author: Peter Palaga +Date: Tue May 25 23:00:12 2021 +0200 + + GraalVM 21.1, KafkaSaslSslIT: ClassNotFoundException: org.apache.kafka.common.security.scram.internals.ScramSaslClient #2674 + +commit 452ed725e746eede23309e9d0617aade92d0a926 +Author: Peter Palaga +Date: Tue May 25 22:41:55 2021 +0200 + + Temporarily disable CryptoIT #2673 + +commit 5624f341cc38e68bda47300d543e1b08c514f213 +Author: Peter Palaga +Date: Tue May 25 17:30:28 2021 +0200 + + Workaround #2670 AWS2 test: org.apache.log4j.Priority required via netty, although netty should not be in the class path at all + +commit e2d45e3394b8c17d6fe6d9d5f621319b5a506296 +Author: Peter Palaga +Date: Tue May 25 17:29:24 2021 +0200 + + Reorder deps and routes in the old AWS2 test, remove deps tested elsewhere + +commit bf1eeb6941e228871cdb46541623c3038d89e6dd +Author: Peter Palaga +Date: Tue May 25 10:33:35 2021 +0200 + + Eagerly initialized Random in various extensions #2664 + +commit e4d459bc416ba5e6b2584cc9e97b2ab89707146e +Author: Zineb Bendhiba +Date: Tue May 25 16:06:47 2021 +0200 + + upgrade json-smart + fixes #2435 + +commit bd760b38f985cd85962ffd1687db22841f65835c +Author: Amos Feng +Date: Tue May 25 00:18:50 2021 +0800 + + Fix #2604 to add a camel-sql case in jta integration tests + +commit d38edf647574698aa31028a7233b1cefb7ce6a10 +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Wed May 26 04:19:38 2021 +0000 + + Updated CHANGELOG.md + +commit 132fb5e88ac2636c07ba4fbf86bb3fe9373b55b6 +Author: Zineb Bendhiba +Date: Tue May 25 15:52:10 2021 +0200 + + quarkus-jackson is included quarkus-kafka-client since quarkus 2.0.0.Alpha2 + +commit 8ce5068fc66fc706eb7c1369af8b8fd58314e95a +Author: JiriOndrusek +Date: Tue May 25 13:42:21 2021 +0200 + + Quick fix - Intermittent failures in MongoDbTest.testTailingConsumer() #2658 + +commit 1a95c39423ac538e59ed1130fec2d113effb17b0 +Author: James Netherton +Date: Tue May 25 07:25:26 2021 +0100 + + Ensure camel-quarkus-integration-wiremock-support is test scope + +commit 179bf3ab781284c70371db2afc876dd20f17c78b +Author: James Netherton +Date: Tue May 25 07:25:47 2021 +0100 + + Use CamelContextCustomizer from camel-api + + Fixes #2637 + +commit 64392edb3a9b07ef4bb7c96ef0f9fc6707a4e84b +Author: Peter Palaga +Date: Tue May 25 02:49:46 2021 +0200 + + Temporarily disable MasterTest #2660 + +commit 6238e06a21c5ed1e04a9b7b57094d96ce7528bed +Author: Peter Palaga +Date: Tue May 25 02:41:07 2021 +0200 + + Adapt rest-openapi test to Quarkus 2.0.0 + +commit c564a995aa4a07b9da2d3a2a98dd71ff943f58d9 +Author: Peter Palaga +Date: Tue May 25 02:16:26 2021 +0200 + + Adapt MailTest for Camel 3.10.0 and Quarkus 2.0.0 + +commit 2eef2d56d1956d93b12142ce30355d658b644f63 +Author: Peter Palaga +Date: Mon May 24 22:58:47 2021 +0200 + + Temporarily disable HttpTest#httpsProducer for vertx-http #2656 + +commit a2fad112ebc4862a45b0951f4cb305e20f1e2073 +Author: Peter Palaga +Date: Mon May 24 16:00:06 2021 +0200 + + Workaround #2653 Native compilation issues on GraalVM 21.1 + +commit 406058c468609835f9f0ac91a5c0b76e4f52a392 +Author: Peter Palaga +Date: Mon May 24 15:16:58 2021 +0200 + + Workaround #2651 Class loader issues in AvroRpcTest with Quarkus 2.0.0.Alpha3 + +commit 09cd2cb08b6a77815d396b7b9e2aa4d90f160ad9 +Author: Peter Palaga +Date: Mon May 24 12:56:47 2021 +0200 + + Store the association between Camel Quarkus Catalog items and Camel Catalog items #2368 + +commit 8f564420b26efbb442bb9bea1e42af615bd67a98 +Author: Peter Palaga +Date: Mon May 24 12:09:47 2021 +0200 + + Etcd3 JVM support + +commit d5db6a6ecdcfda58d81173035fa74f440e54d21a +Author: Peter Palaga +Date: Mon May 24 12:06:58 2021 +0200 + + jOOR JVM support + +commit 1ac1d05d7d2c3417b54235803186894a225c4385 +Author: Peter Palaga +Date: Mon May 24 11:51:41 2021 +0200 + + Azure CosmosDB JVM support + +commit 8cda76a5ec20ef6149109dbef693e35109780eed +Author: Peter Palaga +Date: Mon May 24 11:45:20 2021 +0200 + + AWS Secrets Manager JVM support + +commit d2e0a5f85d66f2df73e5fc16c57c8fd808df4f6e +Author: Peter Palaga +Date: Mon May 24 11:32:22 2021 +0200 + + Google Functions JVM support + +commit bb39784569e0748dbd2999d3ea61e0d64a81436b +Author: Peter Palaga +Date: Mon May 24 11:28:34 2021 +0200 + + Kamelet Reify JVM support + +commit 1fb97de77971d80fb5daac06545a384e4e3fb19e +Author: Peter Palaga +Date: Mon May 24 11:23:35 2021 +0200 + + Jackson Protobuf JVM support + +commit b9451e38159c3ec99428b121c66e7edf62221f3a +Author: Peter Palaga +Date: Mon May 24 11:15:45 2021 +0200 + + Jackson Avro JVM support + +commit 5209933fcb09f07cc60b82d4cf1a53f9550450c2 +Author: Peter Palaga +Date: Mon May 24 10:48:51 2021 +0200 + + Next is 2.0.0-M1 + +commit 72101339a9690d8b59a5519265c85aa557342571 +Author: Peter Palaga +Date: Mon May 24 10:07:58 2021 +0200 + + Workaround #2646 manage kotlinx-coroutines-core temporarily + +commit 1762a087a68f94babedef916765b2880b937587d +Author: aldettinger +Date: Wed May 19 09:49:47 2021 +0200 + + Fixed nats build issue in native mode #2589 + +commit 130b6e29322c869611e80ac5e80ee6d8071a4434 +Author: Peter Palaga +Date: Fri May 21 11:38:51 2021 +0200 + + Ignore integration-tests/hl7/id_file properly + +commit 4ff2b6e4fda6a4311f63c0c593eb440d7b20b387 +Author: Peter Palaga +Date: Fri May 21 11:26:21 2021 +0200 + + Upgrade to Quarkus 2.0.0.Alpha3 + +commit 1a274e96758923636e88fa9bff7f16b1e0fc4b81 +Author: James Netherton +Date: Thu May 13 11:20:08 2021 +0100 + + Disable NATS native build on CI #2589 + +commit 9ee0a526f482206e6cdb526cea5ff8fe8325782a +Author: Alexey Loubyansky +Date: Tue May 11 22:35:58 2021 +0200 + + Adjust capability configuration for Quarkus 2.x (#2576) + +commit 13bf652215f527e95969ad723306e0a4ad15d050 +Author: Zineb Bendhiba +Date: Tue May 11 15:57:20 2021 +0200 + + System.properties not recognized if set in Test Resource #2572 + +commit 130f23bcda9f093900334abd56fcccb615dd5167 +Author: James Netherton +Date: Tue May 11 13:46:06 2021 +0100 + + Ensure generated gRPC services are annotaed with GrpcService + + Fixes #2569 + +commit 1aa075a773a17196505f5637f91cd8d58bf96cee +Author: Zineb Bendhiba +Date: Mon May 10 10:53:17 2021 +0200 + + quarkus.test.profile should be passed in the properties instead of TestResource fixes #2566 + +commit 5288733c5225ef791f1c9584060394f8580ea7a5 +Author: Zineb Bendhiba +Date: Thu May 6 15:36:48 2021 +0200 + + Upgrade to quarkus 2.0.0.Alpha2 + +commit 7ec917e9bfa67357fdbcfd06ac4f5f82d3937136 +Author: James Netherton +Date: Thu May 6 11:53:25 2021 +0100 + + Adapt to latest Camel API changes + +commit dc61fd79c42125112963f08a1198b382ed8ab386 +Author: Zineb Bendhiba +Date: Mon May 3 16:30:40 2021 +0200 + + Fix bindy integration test build + +commit 8e6fbbc8fa735a654b390eae727295f15751030d +Author: James Netherton +Date: Fri Apr 30 15:25:05 2021 +0100 + + Configure Vert.x BodyHandler for GraphQLTest server + +commit 3d29121fe1dc708b57daf7f8dfef02a2269a0e41 +Author: Peter Palaga +Date: Tue Apr 27 17:03:22 2021 +0200 + + Adapt MicroProfile Health and Metrics to Camel 3.10 an Quarkus 2.0 + +commit 64c0743a60bda8e2aba46950752c3a271662c5de +Author: James Netherton +Date: Fri Apr 30 09:03:37 2021 +0100 + + Adapt to latest Camel API changes + +commit 04336ea1692376d99a70cc5ff12f5a4e3fc7cfd9 +Author: Peter Palaga +Date: Tue Apr 27 14:12:50 2021 +0200 + + Align Zookeeper dependencies + +commit b60b7e7b3743f7ebafdb4ab43288ebc7cb7c6150 +Author: Peter Palaga +Date: Thu Apr 22 12:19:07 2021 +0200 + + Temporary workaround for #2503 Upgrade to minio 8.2.1 in Camel 3.10 breaks Quarkiverse Minio and MinioClientProducer in our test + +commit 0226f6beb67e9e5a93cf38edb4367f2ab59e9006 +Author: Peter Palaga +Date: Wed Apr 21 15:59:48 2021 +0200 + + Upgrade to Quarkus 2.0.0.Alpha1 + +commit d1698b77b11f6fe886452682e394126e8e44cb49 +Author: James Netherton +Date: Mon Mar 29 13:27:45 2021 +0100 + + Upgrade to Camel 3.10.0 + +commit 6ed3a89a30b2c36c69a5a4a398bbc94f360de633 +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Tue May 25 03:56:54 2021 +0000 + + Updated CHANGELOG.md + +commit 822eb775f2f24527735d2329a275f4856aa3db7a +Author: James Netherton +Date: Mon May 24 17:57:33 2021 +0100 + + Temporarily exclude antora.yml from uncommitted changes check + +commit 511e2f3b1fff38767b929302fa8e55aac61720f6 +Author: James Netherton +Date: Mon May 24 17:54:07 2021 +0100 + + Reduce log noise in integration tests step + +commit 02ab637a8d129bcc90b79d65290a8fd04acede46 +Author: JiriOndrusek +Date: Thu May 20 17:39:27 2021 +0200 + + Expand MongoDb test coverage #2622 + +commit a293d865d184d9a6d960b37b63c3dbf51d42bf7f +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Sat May 22 03:41:54 2021 +0000 + + Updated CHANGELOG.md + +commit 5f945157e4a0dd15d9a3e28e5bd8b1945638480e +Author: Freeman(Yue) Fang +Date: Fri May 21 10:29:53 2021 -0400 + + #2633 jacksonxml: add test coverage (#2635) + + * #2633 jacksonxml: add test coverage + + * address feedback + +commit dae112cb4baeaa17ec28c75256dbbf1a323c845e +Author: Zoran Regvart +Date: Fri May 21 13:48:46 2021 +0200 + + Set Camel component version to 3.10.x + +commit 6abaf9c97d4cfeb98b77b97ba437e8eb2e50853a +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Fri May 21 04:05:23 2021 +0000 + + Updated CHANGELOG.md + +commit ca4025206d1e9bd1ab48243258cabc3e4c060803 +Author: James Netherton +Date: Thu May 20 11:54:01 2021 +0100 + + Use WireMock for GitHub tests + +commit ba887e646be2ae886fe029326ce6b93828871cc5 +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Thu May 20 03:40:11 2021 +0000 + + Updated CHANGELOG.md + +commit 24a28cbe25d24b35eac0015ef4a2df232712ec37 +Author: Zineb BENDHIBA +Date: Wed May 19 18:33:49 2021 +0200 + + add quarkus-jackson in the camel-quarkus-kafka extension (#2629) + +commit 2122db220fcaa2c6e3cf5cabded7ea835daf9a19 +Author: aldettinger +Date: Wed May 19 18:25:19 2021 +0200 + + Fixed the core doc for ${type:***} simple expressions, fixes #2631 + +commit 5a940064be15b0443027cdd69d62f3c19e3a2ce9 +Author: James Netherton +Date: Wed May 19 08:43:24 2021 +0100 + + Use concurrency key instead of cancel-workflow-runs action + +commit 0f7f299a4494046319da21f422d692772aedfcbc +Author: James Netherton +Date: Wed May 19 08:29:19 2021 +0100 + + Add tests for path prefixes and all HTTP methods + +commit ac74dc142607139225e5c88a3e0a7912c4e9ba1d +Author: Peter Palaga +Date: Mon May 17 15:21:40 2021 +0200 + + Load a classpath resource using current thread's context class loader in Saxon test, because otherwise it cannot be found + +commit 82704be2c63e9b437f63ee9074afd03ffa16ba78 +Author: Peter Palaga +Date: Tue May 18 21:53:36 2021 +0200 + + Test soapjaxb() data format DSL method #2616 + +commit 210d5e9a5fc962ae3a134f603a5d3b09a64e30c4 +Author: Peter Palaga +Date: Tue May 18 21:46:59 2021 +0200 + + Test pgp() data format DSL method #2616 + +commit 2df64b162a09fb2330284d6a6c26b24d60d65ce7 +Author: Peter Palaga +Date: Tue May 18 21:41:34 2021 +0200 + + Test mimeMultipart() data format DSL method #2616 + +commit 979f106d07956179d3b745ecc0410becb4b2cdee +Author: Peter Palaga +Date: Tue May 18 18:42:42 2021 +0200 + + Test lzf() data format DSL method #2616 + +commit ad4128672a8da230b316896af082f513a13676b8 +Author: Peter Palaga +Date: Tue May 18 18:37:52 2021 +0200 + + Test jaxb() data format DSL method #2616 + +commit 6ba0e3e564231104dd56fc1629b496a60fba6a13 +Author: Peter Palaga +Date: Tue May 18 17:59:08 2021 +0200 + + Test custom() data format DSL method #2616 + +commit 894e521e01a2c29b2c61f1b04bb79d77e549f588 +Author: Peter Palaga +Date: Tue May 18 17:29:52 2021 +0200 + + Test cbor() DSL method #2616 + +commit 34329c8db4e76828b0942fe221f492add716b584 +Author: Peter Palaga +Date: Tue May 18 17:20:00 2021 +0200 + + Test bindy() DSL method #2616 + +commit 3971f990852c60f40d63923cb01c846134b1a73c +Author: Peter Palaga +Date: Tue May 18 15:03:22 2021 +0200 + + Test Constant language in isolation #2613 + +commit 7771be8bfc998c995092787bde7d4db5b80ae8cb +Author: Peter Palaga +Date: Tue May 18 14:52:26 2021 +0200 + + Test Tokenize language in isolation #2613 + +commit 14f77dc6c222a80870510b2098d56b1cc3b8deea +Author: Peter Palaga +Date: Tue May 18 14:30:47 2021 +0200 + + Test the Ref language without dependency on camel-quarkus-ref #2613 + +commit 8cab8146584cd863fbb9d34927ee5c3de83b10b5 +Author: Peter Palaga +Date: Tue May 18 14:07:49 2021 +0200 + + Rename Simple test module to Core Languages because it now covers + multiple Camel Core languages #2613 + +commit bc3813a00515788b788f33e3f9192d9c6fe485b6 +Author: Peter Palaga +Date: Tue May 18 14:02:56 2021 +0200 + + Test ExchangeProperty and Header languages #2613 + +commit d2c1ad225d44100e20d9ab775ca6e56707f15e37 +Author: Peter Palaga +Date: Tue May 18 12:50:32 2021 +0200 + + Simplify Simple language tests + +commit 00d7344c0894408f7c9a8f66ffa3a9588cd4a6ae +Author: James Netherton +Date: Wed May 19 07:20:00 2021 +0100 + + Remove superfluous toD in JmsRoutes + +commit b0f91f326089c22e6f98391f4667828d8b9934e2 +Author: James Netherton +Date: Tue May 18 09:50:46 2021 +0100 + + Add test coverage for additional JMS message types + +commit 7ddcc5da5affbd5772980b6cf2672055c852c89b +Author: James Netherton +Date: Tue May 18 13:51:38 2021 +0100 + + Add a test for using MicroProfile metrics annotations on Camel beans + +commit f344c2eb6b52b0df472d362f1a0666509a6153ec +Author: James Netherton +Date: Tue May 18 11:46:54 2021 +0100 + + Add tests for MicroProfile metrics configuration options + +commit 800686c89c9b8ba444566620f5db08f29b040507 +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Wed May 19 03:38:53 2021 +0000 + + Updated CHANGELOG.md + +commit c3bcc0c3d92b50d353e28e3147e8b5a0d3d90b7b +Author: aqel +Date: Mon May 17 20:49:40 2021 +0100 + + Update first-steps.adoc + + Fix camel-quarkus-jackson group id + +commit b9f532f5044c93e8ba7787ced49ec425adbdcb15 +Author: Peter Palaga +Date: Mon May 17 17:17:30 2021 +0200 + + Document locale limitations in native mode #2522 + +commit c72042fb58035d39969c73cd2c361362c4044333 +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Tue May 18 03:43:25 2021 +0000 + + Updated CHANGELOG.md + +commit f83183fe1c5690fedea0b51ba5cdb62af4166034 +Author: Peter Palaga +Date: Mon May 17 18:08:49 2021 +0200 + + Leverage quarkus-hazelcast-client-bom, upgrade to quarkus-hazelcast-client 1.2.0 + +commit 7edf3e0cfd56e8ca1723759c47b2429cddd96506 +Author: Peter Palaga +Date: Fri May 14 21:53:25 2021 +0200 + + Split the old foundation test module into the new foundation group #2362 + +commit 03886c9794956926c66d4ab4a76be40e41dddfdc +Author: Peter Palaga +Date: Fri May 14 20:58:06 2021 +0200 + + Add Simple and Bean tests to the foundation group #2362 + +commit 3cc5e0eea2df2f3561b0cb39143e905ddec1c559 +Author: Peter Palaga +Date: Fri May 14 17:35:51 2021 +0200 + + Check for duplicates in merged properties + +commit 0d17a9de6f8cf45b3eaefa31fbfeedc46fdc0aec +Author: Peter Palaga +Date: Fri May 14 16:12:56 2021 +0200 + + Split out direct, timer and converter related tests out of core tests #2362 + +commit dd258f20af846d93fc582b6f9dabe134da5e132f +Author: Peter Palaga +Date: Fri May 14 15:24:48 2021 +0200 + + Split out log related tests #2362 + +commit df097fd8b3c22a615f8616b9d899ec853eb38b43 +Author: Peter Palaga +Date: Fri May 14 14:22:48 2021 +0200 + + Create foundation group #2362 + +commit f9b7468ffcb9cd9fabb02152c5b859176667144d +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Sat May 15 03:39:38 2021 +0000 + + Updated CHANGELOG.md + +commit f6d6ccaafb1c718738ed51078e5c089aaff0ae0b +Author: Zoran Regvart +Date: Fri May 14 19:33:13 2021 +0200 + + Fix absolute URL to camel.apache.org + +commit a753947a4b76d9853dcbfe1a2b57d393c79769be +Author: Peter Palaga +Date: Fri May 14 10:34:39 2021 +0200 + + AWS2 components have to set client.endpointOverride() to work on Localstack #2216 + +commit ef2ed10db4ba6799ed96f1a7da8dd461d181eb3d +Author: Peter Palaga +Date: Fri May 14 09:29:39 2021 +0200 + + REST extension doc link is not processed correctly #2591 + +commit 66565dd0ea7ffd65184a3574fc20fd216fac5fdc +Author: aldettinger +Date: Mon May 10 16:42:05 2021 +0200 + + XQuery component and language native support #1710 + +commit f842e461686c40e48fbe54c757b88fef4abdf0a6 +Author: Peter Palaga +Date: Wed May 12 22:27:22 2021 +0200 + + Simplify BeanTest.produceInterface() as proposed by @aldetinger in https://github.com/apache/camel-quarkus/pull/2581#discussion_r630984007 + +commit 65d762f7a56579b0fbb3982b76c1be031deed05c +Author: Peter Palaga +Date: Wed May 12 22:14:41 2021 +0200 + + Support @Consume #2580 + +commit 48c8454299bfe982c665cd49a9a077682e87d14d +Author: JiriOndrusek +Date: Wed May 12 10:13:13 2021 +0200 + + Test TypeConverters #2537 + +commit d152c530d6fce7731182c7160e0c11d906c9056b +Author: James Netherton +Date: Thu May 13 12:52:34 2021 +0100 + + Fix typo in URI option in SQL extension configuration docs + +commit 7b6cc2404cdd2322a305d67a79109cb0df110b02 +Author: James Netherton +Date: Thu May 13 09:51:01 2021 +0100 + + Add DataSource configuration docs to JDBC & SQL extensions + +commit d4d3a27a607447c74e38c68fc0cf0cf97821bd2d +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Thu May 13 03:41:22 2021 +0000 + + Updated CHANGELOG.md + +commit 89342a6aa0ad67128a16be9f512c19c24342a351 +Author: Peter Palaga +Date: Fri Apr 30 16:06:46 2021 +0200 + + Support @EndpointInject and @Produce #2539 + +commit ce31cfb6f330fd6dbed82beb3ddcf6709690522a +Author: James Netherton +Date: Wed May 12 07:05:42 2021 +0100 + + Do not use deprecated BuildStep.applicationArchiveMarkers() + +commit aecb2deca18c385c41cf303e21eb6494965959b3 +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Wed May 12 03:39:07 2021 +0000 + + Updated CHANGELOG.md + +commit 0dbf4ed72c28dc62759b4a7e702625add34599db +Author: JiriOndrusek +Date: Tue May 11 11:10:33 2021 +0200 + + With fix of #2260 too many @Converters are registered #2570 + +commit 60efaa1f82c0cef14cff38ac6dd3bb5b2dceb643 +Author: James Netherton +Date: Fri May 7 10:42:21 2021 +0100 + + Add additional SOAP extension test coverage + + Fixes #2561 + +commit 71ab766fe21be3cc0dd47741399e4852d70f03c2 +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Tue May 11 03:35:58 2021 +0000 + + Updated CHANGELOG.md + +commit 1fa9a80a268acb0c1e1cccc152ff9c40309edf18 +Author: JiriOndrusek +Date: Thu May 6 16:49:56 2021 +0200 + + Custom TypeConverter is not automatically registered #2260 + +commit 8adfe8a10ada3b1f8f01c70f91173457db5e846b +Author: Zineb Bendhiba +Date: Thu Apr 22 13:49:56 2021 +0200 + + AtlasMap: Use jandex to discover the types we need to register for reflection #2241 + +commit a2dd8f84cd03a372455db8318a03cc4a9e41e39c +Author: JiriOndrusek +Date: Thu Apr 22 14:56:30 2021 +0200 + + Google Storage support #2421 + +commit 9157c3e5ef56878d1748e3ee84f60eba54d4769b +Author: James Netherton +Date: Fri May 7 11:55:17 2021 +0100 + + Move RestBindingMode XML tests to rest itest module + +commit 90224a5369f678cf8cdc89f8ec4ef584ad7f8189 +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Sat May 8 03:31:52 2021 +0000 + + Updated CHANGELOG.md + +commit 072dd7cdebef5dbe40f3bfad58a1fc23b87af1f4 +Author: Kurt Stam +Date: Thu May 6 18:48:14 2021 -0400 + + [fix] #2356 Test file language + +commit c7df8ee1299a372fb314eb1d9e9fb6e5574fb364 +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Fri May 7 03:33:37 2021 +0000 + + Updated CHANGELOG.md + +commit 5980941883172d8fcc4fc923ab7851a05a58b582 +Author: James Netherton +Date: Thu May 6 09:58:00 2021 +0100 + + Regenerate file integration tests pom.xml + +commit 30560c8099fa4bb174d00053cafaf3df540f8ebe +Author: James Netherton +Date: Thu May 6 07:44:40 2021 +0100 + + Update changelog action to v1.4 + +commit 374324408b506a3398aff0285de44ecf3b7a7061 +Author: aldettinger +Date: Thu May 6 10:17:35 2021 +0200 + + Explained how to override default build locale in bindy documentation #2407 + +commit 1580be6d3337a864847d9edbfdc6f788ebbc4c78 +Author: Freeman(Yue) Fang +Date: Thu May 6 02:22:22 2021 -0400 + + #2550 fix several native integration-test failure (#2553) + + * fix file native integration-test #2550 + + * remove native profile for hbase since it only supports jvm mode + + * remove native profile for hbase since it only supports jvm mode #2550 + + * fix hazelcast integration test #2550 + + * fix minio native integration-test #2550 + + * fix license header #2550 + +commit 820b3261d66f899e86789910b67674d00f7a5208 +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Thu May 6 03:34:40 2021 +0000 + + Updated CHANGELOG.md + +commit 43a01cc1480b8d414a155ae32ca1bfefdc0d6363 +Author: James Netherton +Date: Wed May 5 14:52:22 2021 +0100 + + Add MLLP test coverage for setting charset + + Fixes #2518 + +commit c690f5a1f6c6bdda5b99271d16e7cabb9bf286fd +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Wed May 5 03:31:41 2021 +0000 + + Updated CHANGELOG.md + +commit 78b45f44b9ad0580783dec00a2eafe80f7442efe +Author: aldettinger +Date: Tue May 4 16:09:54 2021 +0200 + + xpath: Fixed native issue and completed tests/documentation #2547 + +commit 6aee9ff59caa9885c1fca4d89db0c9f1765e1aa9 +Author: James Netherton +Date: Tue May 4 15:36:29 2021 +0100 + + Wrap PR template content in comments by default + +commit 57d27cc4e040c9354cf472b7dae6d96a349c86b3 +Author: JiriOndrusek +Date: Mon May 3 11:58:57 2021 +0200 + + Test Batch Consumer, charset, filter and sortby options of the file component #2512 + +commit 7b07220aa680aa00a2dd8d826abeb23dcbc7936a +Author: James Netherton +Date: Fri Apr 30 14:39:30 2021 +0100 + + XChange native support + + Fixes #769 + +commit 096ef6ce3c6ee34c75379873a4aacf2547ae0b3b +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Tue May 4 03:32:58 2021 +0000 + + Updated CHANGELOG.md + +commit 4b8aef4378ced4d65906d696a62c6ce6d9af1dd7 +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Mon May 3 03:37:24 2021 +0000 + + Updated CHANGELOG.md + +commit 3f1c32ce0253f5f21e28ab29f655b1861bfb3886 +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Sun May 2 03:37:35 2021 +0000 + + Updated CHANGELOG.md + +commit 185ee8008b4e9973075a3ffb2baa1dd2f9e895eb +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Sat May 1 03:33:53 2021 +0000 + + Updated CHANGELOG.md + +commit bdbc3554a361ba840c75fd6b5a90ab4311feab46 +Author: Peter Palaga +Date: Thu Apr 29 16:58:28 2021 +0200 + + Test bean binding #2492 + +commit 7a0d75c650e747970708f3c08079217008e1f3bd +Author: Peter Palaga +Date: Thu Apr 29 15:59:00 2021 +0200 + + Rename routes and JAX-RS endpoints classes to match Camel Quarkus convemntions + +commit a6d773318e9e3620850465c67edee65e3321d69e +Author: Freeman Fang +Date: Thu Apr 29 16:36:39 2021 -0400 + + fix org.apache.camel.quarkus.component.splunk.it.SplunkTest failure if system timezone isn't UTC #2542 + +commit 3fbb1b25ca57e68d83ab95286633b2d2249cc89a +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Fri Apr 30 03:34:13 2021 +0000 + + Updated CHANGELOG.md + +commit ca5a8a5c7f31baba1d949a33867454869a532fe3 +Author: aldettinger +Date: Thu Apr 29 17:17:56 2021 +0200 + + Added tests and docs for the simple language #2533 + +commit f6480bcc879606011178577684bff4ea31e5a1cf +Author: James Netherton +Date: Thu Apr 29 14:36:10 2021 +0100 + + Expand HL7 test coverage + + * Setting custom charset + * ack expression + + Fixes #2520 + +commit 0ac2afc97000b63c35a5bb370f2a1c190cd5d268 +Author: James Netherton +Date: Thu Apr 29 10:28:00 2021 +0100 + + Expand REST test coverage + + * Usage of URI templates + * RestBindingMode.json + * CORS + * Enabling client request validation + * REST producer + + Fixes #2529 + +commit cc32c2fdf2a3bbab2cf4ac3e3f798124b542a31d +Author: Peter Palaga +Date: Wed Apr 28 20:34:39 2021 +0200 + + Test class component, test bean language #2361 + +commit e39730267591ac5656b4fea33e5e36473dc000b8 +Author: James Netherton +Date: Thu Apr 29 07:33:04 2021 +0100 + + Fix xref link in bean.adoc + +commit 2ee467b96faa096ab822705b1230cfc7dd0b41f6 +Author: Freeman(Yue) Fang +Date: Thu Apr 29 02:19:19 2021 -0400 + + fix org.apache.camel.quarkus.component.lra.it.LraTest failed #2523 (#2524) + + Fix LraTest on Mac OS X. + + Fixes #2523 + +commit b49cde7ef9426c2caa709a3a044c1bea3a0cbbbb +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Thu Apr 29 03:09:55 2021 +0000 + + Updated CHANGELOG.md + +commit a0d73c351fc8291020a3dceb0c85c639392c05e7 +Author: Peter Palaga +Date: Wed Apr 28 20:58:02 2021 +0200 + + Document the possibility to use CDI beans with camel bean component #2491 + +commit 91612dce5051902321842b17297b7ce0bcaf4565 +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Wed Apr 28 03:14:56 2021 +0000 + + Updated CHANGELOG.md + +commit 5ad13f2be3d6d8ccb771dcea4c37a7d0c600b24e +Author: aldettinger +Date: Mon Apr 26 17:49:02 2021 +0200 + + Fixed classpath and no prefix resources that were ignored in dev mode #2476 + +commit 8ce4b466fde503c5485e26a3efa36b0c2aa982b6 +Author: Freeman Fang +Date: Thu Apr 22 19:12:07 2021 -0400 + + #2490 fix camel-quarkus-hbase-integration-test + +commit 59adea081154464fa971b33f8d96189ece753d36 +Author: Tadayoshi Sato +Date: Tue Apr 27 17:23:55 2021 +0900 + + Fix asciidoctor warnings at camel-website build (#2517) + +commit 8156097932c2d98bfd7dab4b15b77241cc79c062 +Author: Tadayoshi Sato +Date: Tue Apr 27 17:23:30 2021 +0900 + + Fix admonitions in adocs (#2516) + +commit 90f81aec6ca601360de7c524ed9ce34b2812536d +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Tue Apr 27 03:14:56 2021 +0000 + + Updated CHANGELOG.md + +commit c24998cd9ac21e17eab65c39317b1fb32221cf99 +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Mon Apr 26 03:19:25 2021 +0000 + + Updated CHANGELOG.md + +commit 2b94f466fd8acc3b189b48333af4d7ca620571fd +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Sun Apr 25 03:16:34 2021 +0000 + + Updated CHANGELOG.md + +commit 75bc1a9252aeb807c8aeaed1dc1b92a559574c28 +Author: Peter Palaga +Date: Fri Apr 23 17:31:14 2021 +0200 + + Qute component improperly classified as other in Camel Quarkus Catalog #2508 + +commit efd8a40f0b28ddf9c3be277dc18cdafdf8718d56 +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Sat Apr 24 03:14:23 2021 +0000 + + Updated CHANGELOG.md + +commit e04f5fc6d988f28508477aa86595a07216607fad +Author: James Netherton +Date: Fri Apr 23 10:32:32 2021 +0100 + + Order test categories alphabetically + +commit df148e3519cbd381bb6fa24c11aad6a0714c008a +Author: James Netherton +Date: Fri Apr 23 10:10:55 2021 +0100 + + Add test coverage for Kafka with SASL_SSL + + Fixes #2409 + +commit e39f071c41353787308f2d8484b102445890ce16 +Author: James Netherton +Date: Thu Apr 22 13:41:31 2021 +0100 + + Add integration-tests-support-kafka module + +commit 257483655cdd6a1fc193c2e91eedade83919c395 +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Fri Apr 23 03:14:19 2021 +0000 + + Updated CHANGELOG.md + +commit b0ad46a2ad09c3192f06910ef88361aae8ad2098 +Author: James Netherton +Date: Wed Apr 21 09:03:35 2021 +0100 + + Add test coverage for Kafka with SSL + + Fixes #2484 + +commit 0e1f2e2c528481ad5a9028d92aad4df2b0d5e8d8 +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Thu Apr 22 03:14:41 2021 +0000 + + Updated CHANGELOG.md + +commit 7e3878479b0583187919d50f8317c47c4fe82661 +Author: James Netherton +Date: Wed Apr 21 16:26:45 2021 +0100 + + Replace references to camel master branch with main in antora playbook configs + +commit 0c54e05014e91d053f770b0b83df3534301f8836 +Author: Zineb Bendhiba +Date: Fri Apr 9 15:45:48 2021 +0200 + + Add integration tests #2388 + +commit 9c490d8f0a8e6ac9e18efb77e54b08ef52d1bd8f +Author: Zineb BENDHIBA +Date: Wed Apr 21 11:06:19 2021 +0200 + + update ci doc (#2498) + +commit bca0397bde6c6ac4a6da546eb96c1b737298f9e2 +Author: James Netherton +Date: Wed Apr 21 09:01:25 2021 +0100 + + Add missing test scope to camel-quarkus-integration-test-support + +commit 10f9e37010c5011ac9882b427057e675716f2ae6 +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Wed Apr 21 03:16:21 2021 +0000 + + Updated CHANGELOG.md + +commit 4ff104bbd0f6e3cbdff015549f1e094ef22edcfa +Author: aldettinger +Date: Tue Apr 20 17:03:31 2021 +0200 + + bindy: fixed the locale test so that it detects issues on Java 8 too #2445 + +commit f25bb0fe854bd1aa7a7e6bb7d9be6ff00963694c +Author: James Netherton +Date: Tue Apr 20 15:15:53 2021 +0100 + + Fix SlackConfig class for native builds + + Fixes #2489 + +commit 6579e546783b5a9ed2bda0abb054deff48fcf718 +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Tue Apr 20 03:14:37 2021 +0000 + + Updated CHANGELOG.md + +commit c50a7ae86148f34e286e218bba8fbff48b4c0d68 +Author: James Netherton +Date: Mon Apr 19 13:47:58 2021 +0100 + + Inherit testcontainers dependencies from quarkus-bom + +commit 9b25ac02c227fa65eb6418e9847c3484972e6985 +Author: James Netherton +Date: Mon Apr 19 09:35:27 2021 +0100 + + Remove camel-quarkus-integration-testcontainers-support + +commit 845983a99d4fd3aa5f4bdfa4cf97d2e7796c4cd2 +Author: James Netherton +Date: Mon Apr 19 14:24:50 2021 +0100 + + Fix invalid xref link to configuration.adoc + +commit e67a79a2e4f73d9546bce63b9d58dfba192a7f2d +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Mon Apr 19 03:16:14 2021 +0000 + + Updated CHANGELOG.md + +commit 1d18534bcb9502b00646a470d3caf8f91530894b +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Sun Apr 18 03:15:42 2021 +0000 + + Updated CHANGELOG.md + +commit f34648df1ff8cf743bcf96368d3ac16e6c115e7e +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Sat Apr 17 03:13:18 2021 +0000 + + Updated CHANGELOG.md + +commit de9d0d20654a9a61d69be15209734818d9fbebc0 +Author: Peter Palaga +Date: Fri Apr 16 14:24:51 2021 +0200 + + Use generic group names in test-categories.yaml + +commit 061312864228635031f2bec1e45ddbe25b0f5b91 +Author: Peter Palaga +Date: Fri Apr 16 12:30:30 2021 +0200 + + Reballance CI test categories even more + +commit 1c395898692cab56a67f3c6d862e2e985dcae911 +Author: Peter Palaga +Date: Fri Apr 16 09:35:24 2021 +0200 + + Do not validate docs link in inital-mvn-install CI phase + +commit 6806074d717185d5f9af787acef3c246edc8ec84 +Author: Peter Palaga +Date: Fri Apr 16 09:44:15 2021 +0200 + + Do also in CI cron jobs: Test skipped in native mode should be executed + on default Java version at least #2389 + +commit 0d20a2c9778141680bac45533439b8f588c43ec9 +Author: Peter Palaga +Date: Fri Apr 16 09:23:39 2021 +0200 + + Reballance CI test categories + +commit 6e440e02573a2ae136983454f345424e85cd0083 +Author: James Netherton +Date: Thu Apr 15 14:18:39 2021 +0100 + + Add Quarkus service binding support to Kafka extension + + Fixes #2333 + +commit d15038d1ee3dbb8938e795b09d4038e9b23fe1a6 +Author: Peter Palaga +Date: Thu Apr 15 23:34:00 2021 +0200 + + Stop testing JavaScript DSL in native mode #2481 + +commit aa668d014ff9d19f50c75059800d5f51bf086f64 +Author: Peter Palaga +Date: Thu Apr 15 23:31:54 2021 +0200 + + Test skipped in native mode should be executed on default Java version + at least #2389 + +commit b38c283c1a779f66a37f49fd7e6550c45372081c +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Fri Apr 16 03:16:58 2021 +0000 + + Updated CHANGELOG.md + +commit a896e5951095630689c74042a13d32930041fde7 +Author: Peter Palaga +Date: Wed Apr 14 23:24:31 2021 +0200 + + Upgrade to Quarkus 1.13.2.Final + +commit f494fc3473a0a934d6794f9532ae5f7144def0d5 +Author: Peter Palaga +Date: Wed Apr 14 22:57:12 2021 +0200 + + Fixup bb64853 Revisit documentation + +commit d18824651ea87038bb385b3e0c09f96db12aa88c +Author: Peter Palaga +Date: Wed Apr 14 18:33:55 2021 +0200 + + Run Azure tests grouped on the CI thus saving some time + +commit 2772a21db3e660d1112f9d4eaa65e958a5a88112 +Author: Peter Palaga +Date: Wed Apr 14 13:57:37 2021 +0200 + + Prepare for more test groups + +commit 8f8694d98efb75e1a5d6943e470759619105cc7d +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Thu Apr 15 03:12:56 2021 +0000 + + Updated CHANGELOG.md + +commit 6923d06e00a8eb41fefd22b3ad82df15f153e19f +Author: aldettinger +Date: Wed Apr 14 15:57:40 2021 +0200 + + documentation fixes + +commit bb648537b3311273a2275fec1bf896637a85eaf7 +Author: Peter Palaga +Date: Wed Apr 14 11:43:50 2021 +0200 + + Revisit the documentation #2136 #2470 #2374 + +commit 03ec238c26569d66f991fb8efd5cf6dde469ca1f +Author: Tom Cunningham +Date: Tue Apr 13 15:05:11 2021 -0400 + + Upper case Bootstrap #2164 + +commit eb3d8fea8feb6b6aa3b771924fa71f4392089b31 +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Wed Apr 14 03:13:59 2021 +0000 + + Updated CHANGELOG.md + +commit 45259415e6cc4554b6ac71d7b57962dd28df7455 +Author: Peter Palaga +Date: Tue Apr 13 12:07:16 2021 +0200 + + Use AsciiDoc variable for Quarkus version in the documentation #2163 + +commit 8d7470f1616af415d2dc5f32c4393b606538a5f9 +Author: Peter Palaga +Date: Tue Apr 13 11:38:48 2021 +0200 + + Use a plaintext link to code.quarkus.io for now #2465 + +commit a14ff520282d5b1c3d76c45203abf972b817707c +Author: Peter Palaga +Date: Tue Apr 13 11:22:13 2021 +0200 + + Upgrade node.js and yarn + +commit 219e7379f2e350fcf7efb57d551b7135be073e2d +Author: Peter Palaga +Date: Mon Apr 12 14:45:02 2021 +0200 + + Use min-maven-version variable in the docs + +commit 0edff24b50b86236bdda5dab09006c792dbb725c +Author: James Netherton +Date: Tue Apr 13 10:51:32 2021 +0100 + + Update branch references master -> main + +commit 2628871a1c71dae10fdd96eb7578c899f8a96cc6 +Author: James Netherton +Date: Tue Apr 13 08:56:29 2021 +0100 + + Improve MongoDB extension documentation of named clients + + Fixes #2466 + +commit 11ffdee595adae979e99e108d9ab49de3fe9cf2b +Author: James Netherton +Date: Mon Apr 12 13:36:00 2021 +0100 + + Fix intermittent failure in native MicroprofileMetricsIT + + Fixex #2460 + +commit 93a2662a5977995571ba55c2b98ae3bd1e2eafb2 +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Tue Apr 13 06:26:18 2021 +0000 + + Updated CHANGELOG.md + +commit e8bc2464d3aa2b3f8bdeac9af98ae3ed21629590 +Author: Andrea Cosentino +Date: Tue Apr 13 08:19:29 2021 +0200 + + Changelog Action: Point to main as release branch + +commit bc11d03a612911a52b8d1c2c166afdc992ad1b89 +Author: aldettinger +Date: Thu Apr 8 14:36:20 2021 +0200 + + Added native support for camel-openstack * components #1943 + +commit a9d36d48f6348aec033688f8453b1975a4d9a2b5 +Author: James Netherton +Date: Mon Apr 12 11:07:18 2021 +0100 + + Make Quarkus Micrometer optional for Reactor Netty extension + + Fixes #2442 + +commit 711a3177791ee4c201729cbb70111cbd45a08e46 +Author: Peter Palaga +Date: Fri Apr 9 17:29:56 2021 +0200 + + Forward Kafka testcontainer's log to stdout to see why it is sometimes failing #2461 + +commit afa2e7e71c21559ae1021c4758768b430f6e2e1c +Author: Peter Palaga +Date: Fri Apr 9 14:42:28 2021 +0200 + + org.apache.hbase.thirdparty.io.netty.channel.unix.Errors: bind(..) failed: Cannot assign requested address #2458 + +commit fd81096e466b9d2c25c1ee77d7aa3bad5d34d1a9 +Author: Peter Palaga +Date: Fri Apr 9 10:17:58 2021 +0200 + + Upgrade to Quarkus 1.13.1.Final + +commit c90249f728cc3ee132f5b2b2ff3e9e170b616f95 +Author: Peter Palaga +Date: Fri Apr 9 10:58:57 2021 +0200 + + cat /etc/hosts on GH actions to see whether that's the cause of HBase failures + +commit 96eb4bee3e16828238cfd29b078e5736ef4c2317 +Author: Peter Palaga +Date: Fri Apr 9 09:59:08 2021 +0200 + + Forward HBase testcontainer's log to stdout to see whether #2458 is occurring + +commit 92713d84c02abaa27bdaa672da66924756d86279 +Author: JiriOndrusek +Date: Thu Apr 8 13:01:24 2021 +0200 + + camel-quarkus-dozer Error when running native executable #2449 + +commit c8b25ebffdb89132b9d5a655289916ad9134f501 +Author: Amos Feng +Date: Thu Apr 8 22:53:20 2021 +0800 + + Fix #2441 to remove the unused beanContainer in FhirR5Processor + +commit 30d0569cc2e52f2c59a0e95ee2ab981ae6e6259e +Author: Peter Palaga +Date: Thu Apr 8 16:30:04 2021 +0200 + + Add code.quarkus.io badges on extension pages #2433 + +commit b9606cacad245e73ce5af44051754be2dfdb1fa8 +Author: Peter Palaga +Date: Thu Apr 8 18:31:09 2021 +0200 + + Rename master branch to main in documentation and GitHub workflows + +commit ddf4d9fd2d05ec302deb95354da4063f8138b50a +Author: Zineb BENDHIBA +Date: Thu Apr 8 09:13:26 2021 +0200 + + couchbase JVM : add integration tests fixes #2326 (#2327) + +commit dc3e0061576c1a5a3288c81e0899c239cff7bb65 +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Thu Apr 8 03:17:56 2021 +0000 + + Updated CHANGELOG.md + +commit 0c7b5a41e757573437ee91dac67d93eb8906b245 +Author: llowinge +Date: Wed Apr 7 16:25:37 2021 +0200 + + [fix] Enforce correct maven version (#2443) + +commit bc4b2ea46369e73226cbbdda061ba89ee893f6d4 +Author: Zineb BENDHIBA +Date: Wed Apr 7 16:24:35 2021 +0200 + + Upgrade CassandraQL quarkus extension to 1.0.1 #2423 (#2440) + +commit ec7029a0f7918bde9c70df9f68d9dc0ac8681fd3 +Author: Peter Palaga +Date: Wed Apr 7 10:44:06 2021 +0200 + + Fix xref-validator download failure error https://gitlab.com/antora/xref-validator/repository/archive.tar.gz?ref=12a2765fe934e2b661cafeeac568e7c221021bfe: Extracting tar content of undefined failed, the file appears to be corrupt: Invalid tar header. Maybe the tar is corrupted or it needs to be gunzipped? + +commit 2aaffc28204fbbcc631d0fba7e8bdc6e3a15af24 +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Wed Apr 7 03:16:35 2021 +0000 + + Updated CHANGELOG.md + +commit 5d8337d916432b28e8208a97c52263c0c382b586 +Author: Peter Palaga +Date: Tue Apr 6 16:23:01 2021 +0200 + + Show deprecation info in Extensions reference #2266 + +commit 54b8862d60c0e7f1c7d91de576bb325abd24066f +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Mon Apr 5 03:16:26 2021 +0000 + + Updated CHANGELOG.md + +commit 3688743761d45001739f0625e2d2ee36f416a944 +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Sun Apr 4 03:15:14 2021 +0000 + + Updated CHANGELOG.md + +commit 2531f9dbd74748de8e75368b34c09af51766f660 +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Sat Apr 3 03:15:02 2021 +0000 + + Updated CHANGELOG.md + +commit 8815a188f777e701f6ffdc5152708d7706f54637 +Author: aldettinger +Date: Fri Apr 2 11:55:19 2021 +0200 + + openstack: fixup + +commit 041f2f341688283996e514110e541c88acf70649 +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Fri Apr 2 03:16:16 2021 +0000 + + Updated CHANGELOG.md + +commit 62c70aabb2ce804a91f367a94e01af491b03b1d9 +Author: aldettinger +Date: Thu Apr 1 20:08:47 2021 +0200 + + openstack: added nova server and swift tests #1943 + +commit 67a6da574f862d4868bccd775ff5b1923fbdcfe2 +Author: Zineb Bendhiba +Date: Mon Mar 29 20:40:55 2021 +0200 + + rebase master and delete test conditions + +commit 9788fb651291473547b20f6ff5f70f01b221a631 +Author: Zineb Bendhiba +Date: Mon Mar 15 17:27:11 2021 +0100 + + DigitalOcean native support #1594 + +commit 41c3818fb2509c578bfdd1e01fa679f076e47029 +Author: Peter Palaga +Date: Thu Apr 1 16:20:48 2021 +0200 + + Azure Storage Data Lake appends newline to the file content #2302 + +commit abebf5b8ebb298e7eb3d318cf2bb0296b543c98c +Author: Peter Palaga +Date: Thu Apr 1 13:35:43 2021 +0200 + + Make camel-quarkus-xml-io work again after we broke it with camel-quarkus-xml-io-dsl in 1.8.0 #2431 + +commit f0b5e21558944fdd949c07237dc45c73e23fd6e9 +Author: James Netherton +Date: Thu Apr 1 13:21:36 2021 +0100 + + Fix NPE if Qute template can't be found + + Fixes #2410 + +commit 928ab9955ff913f4b238185f4f810f8ca1a172b7 +Author: James Netherton +Date: Thu Apr 1 10:08:35 2021 +0100 + + Upgrade quarkus-google-cloud-services to 0.5.0 + + Fixes #2405 + +commit 83367cf596b9dfcd40480f11c9775f5e457aefc9 +Author: James Netherton +Date: Thu Apr 1 10:40:51 2021 +0100 + + Split misc test category into new networking-dataformats category + +commit 6e0b1c87cb852f207393b2533d3cd4ededf95891 +Author: James Netherton +Date: Thu Apr 1 07:24:13 2021 +0100 + + MLLP Native support + + Fixes #1731 + +commit 759f8e4305b53b271bd5f67b262f86aaa4be0f91 +Author: Peter Palaga +Date: Wed Mar 31 16:03:30 2021 +0200 + + Consume kubernetes-client-bom via Quarkus BoM #2426 + +commit e836c94f863fd9a793ea2a60672d57296f38a429 +Author: James Netherton +Date: Thu Apr 1 07:40:51 2021 +0100 + + Native mode guide minor cosmetic tweaks + +commit 7f2f23306241ceef992f496a6f1f27311752cbbd +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Thu Apr 1 03:16:46 2021 +0000 + + Updated CHANGELOG.md + +commit e352db4331f686e2b41522d12ee3d5ce5b67dfc1 +Author: Peter Palaga +Date: Tue Mar 30 19:35:06 2021 +0200 + + docs: add xref support for adoc file sourced from javadoc #2417 + +commit d7bdb1728b45df5315c4668b8fd14a7ce35f63f1 +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Wed Mar 31 03:14:19 2021 +0000 + + Updated CHANGELOG.md + +commit fbab4bedab318d537551fea438b2031ca9f9782f +Author: JiriOndrusek +Date: Tue Mar 30 15:00:55 2021 +0200 + + Fix of Spring RabbitMQ integration test failures after spring update + +commit db86e1abc039957a7e529d7fb028a8a8a8a9bb91 +Author: James Netherton +Date: Tue Mar 30 15:16:09 2021 +0100 + + Fix intermittent failure in camel-quarkus-master-integration-test + +commit 0344ae73ff8ac8f3c60f449699fb7f1c02f39f38 +Author: aldettinger +Date: Tue Mar 30 16:08:01 2021 +0200 + + core: Removed the href in core javadoc as it does not generate a correct documentation #2417 + +commit 8fcb83a0a96897b3ebb45eb26a6b50839985fbdb +Author: aldettinger +Date: Tue Mar 30 11:41:46 2021 +0200 + + bindy: do not embed useless resources #2413 + +commit 8283c9f16a9120c417491573f34e4db8a1542d62 +Author: James Netherton +Date: Tue Mar 30 08:43:25 2021 +0100 + + Document the process for maintaining (quarkus | camel)-master branches + + Fixes #2406 + +commit 256ecadace9882cf054034ace208acad66acce44 +Author: aldettinger +Date: Mon Mar 29 18:21:44 2021 +0200 + + bindy: created a test to show the locale issue in native and documented #2407 + +commit b71c1ec6bdeebf125b0d4d17efcbffd8b94db815 +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Tue Mar 30 03:14:52 2021 +0000 + + Updated CHANGELOG.md + +commit 19792dc1aba16aaedce788fd1aff43da4c1c2924 +Author: Peter Palaga +Date: Mon Mar 29 11:56:22 2021 +0200 + + Next is 1.9.0 + +commit 6d8d1eb0171b539c124c339f67c2c25dc05888e4 +Author: James Netherton +Date: Mon Mar 29 10:44:05 2021 +0100 + + Remove Camel 3.9.0 staging repository + +commit 262cdddb0e3a73e1ce0e53a7e69ef3388a5eb47b +Author: James Netherton +Date: Wed Mar 24 13:35:06 2021 +0000 + + Add test coverage for health check interval and failure-threshold + + Fixes #2366 + +commit fb3bc03708e3afd6523810e98474ebb0ddbcaaa5 +Author: James Netherton +Date: Tue Mar 23 16:09:14 2021 +0000 + + Add test coverage for a custom HealthCheckRepository + + Fixes #2365 + +commit e6c3860bbbc32eb3e5d1fc3e0a5168f3d913f162 +Author: James Netherton +Date: Mon Mar 29 07:42:39 2021 +0100 + + Revert Disable doc xref checks as there is no camel-3.9.x branch yet + +commit c03d38234694fe04eb91bc04de4332fc93bcea8d +Author: Claus Ibsen +Date: Mon Mar 29 09:17:05 2021 +0200 + + Attempt to fix website build + +commit ba6963a7684ec84f6178c1a4bb440878b2eb7b1f +Author: Claus Ibsen +Date: Mon Mar 29 08:46:41 2021 +0200 + + Attempt to fix website build + +commit 2af9ed3d34fc977802f97eab1a0a97e1e9c43203 +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Mon Mar 29 03:16:41 2021 +0000 + + Updated CHANGELOG.md + +commit a7d4d6056d8ddd79c2f3b9536bb55b8069f234ec +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Sun Mar 28 03:16:48 2021 +0000 + + Updated CHANGELOG.md + +commit fd98da865ca5d4a7e5eb1c50921254f0cf7433de +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Sat Mar 27 03:15:42 2021 +0000 + + Updated CHANGELOG.md + +commit 405a9af9cff5ded6a8b204e5a22a228443fb9e25 +Author: Peter Palaga +Date: Fri Mar 26 11:28:59 2021 +0100 + + Upgrade to quarkiverse-minio 0.2.2 + +commit 3a3f7ecefcc5b8bf17d8ddf484fe2986817f40db +Author: Peter Palaga +Date: Fri Mar 26 11:25:50 2021 +0100 + + Upgrade to quarkus-qpid-jms 0.24.0 + +commit c4540bd1ed67b339b66ba30124306a53a68a3fbf +Author: Peter Palaga +Date: Fri Mar 26 12:00:59 2021 +0100 + + Fixup Groovy DSL + +commit a34ef4cd41421b1c5034c5d007c683749d4e97b6 +Author: Peter Palaga +Date: Fri Mar 26 10:48:41 2021 +0100 + + Disable FtpsIT temporarily #2317 + +commit c88f5cff44155cce0ad5db57a11b87d9c084efd1 +Author: Peter Palaga +Date: Fri Mar 26 10:48:10 2021 +0100 + + Disable master test temporarily #2384 + +commit 73b75b6e27064319a69ba30ec7c40bd605043c46 +Author: Luca Burgazzoli +Date: Fri Mar 26 09:07:22 2021 +0100 + + Upgrade to cq-maven-plugin 0.32.0 + +commit 939e4a21eec24ef3c63cfb416d2208d4947d6f75 +Author: Luca Burgazzoli +Date: Thu Mar 25 18:40:02 2021 +0100 + + dsl: support for js-dsl + +commit f5a8ad0e6322cceb480de5b8d7cf05feeabe9698 +Author: Peter Palaga +Date: Thu Mar 25 23:32:08 2021 +0100 + + Stop CI testing on Java 8 #2287 + +commit 6ccd2fbce0e28a9dcfc28e37477fd14b6e21072a +Author: Peter Palaga +Date: Thu Mar 25 22:37:26 2021 +0100 + + dsl: support for groovy-dsl + +commit 4078d79e726a83fe9dc7ec9b63448e1401ab07d1 +Author: Luca Burgazzoli +Date: Thu Mar 25 15:46:54 2021 +0100 + + dsl: support for kotlin dsl + +commit a3d821401df9bc8591cb194faadef3ed8dec76de +Author: Peter Palaga +Date: Thu Mar 25 22:06:08 2021 +0100 + + Workaround for #2340 Spring RabbitMQ integration test fails in native mode with Camel 3.9.0 + +commit dfeabc115cb205da6c53a5a874e41f87c2096e60 +Author: Peter Palaga +Date: Thu Mar 25 20:57:41 2021 +0100 + + Move java-joor to extensions-jvm directory + +commit 9c9c6ec6b6e4439d3b593359be808c7e0534dd86 +Author: Peter Palaga +Date: Thu Mar 25 08:40:45 2021 +0100 + + Remove camel-quarkus-main dependencies from tests etc. #2358 + +commit f77c3d2efe0ac25a9097043e12fab34ae16f8d7f +Author: Peter Palaga +Date: Tue Mar 23 17:03:44 2021 +0100 + + Merge camel-quarkus-main into camel-quarkus-core #2358 + +commit ed4735a793e803f27155edc01324c475ad818f16 +Author: James Netherton +Date: Thu Mar 25 13:21:33 2021 +0000 + + Fixup upgrade to Camel 3.9.0 + +commit b23a8aeb3d7d7f37ed51bc6d31a0114e0a53eb8d +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Fri Mar 26 03:19:03 2021 +0000 + + Updated CHANGELOG.md + +commit 042a1d06ff38a4573564d27a417cb7da14afd141 +Author: JiriOndrusek +Date: Thu Mar 25 11:00:56 2021 +0100 + + Replace hbase-testing-util with docker container #2295 + +commit 8e613fbcc7d8bfad4d346056a83843adca9320fe +Author: James Netherton +Date: Thu Mar 25 08:21:21 2021 +0000 + + Regenerate documentation + +commit c3e20c0301754665788554021bf199e7992cdd4d +Author: James Netherton +Date: Thu Mar 25 07:04:34 2021 +0000 + + Disable doc xref checks as there is no camel-3.9.x branch yet + +commit 4bef34bbfbb1a2c002fc522c5a08b34d3139264d +Author: James Netherton +Date: Wed Mar 24 14:07:42 2021 +0000 + + Add Camel 3.9.0 staging repository + +commit c87e247ccbcb80f4a392bd902548dcb8d6b5325a +Author: JiriOndrusek +Date: Mon Mar 22 14:13:16 2021 +0100 + + Spring RabbitMQ integration test fails in native mode with Camel 3.9.0 + +commit 1eb940ea699eb9cceed232a0d4cac2ced0fd6d89 +Author: JiriOndrusek +Date: Tue Mar 16 11:29:38 2021 +0100 + + Splunk native support #1698 + +commit dfafe4c91912724e4a7b2af213935a57826937c7 +Author: Luca Burgazzoli +Date: Mon Mar 8 12:37:10 2021 +0100 + + adapt to the latest camel apis + +commit 9d47b7038d0484c8a0292391609b12d0be2feac0 +Author: Luca Burgazzoli +Date: Mon Mar 8 12:36:50 2021 +0100 + + dsl: remove support for the old route definition loader + +commit 3052c625a58dbefb6bd0848d1b5730faea3e3eec +Author: Luca Burgazzoli +Date: Tue Mar 2 17:57:55 2021 +0100 + + dsl: fix findings + +commit cfe44fad4a864a53f35e029cadeb840d01a73e8b +Author: Luca Burgazzoli +Date: Tue Mar 2 15:59:27 2021 +0100 + + dsl: regen + +commit a7688fa131063ca03738c667283ab19c5cfe7675 +Author: Luca Burgazzoli +Date: Tue Mar 2 16:57:34 2021 +0100 + + dsl: support for java-joor-dsl + +commit 8ce676351995f5d464c673587995e2f6f54b7ae7 +Author: Luca Burgazzoli +Date: Tue Mar 2 15:41:14 2021 +0100 + + dsl: support for yaml-dsl + +commit 37bee1f02d85f90a849f4e8f77e17d0749b96509 +Author: Luca Burgazzoli +Date: Tue Mar 2 15:15:23 2021 +0100 + + dsl: support for xml-io-dsl + +commit 5db905f6c1e74ccb1074e37c53813f4cfe14973a +Author: Zineb Bendhiba +Date: Tue Feb 16 11:52:48 2021 +0100 + + Optaplanner : upgrade to 8.x extension #2243 + +commit e442ecd57b98ed768ae3c2c78d76f7e7674e780a +Author: James Netherton +Date: Mon Feb 22 08:01:13 2021 +0000 + + Upgrade to Camel 3.9.0 + +commit 0a9e60fb893912859a6400b32c8486317783746f +Author: James Netherton +Date: Wed Mar 24 18:00:33 2021 +0000 + + Only invoke completed method on unknown arguments if the failure remedy is FAIL + + Fixes #2293 + +commit 65bb0406fa9d57206ca0c99d5452e6eb92a57b11 +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Thu Mar 25 03:14:50 2021 +0000 + + Updated CHANGELOG.md + +commit 8a8d39b176d65b16776413851a7c490edec71bcf +Author: James Netherton +Date: Thu Mar 18 16:50:15 2021 +0000 + + Upgrade to Quarkus 1.13.0.Final + +commit b90b5f80b3d079effefc58736e33995215146bdc +Author: aldettinger +Date: Wed Mar 24 18:50:02 2021 +0100 + + openstack: added neutron port, subnet and nova flavor tests #1943 + +commit 2937812957c9822b5d48911b14354b55b9e1382b +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Wed Mar 24 03:30:18 2021 +0000 + + Updated CHANGELOG.md + +commit ab75b932c8cfe35db00ebaeb23510d0e21165ec4 +Author: James Netherton +Date: Tue Mar 23 14:02:24 2021 +0000 + + Use AbstractHealthCheck for custom health checks + +commit fef8c311551d0ad23e1b7883b6b64f2dbfb2bf5d +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Tue Mar 23 03:31:21 2021 +0000 + + Updated CHANGELOG.md + +commit 98e28d3d48491ef251a4d1955ab6a95752da13b1 +Author: James Netherton +Date: Mon Mar 22 15:42:15 2021 +0000 + + Add test coverage for FTPS + + Fixes #2317 + +commit 397d6dc1e6f9547d5a104f1cdde19d5328f07e89 +Author: aldettinger +Date: Mon Mar 22 17:53:22 2021 +0100 + + openstack: added neutron network tests #1943 + +commit 504a427f6f6d4b4051a98e819bc65f1320221e50 +Author: Peter Palaga +Date: Mon Mar 22 15:41:00 2021 +0100 + + Deprecate camel-quarkus-componentdsl and camel-quarkus-endpointdsl extensions #2354 + +commit 26c6c18c1d1fc81625f05ac50812bd72cf36f7f6 +Author: James Netherton +Date: Fri Mar 19 09:45:10 2021 +0000 + + Fix some deprecation warnings + +commit cfd1973be186f6f16c8efcf2a43adf2b013d2089 +Author: Peter Palaga +Date: Mon Mar 22 11:55:01 2021 +0100 + + Add a link to a blog post about Camel Quarkus command line applications + +commit 740a5bb62cb55763ac75d29c155d77aed94afa41 +Author: Lukas Lowinger +Date: Mon Mar 15 09:30:17 2021 +0100 + + Fix wrong format of RouteBuilder + +commit 210f7614efe56500cfb586c01d6e3ac45105f1f6 +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Mon Mar 22 03:36:03 2021 +0000 + + Updated CHANGELOG.md + +commit f3d410b42087196cdf438c8c509a3a12720a5f40 +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Sun Mar 21 03:30:11 2021 +0000 + + Updated CHANGELOG.md + +commit b9f79037c656708c8de9f6f7d2642c7c9a730213 +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Sat Mar 20 03:29:10 2021 +0000 + + Updated CHANGELOG.md + +commit da0c7655c04197544bec8256989c708c08645a25 +Author: James Netherton +Date: Fri Mar 19 08:14:05 2021 +0000 + + Upgrade Kotlin to 1.4.31 + +commit 44fec8ff13d2484070934f548f0fea647f3264b7 +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Fri Mar 19 03:28:04 2021 +0000 + + Updated CHANGELOG.md + +commit 5cfe78c9c080e0dbbece19b6c61cf6b52fc9f9c6 +Author: aldettinger +Date: Wed Mar 17 10:30:54 2021 +0100 + + openstack: added keystone tests #1943 + +commit 1e75c0cdf2a31a40e1dee23e92f58af64153ee5a +Author: Peter Palaga +Date: Thu Mar 18 14:42:38 2021 +0100 + + Remove AWS SDK v1 extensions after they have been removed from Camel + +commit 284efe444556f548831b7f1740c5da24f687b7b6 +Author: Peter Palaga +Date: Thu Mar 18 14:42:29 2021 +0100 + + Let check-extension-pages sync extensions in nav.adoc + +commit 5fee9171dbf2d4c5d510e13c79acb66c6f96bb41 +Author: James Netherton +Date: Thu Mar 18 16:15:11 2021 +0000 + + Fix quarkus-master SNAPSHOT deploy build + +commit 6b2abeef72b587437744d0b7ee08aeb63b603389 +Author: Peter Palaga +Date: Fri Mar 5 19:26:13 2021 +0100 + + Workaround #2207 in Azure Storage Data Lake test + +commit f2f8079653dcde5c53a88e869ad556f41d32c465 +Author: Peter Palaga +Date: Fri Mar 5 19:25:43 2021 +0100 + + Rely on azure-sdk-bom to manage reactor-core and reactor-netty instead + of managing ourselves + +commit 4502600b8c5bb310d1d044e2830103435ffb2181 +Author: James Netherton +Date: Thu Mar 18 06:52:46 2021 +0000 + + Upgrade SmallRye Reactive Messaging Camel to 2.9.0 + +commit 337f37df18cb5b9a14f7d312d66225204c7064fd +Author: Peter Palaga +Date: Tue Mar 2 17:09:06 2021 +0100 + + Azure extension native build fails with Quarkus 1.13 #2299 + +commit 9ca587dceef8854e10d6316073dd6afacc6e1b9a +Author: Amos Feng +Date: Tue Dec 22 13:40:51 2020 +0800 + + Fix #1918 to add a integration test with camel-jdbc and camel-jms + +commit 886a2d1f02ecafe40e0a9f77be649ca98488970d +Author: James Netherton +Date: Mon Feb 22 07:39:24 2021 +0000 + + Remove support for Webocket JSR 356 + + Fixes #2262 + +commit 2d8ff70f77028a8d66e1eb04b7bba94e3fd525e1 +Author: James Netherton +Date: Mon Feb 22 07:31:23 2021 +0000 + + Upgrade to Quarkus 1.13.0.CR1 + +commit da8bcc7aa2bde499b3483b8e61f326f68b331d83 +Author: James Netherton +Date: Wed Mar 17 14:51:06 2021 +0000 + + Register classes with Solr Field annotations for reflection + + Fixes #2341 + +commit b3c80d9ecf7c54167fdd9c786a02592f829c3f9e +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Thu Mar 18 03:26:45 2021 +0000 + + Updated CHANGELOG.md + +commit 99d7144eb7d5871a8e13a0b2c68cbdfd25c277d5 +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Wed Mar 17 03:27:12 2021 +0000 + + Updated CHANGELOG.md + +commit 126f47e5afd4ee15cde9ec075938cec30a7fbbbd +Author: James Netherton +Date: Tue Mar 16 13:32:07 2021 +0000 + + Make sure Hystrix JVM test is disabled as well as native test + +commit 9f3dfe2a3cefb7edc6b69007960a5c3de66220ca +Author: James Netherton +Date: Tue Mar 16 07:10:52 2021 +0000 + + Disable OptaplannerTest on CI + +commit 64a485fa09dee336a3307fbfa8125608c02ae47e +Author: James Netherton +Date: Tue Mar 16 08:52:38 2021 +0000 + + Add configuration option to ignore unknown arguments + + Fixes #2293 + +commit a05fa67e9bc5880c792746391849e48427804605 +Author: aldettinger +Date: Mon Mar 15 10:10:43 2021 +0100 + + openstack: added cinder snapshots and glance tests #1943 + +commit 657133140410e5f9198926c156efd5268dc6b378 +Author: Zineb Bendhiba +Date: Thu Mar 11 11:41:39 2021 +0100 + + Document that AtlasMap user classes may need to be registered for reflection fixes #2319 + +commit 331841e72043075a19ff292c6fb8d5181277c353 +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Mon Mar 15 03:25:59 2021 +0000 + + Updated CHANGELOG.md + +commit 043b3881ba57552b7bdbafa9b37a88e617a5c454 +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Sun Mar 14 03:26:57 2021 +0000 + + Updated CHANGELOG.md + +commit 9b0eeaa896b16e612ac32ad14532883e93ca707c +Author: James Netherton +Date: Sat Mar 13 08:59:27 2021 +0000 + + Update quarkus-master branch CI workflows for Quarkus branch renaming master -> main + +commit d2a0bc6ac5a0734c00a27440834d24f1971bba0d +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Sat Mar 13 03:26:47 2021 +0000 + + Updated CHANGELOG.md + +commit 64758e97bacdc501c9e1a14c0cb7f056e4ff21f4 +Author: aldettinger +Date: Thu Mar 11 21:16:16 2021 +0100 + + openstack: added cinder volume tests #1943 + +commit 325a7812c709875a391266d229a8d5610a63d811 +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Fri Mar 12 03:26:58 2021 +0000 + + Updated CHANGELOG.md + +commit 5ffcba3c0e9e2d10cfdf6d10036ba06531221dfe +Author: James Netherton +Date: Thu Mar 11 11:54:02 2021 +0000 + + Upgrade Quarkus to 1.12.2.Final + +commit e4adcc27e061780081b75eaa4dab5db1dc1c80e7 +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Thu Mar 11 03:27:07 2021 +0000 + + Updated CHANGELOG.md + +commit 10d2f4140a4778e4df5e143a6bfcedfab87e0c3e +Author: James Netherton +Date: Tue Mar 9 15:44:43 2021 +0000 + + HL7 Native support + + Fixes #1747 + +commit 03600793d68fc691a40200976b453a2d4f29aba7 +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Wed Mar 10 03:25:02 2021 +0000 + + Updated CHANGELOG.md + +commit 60723e2684012799a4be4461e87190b80037ebee +Author: Martin Muzikar <46345469+mmuzikar@users.noreply.github.com> +Date: Tue Mar 9 14:51:53 2021 +0100 + + Updated link in testing doc + +commit 05334fc1489b0a2c6adf7ea1dbc1f361605587e9 +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Tue Mar 9 03:26:54 2021 +0000 + + Updated CHANGELOG.md + +commit 22daebe06b96ad7de635e15c72511adc5805fefe +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Mon Mar 8 03:31:11 2021 +0000 + + Updated CHANGELOG.md + +commit cb23ff7b1a6071e75d276dfb96bf1c7fa835f098 +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Sun Mar 7 03:26:23 2021 +0000 + + Updated CHANGELOG.md + +commit 501d50785e9ff7462ec48b78ab0961ac01b6e1e8 +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Sat Mar 6 03:27:06 2021 +0000 + + Updated CHANGELOG.md + +commit 1ae584df5f1eb881d1b1ed7a734a2b2b6fde97a1 +Author: James Netherton +Date: Fri Mar 5 14:47:08 2021 +0000 + + Use camel-servicenow-maven-plugin to generate model classes + +commit f2d852e091fbe0bc4794693ac45f43048b259391 +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Fri Mar 5 03:33:39 2021 +0000 + + Updated CHANGELOG.md + +commit b2e9f077e4fb98baf271375d7ac11c9437639e97 +Author: James Netherton +Date: Thu Mar 4 10:21:52 2021 +0000 + + Unable to use Salesforce DTOs in native mode + + Fixes #2312 + +commit 31619cde1630f0e1a5d102eba3180644663bb216 +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Thu Mar 4 03:34:08 2021 +0000 + + Updated CHANGELOG.md + +commit c44c61435f333adc919d31745dbd2361b56e9694 +Author: James Netherton +Date: Wed Mar 3 13:41:28 2021 +0000 + + Upgrade Quarkus to 1.12.1.Final + +commit ea07027e8ae09fd7979e5fdc9a437e47ad5873da +Author: James Netherton +Date: Wed Mar 3 07:46:17 2021 +0000 + + Adjust references to the runner JAR for the fast-jar format + +commit 798aff65b13ce2f19b8aa5611b6c8df2fc8f981e +Author: Peter Palaga +Date: Tue Mar 2 21:57:00 2021 +0100 + + Paho MQTT 5 support #2145 + +commit a6d1922495eac87bb89f13fec04b8312f614902d +Author: Peter Palaga +Date: Tue Mar 2 21:56:39 2021 +0100 + + Less reflection in Paho extension + +commit 628ba6d0496bd2bfd921d6b5aece37633d1a8074 +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Wed Mar 3 03:23:55 2021 +0000 + + Updated CHANGELOG.md + +commit eeff7e96850e1ccb045b94ee56b6d07886bd1692 +Author: Peter Palaga +Date: Tue Mar 2 15:58:25 2021 +0100 + + Huawei Cloud SMN JVM support + +commit 7de43f68f9be526db824eeffd5c490e51d74d78b +Author: Peter Palaga +Date: Tue Mar 2 15:54:30 2021 +0100 + + Stitch JVM support + +commit 99932f93512a149301961b28a68ea41f2c47fff9 +Author: James Netherton +Date: Tue Mar 2 13:07:51 2021 +0000 + + Move HTTP send-dynamic test to HTTP itest module + +commit 95a4736be208bdbbfcecd52eb8627866bb2215ea +Author: James Netherton +Date: Tue Mar 2 16:02:23 2021 +0000 + + Review usage of quarkus.ssl.native in integration tests + + Fixes #2306 + +commit 8aca58c15a2ea7a47ca4ebf89587a1c38ab4bc83 +Author: aldettinger +Date: Mon Mar 1 18:40:22 2021 +0100 + + bindy: added native support for methods registered with @DataField + +commit 01f3001ff577423015fa00ef8862dc46f66e4792 +Author: Peter Palaga +Date: Tue Mar 2 12:58:05 2021 +0100 + + Azure Storage Data Lake JVM support #2289 + +commit f3df9a6827992d373141771b8086b84d7b50eb4e +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Tue Mar 2 03:27:27 2021 +0000 + + Updated CHANGELOG.md + +commit 2a667675239b6b0052475da8d5a3d14a14a77de2 +Author: Peter Palaga +Date: Mon Mar 1 16:28:44 2021 +0100 + + Use azure-sdk-bom instead of individual azure artifact versions + +commit 779a4fadd68fea2d4996c0f6d418d37777e3de7f +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Mon Mar 1 03:27:06 2021 +0000 + + Updated CHANGELOG.md + +commit 438702f51eb4135c96028e9b959c7b21cefbc4ce +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Sun Feb 28 03:26:39 2021 +0000 + + Updated CHANGELOG.md + +commit 1513259f51edd4ea35122fa8f7cdcf85d35eb2a0 +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Sat Feb 27 03:26:51 2021 +0000 + + Updated CHANGELOG.md + +commit 26781a58b9bccf03a2c99ec78dda2ae322720ffd +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Fri Feb 26 03:26:53 2021 +0000 + + Updated CHANGELOG.md + +commit dfc3300b0c2ad3a083c06835fec7b4d2d5acb8e7 +Author: Peter Palaga +Date: Thu Feb 25 10:21:05 2021 +0100 + + Test AWS 2 SES + +commit d11a8945994ad16a5414fc1b6ff491e138ed7cfe +Author: JiriOndrusek +Date: Mon Feb 15 14:30:14 2021 +0100 + + Nitrite native support #1298 + +commit d19a8f4e51175aaf7d4a9dd8a96be7c9ad9686e9 +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Thu Feb 25 03:26:16 2021 +0000 + + Updated CHANGELOG.md + +commit 7c262c76ad0651da52bbeccf55e15623adef5ce6 +Author: Peter Palaga +Date: Tue Feb 23 21:25:58 2021 +0100 + + Test AWS 2 Lambda + +commit de9ab94584a864f911e8ff4caa9cab996ce4716a +Author: James Netherton +Date: Wed Feb 24 07:24:15 2021 +0000 + + LRA native support + + Fixes #793 + +commit 0c665050e57455ea459f682272b6114d2b03ff4a +Author: aldettinger +Date: Tue Feb 23 19:37:49 2021 +0100 + + bindy: fixed reflective classes registration, fixes #2268 + +commit e39b8368d4a84924dcdf498e87a6253d27a88064 +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Wed Feb 24 03:26:34 2021 +0000 + + Updated CHANGELOG.md + +commit 68777929af1a0d53be8b699f1c203dbe43395242 +Author: Peter Palaga +Date: Tue Feb 23 16:02:28 2021 +0100 + + Simplify the client creation in KinesisTest + +commit 99630f23021fd09156df9312084779c778101223 +Author: Peter Palaga +Date: Tue Feb 23 15:51:33 2021 +0100 + + Test AWS 2 CloudWatch + +commit 2e8c328db78d54ddf64c8382b7e8dea5487ad690 +Author: Peter Palaga +Date: Tue Feb 23 15:56:27 2021 +0100 + + One more azure EventHubs test fixup + +commit 7cb869c21297d6cf6ffa2f53ee1782f39c6af88d +Author: Peter Palaga +Date: Fri Jan 29 17:15:36 2021 +0100 + + Freemarker native support #223 + +commit 6966fb61e38fbc5c3e61a1c85f4655f6f7a8acdd +Author: Peter Palaga +Date: Tue Feb 23 10:46:59 2021 +0100 + + Improve the release guide + +commit dc2320b262a93995319f6657cd2955b9966eaab0 +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Tue Feb 23 07:13:28 2021 +0000 + + Updated CHANGELOG.md + +commit 738777798b44a3a2d03592379370cfe2633c759a +Author: Peter Palaga +Date: Mon Feb 22 17:28:51 2021 +0100 + + Reactive streams: Prefer SyntheticBeanBuildItem to initializing bean producers via volatile fields #2273 + +commit 92b3ca0aa30c8232271278da787450e77166ef7a +Author: Peter Palaga +Date: Mon Feb 22 16:07:55 2021 +0100 + + FHIR: Prefer SyntheticBeanBuildItem to initializing bean producers via + volatile fields #2273 + +commit 06df237ae06b9454c3df69f8a8a244fbab4fc8ca +Author: Peter Palaga +Date: Fri Feb 19 21:03:22 2021 +0100 + + Avro: Prefer SyntheticBeanBuildItem to initializing bean producers via + volatile fields #2273 + +commit 5218d5558f8286ef8dd5b9e1828c5ed0b0f346db +Author: Peter Palaga +Date: Fri Feb 19 18:10:12 2021 +0100 + + Extension parent poms should not inherit from + camel-quarkus-build-parent-it + +commit a3756f6e2daee022eec7c5226e2b039a552091c4 +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Mon Feb 22 03:26:30 2021 +0000 + + Updated CHANGELOG.md + +commit 7c9557dfaea1f04467909cbae605c8b989b28cef +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Sun Feb 21 03:26:07 2021 +0000 + + Updated CHANGELOG.md + +commit 4ddfb6ccf92315a7cc0293e2fce26ace523934ad +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Sat Feb 20 03:28:18 2021 +0000 + + Updated CHANGELOG.md + +commit 193956cfb18ea33443af7e38dd10525d6b15bbf6 +Author: Peter Palaga +Date: Fri Feb 19 12:47:50 2021 +0100 + + Next is 1.8.0 + +commit fc9c06f6d45cff6c857f1423d38a501567682f56 +Author: Peter Palaga +Date: Thu Feb 18 22:08:00 2021 +0100 + + Azure EventHubs test fixup + +commit 3d48f5ddebafe2553b52983763ef35e56b417dc7 +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Fri Feb 19 03:27:02 2021 +0000 + + Updated CHANGELOG.md + +commit 58249a725fffdf768af2d606d775c3adceb98323 +Author: James Netherton +Date: Thu Feb 18 07:58:22 2021 +0000 + + Disable ryuk on CI builds + +commit c066962aa647791e010f5ed61e4ae48d2920752a +Author: James Netherton +Date: Thu Feb 18 09:47:47 2021 +0000 + + Make git tests ignore local configuration + + Fixes #2210 + +commit a0303d39fd9bddbc21753ca71cd9c6c99cd25cb3 +Author: James Netherton +Date: Thu Feb 18 10:03:22 2021 +0000 + + Upgrade Quarkus Qpid JMS to 0.23.0 + +commit a93f6da5967697ab7e91f1da27e1dc1ff9fae4d5 +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Thu Feb 18 03:26:26 2021 +0000 + + Updated CHANGELOG.md + +commit 20b938eef1aa8b3da9ee8e2d18ce956deb52b78d +Author: James Netherton +Date: Wed Feb 17 15:07:32 2021 +0000 + + Add basic Netty UDP tests + + Fixes #2187 + +commit ba8992389a0c58518b99b24d00ac0a11a3f44f6c +Author: Peter Palaga +Date: Wed Feb 17 17:33:24 2021 +0100 + + Deprecate Webocket JSR 356 #2262 + +commit 809ddfdb65891680bb5de6b9b013a701729289d8 +Author: James Netherton +Date: Tue Feb 16 12:34:29 2021 +0000 + + JFR JVM only support + +commit a70eb75aaebe5ae141e2ad3355d9139f7ceec2c6 +Author: James Netherton +Date: Wed Feb 17 12:04:46 2021 +0000 + + Upgrade Quarkus to 1.12.0.Final + +commit 9457fc88e2ee04062c0b1e42e19bdf7e296ae5f3 +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Wed Feb 17 03:25:55 2021 +0000 + + Updated CHANGELOG.md + +commit 83e5c768b6196de7a7fb04990c3a40e2a22d24f7 +Author: Peter Palaga +Date: Tue Feb 16 11:02:14 2021 +0100 + + Test AWS 2 Firehose + +commit d4532d6fe706178a1f2da9897eec546844b985ac +Author: aldettinger +Date: Tue Feb 16 11:00:44 2021 +0100 + + Added CBOR data format native support #1754 + +commit 3078dd46c7e64f04a1c38ebbfe4e3e71e7dd92a5 +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Tue Feb 16 03:26:34 2021 +0000 + + Updated CHANGELOG.md + +commit c1a7a18bb884fcbb1208d64610aadf97244057b0 +Author: James Netherton +Date: Mon Feb 15 12:42:32 2021 +0000 + + Remove tar verbose flags for nightly sync builds + +commit d8933abff5e77e7013e829b708f0015d8c359981 +Author: Peter Palaga +Date: Mon Feb 15 11:08:57 2021 +0100 + + Regenerate virtual dependencies in tests + +commit eeaf3cab0859e8dc07058e94a7bed71cce528904 +Author: Peter Palaga +Date: Mon Feb 15 11:06:37 2021 +0100 + + Remove redundant support-commons-logging dependency from individual AWS2 extensions now that support-aws2 depends on it + +commit 301f3c9e0e0bd99fe10e64d3802d672ac9c40b77 +Author: Peter Palaga +Date: Mon Feb 15 10:21:29 2021 +0100 + + AWS 2 Kinesis native support #1571 + +commit 496748aaa5940866642c710ba44a5efb888fce11 +Author: James Netherton +Date: Mon Feb 15 07:18:48 2021 +0000 + + Remove Camel 3.8.0 staging repository + + This reverts commit d7850c93afbb531bebb1749ac8007b9ee67be214. + +commit 12572239f3680bb58940bce00043ff238cc9ecf0 +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Mon Feb 15 03:26:37 2021 +0000 + + Updated CHANGELOG.md + +commit 3a61306937e62ba8d40dcbbbe7af955de73aa83b +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Sun Feb 14 03:25:05 2021 +0000 + + Updated CHANGELOG.md + +commit 9a32db339e658c6252ec2785b4d7d71c881ef60f +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Sat Feb 13 03:25:36 2021 +0000 + + Updated CHANGELOG.md + +commit 1c1bc00c7517ec9b709b1ddedb6c095846135f74 +Author: James Netherton +Date: Fri Feb 12 15:22:21 2021 +0000 + + Fix intermittent failure of SpringRabbitmqTest + +commit aa962b010a39a160690305f52e76107f4fa32ee1 +Author: James Netherton +Date: Fri Feb 12 15:51:56 2021 +0000 + + Enable FOP native integration tests + + Fixes #2113 + +commit 8add56e6cbd3745cf702137c7e200e882f7dfc70 +Author: Zineb Bendhiba +Date: Fri Feb 12 15:20:48 2021 +0100 + + await for consumer + +commit 9bc79b9d3e00103f2eb076e3ddb329bdb4f19d97 +Author: Peter Palaga +Date: Fri Feb 12 12:45:53 2021 +0100 + + Test AWS 2 Kinesis + +commit 77072a23a8a82231095493d1995d24c39ecc17f4 +Author: Peter Palaga +Date: Fri Feb 12 11:30:50 2021 +0100 + + Test AWS 2 DynamoDB Streams + +commit ee2c896656301083f79561c538606b7b5bfbd6d0 +Author: Zineb Bendhiba +Date: Fri Jan 15 10:50:48 2021 +0100 + + AtlasMap native support #1989 + +commit 19b8c591e529b941893edda0c88024950d573d13 +Author: JiriOndrusek +Date: Thu Feb 11 14:24:16 2021 +0100 + + Removing unnecessary exclusions in test for CassandaQL + +commit 1679f41c86b84ac7aecc7b2163bf52a727fddca7 +Author: James Netherton +Date: Fri Feb 12 14:29:46 2021 +0000 + + Remove outdated extensions README + +commit 4a872d3f95bbbbc995944ef755fc2ed04ff9ca78 +Author: James Netherton +Date: Fri Feb 12 07:31:16 2021 +0000 + + Docs xref checks failure with Camel 3.8.0 + + Fixes #2226 + +commit 81b7c64c58b2968573121a93e0e58e2aac260e1f +Author: Peter Palaga +Date: Thu Feb 11 17:58:53 2021 +0100 + + Upgrade to cq-maven-plugin 0.30.0; now removes duplicate virtual deps comments + +commit 22124f14a59c88cc351dbc278d9cce177e0b41b7 +Author: Peter Palaga +Date: Thu Feb 11 16:28:41 2021 +0100 + + Test AWS 2 DynamoDB properly + +commit 67e26367c2f835df6849490304cfc552e5b3894e +Author: Peter Palaga +Date: Wed Feb 10 18:15:20 2021 +0100 + + Autogenerate the dependencies in the aws2-grouped test + +commit 86224bb6fedfa1e6bbc42e6f3b88f5717fc7868b +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Fri Feb 12 03:25:55 2021 +0000 + + Updated CHANGELOG.md + +commit 8138c484e51a22dacd1599a2b48089fad6ed450e +Author: Lukas Lowinger +Date: Thu Feb 11 15:41:08 2021 +0100 + + [update] Upgrade testcontainers version + +commit 1bd4250e90017e38732848a1fd67b3aa060d3c03 +Author: James Netherton +Date: Thu Feb 11 13:13:01 2021 +0000 + + Regenerate spring-rabbitmq itest pom + +commit c3beb91724a503d48e1b5a79dd412b39e8dd1d25 +Author: James Netherton +Date: Thu Feb 11 11:41:36 2021 +0000 + + Add Kamelet component extension + + Fixes #2174 + +commit 3edfdc948a6a7e9083ff1514a3fb21926dbd040d +Author: JiriOndrusek +Date: Thu Feb 11 11:12:47 2021 +0100 + + Deprecation changes caused by upgrade to the Camel 3.8. + +commit cee922120d5b690a6f910c987d4536773e67ab32 +Author: JiriOndrusek +Date: Wed Feb 10 15:04:56 2021 +0100 + + camel-spring-rabbitmq - new component #2128 + +commit 5332d4f41afcae8d8a0051436a56901dacef975e +Author: James Netherton +Date: Thu Feb 11 07:21:57 2021 +0000 + + Remove redundant Netty reflective class configuration + +commit ef5afe22a2392f832879ec8f8032aadd8f59b8fc +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Thu Feb 11 03:25:22 2021 +0000 + + Updated CHANGELOG.md + +commit 98669e4874ca4e3004c25e84a3617120089199e1 +Author: Peter Palaga +Date: Wed Feb 10 21:50:39 2021 +0100 + + Workaround for #2207 + +commit 349a86edb3f599ed5289cd2163273436da74850f +Author: Peter Palaga +Date: Fri Feb 5 16:01:06 2021 +0100 + + Azure EventHubs native build fails with Quarkus 1.12 #2204 + +commit 2f62a7a80f9a5e0a8717f1786d6fc98a9611eadd +Author: James Netherton +Date: Wed Feb 10 18:24:48 2021 +0000 + + Disable azure itest native builds until issues are fixed: + + * https://github.com/apache/camel-quarkus/issues/2204 + * https://github.com/apache/camel-quarkus/issues/2207 + +commit d1bc390287a64ec25ea6ba9638874b96b1d5a3e6 +Author: James Netherton +Date: Wed Feb 10 18:24:16 2021 +0000 + + Upgrade to Quarkus 1.12.0.CR1 + +commit 290eadede5f403572a55ac1f2abb22aca3ea2949 +Author: Peter Palaga +Date: Wed Feb 10 15:48:52 2021 +0100 + + Allow running AWS 2 tests both grouped and isolated + +commit ca08206e2a8a79a670db7af15f341531f74d997e +Author: Peter Palaga +Date: Tue Feb 9 23:19:52 2021 +0100 + + Aws2TestEnvCustomizer SPI to allow running AWS 2 tests both isolated and dynamically grouped into one module + +commit 9c381417e09c1e3e9bee574a41fcf5b3a6b99c7d +Author: James Netherton +Date: Wed Feb 10 14:42:38 2021 +0000 + + Use Java 15 as 14 is EOL + +commit f226472e47dc070e8da874ea178a28bc4541315d +Author: James Netherton +Date: Wed Feb 10 12:37:43 2021 +0000 + + Ensure integration tests have enough free disk space + +commit 433dbf530130ea4d136f31536de876fa0dfe696a +Author: James Netherton +Date: Wed Feb 10 10:52:56 2021 +0000 + + Disable anotra xref checks due to #2226 + +commit d7850c93afbb531bebb1749ac8007b9ee67be214 +Author: James Netherton +Date: Wed Feb 10 08:34:35 2021 +0000 + + Add Camel 3.8.0 staging repository + +commit f7bccef5c0c17293d9df5eedc4b01f2237802315 +Author: JiriOndrusek +Date: Tue Feb 9 09:25:08 2021 +0100 + + CassandraQL native support #1355 + +commit 9ca845241d6be405e9cf5a89849906deedd8b971 +Author: aldettinger +Date: Wed Feb 10 10:32:05 2021 +0100 + + nats: added a README.adoc file in the test module to explain the TLS test manual activation #2061 + +commit 0b0b5ff03aa9cb56aba9ade64e28fcd36e09c884 +Author: aldettinger +Date: Tue Feb 9 18:13:44 2021 +0100 + + Made nats TLS auth tests optional fixes #2211 + +commit eba58328319ea4b51890a0cf7b9b8e9ceef0cf86 +Author: Zineb Bendhiba +Date: Mon Jan 25 10:31:56 2021 +0100 + + add HazelcastReplicatedmapConsumer test fixes #2095 + +commit 7535bb8f0f518ad43275d5dfd47c6bc382c2ac4a +Author: Claus Ibsen +Date: Mon Jan 25 09:55:36 2021 +0100 + + Allow to reset build taken for native builds that are super fast. + +commit 1d18f534695ce285ecd81b82c2f1d82743a2fa0a +Author: James Netherton +Date: Wed Jan 6 08:53:07 2021 +0000 + + Upgrade to Camel 3.8.0 + +commit 02c0fac3b249f6439485c5c4d9a39bfddd9f8a14 +Author: James Netherton +Date: Wed Feb 10 07:55:25 2021 +0000 + + Fix camel-master CI branch build + +commit 88ffc0c72bea0f226e73588cb8d17c9135b4f24c +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Wed Feb 10 03:25:54 2021 +0000 + + Updated CHANGELOG.md + +commit 073835cf3ddd6dc040f9069b29511a50f03afe50 +Author: Peter Palaga +Date: Tue Feb 9 18:18:38 2021 +0100 + + Test AWS 2 SNS properly + +commit af400d3ba975b00262b3e00a37340589b018cb1b +Author: Peter Palaga +Date: Mon Feb 8 21:24:39 2021 +0100 + + Upgrade to cq-maven-plugin 0.28.0 - new-test mojo added + +commit 3857936f35d8ecd17135abc2367d6a779a1960d2 +Author: James Netherton +Date: Tue Feb 9 07:15:46 2021 +0000 + + PubNub native support + + Fixes #1944 + +commit 7734ba4e884b253d8fbad9e78f8ab811cdeb78c9 +Author: aldettinger +Date: Tue Feb 9 13:18:56 2021 +0100 + + Explicited the provided scope of svm to align with other extensions + +commit d1c9733a204b00d398f1f121fa699a802d4ea0ac +Author: Peter Palaga +Date: Mon Feb 8 21:06:32 2021 +0100 + + Test AWS 2 SQS properly + +commit dae964097807e4bfdf5f22f8c7f03d589c3c0f8c +Author: Peter Palaga +Date: Thu Feb 4 17:49:32 2021 +0100 + + Prepare for multiple isolated AWS2 tests + +commit 3a079057cee0e22b2c19e65c75147b15a16d61df +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Tue Feb 9 03:25:48 2021 +0000 + + Updated CHANGELOG.md + +commit 0f6fbe2186928bc11760ff327c0943683bb1bdcc +Author: aldettinger +Date: Mon Feb 8 14:18:32 2021 +0100 + + Replaced the JettyTestServer class with MockOaipmhServer based on wiremock + +commit e78f48b5c56fdba7b69f47a77fbe73f19f2c5b03 +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Sat Feb 6 03:25:24 2021 +0000 + + Updated CHANGELOG.md + +commit fc887f81f9d314863162d855d8ec411a3a80268f +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Fri Feb 5 03:25:24 2021 +0000 + + Updated CHANGELOG.md + +commit 38aef7ef24d802486324518a10a5aca694ef220c +Author: Luca Burgazzoli +Date: Thu Feb 4 17:13:30 2021 +0100 + + Replace the deprecated VanillaUuidGenerator with DefaultUuidGenerator + +commit e59a7bd2f07398c525040e3315107ea5719f16dc +Author: Peter Palaga +Date: Thu Feb 4 13:51:33 2021 +0100 + + Upgrade to testcontainers 1.15.1 + +commit 17408075ebbf804a0822f1366e5c806e1173e0be +Author: Peter Palaga +Date: Wed Feb 3 20:33:48 2021 +0100 + + Test AWS 2 S3 properly + +commit 26d820edaa729a397116328e3d3a946eef71b742 +Author: James Netherton +Date: Thu Feb 4 09:01:38 2021 +0000 + + Upgrade SmallRye Reactive Messaging Camel to 2.8.0 + +commit 9361fec2afc863336d5ce24c2e4e38bfb7166ed4 +Author: James Netherton +Date: Wed Feb 3 10:38:39 2021 +0000 + + Syslog native support + + Fixes #595 + +commit f3758d920b79f7a9b9180e4098cce42f9751761d +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Thu Feb 4 03:24:57 2021 +0000 + + Updated CHANGELOG.md + +commit 39346f16b84af5c1bac459d053c3b2ff088e73fb +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Wed Feb 3 08:51:28 2021 +0000 + + Updated CHANGELOG.md + +commit 6de27b81f742d7294c195ec7438dcc43b2076c50 +Author: Andrea Cosentino +Date: Wed Feb 3 09:14:16 2021 +0100 + + Changelog action: We are checking out camel-quarkus and not ckc + + Co-authored-by: Peter Palaga + +commit 2ad10e7c8d1af58e8f112f8b3c4e9e7b634c6647 +Author: Andrea Cosentino +Date: Wed Feb 3 08:17:24 2021 +0100 + + Changelog action: Point to the action submodule in changelog action yml + +commit 04fad1c397114ee16c3278b62f318cb4ccc5b84c +Author: Andrea Cosentino +Date: Wed Feb 3 08:16:05 2021 +0100 + + Revert "Remove changelog generation workflow" + + This reverts commit 29e7c1f977d0f09f09fee7877f978343cfa187f5. + +commit 8f571e880d552dd2f7c2d71798b25ad236789465 +Author: Andrea Cosentino +Date: Wed Feb 3 08:14:55 2021 +0100 + + Added the changelog action as git submodule + +commit 660bc37c27de33d018e605e3f42f84ea1d11d4db +Author: James Netherton +Date: Wed Feb 3 07:50:45 2021 +0000 + + Exclude docs module on camel-master branch builds + +commit adbe6ba3ed19b3d860e36e68fcb62e0ce07e6ee4 +Author: Andrea Cosentino +Date: Tue Feb 2 19:27:59 2021 +0100 + + AWS2 EventBridge native support + +commit b97fc8dd682cb7286277e8f01c5ebb9d3f8fc46a +Author: aldettinger +Date: Thu Jan 28 10:58:59 2021 +0100 + + Added OAI-PMH support + +commit 607f3252338aeb2bb0b5fb23ad4fdba184493b39 +Author: James Netherton +Date: Tue Feb 2 07:47:45 2021 +0000 + + Fix xalan feature name + +commit 797785cea4da35864f99c65ac2958c23c429a483 +Author: James Netherton +Date: Tue Feb 2 07:47:07 2021 +0000 + + XML Security native support + + Fixes #1617 + +commit 5c6dc93d2bef9d20404d23250e993c0eedc4bdf0 +Author: Peter Palaga +Date: Fri Jan 29 15:23:33 2021 +0100 + + Import quarkus-qpid-jms-bom to our BoM instead of importing quarkus-qpid-jms[-deployment] to our QPID extension + +commit e07da63a3fbf4cdfd3bee285b0f97caea29750be +Author: Peter Palaga +Date: Fri Jan 29 11:38:00 2021 +0100 + + Azure Event Hubs support #2079 + +commit e958f063a173825515d8f0c00cb4651feb7f35cb +Author: James Netherton +Date: Fri Jan 29 09:54:34 2021 +0000 + + StAX native support + + Fixes #1696 + +commit 9bddf3267b74500ed45c75518f268defbe076d05 +Author: Peter Palaga +Date: Fri Jan 29 12:00:46 2021 +0100 + + Some JVM-only extensions falsely advertized as supporting native + +commit 52c21b05714412bf0971c9d90f58c3d56f62ead5 +Author: Claus Ibsen +Date: Thu Jan 28 10:15:45 2021 +0100 + + polished + +commit ee8e5bb6488c5616fdaa2132fc430a695a228857 +Author: James Netherton +Date: Thu Jan 28 07:22:03 2021 +0000 + + Make install-jdk step the first task in each job for nightly builds. Else running reporting fails JDK version enforcer checks + +commit 5dadd1ba7818c4ec294f04efa8f90dc53518d31c +Author: James Netherton +Date: Wed Jan 27 14:18:46 2021 +0000 + + Upgrade Quarkus to 1.11.1.Final + +commit 19765046e64b5f39ee6b8aeaed27b3514986b2c3 +Author: James Netherton +Date: Tue Jan 26 14:09:39 2021 +0000 + + XML Tokenize language native support + + Fixes #780 + +commit 7d603f9716683eab222bf0314e7e420a9c9e2b08 +Author: Amos Feng +Date: Mon Jan 25 11:18:38 2021 +0800 + + Fix #1895 to remove registerNarayanaReflectiveClass + +commit a0d82d7d0f1da49dd86d794fe1bde9c6e855c69f +Author: Thomas Stuber +Date: Sat Jan 23 09:19:23 2021 +0100 + + Increased maven-plugin-version to 1.11.0.Final. Adjusted description of rest-json example + +commit 6023d9f17f419bf2f8c84953568d0e56de3ddb37 +Author: James Netherton +Date: Fri Jan 22 10:48:29 2021 +0000 + + IPFS native support + + Fixes #770 + +commit 9553e86b23ec86f6d4ad1f898d2dce3fa9772203 +Author: James Netherton +Date: Fri Jan 22 06:31:30 2021 +0000 + + Upgrade Camel to 3.7.1 + +commit 7d8d55f44ccb79fe688d3d2e13e818c6756035cf +Author: Peter Palaga +Date: Thu Jan 21 11:34:57 2021 +0100 + + Google BigQuery native is since 1.6.0 not 1.5.0 + +commit 3770917afb695a7cc103fb6d69b5e8012163e67b +Author: James Netherton +Date: Thu Jan 21 07:46:47 2021 +0000 + + Avoid usage of deprecated capabilities string constants + +commit 66484640cd90f6d73ae80e38c6688ce1d93077cf +Author: JiriOndrusek +Date: Fri Jan 15 11:19:31 2021 +0100 + + Reimplement creation of minio client to avoid minio extension limitations #2134 + +commit 5fe7b916d115b2bed9ed2f80bce29f543432341c +Author: Peter Palaga +Date: Tue Jan 19 13:49:21 2021 +0100 + + Improve the release docs + +commit ec24320608cd3bf3417fd8d7ef8e5bfd8e43560e +Author: Peter Palaga +Date: Fri Jan 15 18:10:59 2021 +0100 + + Upgrade to cq-maven-plugin 0.27, stop using mvnd.rules altogether + +commit 3b78554bc5b538533fd58c49c4bb1620b4eb39fd +Author: Peter Palaga +Date: Fri Jan 15 17:28:48 2021 +0100 + + Azure Storage Queue Service native support #1574 + +commit a741225d83e786c2424d5f82803e08eef3b14c20 +Author: Peter Palaga +Date: Fri Jan 15 15:18:24 2021 +0100 + + Move reactor-netty related build steps to a separate support extension + +commit faa65212f112bf98ca3197e6d265913becf440aa +Author: Zineb Bendhiba +Date: Mon Jan 18 10:45:24 2021 +0100 + + add Awaitility + suppress warnings #2127 + +commit badb0630974f20e151459521e48fea2670995c7d +Author: James Netherton +Date: Mon Jan 18 09:33:56 2021 +0000 + + Ensure UTF-8 encoding is set on LANG environment variable + +commit 727995340c190cb565fb78f4c8c98e50991e0c54 +Author: Peter Palaga +Date: Fri Jan 15 11:40:25 2021 +0100 + + Improve the release docs + +commit b16a620d1debccee0f90b3dd9a9a71036a6b1916 +Author: Peter Palaga +Date: Fri Jan 15 11:28:18 2021 +0100 + + Next is 1.7.0 + +commit 469bd9bfe5dd65985106ae36c55d24ebdf75bd09 +Author: Peter Palaga +Date: Thu Jan 14 23:14:43 2021 +0100 + + Azure Storage Blob native support #1573 + +commit e49ba34ca4f5f0792c9b654d19bfa9ffe0c3322c +Author: James Netherton +Date: Thu Jan 14 19:42:39 2021 +0000 + + Upgrade Quarkus Qpid JMS to 0.22.0 + +commit c874e3462a027216e571cd631db2b6f4953782cc +Author: Zineb Bendhiba +Date: Thu Jan 14 15:31:03 2021 +0100 + + disabling temporary the test failing on CI + +commit 8bbc95d95a0b20f2bf18c8b3e1442937be9f7912 +Author: Peter Palaga +Date: Wed Jan 13 15:55:07 2021 +0100 + + Allow running the Azure test against the real Azure API in addition to + local Azurite instance + +commit d33147a178c037a6d64239c6714d846620f59d0e +Author: James Netherton +Date: Thu Jan 14 08:07:22 2021 +0000 + + Upgrade Quarkus to 1.11.0.Final + +commit d17bf28ceac30d2262d2178122677ac22fbfd84d +Author: JiriOndrusek +Date: Mon Jan 4 09:29:55 2021 +0100 + + Minio native support #2040 + +commit 305c1b1826a5578a939660beb0547d0c384225c4 +Author: James Netherton +Date: Wed Jan 13 09:33:02 2021 +0000 + + Add notes on enabling Geolocation APIs for geocoder extension integration tests + + Fixes #2112 + +commit 149fcd2d30499cec2b7f632946ce4369b910f95c +Author: James Netherton +Date: Wed Jan 13 07:13:13 2021 +0000 + + Ensure JDK is set up for reporting step in nightly branch sync workflows + +commit ae3dce1590ad55c664272ff90d1cc242ff5d18d0 +Author: Zineb Bendhiba +Date: Tue Jan 12 17:43:02 2021 +0100 + + add missing QuarkusTestResource + +commit ceb614d43a9679ece8bc9467e60f0bc959615017 +Author: Peter Palaga +Date: Tue Jan 12 16:49:05 2021 +0100 + + Improve exception handling in ExtendDefaultTrustStore + +commit 3bc47e214f9af6853b36ec95d7c329bb7e6282fc +Author: James Netherton +Date: Tue Jan 12 08:08:16 2021 +0000 + + Use consistent Kafka docker image version + +commit 0662dd6fdc1a3a2a8ae0e0ac36586ea84f127d85 +Author: James Netherton +Date: Mon Jan 11 10:54:43 2021 +0000 + + Add vertx-kafka component support + + Fixes #2082 + +commit 521a7493901168849cbde2833c81754b799c074f +Author: Peter Palaga +Date: Mon Jan 11 22:28:54 2021 +0100 + + Make Debezium tests runnable on Quarkus Platform + +commit e6ab09d18681b2ec67bbe896f27471d5f9f1e364 +Author: Peter Palaga +Date: Mon Jan 11 16:42:54 2021 +0100 + + Recommend using mysql-connector-java 8.0.22 as in Quarkus + +commit a17a5c3f04749fd9b5af67766b4e00f5413d32a8 +Author: JiriOndrusek +Date: Fri Dec 11 15:27:53 2020 +0100 + + Debezium MongoDB Connector native support #1190 + +commit 29e7c1f977d0f09f09fee7877f978343cfa187f5 +Author: James Netherton +Date: Tue Jan 12 08:04:26 2021 +0000 + + Remove changelog generation workflow + + Fixes #2119 + +commit ab4d74ff0b49d894a56528d6a4fb2632f3e1932c +Author: James Netherton +Date: Mon Jan 11 11:41:03 2021 +0000 + + Restore repository check on cancel workflows action + +commit 96ad6fe8a64a6e39e8d6d6fa87af4d565a19101f +Author: James Netherton +Date: Mon Jan 11 08:52:38 2021 +0000 + + Switch to whitelisted action potiuk/cancel-workflow-runs + +commit af9c7fd1824a915342850d008bbdec74d0fef378 +Author: James Netherton +Date: Mon Jan 11 08:24:46 2021 +0000 + + Revert "Temporarily switch to actions/setup-java" + + This reverts commit 3d70650aca063480d523355b1d92350f814c30d8. + +commit a22d486b4c5760147560afae7ce865bc3858001e +Author: James Netherton +Date: Mon Jan 11 08:11:09 2021 +0000 + + Disable fop native tests due to #2113 + +commit acb551b0b93bb8e54ae7e58a6f34c6e2778e539f +Author: James Netherton +Date: Thu Jan 7 09:40:12 2021 +0000 + + Upgrade Quarkus to 1.11.0.CR1 + +commit 45fd6123e6c10c9b3cdf4e95d55b79a8c877e76b +Author: James Netherton +Date: Fri Jan 8 13:04:30 2021 +0000 + + Specify version for avro-maven-plugin + +commit a8dd88971af231060e3e04fb8eec62b5c17cf8c3 +Author: James Netherton +Date: Thu Jan 7 10:18:15 2021 +0000 + + Upgrade Kotlin to 1.4.20 + +commit 14b5b550ade87f800d1d346883326b3b56b6af6c +Author: James Netherton +Date: Thu Jan 7 10:17:27 2021 +0000 + + Upgrade SmallRye Reactive Messaging Camel to 2.7.1 + +commit beba017629240b76c63aad5a4328793eac40d886 +Author: Zineb Bendhiba +Date: Wed Dec 23 17:38:46 2020 +0100 + + Add more integration tests for camel-hazelcast extension #2094 + +commit 30111eacf22f00c8a1934ce3ec0ab2be7586b83e +Author: Lukas Lowinger +Date: Fri Jan 8 09:34:42 2021 +0100 + + Remove hystrix from test-categories.yaml + +commit 620ffc28a4cce96fdc2aaff2c72a3c74b0b47c8f +Author: Lukas Lowinger +Date: Fri Jan 8 09:21:12 2021 +0100 + + Remove docker.io prefix for images + +commit 4b47002a08db117ef02223e87d8d8af73b98dfbc +Author: Peter Palaga +Date: Wed Jan 6 21:05:20 2021 +0100 + + CSimple NPE even if CSimple language is not used #2103 + +commit 4e534de6ca93f63bc945aa705f6af1d667e71629 +Author: aldettinger +Date: Thu Jan 7 16:07:11 2021 +0100 + + Removed redis itests from test-categories as it is JVM only + +commit c3db032e5ef55d05d59aca8f1bb90a33a25ec8fa +Author: Peter Palaga +Date: Thu Jan 7 15:11:27 2021 +0100 + + Auto-update Camel major.minor in Antora config files + +commit 6fe9474cd0d36908709390ce97be134459dab00d +Author: Peter Palaga +Date: Thu Jan 7 09:55:12 2021 +0100 + + antora/xref-validator failure after a component was removed from Camel + +commit 4c4493bd83cba3f63ade530c89bf024b801f6daa +Author: aldettinger +Date: Wed Jan 6 16:21:50 2021 +0100 + + Added Redis Aggregation Repository support in JVM mode only #2085 + +commit 5333e2730fa9ec0b6cb3938ca79b79a18292b34c +Author: Peter Palaga +Date: Thu Jan 7 10:01:04 2021 +0100 + + Temporary workaround for #2109 antora/xref-validator after a component was removed from Camel + +commit 09b3d3038569c23b1260afd6f47d13ceea6ca678 +Author: James Netherton +Date: Wed Jan 6 09:51:08 2021 +0000 + + Upgrade SmallRye Reactive Messaging Camel to 2.7.0 + +commit 3d70650aca063480d523355b1d92350f814c30d8 +Author: James Netherton +Date: Wed Jan 6 07:48:40 2021 +0000 + + Temporarily switch to actions/setup-java + +commit 36aca47279bc4a2f201f42a35546cf09d0387a64 +Author: aldettinger +Date: Mon Jan 4 10:11:51 2021 +0100 + + Fixed the format of the Apache Committee Report Helper release guide section #2045 + +commit 50471a56bee7318981399d00a132b0760f0e6e16 +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Sun Dec 27 03:14:47 2020 +0000 + + Updated CHANGELOG.md + +commit c43b8907dc6015057e9ce6926cd99aa3073f870f +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Fri Dec 25 03:12:55 2020 +0000 + + Updated CHANGELOG.md + +commit ccbd2cf898350d7bbff079120a6e5cd3614f9020 +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Thu Dec 24 03:17:41 2020 +0000 + + Updated CHANGELOG.md + +commit b1812d939bda05650d6a2fbcb5fa2e4cd0473e01 +Author: Zineb Bendhiba +Date: Fri Oct 30 11:43:48 2020 +0100 + + Hazelcast native support fixes #1647 + +commit 337cd1715fd4ec4e6cadceae13b2cbadd6fa8e86 +Author: Lukas Lowinger +Date: Wed Dec 23 13:02:20 2020 +0100 + + Fix twitter itest in native mode using ConfigProvider insted of ConfigProperty + +commit b91b9ed957a86ad07f9d49c7241282af80441876 +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Wed Dec 23 03:15:51 2020 +0000 + + Updated CHANGELOG.md + +commit b7a5fa161316b6ab29e1982752dda575e07f23e5 +Author: aldettinger +Date: Tue Dec 22 15:41:14 2020 +0100 + + Removed loadsApplicationClasses = true as it has no more effect + +commit 4099334517916cb22b752fce2fa6d0e1596b0e27 +Author: aldettinger +Date: Tue Dec 22 10:03:44 2020 +0100 + + Updated the release guide with respect to the Apache Committee Report Helper #2045 + +commit cb66cca3e978e49cb5f55d2d63d35332a8632b59 +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Tue Dec 22 03:15:09 2020 +0000 + + Updated CHANGELOG.md + +commit 801ec562b2c19c7c4af5632c223d9156651ac73c +Author: Peter Palaga +Date: Mon Dec 21 11:49:39 2020 +0100 + + Upgrade to Quarkus 1.11.0.Beta1 + +commit 9b75ac697dbb802b613ef8d87835d8f1d1a4b52b +Author: Alexandre Gallice +Date: Mon Dec 21 14:18:10 2020 +0100 + + Added JSONata extension (#2088) + + * Added JSONata extension + + * Changed camel-jsonata spec file extension as it was not valid JSON + + * Fixed validate issue + +commit a108e2a668b57249198043e4b3fb02d9b473d5df +Author: Zoran Regvart +Date: Fri Dec 18 19:52:30 2020 +0100 + + CAMEL-15948: examples.json instead of .adoc files + + This makes use of a change in the camel-quarkus-examples repository to + generate the `examples.json` file instead of empty `.adoc` files to as + a data source for generating the examples table in + `user-guide/examples.adoc`. + It does this by utilizing `@djencks/asciidoctor-jsonpath` Antora + extension, which similarly to the `@djencks/asciidoctor-antora-indexer` + can generate rows for Asciidoc table. + +commit b125b376f424bf71c1bc1c83804bd0c10bd97359 +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Mon Dec 21 03:12:22 2020 +0000 + + Updated CHANGELOG.md + +commit bfff2c13921153e7c6c3b9eaf5dd5b1b088c14f7 +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Sun Dec 20 03:06:25 2020 +0000 + + Updated CHANGELOG.md + +commit df9d99feeb4462e7b4e859136786567f6a0d9957 +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Sat Dec 19 03:08:00 2020 +0000 + + Updated CHANGELOG.md + +commit 8f3863fb09980d786ddd96ff4c9ebf838b533b50 +Author: Peter Palaga +Date: Fri Dec 18 14:37:06 2020 +0100 + + Improve the release guide + +commit 755887cfce26bb9154f93607d2c3fc2d5cd73189 +Author: Peter Palaga +Date: Fri Dec 18 14:36:33 2020 +0100 + + Last release is 1.5.0 + +commit 2023d75bac9b5105129e395fed08b29ca7d1ca3c +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Fri Dec 18 03:08:16 2020 +0000 + + Updated CHANGELOG.md + +commit 3b5bd71eec8b2598498335fc32ee01d6a7889993 +Author: Peter Palaga +Date: Wed Dec 16 20:41:28 2020 +0100 + + Next is 1.6.0 + +commit d45eee4dd4e5221807446cb46d0374ecb4e9c56a +Author: Zineb Bendhiba +Date: Fri Dec 11 18:01:54 2020 +0100 + + AtlasMap JVM support #1989 + +commit c08f52f602bfee6a6f7c3dbf949fb490cb9d0338 +Author: Peter Palaga +Date: Fri Dec 11 18:12:33 2020 +0100 + + Test with camel.main.lightweight=true #2063 + +commit 47d36c044a76676be657b72dd72e3694164ec605 +Author: Peter Palaga +Date: Fri Dec 11 11:57:50 2020 +0100 + + Fix java.lang.LinkageError: loader constraint violation: when resolving field DATETIME of type javax.xml.namespace.QName intruduced after CSimple language support #2036 + +commit 08de45a56f7343b1f4b7a4f9a7aed4779eb2cbaf +Author: Peter Palaga +Date: Thu Dec 3 12:45:19 2020 +0100 + + CSimple language support #2036 + +commit ea94636603351eec7569b5befd1b31ba9528cdfa +Author: James Netherton +Date: Mon Dec 7 07:36:51 2020 +0000 + + Remove Camel AS2 configuration class reflection registration + + Fixes #1874 + +commit 4e84f3d4597de33358e06bc94ecb34ed258c701b +Author: James Netherton +Date: Fri Dec 4 12:08:28 2020 +0000 + + BigQuery native support + + Fixes #2014 + +commit beec3bba8336a407244a5e03deab5c29b0a7eb2c +Author: James Netherton +Date: Wed Dec 2 10:41:18 2020 +0000 + + Google PubSub native support + + Fixes #1041 + +commit 7f68e69649ef1e2bf6cbbff57d3a31b7f8a619d7 +Author: JiriOndrusek +Date: Thu Nov 5 13:02:17 2020 +0100 + + JSON-B data format support #1973 + +commit cfc118e1960c4b59ce3eb72151bfc7f154aea436 +Author: James Netherton +Date: Mon Oct 19 07:16:38 2020 +0100 + + Upgrade to Camel 3.7.0 + +commit b49ac31944b9a1cf8a10d43bb3c58a11f009bf6d +Author: aldettinger +Date: Wed Dec 16 16:10:28 2020 +0100 + + Documented the Camel Quarkus testing approach #1981 + +commit 8c73cd0914d83a560bbacd06874f7f8fdb9c8072 +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Thu Dec 17 03:05:12 2020 +0000 + + Updated CHANGELOG.md + +commit 83b698301692e46857d7ab607b98e558fc36cb8b +Author: Peter Palaga +Date: Wed Jun 3 11:49:16 2020 +0200 + + Require Java 11 #1299 + +commit 4c56bd1118491b5e75a509736ce0b8641c8c25f7 +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Wed Dec 16 03:04:44 2020 +0000 + + Updated CHANGELOG.md + +commit 99e8b13efa8cb5908e22028e5ba572833aa65228 +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Sat Dec 12 03:05:09 2020 +0000 + + Updated CHANGELOG.md + +commit ef50a84dd5fbdaaf29e41723386ee6e2650fe6dd +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Fri Dec 11 03:05:16 2020 +0000 + + Updated CHANGELOG.md + +commit 8ac16ac1fac7ec3863d219bb842b494233328452 +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Thu Dec 10 03:07:07 2020 +0000 + + Updated CHANGELOG.md + +commit 8f8a65c88bcaee0c2bb713677f88aa41b4086633 +Author: Peter Palaga +Date: Tue Dec 8 22:28:48 2020 +0100 + + Upgrade to Quarkus 1.10.3.Final + +commit 3b06ef347f451a4e88fa08bac24e7cc92f09d1f5 +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Wed Dec 9 03:05:19 2020 +0000 + + Updated CHANGELOG.md + +commit 2a3c0b79f6c17108b8004c9c7c7df3fdf15e3af9 +Author: Peter Palaga +Date: Fri Dec 4 21:44:54 2020 +0100 + + Polish how we pass -Djavax.net.ssl.trustStore to the Solr test #2029 + +commit db5728f744c34e1dfb1cf9ea1416a70822f59353 +Author: aldettinger +Date: Tue Dec 8 17:56:51 2020 +0100 + + nats: Explicited each classpath resource mapping checks for finer grained logging in case of issue #2061 + +commit 58db89a4f9f058bce14ef1b7eeecda2d7f8c42da +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Tue Dec 8 03:06:20 2020 +0000 + + Updated CHANGELOG.md + +commit 7fdb71139cf70d6dbcc5f7c4c1681dad0bc9dc66 +Author: James Netherton +Date: Mon Dec 7 07:14:30 2020 +0000 + + Use notNullValue for volatile GeocoderNominationTest postalCode field assertion + +commit d5c97b6b0295fac7ab7b54ae34ea4bdccc6b7ba1 +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Mon Dec 7 03:05:15 2020 +0000 + + Updated CHANGELOG.md + +commit dba5ddc7b8b47b529f778d4ecf25f69038d53d6d +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Sun Dec 6 03:04:55 2020 +0000 + + Updated CHANGELOG.md + +commit 5c8ae3fb025a8e7bb1fef34540c4a260347e27f7 +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Sat Dec 5 03:05:01 2020 +0000 + + Updated CHANGELOG.md + +commit 7d1573f97480d7e80b771647175ec6f8c7502abe +Author: aldettinger +Date: Fri Dec 4 18:52:39 2020 +0100 + + Added a bug trap to catch more info in the context #1978 + +commit 4682c75dcedbd1ad090a87ab0eef1177450ff387 +Author: Peter Palaga +Date: Fri Dec 4 11:25:27 2020 +0100 + + Fixup 9217ba9 Solr native support fixes #1703 + +commit 95e13ee486e7b5e688d7df8ca08da65a3027276e +Author: James Netherton +Date: Thu Dec 3 14:33:15 2020 +0000 + + Fix persistence of WireMock mappings + +commit 1e834dd14b74db389e4d6fed1cd424a47fcb1b43 +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Fri Dec 4 03:05:21 2020 +0000 + + Updated CHANGELOG.md + +commit 9217ba9476c61cd175c3399ed1bf1f1022828fe6 +Author: Zineb Bendhiba +Date: Thu Nov 12 17:23:04 2020 +0100 + + Solr native support fixes #1703 + +commit 894ac6d24c99eb95a67cb67c286f893abcaa0870 +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Thu Dec 3 03:05:53 2020 +0000 + + Updated CHANGELOG.md + +commit 2b72581fe6ffec2dc8dce49ed2daf0002db53d16 +Author: aldettinger +Date: Wed Dec 2 18:30:27 2020 +0100 + + Updated the release guide in order to publish sources + +commit ca3514ea209b950629867e0cf8d2e68870e57826 +Author: James Netherton +Date: Tue Dec 1 15:43:53 2020 +0000 + + Use camel-dependencies as parent pom to inherit camel version properties + + Fixes #1684 + +commit 1b60e436def71a3f193e5abedc60c910b87666c8 +Author: James Netherton +Date: Wed Dec 2 07:14:11 2020 +0000 + + Micrometer component support + + Fixes #2034 + +commit a9164682fb33e9115cd431d9e94046589d17e7cd +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Wed Dec 2 03:05:28 2020 +0000 + + Updated CHANGELOG.md + +commit af97dbc4fd33271a2f41749be7bc00270c0b77e6 +Author: James Netherton +Date: Tue Dec 1 07:44:51 2020 +0000 + + Upgrade Quarkus to 1.10.2.Final + +commit 1d036699a23e3731f847d3e2bcae1e5e09ff0277 +Author: James Netherton +Date: Mon Nov 30 07:55:41 2020 +0000 + + Fixup 7ac309a enable GeocoderNominationIT + +commit be8b001c1d98a233a982eddd4b0ff9ac02017785 +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Mon Nov 30 03:04:26 2020 +0000 + + Updated CHANGELOG.md + +commit 9b41281a5b9f20379e24c9f14ef45c897f245ba6 +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Sun Nov 29 03:04:46 2020 +0000 + + Updated CHANGELOG.md + +commit 990a0dff63ab5b9060c2f8012fcfe09fe98ef143 +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Sat Nov 28 03:04:46 2020 +0000 + + Updated CHANGELOG.md + +commit 7ac309a840e89a77c1bef099d267d98a6aea0667 +Author: James Netherton +Date: Fri Nov 27 13:54:13 2020 +0000 + + Fix GeocoderNominationTest postalCode field assertion failure + +commit 0045bc79c4400c5e3d421136715f2bfc8de92b82 +Author: Peter Palaga +Date: Fri Nov 27 10:51:40 2020 +0100 + + Fixup 94ef785 Next is 1.5.0-SNAPSHOT + +commit 0a44277dc0c066b456657965aebbd79044d815b9 +Author: Zineb Bendhiba +Date: Wed Oct 21 09:35:32 2020 +0200 + + update optaplanner version + +commit 20c83797e50b9278276a35affb42099ea7c1e7a6 +Author: Peter Palaga +Date: Mon Oct 5 18:26:57 2020 +0200 + + Fixup Optaplanner native support, simplify dependency management + +commit ee56a0606144cc5989186931dca7dab2a1e856d5 +Author: Zineb Bendhiba +Date: Fri Sep 11 15:56:35 2020 +0200 + + OptaPlanner native support fixes #1721 + +commit ef7c801c0c4b76f620c60d7af2cffc207604d774 +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Fri Nov 27 08:19:00 2020 +0000 + + minio JVM support + +commit 0e23045711e156b3782c77b73a88d39bd8a984f5 +Author: James Netherton +Date: Fri Nov 27 07:52:11 2020 +0000 + + JSch native support + + Fixes #797 + +commit 30759ede1ee9d1a4b1acd162171c39bcc57c5766 +Author: Peter Palaga +Date: Thu Nov 26 18:41:21 2020 +0100 + + Add Nitrite tests + + ... and some inital steps for the native support + Mostly taken from + https://github.com/JiriOndrusek/camel-quarkus/commits/1298-nitrite-support + by @JiriOndrusek + +commit c48e2bace0cd6d2c3494a513de91185f99e63829 +Author: Peter Palaga +Date: Wed Nov 25 10:28:12 2020 +0100 + + Test the Freemarker extension properly, although only in JVM mode for + now + + The tests are adapted from + https://github.com/apache/camel-quarkus/pull/835 by @carlosthe19916 + +commit 2bd3b9308ae85f800ddbc8f70bbc6925933ac19f +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Fri Nov 27 03:05:20 2020 +0000 + + Updated CHANGELOG.md + +commit 02581df8463d17c97641812f30cb086c63ea7355 +Author: James Netherton +Date: Thu Nov 26 07:18:20 2020 +0000 + + Upgrade Quarkus Qpid JMS to 0.21.0 + +commit 5d4be1c7aae6e5709ba59a8296a761c920a645c8 +Author: James Netherton +Date: Thu Nov 26 07:28:25 2020 +0000 + + Temporarily disable GeocoderNominationTest #2033 + +commit 55a06405796a7a5f7ba70fe97473a86f1629c0a6 +Author: James Netherton +Date: Thu Nov 26 07:19:36 2020 +0000 + + Upgrade Quarkus to 1.10.1.Final + +commit eee2ae13e3633f6524fad17cb24558fae2068798 +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Thu Nov 26 03:05:08 2020 +0000 + + Updated CHANGELOG.md + +commit 0946165ba3b644f568043420dfaf6b60e1e25cfc +Author: JiriOndrusek +Date: Tue Nov 24 11:14:08 2020 +0100 + + Camel Avro RPC component native support #1941 + +commit 86ead0bc14de28f7d5963f98808fa2de8b5e23c2 +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Wed Nov 25 03:04:41 2020 +0000 + + Updated CHANGELOG.md + +commit a2c368efdf45b970d4348be8a069d4e94b42d17e +Author: aldettinger +Date: Tue Nov 24 10:34:54 2020 +0100 + + Raised the TLS timeout following build issue on quarkus-platform #1978 + +commit faff777bca73c6b155d77bde0b12141f004e5e83 +Author: aldettinger +Date: Tue Nov 24 09:42:34 2020 +0100 + + Revert "nats: more verbose output to help with #1978" + + This reverts commit 9401d0ccf6d55c89b628031558a19be912e9109a. + +commit 8f77ff3aa9c0be00dbbc8001f5806bbdf0660157 +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Tue Nov 24 03:04:31 2020 +0000 + + Updated CHANGELOG.md + +commit 3844fd408f7c1ccc64ec2b87e39ea6a8491c0eff +Author: Lukas Lowinger +Date: Sun Nov 22 21:21:16 2020 +0100 + + Fix protobuf itest dependency on deployment + +commit 8bd2f28e0e5716e70498763cc989990a3bddf52b +Author: Alexandre Gallice +Date: Sun Nov 22 20:48:37 2020 +0100 + + Update Camel Quarkus to last released version + +commit 1670208fa95c15bb78e36e45ec8bd20fb7c53ad2 +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Sun Nov 22 03:05:29 2020 +0000 + + Updated CHANGELOG.md + +commit a6bff1120f7fac64b518ed45733f5f1ab196e8a6 +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Sat Nov 21 03:04:37 2020 +0000 + + Updated CHANGELOG.md + +commit 181d86bf89c6835a308f77e6b6d3801e72dcbea5 +Author: Peter Palaga +Date: Fri Nov 20 11:39:58 2020 +0100 + + Protobuf dataformat native support #789 + +commit d8e024fcb616ab7e6a555b5d9acc369c02c05862 +Author: Peter Palaga +Date: Thu Nov 19 14:34:00 2020 +0100 + + Leverage Quarkus plugin's generate-code mojo instead of + protobuf-maven-plugin to generate protobuf stubs + +commit 1467092c0f789e917e3fecedc30bc2d7fb961668 +Author: Peter Palaga +Date: Thu Nov 19 14:38:06 2020 +0100 + + Remove superfluous quarkus-maven-plugin:build invocation that we have + defined in camel-quarkus-build-parent-it anyway + +commit 9e94ba4dda17607f6a780fa491a4737b4b0ef8ab +Author: Lukas Lowinger +Date: Fri Nov 20 09:58:49 2020 +0100 + + Fix debezium itest pom dependencies to deployments + +commit e9e2d73083b50135d7a7142d12eb1905d9c4cbaa +Author: aldettinger +Date: Fri Nov 20 10:10:47 2020 +0100 + + Completed the release guide with an attempt to resume on intermittent release:perform issue + +commit 85ac9fbe4ccb2010a295e1f4e74f2ca10a8ee756 +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Fri Nov 20 03:04:58 2020 +0000 + + Updated CHANGELOG.md + +commit 94ef785c77472ed6e1e6b3c4c99960c6f828542f +Author: Peter Palaga +Date: Thu Nov 19 15:43:31 2020 +0100 + + Next is 1.5.0-SNAPSHOT + +commit a9ee9efde945f1dbf9aa2891a003eb9995c0b42a +Author: James Netherton +Date: Thu Nov 19 13:17:00 2020 +0000 + + Upgrade Quarkus Qpid JMS to 0.20.0 + +commit 29cca34d1e5046a367b6e65abbd971e06c592e09 +Author: James Netherton +Date: Thu Nov 19 10:58:37 2020 +0000 + + Upgrade Quarkus to 1.10.0.Final + +commit b70c3313b2f7ee3c93bafe0afab200314dda1016 +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Thu Nov 19 03:04:48 2020 +0000 + + Updated CHANGELOG.md + +commit b80e1a0854324807a3e24ef5e6709b7e91aee875 +Author: Lukas Lowinger +Date: Mon Nov 16 18:55:14 2020 +0100 + + Fix github itest to use oauth token instead username/password + +commit daa0165c941d7e723afa6759260c6546c8860b14 +Author: aldettinger +Date: Wed Nov 18 11:21:53 2020 +0100 + + Added key + +commit b5fd2833bf383a15d4f2b6924b856246225b8fd8 +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Wed Nov 18 03:05:56 2020 +0000 + + Updated CHANGELOG.md + +commit fa42a0e8cd493eb578134964aac451bb5fe55e6d +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Tue Nov 17 03:04:55 2020 +0000 + + Updated CHANGELOG.md + +commit a1b07697bd99230974de537a817bb5f9b4db8357 +Author: aldettinger +Date: Mon Nov 16 17:56:12 2020 +0100 + + Added JSLT native support #1740 + +commit 3f784b0c1da00ce4f8978063ff7588f7ffe6a8d2 +Author: Peter Palaga +Date: Fri Nov 13 16:37:33 2020 +0100 + + Kudu: unshade and remove embedded netty and use quarkus-netty instead + #1907 + +commit d7179db191cfe2d1689dccc8a002bf8183dc2099 +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Mon Nov 16 03:04:28 2020 +0000 + + Updated CHANGELOG.md + +commit 7f556d1d75c201c70ecefdbc5cdd415393094ae0 +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Sun Nov 15 03:05:33 2020 +0000 + + Updated CHANGELOG.md + +commit babb402f774ba2ad6b08afa6b3dc62f1c1aa9625 +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Sat Nov 14 03:04:54 2020 +0000 + + Updated CHANGELOG.md + +commit d691671ede042e7837a36efb509f87fa85895f9c +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Fri Nov 13 03:05:17 2020 +0000 + + Updated CHANGELOG.md + +commit 2d70c6d7b18fe42edeb811d66c7ae0fce7675e3b +Author: aldettinger +Date: Thu Nov 12 16:03:39 2020 +0100 + + nats: Raised the TLS handshake timeout to fix builds when O/S is under pressure #1978 + +commit f539a268325517bfc767673bdbb6745098647ac6 +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Thu Nov 12 03:05:39 2020 +0000 + + Updated CHANGELOG.md + +commit 1c14574afdafe884be5583e3dd8fae0ee0e0c8ff +Author: James Netherton +Date: Wed Nov 11 06:46:42 2020 +0000 + + Upgrade to Quarkus 1.10.0.CR1 + +commit 8b56e0d59dd160b09a3fc33ee353a79016a7e15c +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Wed Nov 11 03:04:57 2020 +0000 + + Updated CHANGELOG.md + +commit d872f41f64f4089389771ece77b07a8d9df43fde +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Tue Nov 10 03:05:11 2020 +0000 + + Updated CHANGELOG.md + +commit 9401d0ccf6d55c89b628031558a19be912e9109a +Author: aldettinger +Date: Mon Nov 9 18:25:44 2020 +0100 + + nats: more verbose output to help with #1978 + +commit fdd007f31b2e304af11938033c95856caf82a78a +Author: aldettinger +Date: Mon Nov 9 09:26:58 2020 +0100 + + Added MSV native support + +commit 37ddabb313532092dc6e259199cf5fc8843903b7 +Author: Lukas Lowinger +Date: Mon Nov 9 09:15:17 2020 +0100 + + Configurable Debezium itest timeout + +commit 75d570a4d4db670f3bcb52f5c979b3e0019e3ec2 +Author: Claus Ibsen +Date: Mon Nov 9 09:39:17 2020 +0100 + + Update .asf.yaml + +commit 10bad138cc3c0f28a64f8b480f01401b1340bf9c +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Mon Nov 9 03:05:24 2020 +0000 + + Updated CHANGELOG.md + +commit 71a1d15e7a55461587048560799b1becb21ecba3 +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Sun Nov 8 03:04:59 2020 +0000 + + Updated CHANGELOG.md + +commit 53a223cfb448ac4b9ed0b47414bc8d84cd62bc6b +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Sat Nov 7 03:04:32 2020 +0000 + + Updated CHANGELOG.md + +commit ee7b1d9099666d24d6ebb9dd44ac4f91f5debffd +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Fri Nov 6 03:05:54 2020 +0000 + + Updated CHANGELOG.md + +commit 8ab74db11d1b5ac53f6eaef5e3990cef5e1be6f8 +Author: James Netherton +Date: Thu Nov 5 12:44:52 2020 +0000 + + Upgrade Quarkus to 1.9.2.Final + +commit 0805ab42690bffb29f8234137787418483aff8a1 +Author: Luca Burgazzoli +Date: Tue Nov 3 15:44:35 2020 +0100 + + core: allign BaseModel with org.apache.camel.impl.DefaultModel + +commit 6a7527d0e611efbc76cd60021c743e823d27fab7 +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Thu Nov 5 03:04:41 2020 +0000 + + Updated CHANGELOG.md + +commit 5302af6af071b2a156454c9cc042fb2d62269273 +Author: James Netherton +Date: Tue Nov 3 14:41:31 2020 +0000 + + Stub Telegram tests with WireMock + +commit be675dbf34e024499b95d20bbdb502c847682e02 +Author: James Netherton +Date: Tue Nov 3 10:39:02 2020 +0000 + + Add missing geocoder reflective class + +commit b774567e890688340dd1d569acac3c657fc81f1e +Author: James Netherton +Date: Tue Nov 3 09:50:58 2020 +0000 + + Stub Geocoder tests with WireMock + +commit 06d0b0acf942943f37f4d2fbdaee25a4df88bf4d +Author: James Netherton +Date: Mon Nov 2 10:00:06 2020 +0000 + + Stub Slack tests with WireMock + +commit 8f311bebcac9897b573a01a0fc8b54b9f9609491 +Author: James Netherton +Date: Fri Oct 30 14:26:09 2020 +0000 + + Stub ServiceNow tests with WireMock + +commit edb21d583208ac4d602989d6c6ee0bfa5ad1eb9b +Author: James Netherton +Date: Wed Nov 4 11:59:20 2020 +0000 + + Discover WireMock mappings from the classpath to keep quarkus-platform happy + +commit 98c2f396e522fa1a770c01bf72737db7c105afe6 +Author: James Netherton +Date: Wed Nov 4 10:17:20 2020 +0000 + + Fix WireMock server field injection for native tests + +commit 63a1bf390db6feefa748521bc7f4f5db7b4101b5 +Author: aldettinger +Date: Wed Oct 28 09:22:08 2020 +0100 + + Added nagios native support #1726 + +commit 314792090329768bc3d73344624655d1a0e77d12 +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Wed Nov 4 03:05:08 2020 +0000 + + Updated CHANGELOG.md + +commit ad10f3ef6200576e456a43b2aea8a1e3e808c6be +Author: Zoran Regvart +Date: Wed Nov 4 00:17:36 2020 +0100 + + fix(docs): use cross reference URLs (3) + + One additional link. + +commit 771142de2f9d99723a72199c10bde34327a699b4 +Author: Zoran Regvart +Date: Tue Nov 3 23:28:04 2020 +0100 + + fix(docs): use cross reference URLs (2) + + Additional manual changes reverted in 72edb0b9ca836ca48d757bcc6bee5024d6c035f1 + +commit 11923e3dc1aae01200b00aa7f44caf9208b5183d +Author: Zoran Regvart +Date: Tue Nov 3 21:53:21 2020 +0100 + + fix(docs): use cross reference URLs + + Without using cross references (`xref`[1] links) we hardcode URLs which + complicates website maintenance. + + [1] docs.antora.org/antora/2.3/page/page-id + + Fixes #1986 + +commit 72edb0b9ca836ca48d757bcc6bee5024d6c035f1 +Author: James Netherton +Date: Tue Nov 3 17:18:21 2020 +0000 + + Revert "fix(docs): use cross reference URLs" + + This reverts commit d8da52990e6d3e14cfaa90b8dc1bfe32656abdb0. + +commit d8da52990e6d3e14cfaa90b8dc1bfe32656abdb0 +Author: Zoran Regvart +Date: Mon Nov 2 23:46:02 2020 +0100 + + fix(docs): use cross reference URLs + + Without using cross references (`xref`[1] links) we hardcode URLs which + complicates website maintenance. + + [1] https://docs.antora.org/antora/2.3/page/page-id/ + +commit 50db02ec7acdb680afac7832a4593f8c72614e3f +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Tue Nov 3 03:04:15 2020 +0000 + + Updated CHANGELOG.md + +commit 03a9b37b41bc58e747729f5e894046bad0261ec0 +Author: Zineb Bendhiba +Date: Fri Oct 30 16:43:44 2020 +0100 + + PostgresSQL Event : add usage of Quarkus AgroalDatasource fixes #1909 + +commit 792ddb7a43a1034e7c07a2c808fcebe029f661c5 +Author: James Netherton +Date: Mon Nov 2 07:21:29 2020 +0000 + + Reenable Olingo4 integration test + + Fixes #1972 + +commit 39fa805d19f100ae899f60aeefa23c4c46c182ee +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Mon Nov 2 03:03:59 2020 +0000 + + Updated CHANGELOG.md + +commit 529cb10385c1fe339de64c355e956681bdc03039 +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Sat Oct 31 03:04:44 2020 +0000 + + Updated CHANGELOG.md + +commit 88aac10fc3f96bf3bb4c9429ac4ca69470a20f34 +Author: Peter Palaga +Date: Fri Oct 30 13:27:40 2020 +0100 + + Configuration option (not) to start the runtime #1969 + +commit d3f826589c5650d1983d5557d559a9cbcc7268d4 +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Fri Oct 30 10:12:06 2020 +0000 + + aws2-eventbridge JVM support + +commit 449caffbeda3159272e365c374bc9347004b949b +Author: James Netherton +Date: Fri Oct 30 09:42:55 2020 +0000 + + Automate the process of creating jvm only extensions + + Fixes #1561 + +commit 386ad9c7fe505044b81fce2e846ad3e740551e90 +Author: James Netherton +Date: Fri Oct 30 08:26:50 2020 +0000 + + Enable quickly profile for SNAPSHOT deploy build + +commit 4de7d8e77e85bfc5c1429b6ec0ad80590a3f0ca8 +Author: James Netherton +Date: Fri Oct 30 07:28:34 2020 +0000 + + Temporarily disable Olingo integration tests due to test service throwing SSLPeerUnverifiedException #1972 + +commit 1857a8f94cfe9d7cea4ec07aa719c45cb3e6b695 +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Fri Oct 30 03:04:23 2020 +0000 + + Updated CHANGELOG.md + +commit 9bdf64d032cf4a24a259995c90d98e5e7c7bab72 +Author: Peter Palaga +Date: Thu Oct 29 14:25:09 2020 +0100 + + Fixup Provide a quick profile #1607 + +commit 4d47081c3e91e372fcdedd981e323e8b438955ac +Author: James Netherton +Date: Thu Oct 29 07:34:27 2020 +0000 + + Upgrade Quarkus to 1.9.1.Final + +commit 1f0c189454ec899a36cb0c6c651bca2dff775b01 +Author: James Netherton +Date: Thu Oct 29 10:01:27 2020 +0000 + + Zendesk native support + + Fixes #1613 + +commit 8d82f593e2c16068ede48cf415074ec958674b13 +Author: Amos Feng +Date: Fri Oct 9 09:43:45 2020 +0800 + + Fix #819 saga native support + +commit 0f7b5e22154c01fb6499f58cb67862a2f45f6799 +Author: James Netherton +Date: Wed Oct 28 09:04:57 2020 +0000 + + Twilio native support + + Fixes #1633 + +commit 796fe87c1d84880c57651c50176a40ca79191a5d +Author: James Netherton +Date: Wed Oct 28 08:52:58 2020 +0000 + + Add WireMock test support + +commit 38a59c613f4508d3108258214840d7bb6ab87c2a +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Thu Oct 29 03:05:28 2020 +0000 + + Updated CHANGELOG.md + +commit f580f1b00142031ad18d5d59dab3dfbb47e49447 +Author: Peter Palaga +Date: Mon Oct 26 17:05:23 2020 +0100 + + Provide a quick profile #1607 + +commit 346fc8df3b5d9d3883a1ccc7ec0342b55395a629 +Author: Peter Palaga +Date: Mon Oct 26 15:51:25 2020 +0100 + + Remove stale integration test from aws2-ses + +commit 9b52e1f568217cd780a21c868a4f20950f3ced4d +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Tue Oct 27 03:04:47 2020 +0000 + + Updated CHANGELOG.md + +commit 58825cb95a61363f2e780ea8a37fa6591b4984c5 +Author: Peter Palaga +Date: Mon Oct 26 13:25:19 2020 +0100 + + Leverage Quarkus JAXP extension where applicable #1806 + +commit 57cb62bb98a847ec6cb4315407e81a6256805432 +Author: Peter Palaga +Date: Mon Oct 26 12:20:08 2020 +0100 + + Document Spark peculiarities #1928 + +commit 876915617f1bd6b2cb58b071ee4b63e0fdea4dcc +Author: Peter Palaga +Date: Mon Oct 26 09:30:12 2020 +0100 + + Replace ${camel.quarkus.project.root} set by directory-maven-plugin with ${maven.multiModuleProjectDirectory} + +commit e5cdc9115e8a299f118b08fc190549f0c00b7383 +Author: James Netherton +Date: Mon Oct 26 08:26:44 2020 +0000 + + Leverage camel-platform-http-vertx in platform-http extension + + Fixes #1144 + +commit 69fe6337e18375a1d5e833361d8e80fa20c949cd +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Mon Oct 26 03:05:35 2020 +0000 + + Updated CHANGELOG.md + +commit 92cc6187f67d7b6623356653c44397ccb8bb0e32 +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Sun Oct 25 03:05:34 2020 +0000 + + Updated CHANGELOG.md + +commit a8b65a1bc451d65de3b4fd3388f456e2ba318ab8 +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Sat Oct 24 03:04:31 2020 +0000 + + Updated CHANGELOG.md + +commit 970f1fe916058e815fde6599316c9fecf4410c65 +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Fri Oct 23 03:04:29 2020 +0000 + + Updated CHANGELOG.md + +commit b69c7726a8058475c58a45f304ea844910e1fa15 +Author: Zineb Bendhiba +Date: Thu Oct 22 14:09:30 2020 +0200 + + lumberjack : move client payload sending to test fixes #1949 + +commit 2a7dde43cc271b156b02d87f445007ef02c4fc7e +Author: aldettinger +Date: Thu Oct 22 16:00:20 2020 +0200 + + Fixed potentially unclosed stream fixes #1913 + +commit 1d78ae768b957ed6e17e9817d4cd9b1ff796552a +Author: James Netherton +Date: Thu Oct 22 07:33:27 2020 +0100 + + ActiveMQ Default XPath evaluator could not be loaded + + Fixes #1933 + +commit aca1bf3dcf278bdc3484943b0dc345622e3f9cde +Author: James Netherton +Date: Thu Oct 22 07:20:30 2020 +0100 + + Fix usage of deprecated GitHub actions commands + +commit 6ad398704314a38fae95b244b01045f750a51253 +Author: James Netherton +Date: Wed Oct 21 07:54:35 2020 +0100 + + Enable Spring dependent extensions to work with Quarkus Spring + + Fixes #1759 + +commit fbf7c609353a92d3102b10f721f318e1fdef4210 +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Thu Oct 22 03:04:31 2020 +0000 + + Updated CHANGELOG.md + +commit 2eab33c2eea54f7db57def4db0bc5cdb91d5c69a +Author: James Netherton +Date: Wed Oct 21 13:28:10 2020 +0100 + + Main extension cannot load rest XML definitions + + Fixes #1852 + +commit bdb7d1888bd1b56df819ab78028bcb0d08e94237 +Author: James Netherton +Date: Wed Oct 21 13:17:20 2020 +0100 + + Remove DigitalSignatureConstants reflection registration + + Fixes #1881 + +commit df62fb36338e70accdeceffa29bbe6a33834df94 +Author: James Netherton +Date: Wed Oct 21 13:04:40 2020 +0100 + + Remove workaround for AdviceWithRouteBuilder replaceFromWith and microprofile-metrics conflict + + Fixes #1894 + +commit 613827b82120ddce30024a7883bfb3fb5bd30ce8 +Author: Zineb Bendhiba +Date: Wed Oct 14 15:40:07 2020 +0200 + + Lumberjack native support fixes #1732 + +commit b9a2528d378e31affde4af7e2c804687994a1f4a +Author: James Netherton +Date: Wed Oct 21 11:04:02 2020 +0100 + + Exclude glassfish dependencies from hbase-testing-util + +commit 0ba78cec95a94db46e290a54edd5a02a50596c4e +Author: James Netherton +Date: Wed Oct 21 07:20:56 2020 +0100 + + Set retention-days parameter on upload-artifact action + +commit bca5add5bfd59fd2ddad4b6af2900e807f0e150d +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Wed Oct 21 03:04:53 2020 +0000 + + Updated CHANGELOG.md + +commit 89cbe4688a879fc08b2d248c2ad69f3a76052fb0 +Author: James Netherton +Date: Tue Oct 20 20:35:54 2020 +0100 + + Remove Camel 3.6.0 staging repository + +commit e093370ebaee71fbcf894b881da9598ed11e276e +Author: James Netherton +Date: Mon Oct 19 16:22:43 2020 +0100 + + Increase test coverage for Spring dependent extensions + +commit 294331ea3f634352b3bdf4036420ca34ebb92320 +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Tue Oct 20 03:05:05 2020 +0000 + + Updated CHANGELOG.md + +commit 02a182fca878204756704d7f80119440f22440a2 +Author: Peter Palaga +Date: Mon Oct 19 15:31:11 2020 +0200 + + FOP tests fail in Quarkus Platform #1930 + +commit 317a7898d67fb3d12df9516ffa3378fd48fd6012 +Author: Andrea Cosentino +Date: Mon Oct 19 08:01:01 2020 +0200 + + Jenkinsfile build: changed the JDK name following INFRA new approach + +commit 1b40af562a9e1e031b24e0af1ef8c4a2f6fc895e +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Mon Oct 19 03:04:57 2020 +0000 + + Updated CHANGELOG.md + +commit bf8d2d0562f6604eb1253d23536908a545c1452a +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Sun Oct 18 03:05:22 2020 +0000 + + Updated CHANGELOG.md + +commit d71489a6c04ad3f58482e4a631b28645c16253b3 +Author: Peter Palaga +Date: Sat Oct 17 09:58:19 2020 +0200 + + Next is 1.4.0 + +commit f9cf59f5a5a55668d879f85fa46b3f1e36c6746f +Author: Peter Palaga +Date: Fri Oct 16 17:53:25 2020 +0200 + + Enable Camel 3.6.0 staging repository temporarily + +commit 0011d2cbc7f298b7dc2df839580875a32e018761 +Author: Peter Palaga +Date: Fri Oct 16 19:32:19 2020 +0200 + + HBase integration tests fail with Camel 3.6.0 Fix #1914 + +commit 959b17e631275a5016dbcf4eaaeab175eb15d737 +Author: Peter Palaga +Date: Fri Oct 16 17:40:55 2020 +0200 + + Improve the camel-bean extension by not using an alias for BeanAnnotationExpressionFactory #1725 + +commit f7f5dd6e36af15b7a7bdf1d824bb71a1b0c8f14d +Author: Peter Palaga +Date: Fri Oct 16 17:36:43 2020 +0200 + + Remove workaround for CAMEL-15518 #1769 + +commit f758709dba433887a8c4bd1397090fc49318de70 +Author: Peter Palaga +Date: Fri Oct 16 17:32:28 2020 +0200 + + Remove HipChat after it was removed from Camel 3.6.0 + +commit 104575e85253496ef931e54a81dc6c19962d8a65 +Author: Zineb Bendhiba +Date: Wed Oct 7 16:38:15 2020 +0200 + + Test Geocoder with Google maps mock API if GOOGLE_GEOCODER_API_KEY is not provided fixes #1860 + +commit a99f64c20168c444603560b10dedafb076ff61c2 +Author: JiriOndrusek +Date: Wed Oct 7 08:46:23 2020 +0200 + + Shiro native support #1844 + +commit 70966912a6dcaa0af3d12ab8e266514c7576e8c8 +Author: James Netherton +Date: Mon Sep 7 09:30:51 2020 +0100 + + Upgrade to Camel 3.6.0 + +commit f28c8d1c04e061202c5220302c39bd5a708db5ee +Author: James Netherton +Date: Wed Sep 9 07:39:50 2020 +0100 + + Remove createEndpoint method override in QuarkusVertxWebsocketComponent + + Fixes #1737 + +commit a89d61fdf97ff84fc28f84a6227dba7e1dc2ab61 +Author: James Netherton +Date: Wed Sep 9 07:39:13 2020 +0100 + + Remove QuarkusVertxHttpBinding + + Fixes #1675 + +commit a49161d264cc2da2dd6a0b2ccc3c568450da51a3 +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Sat Oct 17 03:04:53 2020 +0000 + + Updated CHANGELOG.md + +commit b47137a5c6f5a43372ce12de25bc81869c5a4457 +Author: Peter Palaga +Date: Wed Oct 14 11:50:32 2020 +0200 + + Spark JVM support + +commit c8dffae935c96c4fa764d5983561d9e7c53ec2f2 +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Fri Oct 16 03:04:55 2020 +0000 + + Updated CHANGELOG.md + +commit 966ee7e5bcb94c149f6be28ef0437a63c2f6c839 +Author: Muhammed Talha Çevik +Date: Thu Oct 15 22:13:31 2020 +0300 + + typo corrected + +commit e9afd14cef90d27bb9d37ba303b612be3591ede2 +Author: James Netherton +Date: Thu Oct 15 13:03:37 2020 +0100 + + Align jackson-dataformat-xml version with Quarkus jackson + +commit 0df85fe8edb050254158e36d247c78f545327f79 +Author: Peter Palaga +Date: Thu Oct 15 13:41:47 2020 +0200 + + Re-generate Qute component metadata + +commit b903e4314a5954990a2a474c3fba9eeead083097 +Author: Peter Palaga +Date: Thu Oct 15 12:05:00 2020 +0200 + + The next is 1.3.0 + +commit 85de6a64720a623e65fdb86d1402eb823b807cd6 +Author: James Netherton +Date: Thu Oct 15 09:29:18 2020 +0100 + + Upgrade Quarkus Qpid JMS to 0.19.0 + +commit a469470c62fa479949f645174cba80cc411fc266 +Author: James Netherton +Date: Thu Oct 15 08:19:37 2020 +0100 + + Trigger changelog generation on workflow_dispatch + +commit ee7945bec4fbaaa70e46947a0ec7e74843dd7c65 +Author: James Netherton +Date: Thu Oct 15 07:27:18 2020 +0100 + + Refine LevelDB docs + +commit b551a3829b89485298d5d437b446ee7e321a4c19 +Author: James Netherton +Date: Thu Oct 15 07:20:52 2020 +0100 + + Ensure all camel-leveldb exclusions are under the same dependency declaration + +commit 4c7e016f65be1b25443990b10ba7e7497eb2f1d6 +Author: JiriOndrusek +Date: Fri Oct 9 15:27:44 2020 +0200 + + LevelDB native support #1839 + +commit 45c1d36eafc7f0197c344883bc1a17e76bb67b6c +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Thu Oct 15 03:05:11 2020 +0000 + + Updated CHANGELOG.md + +commit dd6c3e7d4d986263e16fd1aef80dceb78287ed59 +Author: aldettinger +Date: Thu Oct 8 20:01:04 2020 +0200 + + Added nsq native support fixes #1722 + +commit 25a72bcebb8e5c033a5d064c82af592da0073c7b +Author: James Netherton +Date: Wed Oct 14 15:36:20 2020 +0100 + + Upgrade Quarkus to 1.9.0.Final + +commit 21339cae11d1b3804c8d0a7f65a6af74f9a349cf +Author: Zineb Bendhiba +Date: Wed Oct 14 12:53:49 2020 +0200 + + pgevent: correct service name + +commit 4517ace2c79b778fb76cfb184d77baf8e891fb31 +Author: James Netherton +Date: Wed Oct 14 09:49:26 2020 +0100 + + Workaround AdviceWithRouteBuilder and MicroprofileMetrics conflict + + Relates #1894 + +commit c5e3e0c78dff36a9845f79a87f74d5b9e67c744a +Author: James Netherton +Date: Wed Oct 14 07:35:06 2020 +0100 + + Regnerate metadata for pgevent extension + +commit 52d8c6d872729529f33b9ba5ac17bddc5fb858fb +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Wed Oct 14 03:05:16 2020 +0000 + + Updated CHANGELOG.md + +commit 69d9d7ac1f712b0bca1149ce6a10a35c94236ebd +Author: Zineb Bendhiba +Date: Thu Oct 8 10:48:53 2020 +0200 + + PostgresSQL Event native support fixes #1719 + +commit ae9abc4302c271b6f52647256a3168fea41f1ad4 +Author: Peter Palaga +Date: Mon Oct 12 10:36:00 2020 +0200 + + HBase JVM support + +commit bb00f124d36c5f9abd10320e9ed6bd31d993f19d +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Tue Oct 13 03:05:33 2020 +0000 + + Updated CHANGELOG.md + +commit a4174460f67bfb792d331512abbab928c7d71dd5 +Author: James Netherton +Date: Mon Oct 12 12:24:00 2020 +0100 + + Prevent CI workflows running on forks + +commit a076e0c65a9e482aa850b22a29e8cfdf61723ef5 +Author: James Netherton +Date: Mon Oct 12 10:46:07 2020 +0100 + + Document all ways to start a new project + + Fixes #1824 + +commit b4e24909acaaacf8dbd3bcfc9aa7cdf137fa7af4 +Author: James Netherton +Date: Mon Oct 12 10:50:11 2020 +0100 + + Fix links to example projects + +commit d70ad477bb9669f4a0213a35fe72805bd4322556 +Author: Peter Palaga +Date: Wed Oct 7 12:00:50 2020 +0200 + + Upgrade to Debezium 1.3.0.Final + +commit 7bb16205e93ee0b74168b5432ef32ad48d254d16 +Author: mmelko +Date: Fri Oct 9 22:41:29 2020 +0200 + + camel-quarkus-jira: Add resteasy-common dependency + +commit 4eb9b5aca6607c5bfa687f25fb27a6ca3679ac1a +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Mon Oct 12 03:04:38 2020 +0000 + + Updated CHANGELOG.md + +commit 567727cd6624ddda2e2eb03619d47b5f86344094 +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Sun Oct 11 03:04:54 2020 +0000 + + Updated CHANGELOG.md + +commit 28dc5342ec98eb2464cc30bd6f9b98f05e18aca7 +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Sat Oct 10 03:05:30 2020 +0000 + + Updated CHANGELOG.md + +commit 7e117d324cb3461f298ab262cab2274cd21aff8e +Author: aldettinger +Date: Fri Oct 9 19:50:19 2020 +0200 + + Removed the forced Postgres driver registration, no more needed with Quarkus 1.9 + +commit 8f2172f389e53c43a2aef407676c14b8d3544810 +Author: Peter Palaga +Date: Fri Oct 9 17:57:42 2020 +0200 + + File specific issues for TODOs where necessary #1285 + +commit 4bfdc7bac62508579e9f5bdce41c911f69ec2ce1 +Author: Lukas Lowinger +Date: Tue Oct 6 10:20:17 2020 +0200 + + Fix twitter itest so it initially waits when start polling tweets + +commit 5931a1fc1d50fb128b52fc06aa9e29f5b850f4ba +Author: James Netherton +Date: Fri Oct 9 06:53:52 2020 +0100 + + Restrict changelog workflow to only run on apache/camel-quarkus repo + +commit 400e9a60f37dacad4552bcfcc6a478c53de9f799 +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Fri Oct 9 03:04:58 2020 +0000 + + Updated CHANGELOG.md + +commit bda1034d3b45512c995dc04c7720d0714a27d087 +Author: James Netherton +Date: Thu Oct 8 13:23:42 2020 +0100 + + Remove redundant BuildStep for CacheLoader reflection registration + + Fixes #1790 + +commit 5882abb0e2bbf8e41ac8a04f10d181cd15289de3 +Author: James Netherton +Date: Thu Oct 8 10:41:41 2020 +0100 + + Remove dependencyManagement for httpmime + + Fixes #1763 + +commit 7ecb81c225ead9093e6a007a691072841bcef4d1 +Author: James Netherton +Date: Thu Oct 8 10:39:38 2020 +0100 + + Remove dependencyManagement for httpclient-cache + + Fixes #1704 + +commit a99ac88ee17a505f82f140fdad6e07e9ab2327af +Author: James Netherton +Date: Thu Oct 8 07:12:12 2020 +0100 + + Upgrade Quarkus to 1.9.0.CR1 + +commit 24c5f06938b1d674eedab26dc17d2a95a2643f87 +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Thu Oct 8 03:04:07 2020 +0000 + + Updated CHANGELOG.md + +commit 26d796852d637723b481891219c5f6cde242d7ca +Author: aldettinger +Date: Tue Oct 6 16:30:24 2020 +0200 + + CAMEL-QUARKUS-1720: Added Postgres replication slot native support + +commit 62a4201a76d2bd27ff107cfdfa4920a02a8d8cc8 +Author: James Netherton +Date: Wed Oct 7 13:23:33 2020 +0100 + + Crypto extension requires reflective access to DigitalSignatureConstants + +commit bc1e5696684fe20e81d645fabcc06e5ff838df7f +Author: James Netherton +Date: Tue Oct 6 11:51:43 2020 +0100 + + Crypto (JCE) native support + + Fixes #1593 + +commit 0f0114fdf5b12733c8448c92db77e65b72edbfcd +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Wed Oct 7 03:04:36 2020 +0000 + + Updated CHANGELOG.md + +commit 115afdc12a06ba1c9b759b9685a8036a3ea3162b +Author: Andrea Tarocchi +Date: Tue Oct 6 14:21:07 2020 +0200 + + Update .asf.yaml + +commit 6d94194300529c6d1f23b405b9fffd946207dae5 +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Tue Oct 6 03:04:23 2020 +0000 + + Updated CHANGELOG.md + +commit bddf33b2803a22625c954783de85c2efcbe00310 +Author: Peter Palaga +Date: Mon Oct 5 14:26:26 2020 +0200 + + NoSuchMethodException: org.apache.camel.service.lra.LRASagaRoutes.() #1840 + +commit 13e5bcdf36e3e004d53c93941572e88306ee0101 +Author: Peter Palaga +Date: Mon Oct 5 14:00:43 2020 +0200 + + Introduce RoutesBuilderClassExcludeBuildItem + +commit 5b1402a22ba57901156e1db5b4fd23164908f838 +Author: Peter Palaga +Date: Mon Oct 5 15:53:40 2020 +0200 + + Add an Examples step to the release guide + +commit 504946e125e6e9fd9c63748a87081a827b6b2fe5 +Author: James Netherton +Date: Mon Oct 5 08:57:11 2020 +0100 + + Headersmap native support + + Fixes #1838 + +commit f368aeabc6657adc78eb9df3ebfc6170c2e5f8ba +Author: Peter Palaga +Date: Mon Oct 5 11:44:56 2020 +0200 + + Example metadata files moved to examples directory + +commit de5337ee21856d6e24e5c67db73f02cf491ee034 +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Mon Oct 5 03:04:19 2020 +0000 + + Updated CHANGELOG.md + +commit 1c90ab2dfdfea2f99a88803fde282d29805afd6c +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Sun Oct 4 03:04:23 2020 +0000 + + Updated CHANGELOG.md + +commit bcb2a3209139d9db7472cfe0c948ab87212cbc58 +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Sat Oct 3 03:05:02 2020 +0000 + + Updated CHANGELOG.md + +commit 2c3c089b3b71c7d9f5c4cdad2418b02a2eb4b386 +Author: Peter Palaga +Date: Fri Oct 2 18:04:44 2020 +0200 + + Generate the list of examples from the AsciiDoc pages generated in the + examples repo + +commit daa92432cb910cc6f3bb21fa53239cf04b0620dd +Author: Peter Palaga +Date: Fri Oct 2 10:40:05 2020 +0200 + + Let's see if removing -Dmaven.wagon.http.pool=false solves the Maven connection problems + +commit 246c06f6ca429b5dadb6da4c124ce84c1804edff +Author: James Netherton +Date: Wed Sep 30 08:04:56 2020 +0100 + + Upgrade SmallRye Reactive Messaging Camel to 2.4.0 + + Fixes #1851 + +commit 66606c6e59d8e340407f8b5a58388b6261041b52 +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Fri Oct 2 03:04:15 2020 +0000 + + Updated CHANGELOG.md + +commit da5b9beeca80977c90b45da7fd795e3ea9cbc3a2 +Author: Zineb BENDHIBA +Date: Thu Oct 1 17:45:34 2020 +0200 + + Geocoder native support fixes #1645 (#1856) + + * Geocoder native support fixes #1645 + +commit 0c0954d8f918e8f64130c4d8484ec8c0f681239a +Author: Peter Palaga +Date: Thu Oct 1 15:02:08 2020 +0200 + + Adapt the CI to test with the examples from the separate repository + +commit 883c20afd14a400df48454df80f41f2e9a66e7b2 +Author: Peter Palaga +Date: Thu Oct 1 14:48:46 2020 +0200 + + Move examples to a separate git repository #1691 + +commit c009b04296767fd47805a42c784759d38af7c358 +Author: James Netherton +Date: Thu Oct 1 13:23:11 2020 +0100 + + Fix platform-http handler exception handling + +commit 3199c4d9a3bdf42c952fbdaf08c3b4d592976027 +Author: Peter Palaga +Date: Thu Oct 1 15:30:45 2020 +0200 + + Upgrade to rpkgtests-maven-plugin 0.9.0, the create-test-jars-file is + not marked as threadSafe + +commit 47fc06b01b1ca9d6c75c050cf943eaec71f1b3be +Author: Peter Palaga +Date: Thu Oct 1 12:19:56 2020 +0200 + + Do not build in parallel to avoid Maven connection problems + +commit dbe434ada248a147bccb722563e7f6f55e2bc84d +Author: Peter Palaga +Date: Thu Oct 1 10:23:36 2020 +0200 + + Turn of Maven connection pooling to avoid connection issues on the CI https://github.com/actions/virtual-environments/issues/1499#issuecomment-689467080 + +commit e8fde4ed3381435cae7bfec80d6a3a31199ba97f +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Thu Oct 1 03:04:29 2020 +0000 + + Updated CHANGELOG.md + +commit 00cd740abcc7e39f16ea21fca682651eebe74518 +Author: Luca Burgazzoli +Date: Wed Sep 30 18:22:01 2020 +0200 + + platform-http: handle requests using a thread from the worker pool + +commit 2d6a816cee8b639385622e11197df33299d5e905 +Author: Peter Palaga +Date: Wed Sep 30 18:40:12 2020 +0200 + + Tidy up pom.xml files + +commit fa37a0423c7c3948b98bb33b06bfdb16ad76b0b5 +Author: James Netherton +Date: Wed Sep 30 10:23:10 2020 +0100 + + Document allowContextMapAll native mode limitations + + Fixes #1807 + +commit 8d7691d31d93f237909123377087e3d2f938e594 +Author: Peter Palaga +Date: Fri Sep 11 11:38:12 2020 +0200 + + Make sure that Telegram tests are not run against mock API by setting CAMEL_QUARKUS_START_MOCK_BACKEND=false #1717 + +commit cc3e28b909aff0aed31d983811572ab49a1003a2 +Author: James Netherton +Date: Wed Sep 30 08:07:43 2020 +0100 + + Fix SSH itest name + +commit 81d609441ee6f300e974360e4fc73cf4a5139629 +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Wed Sep 30 03:04:11 2020 +0000 + + Updated CHANGELOG.md + +commit a29ad9965d5a1360d3a0bb4bcc4a0932dc2a4d3a +Author: JiriOndrusek +Date: Wed Sep 23 14:01:33 2020 +0200 + + String template native support #1694 + +commit f81b12e643e8f2fe7a5bbce82a34c38fb219782f +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Tue Sep 29 03:04:09 2020 +0000 + + Updated CHANGELOG.md + +commit de103b111c35d5cac306f3065c77f6ca90cbb2da +Author: Peter Palaga +Date: Mon Sep 28 17:43:34 2020 +0200 + + Upgrade to cq-maven-plugin 0.20.0, set nativeSince property when promoting an extension to native + +commit 4be271fd1d83cbda9d8480b5e7f98abf0c9fc7f1 +Author: James Netherton +Date: Mon Sep 28 10:33:00 2020 +0100 + + Document camel main xml configuration properties + + Fixes #1823 + +commit daab7141ac2679c74986e604c7cb91ebedf13080 +Author: James Netherton +Date: Mon Sep 28 10:32:53 2020 +0100 + + Work around camel main inability to load REST DSL configs from XML for #1852 + +commit 006980346a4b6f6f5ef065e15ee13028abd4ca94 +Author: James Netherton +Date: Mon Sep 28 10:29:41 2020 +0100 + + Remove redundant camel-quarkus-xml-jaxb dependency from file-split-log-xml example + +commit 3b654bac2d1fc85974518824ed609ec4731fccf8 +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Mon Sep 28 03:04:06 2020 +0000 + + Updated CHANGELOG.md + +commit 5fb0d3a0d99b57ffdcde238e2bc2271744550896 +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Sun Sep 27 03:04:53 2020 +0000 + + Updated CHANGELOG.md + +commit befcfc38cf5a517629c7921f3f5a2763b09052cd +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Sat Sep 26 03:05:03 2020 +0000 + + Updated CHANGELOG.md + +commit 8954f35e121b81d4762bfba7f74d85ff12d80278 +Author: JiriOndrusek +Date: Fri Sep 25 15:54:45 2020 +0200 + + Duplicate license headers in Velocity test templates #1843 + +commit b988edfa82faeb00998ac07d8d407981b05bbb7b +Author: Peter Palaga +Date: Fri Sep 25 16:16:06 2020 +0200 + + JCache JVM support + +commit 0775702f187900d2f7182426c445f154e48a93a2 +Author: Peter Palaga +Date: Fri Sep 25 15:57:55 2020 +0200 + + Ribbon JVM support + +commit 4f6c4efc98fcfa8bd14fbe9e1f8278e0b8f4333b +Author: Peter Palaga +Date: Fri Sep 25 15:49:42 2020 +0200 + + Shiro JVM support + +commit c1ad4e219ba3ff443b821c5b0a95bce7dc398de5 +Author: JiriOndrusek +Date: Thu Sep 17 15:43:29 2020 +0200 + + Velocity Support #837 + +commit 78ecfe5c8db341ec3b2c83589136bd3f673e28dd +Author: Peter Palaga +Date: Fri Sep 25 13:11:33 2020 +0200 + + LRA JVM support + +commit 0f31f79770a2c9a45608fadc2bd8d549dd14b131 +Author: Peter Palaga +Date: Fri Sep 25 13:09:36 2020 +0200 + + LevelDB JVM support + +commit 1244230d03aa2e12afc5de01adbc1d1844913724 +Author: Peter Palaga +Date: Fri Sep 25 13:04:16 2020 +0200 + + Jasypt JVM support + +commit 4a52c63bb895ba808637b9386c29b6eba571e786 +Author: Peter Palaga +Date: Fri Sep 25 13:02:17 2020 +0200 + + Headersmap JVM support + +commit ab0d9d0618fee0035c5c339621b01b31cd2a9971 +Author: Peter Palaga +Date: Fri Sep 25 12:58:11 2020 +0200 + + AWS XRay JVM support + +commit 852eca4082704883159375fd068a9fb0a2a6b0df +Author: James Netherton +Date: Fri Sep 25 13:44:54 2020 +0100 + + Ensure InputStream is closed after reading rome.properties + +commit a7822e8aaa29542e49193c150f7dde67389cbc89 +Author: James Netherton +Date: Fri Sep 25 11:44:00 2020 +0100 + + RSS native support + + Fixes #1711 + +commit 70567a3ee04a98234954b6a8da5eee6bd80535af +Author: Peter Palaga +Date: Fri Sep 25 11:43:32 2020 +0200 + + List of misc. components empty after the recent docs generation changes #1834 + +commit 97350261764ecbe8cf1473b530418217bf0d2a39 +Author: Peter Palaga +Date: Fri Sep 25 09:07:44 2020 +0200 + + Use distinct descriptions for the for the various JSON data formats + +commit e72c43029285083da27a6626a0c84297a86fc494 +Author: James Netherton +Date: Fri Sep 25 07:47:04 2020 +0100 + + Atom native support + + Fixes #1560 + +commit 04f3965d92bb8bf2580fd3c9dd560304ed8851a9 +Author: James Netherton +Date: Fri Sep 25 08:26:05 2020 +0100 + + Exclude .idea directory from license checks + +commit 4fcd6bdd8fe7026776ceb820dd1a230afb73e914 +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Fri Sep 25 03:04:38 2020 +0000 + + Updated CHANGELOG.md + +commit cf20189643b27660a4c8aaea5f45f05bfd7cbeb0 +Author: Peter Palaga +Date: Thu Sep 24 16:00:25 2020 +0200 + + Re-generate the docs after the change of the tooling + +commit 38625a9f2ff362dbe2e5304e281ecaf3ac6b6316 +Author: Peter Palaga +Date: Wed Sep 23 13:34:31 2020 +0200 + + Generate partials instead of pages for the individual Camel bits #1795 + +commit 36e23ef6b2383bf68ece54a89d1a754215350a9c +Author: James Netherton +Date: Thu Sep 24 08:15:53 2020 +0100 + + Fix intermittent failure of AHC-WS itest + + Fixes #1815 + +commit 382c8c834018dd923eb464c0d99e47084b77c71d +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Thu Sep 24 03:04:11 2020 +0000 + + Updated CHANGELOG.md + +commit 88b1aab737ab45de5e8b7d6d2f378c547bafb093 +Author: James Netherton +Date: Wed Sep 23 12:49:07 2020 +0100 + + Remove redundant skip of maven-enforcer-plugin execution + +commit 9b5f04be79b348ad3891a5b13768be78781c5b1c +Author: James Netherton +Date: Wed Sep 23 07:31:57 2020 +0100 + + Configure NativeImageResourceBuildItem for camel route classpath resources + + Fixes #1812 + +commit a591261a4c236509d936667299f8389b85c83c4b +Author: Peter Palaga +Date: Tue Sep 22 13:29:01 2020 +0200 + + Run verify for the docs module on the CI #1819 + +commit 80bef1e985d4c385be4603e792dbcddf5dd65e34 +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Wed Sep 23 03:05:04 2020 +0000 + + Updated CHANGELOG.md + +commit 1e938d81ed3374c86913606fbcb0c7e4776eaedf +Author: Luca Burgazzoli +Date: Tue Sep 22 11:39:35 2020 +0200 + + Camel quarkus disable auto route discovery not working #1816 + +commit 4e464708a5b646cbfc2817cd922f6b2d11a63068 +Author: Pasquale Congiusti +Date: Tue Sep 22 11:24:00 2020 +0200 + + feat(mongodb): add test for named client connection + + * Included parameterized test to test with either a named or a default MongoDB client connection + + Ref #1608 + +commit d64ec112594a079ca281e7c438cb692c7acd3231 +Author: Pasquale Congiusti +Date: Fri Sep 4 11:21:31 2020 +0200 + + doc(mongodb): adding named connection + + Adding documentation to explain how to configure a named MongoDB client connection + + Ref #1608 + +commit 3fd8d6c155259132e966480b822bbda47bcab74e +Author: Pasquale Congiusti +Date: Wed Sep 2 10:36:24 2020 +0200 + + fix(mongodb): support for named clients + + Adding the possibility to use @MongoClientName to annotate and name a mongo client and use inside the route. + + Closes #1608 + +commit 200b5d6face7bfe4bba5109c28297cb300063933 +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Tue Sep 22 03:06:15 2020 +0000 + + Updated CHANGELOG.md + +commit a10279ef045e1775ba61e9cca54ab50d546b3359 +Author: aldettinger +Date: Thu Sep 17 21:26:25 2020 +0200 + + Added UniVocity data formats native support #1756 + +commit bb804d96d2f9b46329c42982e09b21e7a6fb453e +Author: James Netherton +Date: Mon Sep 21 08:30:19 2020 +0100 + + Align guava version with Quarkus + +commit 3f2ab7239b7d85c8bd940d32191448092793697c +Author: James Netherton +Date: Mon Sep 21 08:29:58 2020 +0100 + + Align google-http-client version with Quarkus + +commit 1c66638d404c728016ab2f10527545e2f8d79996 +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Mon Sep 21 03:04:22 2020 +0000 + + Updated CHANGELOG.md + +commit bda8d148c24774c47f141c422856f52ef61b9421 +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Sun Sep 20 03:03:57 2020 +0000 + + Updated CHANGELOG.md + +commit 3f14f88478e8509eda79fde749c1307e75ca1d98 +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Sat Sep 19 03:04:32 2020 +0000 + + Updated CHANGELOG.md + +commit dc0ff72dea92e5571a78e0de793e50a80e6d57a9 +Author: Pasquale Congiusti +Date: Thu Sep 10 15:39:56 2020 +0200 + + feat(ssh): promoting native extension + + Closes #798 + +commit 02510633d87dea2310f48b1867c94059e648fd01 +Author: James Netherton +Date: Fri Sep 18 13:20:42 2020 +0100 + + Fix launch of camel main applications from IntelliJ + + Fixes #1800 + +commit c30143802ad4bd40ebdb9993632576705fa2c4c8 +Author: James Netherton +Date: Fri Sep 18 14:04:46 2020 +0100 + + Upgrade Quarkus to 1.8.1.Final + +commit 0543805e722c33c746c22904e55c5438d67fa12b +Author: James Netherton +Date: Fri Sep 18 14:34:22 2020 +0100 + + Speed up SNAPSHOT deploy build + +commit 70a1c6293d78667e06b7bd88454000f858109ece +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Fri Sep 18 03:04:27 2020 +0000 + + Updated CHANGELOG.md + +commit 2a3051aeb7cbf7e5c3c0a989d9b2c4383bcd15c0 +Author: Peter Palaga +Date: Thu Sep 17 18:17:03 2020 +0200 + + Revert pages/reference/index.adoc to the state of 03afcebe + +commit b0a98c463e9d0b3fa3c698e57118b98c01db20bb +Author: James Netherton +Date: Thu Sep 17 08:56:06 2020 +0100 + + Browse native support + + Fixes #816 + +commit ccd5194b0f480d71912105f83b283899a95c0fcc +Author: James Netherton +Date: Thu Sep 17 08:09:41 2020 +0100 + + Combine some of the simpler component extensions into a single itest module + +commit ad660000a4656a8561367224798fefcc3e70c1eb +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Thu Sep 17 03:04:07 2020 +0000 + + Updated CHANGELOG.md + +commit a96274af3e248f1a1639e2347de5033b703899c3 +Author: JiriOndrusek +Date: Tue Sep 15 10:30:17 2020 +0200 + + FOP native support #1642 + +commit 204d33d02d0f6819a7044f48f452c3bad7a5b60e +Author: James Netherton +Date: Wed Sep 16 09:18:10 2020 +0100 + + Regenerate jing metadata + +commit 776e28d0736f981f7587f384cd550546dd13096e +Author: James Netherton +Date: Tue Sep 15 19:19:45 2020 +0100 + + gRPC native support + + Fixes #762 + +commit e158fda5c145e60fb35953980c3334a4d0de073c +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Wed Sep 16 03:04:35 2020 +0000 + + Updated CHANGELOG.md + +commit 962f5d1e0da37cd16e1354832ab7732aef4225ba +Author: Peter Palaga +Date: Tue Sep 15 16:44:58 2020 +0200 + + Revert components.adoc back to the state of 03afcebe + +commit 3ceb287d76cd26aa228042ca6622136cde191336 +Author: Peter Palaga +Date: Tue Sep 15 16:32:01 2020 +0200 + + Remove UpdateDocExtensionsListMojo followup #1777 + +commit 64ab4cc6903022ae0fefaabc3e0cd8141366e773 +Author: aldettinger +Date: Tue Sep 15 11:17:36 2020 +0200 + + Added jing native support fixes #1741 + +commit 9bbc6afb665da611fb92f50a32335f9c1c8f5f45 +Author: Peter Palaga +Date: Tue Sep 15 12:45:24 2020 +0200 + + Regenerate the extension pages + +commit 1c295a38165f0cd914787e931b5af17f1a17f657 +Author: Peter Palaga +Date: Tue Sep 15 12:30:23 2020 +0200 + + Rename firstVersion properties to camel.quarkus.jvmSince and add + camel.quarkus.nativeSince + +commit 03afcebefc6b3e49f675ca7a55933845330be85c +Author: Peter Palaga +Date: Tue Sep 15 12:05:54 2020 +0200 + + Use asciidoctor-antora-indexer to produce lists of extensions and components on the reference pages #1557 + +commit 9a4655d3c166ddbddf5b9854b13862d07e5250cd +Author: lburgazzoli +Date: Mon Sep 14 19:21:03 2020 +0200 + + Disruptor native support #1597 + +commit 0759694dbaaac1f4e2c6a6ead0dc93ec0dba80f1 +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Tue Sep 15 03:05:06 2020 +0000 + + Updated CHANGELOG.md + +commit 3b301bacc7c34aa2a819b61929d4345b8bcc544c +Author: James Netherton +Date: Mon Sep 14 14:08:35 2020 +0100 + + Update camel-quarkus-last-release property to 1.1.0 + +commit 4e6f0a431882a39b8ca30b167c479267b3526d90 +Author: Nitesh Koushik S <39699046+NiteshKoushik@users.noreply.github.com> +Date: Mon Sep 14 18:23:50 2020 +0530 + + Document update + + Changes made from "i.a." to "i.e." + +commit 6b44293516cde3e5fcdbc103b9690df087648428 +Author: lburgazzoli +Date: Mon Sep 14 11:52:28 2020 +0200 + + Switch from Gitter to Zulip + +commit 15cbf1f0cc0f795279a8b14fddb771918d6b5647 +Author: James Netherton +Date: Mon Sep 14 09:34:21 2020 +0100 + + Exclude daily branch build bot generated issues from the changelog + +commit 79a25c48b888cfb5579c299e3c31a724608b6b46 +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Mon Sep 14 03:04:05 2020 +0000 + + Updated CHANGELOG.md + +commit 67a3460537cb3d95a68da9f53351899f7bf470bc +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Sun Sep 13 03:04:03 2020 +0000 + + Updated CHANGELOG.md + +commit c2c16bd6a126bc624045af99876ca998a15dc586 +Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> +Date: Sat Sep 12 03:04:47 2020 +0000 + + Updated CHANGELOG.md + +commit 4011813df0c317ba23fcfa45f5c2138bb19e4e6d +Author: Peter Palaga +Date: Fri Sep 11 21:33:57 2020 +0200 + + The next is 1.2.0 + +commit 23186e970bdae3425b0fad9c371e1e7caa278933 +Author: lburgazzoli +Date: Fri Sep 11 16:21:32 2020 +0200 + + Caffeine native support #794 + +commit 5a535e819fe18e26e92457bb745a47e4f29206c7 +Author: Andrea Cosentino +Date: Fri Sep 11 12:28:44 2020 +0200 + + Added automatic changelog gh action + +commit b908017e9b04a8f1ed3b63aa47ac863e87f2477d +Author: James Netherton +Date: Fri Sep 11 07:31:06 2020 +0100 + + Fix intermittent failures of SmallRyeReactiveMessagingIT + + Fixes #1632 + +commit c28e742b039d648b6c2f163667544b38834e4a68 +Author: Peter Palaga +Date: Thu Sep 10 22:05:42 2020 +0200 + + Wrong jira component version definition in camel-quarkus-bom #1775 + +commit 156bce946b450728ab72b2cec4aa4c3c1263ef23 +Author: Peter Palaga +Date: Thu Sep 10 11:20:14 2020 +0200 + + Upgrade to cq-maven-plugin 0.19.0, Make mvn -N cq:format remove empty application.properties files #1676 + +commit d6a6b44ac5749f279c0792c02ef75044f97afbbc +Author: James Netherton +Date: Wed Sep 9 15:27:04 2020 +0100 + + Add some pre-release tasks to the release guide + +commit b7c687542edccf3818f3a71bc86f54d36fe7b973 +Author: lburgazzoli +Date: Wed Sep 9 15:39:01 2020 +0200 + + camel-quarkus-main - Uses reflection for setting its name #1765 + +commit 6a69bdc2ce02370312a1e6aff38f3891a60d36f0 +Author: James Netherton +Date: Wed Sep 9 13:21:37 2020 +0100 + + Upgrade Quarkus Qpid JMS to 0.18.0 + +commit ba705d8927002e8172562efffce5c634cd5006e4 +Author: James Netherton +Date: Wed Sep 9 08:15:27 2020 +0100 + + Add PGP key for James Netherton + +commit 5a4af971887863671f50738724ca88b9697b2165 +Author: James Netherton +Date: Wed Sep 9 13:01:05 2020 +0100 + + Upgrade to Quarkus 1.8.0.Final + +commit 21e3ec310e5db487531496ff83f7ae3569e47f1a +Author: Peter Palaga +Date: Wed Sep 9 15:09:49 2020 +0200 + + Document cq:create -Dcq.nativeSupported=false for creating JVM-only extensions #1662 + +commit 2a1824b8923a71b3c647fe3ea01d087fd179af47 +Author: aldettinger +Date: Wed Sep 9 12:49:05 2020 +0200 + + Added ssl authentation to the nats extensions + +commit 27d5609b040180252c594990b3daf086a87ca7b5 +Author: Peter Palaga +Date: Wed Sep 9 10:21:30 2020 +0200 + + Do not run main-command-mode and master tests on Quarkus Platform + +commit 39d404d5acd5b894c93977950fb6bb1d77760922 +Author: Peter Palaga +Date: Wed Sep 9 09:46:35 2020 +0200 + + Test for #1497 xml-io should pass namespace info to NamespaceAware + elements + +commit 2ed8db346f96f4ff83f869586d7d28fb41608105 +Author: Peter Palaga +Date: Wed Sep 9 09:45:59 2020 +0200 + + Fix comment spelling + +commit ef739ea094b6c75afd83b57dc8274aed121ea5c1 +Author: Peter Palaga +Date: Fri Aug 21 19:53:25 2020 +0200 + + Tests for #1563 contextPath ignored for platform-http with REST DSL + +commit cc4df648bdbedd028e64c516041dc972d1d0e5a5 +Author: Andrea Cosentino +Date: Wed Sep 9 07:39:20 2020 +0200 + + Fixed CS + +commit 9542abe465c18f113214febcce71cdbf692d88e3 +Author: Andrea Cosentino +Date: Wed Sep 9 07:32:33 2020 +0200 + + AWS2-Lambda Extension: Adding interceptors and align to the other extensions + +commit 618475a21df445b74cb7e3ce9db45d5dbfca7a61 +Author: Peter Palaga +Date: Tue Sep 8 21:38:03 2020 +0200 + + Freemarker JVM support + +commit 0400fb9d6a08ed1cd287aa47b85621e23c0fbf54 +Author: Peter Palaga +Date: Tue Sep 8 21:35:45 2020 +0200 + + uniVocity JVM support + +commit 94b3a5c7c6f5cc3f802d22e12c85ec1faad8f760 +Author: Peter Palaga +Date: Tue Sep 8 21:33:23 2020 +0200 + + JSon Fastjson JVM support + +commit 4c1eb0057e0cbde3fb2c14793c6eb1f565489ae3 +Author: Peter Palaga +Date: Tue Sep 8 21:31:13 2020 +0200 + + CBOR JVM support + +commit 6b3c314664d20723203878f9dc79c557f2e7a770 +Author: Peter Palaga +Date: Tue Sep 8 21:29:15 2020 +0200 + + BeanIO JVM support + +commit 4f0d89783908d9247022764d954ed49593e66f60 +Author: Peter Palaga +Date: Tue Sep 8 21:26:57 2020 +0200 + + Barcode JVM support + +commit 71c4ffcf9ae53e088769ad2f324a9a1af81d372f +Author: Peter Palaga +Date: Tue Sep 8 21:25:04 2020 +0200 + + ASN.1 File JVM support + +commit d3aeb12ef2fec6996ccbc526f06867057ac5ff1f +Author: Peter Palaga +Date: Tue Sep 8 21:16:37 2020 +0200 + + JSonApi JVM support + +commit a92eb5a680a6a1ea4781c47984d10b1fb01b790d +Author: Peter Palaga +Date: Tue Sep 8 21:12:53 2020 +0200 + + Syslog JVM support + +commit e36199c7c6a3a49239dc4c1959f4d720afe4a417 +Author: Peter Palaga +Date: Tue Sep 8 21:03:46 2020 +0200 + + HL7 Terser JVM support + +commit 106344ec7d8a7f72b8cc52dadb5808b4bdb9439e +Author: Peter Palaga +Date: Tue Sep 8 20:57:59 2020 +0200 + + JGroups raft JVM support + +commit e15c787b29a0c650b634ee3abe186cf8415ae7f7 +Author: Peter Palaga +Date: Tue Sep 8 20:55:54 2020 +0200 + + JGroups JVM support + +commit 078a0c3ade8fcc5a3d5cc5318c1f4095f5777f10 +Author: Andrea Cosentino +Date: Tue Sep 8 19:51:54 2020 +0200 + + Fixed CS + +commit 2ac737ccbc28ebfffddb5f89a6e62de5804ce63d +Author: Andrea Cosentino +Date: Tue Sep 8 19:07:32 2020 +0200 + + Added Lambda native test + +commit d1f7e44bfc0ece57f19f1a5d9db7548468e79444 +Author: Andrea Cosentino +Date: Tue Sep 8 19:06:13 2020 +0200 + + Added AWS2-STS Extension + +commit 9ca7790efca888ac31cd37c083897fd7105a8c0f +Author: James Netherton +Date: Tue Sep 8 15:49:34 2020 +0100 + + Management JVM support + + Fixes #1564 + +commit 41bbaae00c6e47017e18ea4545cc47931621bb0b +Author: Peter Palaga +Date: Tue Sep 8 13:53:28 2020 +0200 + + JClouds JVM support + +commit a16cfca38285e85fd532069cb4c8e053a6c19d56 +Author: Peter Palaga +Date: Tue Sep 8 13:52:30 2020 +0200 + + JCR JVM support + +commit c1e793fc72513b3d2dd441eff71cd70f17b756a7 +Author: Peter Palaga +Date: Tue Sep 8 13:45:33 2020 +0200 + + Jing JVM support + +commit ccc2597563a57a53463001b9476362447f743ed7 +Author: Peter Palaga +Date: Tue Sep 8 13:40:34 2020 +0200 + + JSLT JVM support + +commit 6af250c17272a72d3457343e0a291941fc191057 +Author: Peter Palaga +Date: Tue Sep 8 13:38:11 2020 +0200 + + JT400 JVM support + +commit d6082739e1c459d9bd1db923e479d37d8b0fc987 +Author: James Netherton +Date: Tue Sep 8 16:04:20 2020 +0100 + + Fix lingering runing->running typo + +commit c23dbff57ab5618ea44d00536d904b95e9e99d98 +Author: Lukas Lowinger +Date: Tue Sep 8 12:25:45 2020 +0200 + + Enhance Github itest with configurable credentials + +commit 071d76e6d7bb8d7070de404c488cf0241b300197 +Author: Zineb Bendhiba +Date: Mon Sep 7 12:30:08 2020 +0200 + + Weather native support fixes #1631 + +commit 1e056cb4511bbf6adf81520f521c601471f463ad +Author: Peter Palaga +Date: Tue Sep 8 11:34:01 2020 +0200 + + Language JVM support + +commit d40f5f3f144946f4191157fbdf22e1a3db959baa +Author: Peter Palaga +Date: Tue Sep 8 11:32:22 2020 +0200 + + LDAP JVM support + +commit ae9c5a40ef078b38559d39e505b739ec84659f1f +Author: Peter Palaga +Date: Tue Sep 8 11:30:50 2020 +0200 + + LDIF JVM support + +commit 15b2bbb0a45c97d350651e30e2a8163e4cbdb3dc +Author: Peter Palaga +Date: Tue Sep 8 11:28:30 2020 +0200 + + Lucene JVM support + +commit 218bdf2f71ad4209b3cdba2f8d957a40553c5b7d +Author: Peter Palaga +Date: Tue Sep 8 11:26:19 2020 +0200 + + Lumberjack JVM support + +commit 1021d68b6324a66c38c346feb626c1e76d754b22 +Author: Peter Palaga +Date: Tue Sep 8 11:21:53 2020 +0200 + + Milo JVM support + +commit f6d4249501216ece46cffb72cb16a77d61b20ca3 +Author: Peter Palaga +Date: Tue Sep 8 11:13:45 2020 +0200 + + MLLP JVM support + +commit e8fb61a08a5d338ab52d516c976c687ea8ea4ae6 +Author: Marcel +Date: Tue Sep 8 08:52:16 2020 +0200 + + Closes #1572 - AWS 2 Lambda native support + +commit f4233ff8159e15f4ba2ad46bc16be6ba754c317e +Author: Peter Palaga +Date: Tue Sep 8 08:36:30 2020 +0200 + + Upgrade to cq-maven-plugin 0.18.2, Fix broken maven modules after cq:promote + +commit 084675820d4a53b804c15d3a323d372097db3600 +Author: Peter Palaga +Date: Mon Sep 7 18:46:36 2020 +0200 + + MSV JVM support + +commit 8be0b7cbcff6d3837b17f75fefddc02089983dde +Author: Peter Palaga +Date: Mon Sep 7 18:44:30 2020 +0200 + + MVEL JVM support + +commit 1e405cb2a6cbe0b50ec6a298347113e7eedce52c +Author: Peter Palaga +Date: Mon Sep 7 18:05:00 2020 +0200 + + MyBatis JVM support + +commit fde5a675b03509e6a3c0aa45e75fee2f3a8deb8f +Author: Peter Palaga +Date: Mon Sep 7 18:03:09 2020 +0200 + + Nagios JVM support + +commit a25c53ebc84c78fef3d3dfcf85d758c008fee340 +Author: Peter Palaga +Date: Mon Sep 7 17:47:42 2020 +0200 + + SSH JVM support + +commit 2e475bd5ec4c018e97813df6eb0c614574307efe +Author: aldettinger +Date: Mon Sep 7 15:17:16 2020 +0200 + + Fixed bean parameter bindings using language annotations in native mode #1685 + +commit 1156c5db78a39061dba7863538bf6175f4097376 +Author: Peter Palaga +Date: Mon Sep 7 16:08:59 2020 +0200 + + NSQ JVM support + +commit 6f95060cd6d52a8d89f05c30d0e2bcdac54f005c +Author: Peter Palaga +Date: Mon Sep 7 16:07:21 2020 +0200 + + OptaPlanner JVM support + +commit 625d6f253bfcd671ce1b7659af51405e66605eb1 +Author: Peter Palaga +Date: Mon Sep 7 16:01:56 2020 +0200 + + PostgresSQL Replication Slot JVM support + +commit d6f80e770827aea6ac14ff1e7d1d4b8a19e552ba +Author: Peter Palaga +Date: Mon Sep 7 15:58:57 2020 +0200 + + PostgresSQL Event JVM support + +commit 24b2d7a96af68c8deff98cf79f809bce3ba01676 +Author: Peter Palaga +Date: Mon Sep 7 15:56:13 2020 +0200 + + Printer JVM support + +commit 408abeefa5ce05f139abf33a0e38a6ab6bf69eb4 +Author: Peter Palaga +Date: Mon Sep 7 15:03:53 2020 +0200 + + QuickFix JVM support + +commit 16625f9935aa2b26074cfa149b7dd81ab44a547d +Author: Peter Palaga +Date: Mon Sep 7 14:10:19 2020 +0200 + + Robot Framework JVM support + +commit ae335a1e9755a61d113e3ed1b7c8622324d6f59f +Author: Peter Palaga +Date: Mon Sep 7 14:08:42 2020 +0200 + + RSS JVM support + +commit 7c0841b45806c741a682762414cccca0976b2530 +Author: Peter Palaga +Date: Mon Sep 7 14:04:34 2020 +0200 + + Saga JVM support + +commit 48899cfe967a1daf2a418aecca423a083b1b99a6 +Author: Peter Palaga +Date: Mon Sep 7 13:56:32 2020 +0200 + + XQuery JVM support + +commit 91076b40ed7fa4684c9d00e5e092eb79fec1eb93 +Author: James Netherton +Date: Mon Sep 7 12:13:06 2020 +0100 + + Replace restcountries endpoint with local service + + Fixes #1538 + +commit 757529d29bf329c256612e07b111241010ffcac7 +Author: James Netherton +Date: Mon Sep 7 07:44:40 2020 +0100 + + Dropbox native support + + Fixes #1577 + +commit d461074b13bde9971e117c5f1b758a264fb1d44a +Author: Peter Palaga +Date: Mon Sep 7 13:35:01 2020 +0200 + + Schematron JVM support + +commit ad07eba547150d44b24fa8a95c2e9140b9f6f629 +Author: Peter Palaga +Date: Mon Sep 7 13:27:44 2020 +0200 + + SIP JVM support + +commit 88e4645e9daa7b91f87bc4c43dddf765a1c4e56d +Author: Peter Palaga +Date: Mon Sep 7 13:26:05 2020 +0200 + + SMPP JVM support + +commit cabada6f4ed8d3f022b6f44a1b568c8b0340ba5f +Author: Peter Palaga +Date: Mon Sep 7 13:24:40 2020 +0200 + + SNMP JVM support + +commit 8a4f6f9c9b4fded91dbf7a76f0baf716cbca05b2 +Author: Peter Palaga +Date: Mon Sep 7 13:00:38 2020 +0200 + + Solr JVM support + +commit dfb580b7b484157856cb9fef457b4dc56d5c8388 +Author: Peter Palaga +Date: Mon Sep 7 12:58:48 2020 +0200 + + Soroush JVM support + +commit 348a84f77ac0aa182c9b1e6f7ee6d85d85cb5ac7 +Author: Peter Palaga +Date: Mon Sep 7 12:48:48 2020 +0200 + + Upgrade to cq-maven-plugin 0.18.1 + +commit 41ded5aeeeb26653ba78bc6e38d174a6d39a962a +Author: Peter Palaga +Date: Mon Sep 7 12:42:13 2020 +0200 + + Splunk JVM support + +commit 2b96c00f0761b3b6015cc5070ddd0e3112ba3dfc +Author: Peter Palaga +Date: Mon Sep 7 12:40:43 2020 +0200 + + Splunk HEC JVM support + +commit 32f68dfe1b04f3a31677b68a791393ce71555c97 +Author: Peter Palaga +Date: Mon Sep 7 12:37:11 2020 +0200 + + StAX JVM support + +commit 3789b8e01b815cc6cd13cb56eff804218b6e0c18 +Author: Peter Palaga +Date: Mon Sep 7 12:35:35 2020 +0200 + + Stomp JVM support + +commit 4d4e9f37d52aa76c574954dbae92fa624c91c2db +Author: Peter Palaga +Date: Mon Sep 7 12:25:03 2020 +0200 + + String Template JVM support + +commit 4e5567942feaa7a303019714cd52f6add1ed31ca +Author: Peter Palaga +Date: Sat Sep 5 13:25:04 2020 +0200 + + Order native tests before other kinds of tests on the CI because they take longest + +commit e60c735e6884866c47e13170fba7ac5efda00b96 +Author: Peter Palaga +Date: Sat Sep 5 12:11:43 2020 +0200 + + Speedup the initial CI mvn install by adding -T1C + +commit ec6a26a121aa655dfb3b98a41766752aae694b74 +Author: Peter Palaga +Date: Fri Sep 4 23:20:06 2020 +0200 + + Replace mvnd.builder.rules with virtual dependencies via mvn process-resources -Pformat -N + +commit d6020d6d15fa83542982ded1a791bd00e66f99f5 +Author: Peter Palaga +Date: Fri Sep 4 22:54:29 2020 +0200 + + Allow version literals for virtual dependencies + +commit e48bc526b23230e288cf3ba0b11511883fe8f6ca +Author: Peter Palaga +Date: Thu Sep 3 21:44:39 2020 +0200 + + Upgrade to cq-maven-plugin 0.18.0 + +commit 4adc22dbf6069de77c81b43acf607d40c7cd8879 +Author: Peter Palaga +Date: Fri Sep 4 22:13:03 2020 +0200 + + Update extensions/nats/runtime/src/main/resources/META-INF/quarkus-extension.yaml + +commit d69b7174a85c8e841d35fb20064cce5a8ebbd3c6 +Author: Peter Palaga +Date: Fri Sep 4 23:27:57 2020 +0200 + + Properly indent examples/file-split-log-xml/pom.xml + +commit 338fb3047519bf312947464020b07b50c9c452f0 +Author: James Netherton +Date: Sat Sep 5 07:56:36 2020 +0100 + + Remove camel 3.5.0 staging repositories (#1690) + +commit 5e311a50fb8f34bfefd23eb30b4383805acd9ef0 +Author: James Netherton +Date: Thu Sep 3 13:27:05 2020 +0100 + + Add vertx-websocket component extension + + Fixes #1301 + +commit ce8e1d5c0ed5f2b8529e84195d7ef17d85df4b46 +Author: lburgazzoli +Date: Thu Sep 3 13:29:12 2020 +0200 + + Move FastUuidGenerator to Camel #1470 + +commit a5ee3fa131ce84813c443cf9ada376c53c4fb196 +Author: PoojaChandak +Date: Tue Sep 1 16:19:41 2020 +0530 + + Update native-mode.adoc + + Grammatical corrections + +commit 8554bd6777d1b3b6c4555347359dbd6cf9f2e7d5 +Author: PoojaChandak +Date: Tue Sep 1 16:17:40 2020 +0530 + + Update first-steps.adoc + + Typo correction + +commit 815985183da04e5976f0f08e313db77cebc60f4d +Author: James Netherton +Date: Thu Sep 3 08:44:07 2020 +0100 + + Align dependencies with latest camel & quarkus releases + +commit dd414f60e2fc8f9c5562e1a936f0d0d3f937066b +Author: aldettinger +Date: Thu Sep 3 10:52:29 2020 +0200 + + Fixed the build (arangodb itests) + +commit 6146df88a7acb090998984c4cbc756ee38183ec1 +Author: lburgazzoli +Date: Wed Sep 2 18:46:19 2020 +0200 + + Add integration tests for the camel-quarkus-kotlin extension + +commit 78e20524af3b9b23ab0655a53f2bc5dc61388bc9 +Author: aldettinger +Date: Wed Sep 2 10:41:38 2020 +0200 + + Added nats native support fixes #1578 + +commit 2e75e4dd11c33e75425111b383d16fc7a8763aef +Author: James Netherton +Date: Wed Sep 2 18:04:08 2020 +0100 + + Remove UnbannedReflectiveBuildItem + + Fixes #699 + +commit f1b5c4600f49ffe1774ce65c10555909b70c0a3b +Author: James Netherton +Date: Wed Sep 2 17:52:59 2020 +0100 + + Upgrade to Quarkus 1.8.0.CR1 + +commit 8a276a13b3ae6b4a9e3be02cc125033c3384e9ec +Author: James Netherton +Date: Wed Sep 2 15:59:58 2020 +0100 + + Add vertx-http component extension + + Fixes #1491 + +commit 3d70a485811081e709a44c16aadb4c68b95da8d5 +Author: Lukas Lowinger +Date: Wed Sep 2 13:20:53 2020 +0200 + + Fix Google gmail itest to wait for deletion of mail + +commit f9ea1b76f4a0947a769ab395c125ae5665e76599 +Author: Lukas Lowinger +Date: Wed Sep 2 11:59:40 2020 +0200 + + Reduce the amount of RAM spent by the AS2 itest + +commit d043ed7c39c31f1abfbffeb28ef5f1d7b70f9aea +Author: Peter Palaga +Date: Wed Sep 2 09:09:52 2020 +0200 + + Add Camel 3.5.0 staging repo temporarily + +commit ddc1d198cf4108e71513420662ca67d34e22213b +Author: Peter Palaga +Date: Tue Sep 1 13:42:15 2020 +0200 + + Fix #1664 KuduIT fails with Camel 3.5.0 + +commit 1435c52ef8b43e412d3c3770c27d5510b44436ad +Author: Peter Palaga +Date: Mon Aug 31 20:17:18 2020 +0200 + + Fixup af1b12df Fix JAXB dependency alignment issues + +commit 882a0e52f8abd37fa63d4aa19897baef3418b328 +Author: Claus Ibsen +Date: Wed Aug 26 13:57:29 2020 +0200 + + Add route template integration test + +commit df18e9eaf990894a50d0a8d81e07ed7c9ff96fd9 +Author: Claus Ibsen +Date: Wed Aug 26 13:37:43 2020 +0200 + + Fix route template in camel-quarkus (#1621) + +commit de3f7e5cb82538beaaa6780d62348bef8f8d8284 +Author: Claus Ibsen +Date: Wed Aug 26 10:46:18 2020 +0200 + + CAMEL-15413: RouteBuilderConfigurer - Rename to LambdaRouteBuilder + +commit 77324cd29a954d9339135fdf9d1e50a0e9e40c1a +Author: James Netherton +Date: Fri Aug 7 09:17:14 2020 +0100 + + Remove remaining camel UriParams reflective class registrations + + Fixes #1108 + +commit 49b58c60e14fb6e6bca5230276022e81c58cd44a +Author: Claus Ibsen +Date: Wed Aug 12 09:10:16 2020 +0200 + + CAMEL-14297: Introduce RouteBuilderConfigurer. + +commit 60f9b50695adbd28f45bdce1f3620ed12eaac92a +Author: JiriOndrusek +Date: Mon Jul 20 15:30:39 2020 +0200 + + Add Camel AS2 Modules as Quarkus Extension #1471 + +commit 09cc88287ddb6300d34faa226f625debe63a127d +Author: Zineb Bendhiba +Date: Tue Aug 18 09:41:58 2020 +0200 + + Add ArangoDB component extension #1533 + +commit 077bc80e0f684225ec64153b90d8408ffc7fdc07 +Author: JiriOndrusek +Date: Tue Jul 7 15:34:29 2020 +0200 + + Extension for camel-threadpoolfactory-vertx #1430 + +commit a68c4a39b37546fe5fc5f668fed04fe401af4d1d +Author: James Netherton +Date: Thu Jun 18 16:30:49 2020 +0100 + + Upgrade to Camel 3.5.0 + +commit 29b26944d87e6c35b4d09d7ec6daa3634d307847 +Author: James Netherton +Date: Tue Sep 1 15:24:22 2020 +0100 + + Add some logging to debug #1632 + +commit 23950a14434985b03fb5c09de1e76a0442892d59 +Author: James Netherton +Date: Tue Sep 1 11:07:13 2020 +0100 + + Register missing Camel quartz job classes for reflection + + Fixes #1663 + +commit f251bbf028d48f970b5bf79b867ebdd3cb055402 +Author: Lukas Lowinger +Date: Mon Aug 31 10:46:35 2020 +0200 + + Fix Twitter itest to wait for latest sent message + +commit 254b08d90ae8f6f5a8cd4a97bbf32a4e488d0b5c +Author: Peter Palaga +Date: Fri Aug 28 09:32:56 2020 +0200 + + Rename build job in ci-build.yaml to initial-mvn-install + +commit 8ac44857cf261689f281d61167129b55aa876089 +Author: Peter Palaga +Date: Fri Aug 28 09:31:57 2020 +0200 + + Re-ballance test-categories.yaml once again + +commit 46841aa334461540686c5ebb133ffb142281d405 +Author: Peter Palaga +Date: Fri Aug 28 10:21:23 2020 +0200 + + JBPM JVM support + +commit 8b2160fa3c206c1ddbef120e8caf2e5796c21c64 +Author: Peter Palaga +Date: Fri Aug 28 10:09:33 2020 +0200 + + IOTA JVM support + +commit d69063c17fe4a33bdf92d90fd606bd9e2de6873d +Author: Peter Palaga +Date: Thu Aug 27 23:22:24 2020 +0200 + + Ignite JVM support + +commit 8eee0cf960da68412595085d724259e0e1e31c27 +Author: Peter Palaga +Date: Thu Aug 27 23:20:48 2020 +0200 + + IEC 60870 JVM support + +commit 5b568bdebfcb1a8c787c6744c46bef4cdda29c95 +Author: Peter Palaga +Date: Thu Aug 27 23:18:34 2020 +0200 + + Hipchat JVM support + +commit 08c3094cfef64efd473ce1e7da0c0b64d2b2d780 +Author: Peter Palaga +Date: Thu Aug 27 23:00:22 2020 +0200 + + Re-ballance test-categories.yaml even more + +commit 1c31ffd4901a0d19e9bcde27df77740a981d2834 +Author: Peter Palaga +Date: Thu Aug 27 22:49:52 2020 +0200 + + Rename build job to check-format in pr-validate.yaml + +commit c865dc4f0eb69255943fd9026f8ee997798f86e4 +Author: Peter Palaga +Date: Thu Aug 27 17:36:41 2020 +0200 + + HDFS JVM support + +commit f2b91ae0c621941a3276fa019ceb4371980638f8 +Author: Peter Palaga +Date: Thu Aug 27 14:27:05 2020 +0200 + + hazelcast JVM support + +commit c9a8b4f5bbb77454ff374568c919af73ef6b05d8 +Author: Peter Palaga +Date: Thu Aug 27 14:23:07 2020 +0200 + + Guava EventBus JVM support + +commit dc8c3c5500d2d6cd7b3e78475f3c4682002a72cb +Author: Peter Palaga +Date: Thu Aug 27 13:57:30 2020 +0200 + + Geocoder JVM support + +commit 035a57dc258f8c6378da0f9e4ff35e2e0395a7b2 +Author: Peter Palaga +Date: Thu Aug 27 13:54:51 2020 +0200 + + Ganglia JVM support + +commit 34b64673f5ea9f1a1932123bb7454a36e60dc077 +Author: Peter Palaga +Date: Thu Aug 27 10:04:17 2020 +0200 + + FOP JVM support + +commit fb2be4bdfcef994394f9a2c531da32ba5cfd81e0 +Author: Peter Palaga +Date: Thu Aug 27 09:55:03 2020 +0200 + + Flink JVM support + +commit b2a4b9b6c61dc963fd4e555f45633aa5bc9db0c7 +Author: Peter Palaga +Date: Thu Aug 27 09:53:40 2020 +0200 + + Facebook JVM support + +commit 4277962954cc61feaf2b4febcfd1e1071d0b4872 +Author: Peter Palaga +Date: Thu Aug 27 09:49:37 2020 +0200 + + ElSQL JVM support + +commit 056aeac5edf423552b02abc82eb8f4569006f251 +Author: Peter Palaga +Date: Thu Aug 27 09:48:07 2020 +0200 + + Ehcache JVM support + +commit a0a82d1b8375ec4e48bd7315e3d174a1fadfad69 +Author: Peter Palaga +Date: Wed Aug 26 17:20:33 2020 +0200 + + Stub JVM support + +commit 601b9d30b2f58a9330ad6206faa56813b85b817d +Author: Peter Palaga +Date: Wed Aug 26 17:05:01 2020 +0200 + + Thrift JVM support + +commit 7e682ff7dca3ae3747f8b0faadeae1543988d10f +Author: Peter Palaga +Date: Wed Aug 26 16:50:37 2020 +0200 + + Twilio JVM support + +commit 7821cc88496da45a743f2058cfb46145bf2275ae +Author: Peter Palaga +Date: Wed Aug 26 16:49:10 2020 +0200 + + Velocity JVM support + +commit aca359b2f4b49d303232471652c9e497f34e2cb8 +Author: Peter Palaga +Date: Wed Aug 26 16:45:12 2020 +0200 + + Weather JVM support + +commit 6d22c61c1a00bc650760acd2ae842cdc9ecc832f +Author: James Netherton +Date: Wed Aug 26 14:40:53 2020 +0100 + + Upgrade Quarkus to 1.7.1.Final + +commit 0219231bd13fe0d5d8c6002572a0fe70259aaeae +Author: Peter Palaga +Date: Wed Aug 26 16:03:04 2020 +0200 + + Web3j Ethereum Blockchain JVM support + +commit 9ef0b9dcb58cac0c84c5fcf008fba2aab2a6da55 +Author: Peter Palaga +Date: Wed Aug 26 14:49:30 2020 +0200 + + Weka JVM support + +commit 4b15e3a9e0f8c4cc7edc8d931c91402ff6f443ad +Author: Peter Palaga +Date: Wed Aug 26 14:42:12 2020 +0200 + + Wordpress JVM support + +commit b0675924d93e3ba055bab1997cdf8e709f17381b +Author: Peter Palaga +Date: Wed Aug 26 14:40:36 2020 +0200 + + Workday JVM support + +commit 9ae67fc5df0726476f52602c04fdb20a5e5fe3d8 +Author: Peter Palaga +Date: Wed Aug 26 14:38:45 2020 +0200 + + XChange JVM support + +commit 840b58bf9358a248bb69a6f1d38273a6dca5e9f4 +Author: Peter Palaga +Date: Wed Aug 26 14:26:14 2020 +0200 + + Do not run functional-extension-tests if the PR has 'JVM' label set + +commit 006f0bc46063879e8a7c8e017779c299479c2139 +Author: Peter Palaga +Date: Wed Aug 26 14:25:22 2020 +0200 + + No need to spend 3m 45s by deleting unwanted SDKs, there is enough space on disk + +commit 1993b648cf3ed6810ba2ef2d073b5d8dfa3a0623 +Author: Peter Palaga +Date: Wed Aug 26 14:17:26 2020 +0200 + + Rebalance test categories + +commit 8ac1b8f9813e460fdb3a11d9ed1ede7f7068260b +Author: James Netherton +Date: Wed Aug 26 13:36:13 2020 +0100 + + Add jsch component extension + +commit d8600354740ac72e228efe1fab8d3c1aa71b4693 +Author: James Netherton +Date: Wed Aug 26 13:28:29 2020 +0100 + + Add irc component extension + +commit e3fa0383b1d71f730a915830751b24c163c717aa +Author: James Netherton +Date: Wed Aug 26 13:20:45 2020 +0100 + + Add ipfs component extension + +commit c13e9664bcc7c15a3bb3de4be6f68c7020f0d987 +Author: aldettinger +Date: Wed Aug 26 11:28:14 2020 +0200 + + Documented application developer responsibility when using onException in native mode #1605 + +commit b8f670cb2b2adb4b4589d7646387a330fc71ba45 +Author: Peter Palaga +Date: Wed Aug 26 11:34:49 2020 +0200 + + XJ JVM support + +commit a6ec1d0f38306ed3f10552c0814284c71d515616 +Author: Peter Palaga +Date: Wed Aug 26 11:32:59 2020 +0200 + + XML Security JVM support + +commit dee1d4d2350f40965f477efce14c9d641016cd48 +Author: Peter Palaga +Date: Wed Aug 26 11:30:55 2020 +0200 + + XMPP JVM support + +commit 79cb4323b5db3619309bbe02d91f2c3ee4e3a887 +Author: Peter Palaga +Date: Wed Aug 26 11:27:30 2020 +0200 + + XSLT Saxon JVM support + +commit 36d7ca1631bc109b0eddbf5f0ee1c381c39c2b90 +Author: Peter Palaga +Date: Wed Aug 26 11:25:45 2020 +0200 + + Yammer JVM support + +commit 0589353ee36b40ab56bee682ea98cc40487ceb55 +Author: Peter Palaga +Date: Wed Aug 26 11:22:59 2020 +0200 + + Zendesk JVM support + +commit a2f8b22db1d6aac0357d6970070419cb163d8af6 +Author: Peter Palaga +Date: Wed Aug 26 11:21:36 2020 +0200 + + ZooKeeper Master JVM support + +commit 324b1b064a6097fca42364a82994e8ff20ee7348 +Author: Peter Palaga +Date: Wed Aug 26 11:19:50 2020 +0200 + + ZooKeeper JVM support + +commit af1b12df064aa0dc9432553d7b9e4fe6fb7635b1 +Author: James Netherton +Date: Wed Aug 26 09:23:55 2020 +0100 + + Fix JAXB dependency alignment issues + + Fixes #1601 + +commit 76d4775ba8ea59e5ea084f010ab22bc307af21af +Author: Peter Palaga +Date: Tue Aug 25 15:47:36 2020 +0200 + + Fix #1602 Speed up the CI + +commit 6818dd060e0b7d10208c59dfc7a07a6e57bc93db +Author: Lukas Lowinger +Date: Tue Aug 25 14:46:26 2020 +0200 + + Send unique messages in Slack itest to avoid false positive tests + +commit c839c7264feee3d7c8ad91901fac1ba485556ce2 +Author: Peter Palaga +Date: Tue Aug 25 12:31:23 2020 +0200 + + Upgrade to cq-maven-plugin 0.17.0, sanitize model.name when using it as + a part of a URI + +commit 173e7af73e7d933c54d778876b272f314d8c0126 +Author: Peter Palaga +Date: Tue Aug 25 11:37:38 2020 +0200 + + Drill JVM support + +commit 3ec2595195136b2737a3db1b47be80bb6a67dbdb +Author: Peter Palaga +Date: Tue Aug 25 11:26:51 2020 +0200 + + Deep Java Library JVM support + +commit e0ce55e5ab997bf0a9580eadbb752cbc002cb1ec +Author: Peter Palaga +Date: Tue Aug 25 11:17:19 2020 +0200 + + Disruptor JVM support + +commit 17f43a77602236cfc40722f67a80cc60d64cf91c +Author: Peter Palaga +Date: Tue Aug 25 11:15:35 2020 +0200 + + DigitalOcean JVM support + +commit 05fb8a19035e2cbeb7732a1dd72db98f10f47b77 +Author: Peter Palaga +Date: Tue Aug 25 10:38:22 2020 +0200 + + Crypto (JCE) JVM support + +commit 6acedc648147d78b35102cd7c819bbb49eefcaa9 +Author: Peter Palaga +Date: Tue Aug 25 10:20:22 2020 +0200 + + Use model.name instead of model.scheme in cq.create templates so that it + works for dataformats too + +commit f9fb01605479cb97e61559871df57d84324c2436 +Author: Lukas Lowinger +Date: Tue Aug 25 10:55:48 2020 +0200 + + Fix servicenow itest to clean resources + +commit 3f04ec008f00c96c88863e85a82d8190379b3540 +Author: James Netherton +Date: Tue Aug 25 10:06:55 2020 +0100 + + Add pulsar component extension + +commit ab4e0a1dac70e6d60c96d24fafa5897cf10c16f5 +Author: James Netherton +Date: Tue Aug 25 09:58:39 2020 +0100 + + Add etcd component extension + +commit 80a05d0aa237350cd613128d4e54257a9da24287 +Author: James Netherton +Date: Tue Aug 25 09:50:28 2020 +0100 + + Add DNS component extension + +commit 755ceff552102aa5cae174626c548209ca32f1bb +Author: Peter Palaga +Date: Tue Aug 25 09:27:32 2020 +0200 + + Corda JVM support + +commit 7aafad3e2db6efbb48ebf525566571a5c18425b4 +Author: Peter Palaga +Date: Tue Aug 25 09:25:59 2020 +0200 + + CometD JVM support + +commit c8b4599910b04ebde0de3b729a7d5507b4a3cb8a +Author: Peter Palaga +Date: Tue Aug 25 08:40:39 2020 +0200 + + CoAP JVM support + +commit 0acac8810493d9119edfab00898640424873688b +Author: Peter Palaga +Date: Tue Aug 25 08:34:26 2020 +0200 + + CMIS JVM support + +commit da8a4ca95638b395a476f77fcc8610057a409487 +Author: Peter Palaga +Date: Tue Aug 25 08:28:35 2020 +0200 + + CM SMS Gateway JVM support + +commit 85e3eea19219886eda042a99f9bcacb2be1c65ef +Author: Peter Palaga +Date: Tue Aug 25 06:43:18 2020 +0200 + + Fixup 4153eaca Docs: Observability + +commit c5080ed077a73705529a40dd9fe139f8cf9bbe02 +Author: Peter Palaga +Date: Mon Aug 24 21:22:48 2020 +0200 + + Browse JVM support + +commit c0692a650f08dff40a1b2854453035f092c2f461 +Author: Peter Palaga +Date: Mon Aug 24 21:17:34 2020 +0200 + + Skip native tests if the pull request has 'JVM' label + +commit 40cfb0d104b13d04c2063025a2c3e44e97130755 +Author: Peter Palaga +Date: Mon Aug 24 21:02:47 2020 +0200 + + Chunk JVM support + +commit e6bcbf0922a5e2a34f27cd27b7224655565cf217 +Author: Peter Palaga +Date: Mon Aug 24 21:00:42 2020 +0200 + + ChatScript JVM support + +commit 0f6ef89d400908cd8bd9d32fc5efdd13fdf53b0b +Author: Peter Palaga +Date: Mon Aug 24 20:53:56 2020 +0200 + + Caffeine JVM support + +commit 3c887ba7d4946448c4cd50c20096621f85dd1975 +Author: Peter Palaga +Date: Mon Aug 24 19:43:36 2020 +0200 + + Beanstalk JVM support + +commit 2dfe6863921e9a66d08bad704e40a83dfef76962 +Author: Peter Palaga +Date: Mon Aug 24 19:30:43 2020 +0200 + + Bonita JVM support + +commit e534ef6a7b1e0bc27e7ef01a1d9ad1fb60549a19 +Author: Peter Palaga +Date: Mon Aug 24 18:07:53 2020 +0200 + + Docs: mention camel-quarkus-main in the contributor guide + +commit 4153eacafea47016ee05bbab6e829da13d80344b +Author: Peter Palaga +Date: Mon Aug 24 18:07:14 2020 +0200 + + Docs: better intro, observability. Substantial parts taken from + https://jamesnetherton.github.io/2020/08/12/camel-quarkus-1.0.0-released/ + +commit 6789111acb442e808fd21e03b41939631c26c42a +Author: James Netherton +Date: Mon Aug 24 15:54:24 2020 +0100 + + Add NATS component extension + +commit 0680d12cb66dc8b53aad44e7dbb7eac24eac77c7 +Author: James Netherton +Date: Mon Aug 24 15:48:23 2020 +0100 + + Add jOOQ component extension + +commit 6738be8712ba8b42c2a7cdaf3c998eb4bb5f28f8 +Author: James Netherton +Date: Mon Aug 24 15:42:01 2020 +0100 + + Add Dropbox component extension + +commit 910833870a090df20beb62634dc40d87f34e9b1d +Author: Lukas Lowinger +Date: Mon Aug 24 16:22:06 2020 +0200 + + Clean google drive in google sheets itest + +commit 30fb2b5b7377aa13e91e37c022e7cd0a586824cc +Author: Peter Palaga +Date: Mon Aug 24 15:50:37 2020 +0200 + + Azure Storage Queue Service JVM support + +commit ffbcbd0aa20ee9eef29ebe947884cc31e41affab +Author: Peter Palaga +Date: Mon Aug 24 15:49:18 2020 +0200 + + Azure Storage Blob Service JVM support + +commit 6495b82d25e8154b89e35f860bb8f702c8eaaf11 +Author: Peter Palaga +Date: Mon Aug 24 15:47:27 2020 +0200 + + AWS 2 Lambda JVM support + +commit 16d81aa601a6a61c9f9354db9209c523e8aa1647 +Author: Peter Palaga +Date: Mon Aug 24 15:46:04 2020 +0200 + + AWS 2 Kinesis JVM support + +commit 672d2bdc298655c83224b5c44dd821bbca6e7972 +Author: Peter Palaga +Date: Mon Aug 24 15:27:57 2020 +0200 + + Atomix JVM support + +commit 99711ad05186f81a90d8952e47b9a30d8ac2343a +Author: aldettinger +Date: Mon Aug 24 12:08:00 2020 +0200 + + Added flatpack component support #1541 + +commit 9ad9c599414fd499616d1c2bd5502f64e2222de4 +Author: Marcel +Date: Fri Aug 21 20:10:36 2020 +0200 + + RabbitMQ native extension + +commit 3ba6b433ac232c100f2ace79149549a005e2119e +Author: James Netherton +Date: Mon Aug 24 10:16:08 2020 +0100 + + Build quarkus instead of relying on oss-snapshots + +commit b3ffe82bdfb328bdcc9d4b28bfa2572180c3c49f +Author: Lukas Lowinger +Date: Fri Aug 21 13:51:55 2020 +0200 + + Fix itest when Twitter acount have spaces in name + +commit 7c49a8a1ecfad307d444d572fdea17c6a4e234b4 +Author: Peter Palaga +Date: Fri Aug 21 12:58:09 2020 +0200 + + Atmos JVM support + +commit a6fbe32e0e0489f70e7a9161b3d22689381ae4a0 +Author: Peter Palaga +Date: Fri Aug 21 13:01:48 2020 +0200 + + Atom JVM support + +commit ea3e610712e7bf031cdd4dbe03098f3a21ef8c7e +Author: Peter Palaga +Date: Fri Aug 21 12:49:04 2020 +0200 + + Asterisk JVM support + +commit fb2ea42ce12f512d44c86d6d1c3b4399a6944645 +Author: Peter Palaga +Date: Fri Aug 21 12:40:24 2020 +0200 + + APNS JVM support + +commit 47f1e22a6185f9ae03353081b6af5293eea6ac8a +Author: Peter Palaga +Date: Thu Aug 20 16:26:10 2020 +0200 + + Compute the component counts using JavaScript to avoid merge conflicts + +commit b683e4dddadab9aa0e137f09671b7023a092c60a +Author: Peter Palaga +Date: Fri Aug 21 10:28:56 2020 +0200 + + Update mvnd rules and split their entries by newlines where merge conflicts may happen + +commit b56f4f958ec6a3a557fab9052a03837fdc9a9167 +Author: Lukas Lowinger +Date: Fri Aug 21 09:55:10 2020 +0200 + + Fix telegram itest component property resolution + +commit 1fcbd425539d96b1efad06f67a44529174192c65 +Author: James Netherton +Date: Fri Aug 21 09:17:40 2020 +0100 + + Fix MAVEN_PARAMS variable interpolation for project version evaluation + +commit db09712f22ea85a3d68317452923d1ee96e00cd8 +Author: James Netherton +Date: Thu Aug 20 15:25:35 2020 +0100 + + Document snapshot builds in CI docs + +commit 3a90749eee2bc915142e215555151c6c12cfa8a6 +Author: Peter Palaga +Date: Thu Aug 20 13:26:09 2020 +0200 + + Fix #765 Git support + +commit 5a7ccf203406b0dce97ff8d987d05f36abc0156f +Author: Peter Palaga +Date: Thu Aug 20 11:22:44 2020 +0200 + + Upgrade to cq-maven-plugin 0.15.0 + +commit d2d66897dcd6c15a980dd0d193c14de915fba5af +Author: James Netherton +Date: Thu Aug 20 08:42:46 2020 +0100 + + Fix ProfileActivationException caused by ubounded version range + +commit 07ff801f884b0425d520b558b4ddef83a887ad34 +Author: James Netherton +Date: Wed Aug 19 13:37:39 2020 +0100 + + Publish SNAPSHOT builds + +commit c65c45142b6622d91553bb40955849e32143bd32 +Author: Peter Palaga +Date: Wed Aug 19 17:25:18 2020 +0200 + + Use proper extension page URLs in quarkus-extension.yaml + +commit cc863ae1b2b9be61135f7195dde737e9ee544798 +Author: aldettinger +Date: Wed Aug 19 11:48:28 2020 +0200 + + Fixed flatpack itests as test data would not be available on platform + +commit 9c17b4dff4cb040659a2007cade58820f74bc498 +Author: James Netherton +Date: Wed Aug 19 08:36:23 2020 +0100 + + Add missing netty dependencies to olingo4 extension + +commit 60f2bb3ed87c86ef34a6c59e5965eab2b677acda +Author: Zineb Bendhiba +Date: Wed Aug 19 11:09:30 2020 +0200 + + update create new extension guide : add update of test-categories.yaml + +commit 7c082ae3f362cfa10cd8e2c1d7000f6c2ebda47f +Author: aldettinger +Date: Tue Aug 18 21:24:17 2020 +0200 + + Added support for flatpack dataformat fixes #796 + +commit fcd238dcc4a080a27719b5d4d132f4c5815026df +Author: lburgazzoli +Date: Tue Aug 18 15:49:17 2020 +0200 + + Switch from restcountries.eu to estcountries.com as the .eu service is not reliable anymorei #1538 + +commit 80e6d75b72f5d505f5958e1f9eefbbee86253385 +Author: Peter Palaga +Date: Tue Aug 18 11:19:40 2020 +0200 + + Fixup c11d8da9 Let the list of extensions page show extensions + +commit b20618d6ee3cd9f2277564dcda2d341b93720dcd +Author: lburgazzoli +Date: Tue Aug 18 09:39:13 2020 +0200 + + chore(build): configure ci to run on release rbanches + +commit c11d8da94427c9ae62cb38922c5a479a3f11d882 +Author: Peter Palaga +Date: Mon Aug 17 21:50:46 2020 +0200 + + Let the list of extensions page show extensions, move list of supported + components, languages, etc. to separate pages. + +commit e6a93fd88c94096fa447b18e33f90d88a07342a5 +Author: lburgazzoli +Date: Wed Aug 12 13:30:41 2020 +0200 + + Upgarde to camel v3.4.3 (fix MainShutdownStrategy) + +commit ea33d45e98c8d499bbbc6856cd73dbfc1c4357ab +Author: lburgazzoli +Date: Wed Aug 12 12:34:17 2020 +0200 + + Upgarde to camel v3.4.3 + +commit 6f7f29b9b15a7e729bc0d2dc9667ab27482d5dcf +Author: James Netherton +Date: Thu Aug 13 10:05:48 2020 +0100 + + Avoid purging artifacts for builds that may be in progress + +commit 864428165e1ff2939f0c607c17cf70ae0db47cdc +Author: aldettinger +Date: Wed Aug 12 14:52:49 2020 +0200 + + Fixed typos + +commit 3e7862d2846ebc1326d724258781815442ac9e80 +Author: aldettinger +Date: Wed Aug 5 15:05:23 2020 +0200 + + Completed bean itests with an @InjectMock test + +commit 87246b0e0e20fc36c82e15bc1cab21d6867877a4 +Author: aldettinger +Date: Tue Aug 11 15:36:14 2020 +0200 + + Fixed minor issues in examples doc + +commit 5f816a01533d54a9c074378e831b79d55d0716fa +Author: aldettinger +Date: Mon Aug 10 15:35:25 2020 +0200 + + Fixed the VerifyError in the health example fixes #1517 + +commit 349d9a9fc6410634d0a9bc0bbf1ae9c121ff4c1b +Author: Peter Palaga +Date: Mon Aug 10 15:24:06 2020 +0200 + + Set antora's camel-quarkus-last-release to 1.0.0 + +commit 4d8ad7b5165e80af36387e6f0f079dff35e59967 +Author: Peter Palaga +Date: Mon Aug 10 15:23:04 2020 +0200 + + Collapse all 1.0.0-M* and 1.0.0-CR* version labels to just 1.0.0 + +commit 48c795c25409a21b91617c2d44a0b44c4f6d8f04 +Author: Peter Palaga +Date: Mon Aug 10 15:16:12 2020 +0200 + + The next 1.1.0 + +commit a17e80846974534bfa7a1308a9f5dc14a5bd7936 +Author: James Netherton +Date: Wed Aug 5 13:25:05 2020 +0100 + + Add extension for smallrye-reactive-messaging-camel + + Fixes #1469 + +commit 2858b941a528f900ca150ded9d4f5b76b3cb2648 +Author: James Netherton +Date: Tue Aug 4 07:21:22 2020 +0100 + + Add master extension + + Fixes #711 + +commit b1e5d89d32606427759c5b4103c98d099cebacb1 +Author: James Netherton +Date: Mon Aug 3 16:36:15 2020 +0100 + + Add test support module for executing quarkus runners + +commit 078a66831a4ce149f336392f8d7fdf7ab766abbf +Author: Peter Palaga +Date: Mon Aug 10 11:53:31 2020 +0200 + + Improve the Release guide + +commit f0c755aa8229240279f8dfe85c9013c4b0a07869 +Author: James Netherton +Date: Fri Aug 7 16:16:54 2020 +0100 + + Upgrade Quarkus Qpid JMS to 0.17.0 + +commit 159e7c34bfa92fb0287777f27f7ace91d04ff3c6 +Author: James Netherton +Date: Fri Aug 7 07:25:46 2020 +0100 + + Disable merge commits on pull requests + +commit 7f3f8bae2f5504d07f33941b1627ef6e589e037f +Author: James Netherton +Date: Fri Aug 7 11:25:02 2020 +0100 + + Upgrade to Quarkus 1.7.0.Final + +commit deaa973d92f8dda6717c22f72d820a8804cff3c8 +Author: James Netherton +Date: Thu Aug 6 11:03:56 2020 +0100 + + Simplify component configuration for box, fhir & google itests + +commit 151feb0c1b7a1dba3ddd9f301a0e3925c2b1bbd9 +Author: James Netherton +Date: Thu Aug 6 08:09:52 2020 +0100 + + Fix Twitter itest component property resolution + +commit 50c0b0cab1747c6ecde30d2b1124ec6f20622b60 +Author: James Netherton +Date: Thu Aug 6 08:09:42 2020 +0100 + + Fix Braintree itest component property resolution + +commit 955203c3036b2eb0acec25f8f5c1e7f6aca00afd +Author: James Netherton +Date: Wed Aug 5 08:41:43 2020 +0100 + + Upgrade to Quarkus 1.7.0.CR2 + +commit 7736d416e0333cb41ce0bbd5652a803ca80a118a +Author: aldettinger +Date: Mon Aug 3 15:42:35 2020 +0200 + + Registered grok patterns in registry via qualified field producers + +commit 74b3b2c22b90ee504ab763a2e02786122e4f9fcc +Author: Peter Palaga +Date: Thu Jun 25 14:35:20 2020 +0200 + + Fix #1403 quarkus-extension-processor race conditions when modules are built in parallel + +commit 04e720e2129adbbfd47340b8c229f1864b2c9336 +Author: James Netherton +Date: Mon Jul 6 12:26:55 2020 +0100 + + Upgrade to Quarkus 1.7.0.CR1 + +commit 2e04ba485062293339a6540dd16eab771bff0e5f +Author: Claus Ibsen +Date: Fri Jul 31 07:06:45 2020 +0200 + + Update tags on github for camel-quarkus + +commit fa44df0b10c7902e867d879c65ee5c930f277645 +Author: Peter Palaga +Date: Fri Jul 17 12:08:02 2020 +0200 + + Fix #1286 Pass deprecation info to quarkus-extension.yaml + +commit 7a5a5b7312f39578d066031793b497c7a680340c +Author: aldettinger +Date: Wed Jul 29 09:46:09 2020 +0200 + + Added grok support #1466 + +commit 72bc9bb538d8373f86b676141b7f705987c94363 +Author: Peter Palaga +Date: Mon Jul 27 12:38:27 2020 +0200 + + Fixup #1244 Improve the docs about the default REST transport provider + +commit 36c04ab508edac37a54705b3b0f48c1ab1a7d7a2 +Author: James Netherton +Date: Thu Jul 23 14:27:57 2020 +0100 + + Remove service exclude for ThreadPoolProfileConfigurationProperties + + Fixes #1380 + +commit 7015fc456b99d0479892befcf0c5921ecccd3808 +Author: James Netherton +Date: Thu Jul 23 14:18:16 2020 +0100 + + Correct bind type for OpenTracingTracer bean + +commit 9512ba20acf82243887fec272b3725be95692ebc +Author: lburgazzoli +Date: Mon May 25 10:57:04 2020 +0200 + + Make camel-quarkus-rest depend on camel-quarkus-platform-http #1244 + +commit 3bf7e996768ecb68ed1e4f6de0b821ac7c366fdf +Author: lburgazzoli +Date: Wed Jul 22 11:42:31 2020 +0200 + + Upgrade to Camel 3.4.2 + +commit c30f4972ef2583cc4a66fa6c1af9259e3df90371 +Author: James Netherton +Date: Tue Jul 21 12:57:49 2020 +0100 + + Upgrade Quarkus to 1.6.1.Final + +commit 44d1b7964062db79b762e11b1ec31b231ce11128 +Author: lburgazzoli +Date: Wed Jul 8 14:50:47 2020 +0200 + + Reproducer for #1459 + +commit c785c5145dc84c40e630ad382197fa68eae8a81b +Author: lburgazzoli +Date: Thu Jul 16 14:17:33 2020 +0200 + + Upgrade to Apache Camel 3.4.1 + +commit 7c81c5093887c57316c390bc1534326caa094141 +Author: Peter Palaga +Date: Thu Jul 16 11:09:13 2020 +0200 + + Fixup #1468 Intermittent failure of CamelDevModeTest + +commit 29c7e7acf17a673466f34807921546b95f02c4a3 +Author: Peter Palaga +Date: Wed Jul 15 15:04:45 2020 +0200 + + Pipe sanitization done by Quarkus tooling + + See https://github.com/quarkusio/quarkus/commit/f20fdc0dafba8619fa43d82d5d191e322058cd50 + +commit cb53f1881f688303b52bf4e3a21cd4d05bc65e6d +Author: Peter Palaga +Date: Wed Jul 15 14:57:30 2020 +0200 + + Fix #1426 Dependency parity checks are now done by Quarkus extension-descriptor mojo + +commit 9a933a5f9cfe12c5e425d8e416615ec926028233 +Author: Peter Palaga +Date: Wed Jul 15 12:25:40 2020 +0200 + + Fixup #1448 Add delay=-1&repeatCount=1 to the command mode test route to finish faster + +commit 8a4d3ee314ac3298ca920c40561bf3e3f8d5fa61 +Author: James Netherton +Date: Wed Jul 15 08:07:20 2020 +0100 + + Use java.home system property in TrustStoreResource + +commit 8c76e2332a14c63bfe39d3b30cb7cbf82054f770 +Author: Peter Palaga +Date: Tue Jul 14 17:17:57 2020 +0200 + + Fixup JSON Validator + +commit 198f7821a6dfc4f2bd61905e7718e8f78268920b +Author: Peter Palaga +Date: Tue Jul 14 15:36:52 2020 +0200 + + Fixup JPA extension + +commit 738c4cc2fc1451dc4588a70fc31c970e0a18c432 +Author: Peter Palaga +Date: Tue Jul 14 15:35:55 2020 +0200 + + Fixup #1468 Intermittent failure of CamelDevModeTest + +commit 50efe791c97f3a6cbbe9f901cda6f694f9d44313 +Author: Peter Palaga +Date: Tue Jul 14 15:24:18 2020 +0200 + + Fix #1448 Add an integration test for the command mode + +commit 54bed57fb7a85f3b1f288f9ffa07e82e19da981b +Author: Peter Palaga +Date: Tue Jul 14 10:28:24 2020 +0200 + + Fix #1468 Intermittent failure of CamelDevModeTest + +commit 0684fee6e361b6f3788cf10c8fb447e09ecf007a +Author: James Netherton +Date: Thu Jul 9 13:51:41 2020 +0100 + + Add JPA extension + + Fixes #889 + +commit c38e45ca0712c697cbc499ae2ad8cc7722429d98 +Author: Luca Burgazzoli +Date: Wed Jul 8 13:49:49 2020 +0200 + + improve bootstrap and configuration documentation + +commit ffa9631994f961026c1490d3a2448f99165c5780 +Author: James Netherton +Date: Wed Jul 8 08:33:17 2020 +0100 + + Fix issues with building from the source release zip + + Fixes #1460 + +commit ab24056238f15d687a891e74ad6c08cfdf317f5e +Author: lburgazzoli +Date: Tue Jul 7 15:49:06 2020 +0200 + + Add example about how to use @Handler with beans registered to the Camel Context + +commit 52f56419d779d56c22423ca096772ae9d5b717ef +Author: lburgazzoli +Date: Fri Jul 3 18:44:59 2020 +0200 + + org.apache.camel.quarkus.main.CamelMainApplication should be registered for reflection #1453 + +commit 435f31a7f7e28705b64b61cce612998cabd11774 +Author: James Netherton +Date: Tue Jul 7 10:23:17 2020 +0100 + + Fix doc typos + +commit 1e6a3666d9859b1028add13ffdd2919747c57785 +Author: JiriOndrusek +Date: Fri Jul 3 12:51:30 2020 +0200 + + Document how to use mock in JVM mode tests #1449 + +commit 2c6b58d7d6e161314e6427ba594f1d80d9935d5a +Author: James Netherton +Date: Mon Jul 6 12:29:47 2020 +0100 + + Regen docs + +commit d57f186c712a1edd944bdfb2325f4e9b6f8b1d87 +Author: Amos Feng +Date: Mon Jul 6 16:49:41 2020 +0800 + + Fix #1428 to add the usage.adoc + +commit 26776cf872fd97c5d76c4b65e01bc87e7ea30576 +Author: Willem Jiang +Date: Mon Jul 6 10:04:27 2020 +0800 + + #1455 Exclude the node directory from src kit + +commit 0ad306425da41790b4a16ae2da363212b78b6cae +Author: Peter Palaga +Date: Fri Jul 3 12:44:28 2020 +0200 + + The next is 1.0.0-CR4 + +commit 2f6c58edb571c61b294ef46ace2693b2411aa2de +Author: Peter Palaga +Date: Fri Jul 3 09:08:30 2020 +0200 + + [maven-release-plugin] prepare for next development iteration + +commit 15788a0a6424627abfb33bf13ae791d7f5245bd3 (tag: 1.0.0-CR3) +Author: Peter Palaga +Date: Fri Jul 3 09:08:00 2020 +0200 + + [maven-release-plugin] prepare release 1.0.0-CR3 + +commit 80b6db903fe0cd392d0b0c73171ee1c85f214b9a +Author: James Netherton +Date: Thu Jul 2 20:29:59 2020 +0100 + + Upgrade Quarkus Qpid JMS to 0.16.0 + +commit 1248cd7fa8649ad739633473adc6a238dd81a004 +Author: JiriOndrusek +Date: Thu Jul 2 14:51:08 2020 +0200 + + Feature: Add camel-mock #531 + +commit c7f641d97283e581beacb75e6e49dbc21204d729 +Author: Peter Palaga +Date: Thu Jul 2 16:17:00 2020 +0200 + + Fixup #1421 Jolt tests should not access local file system to be runnable on Quarkus Platform + +commit 9a399e66c63a820127cc56a10940936c49c490eb +Author: Peter Palaga +Date: Thu Jul 2 15:14:25 2020 +0200 + + Upgrade to Debezium 1.2.0.Final #1418 + +commit 1944ccd4809de8f883e8d6269c12d7c97bc56bd3 +Author: Peter Palaga +Date: Thu Jul 2 14:41:22 2020 +0200 + + Quarkus 1.6.0.Final BOM imports AWS SDK BOM, so we do not need to + +commit 268f55ad42c690ec6245225345e828f65f8da2ac +Author: Peter Palaga +Date: Thu Jul 2 14:25:20 2020 +0200 + + Upgrade to Quarkus 1.6.0.Final + +commit dd638115523e83a5a0cae8faa39b3eadd8d2c325 +Author: Peter Palaga +Date: Thu Jul 2 13:50:48 2020 +0200 + + Fixup Split main startup logic + + Make sure that Quarkus orders booting our runtime before starting to + serve HTTP endpoints. + +commit 9bcdae688211d0e6a45bca267ad139c95349e5c1 +Author: Peter Palaga +Date: Thu Jul 2 13:51:47 2020 +0200 + + Add camel-quarkus-main dependency to the Box itest to be able to use + properties config + +commit 794de3297abbc0e9669ef56646d7ef087715c43d +Author: lburgazzoli +Date: Thu Jul 2 08:21:36 2020 +0200 + + Split main startup logic + +commit c88fb8b7da3d95898375df53080708b3d620a7a1 +Author: Peter Palaga +Date: Wed Jul 1 16:41:48 2020 +0200 + + Re-enable DevMode tests after the upgrade to Quarkus 1.6.0.CR1 + +commit c60577f38acd0d72d850d6f2ce579a1f6d655359 +Author: Peter Palaga +Date: Wed Jul 1 20:42:04 2020 +0200 + + Improve the bootstrap docs + +commit a6512924f2b4ecf12701a0773d052eaf8f1596e2 +Author: James Netherton +Date: Wed Jul 1 12:15:30 2020 +0100 + + Upgrade cq-maven-plugin to 0.11.0 + +commit 4813d78db7ed615d93b90a2073733de621423f5a +Author: Peter Palaga +Date: Tue Jun 30 20:08:53 2020 +0200 + + Fix #1415 The CI should fail if there are uncommitted changes after the build + +commit 92700233b4959d10962f41e9f5b5ef1467bcbd0c +Author: Peter Palaga +Date: Tue Jun 30 18:23:09 2020 +0200 + + Use en_US.UTF-8 instead of the non-existent en_US on GH actions's Ubuntu + +commit 93b2de2e9a511950dce169f08da5c90375034a61 +Author: Peter Palaga +Date: Tue Jun 30 18:21:58 2020 +0200 + + Fix #838 TimeZone-less DTSTART and DTEND not changed to GMT + + in native mode with GraalVM 20.1.0+ + +commit 085984d0a496cf9722a9c3b5b7ae06b2e2849663 +Author: Peter Palaga +Date: Tue Jun 30 14:05:46 2020 +0200 + + Add skip option to UpdateExtensionDocPageMojo to be able to workaround https://github.com/quarkusio/quarkus/issues/10217 + +commit 5d61dbe78293f8e1501a1ff813aa2bb2d4f0512d +Merge: 28ad1604e4 a4a7ea4123 +Author: Andrea Cosentino +Date: Tue Jun 30 06:50:30 2020 +0200 + + Merge pull request #1432 from aldettinger/CAMEL-QUARKUS-1421 + + Added Jolt support #1421 + +commit a4a7ea41236a723956febdac4f866d0de0627036 +Author: aldettinger +Date: Mon Jun 29 20:26:25 2020 +0200 + + Added Jolt support #1421 + +commit 28ad1604e4821ffc907cc22d5b11c963c0a9e3ca +Author: Amos Feng +Date: Sun Jun 28 22:08:12 2020 +0800 + + Fix #1263 - Add the camel-jta extension (#1411) + +commit 045732127d1193521955f3e4ab2e6c2e28a0d39f +Author: Peter Palaga +Date: Fri Jun 26 17:54:07 2020 +0200 + + Fix #1313 Upgrade to Kubernetes Client 4.10.2 to align with Quarkus + + Unresolved method AutoscalingAPIGroupDSL.v1() error in Kubernetes native + image generation + +commit 79f9c28dff6ebadfe77d17cb2451185c52a56a45 +Author: Peter Palaga +Date: Fri Jun 26 11:53:02 2020 +0200 + + Enable Debezium tests after the upgrade to Quarkus 1.6.0.CR1 + + This reverts commit 144cff56d95d34fe58aa1fcad2551ccb7d677815. + +commit d82a7a474848e7527918651a78e6adb5ca697767 +Author: Peter Palaga +Date: Thu Jun 25 18:10:46 2020 +0200 + + Workaround for https://github.com/quarkusio/quarkus/issues/10279 + +commit 4810732c14e20ef65e16f103e9fddb1fbdc3a57f +Author: Peter Palaga +Date: Thu Jun 25 15:54:31 2020 +0200 + + Remove Deployment BOM + +commit 3f853dc4532c977785cf2387d4ea1e3f1803c791 +Author: James Netherton +Date: Fri Jun 12 08:02:22 2020 +0100 + + Temporarily disable debezium tests until #1311 and associtated issues are fixed + +commit 7ad4fd7b013193c273984065c71b786124799bb4 +Author: James Netherton +Date: Fri May 29 09:57:38 2020 +0100 + + Upgrade to Quarkus 1.6.0.CR1 + +commit cbbce7ee6dbf127777c5d8ef0da73c0fe90b8ebf +Author: James Netherton +Date: Fri Jun 26 07:39:23 2020 +0100 + + Add documentation for vertx configuration + +commit 7ca801a652f411dadb4fd07bfd5fb96639da1bc0 +Author: James Netherton +Date: Thu Jun 25 14:53:09 2020 +0100 + + Ensure Quarkus Vertx instance is set on the camel component when not using camel-quarkus-main + +commit 4aab307a85c0a55bca03039aa3e84f1e3d6eee97 +Author: Peter Palaga +Date: Thu Jun 25 15:17:38 2020 +0200 + + Make the local Antora build produce .htaccess file with redirects based + on :page-aliases: attributes in the AsciiDoc pages the content of that + file can by copied to + https://github.com/apache/camel-website/blob/master/static/.htaccess + +commit 39c2d2476044c3765ce038207d63185122791afd +Author: James Netherton +Date: Thu Jun 25 13:50:50 2020 +0100 + + Regen docs + +commit c0af51edcbb4b23a467c2c1238b2eeffd3bd6808 +Author: James Netherton +Date: Thu Jun 25 13:49:54 2020 +0100 + + Remove NettyHttpComponent producer method from RestOpenapiResource + + Fixes #1237 + +commit 15cbddf9a9720a490b6caed64be7362a7b16babc +Author: James Netherton +Date: Thu Jun 25 13:49:17 2020 +0100 + + Ensure CamelContextAware beans have CamelContext set when bound to the registry + +commit ef23e493c9309b1d92ff48b5e1e106e85ee957f7 +Author: lburgazzoli +Date: Tue Jun 23 13:35:55 2020 +0200 + + Rename camel-quarkus-package-maven-plugin to camel-quarkus-maven-plugin #1395 + +commit a9391060fdca728079f34cc700df02b63a68876c +Author: lburgazzoli +Date: Mon Jun 22 22:12:12 2020 +0200 + + Create a camel-componentdsl extension #1376 + +commit e5bad98323fd7f4ebbb2879ced3449bb7d57ee7c +Merge: 3b9f9b2b2c 986ddd6f72 +Author: Andrea Cosentino +Date: Tue Jun 23 11:28:24 2020 +0200 + + Merge pull request #1408 from aldettinger/CAMEL-QUARKUS-1367 + + Added Json Validator support #1367 + +commit 3b9f9b2b2cb7224636f99d7af838e6ca7be42a23 +Merge: 823ba44348 a004b766cf +Author: Andrea Cosentino +Date: Tue Jun 23 11:22:44 2020 +0200 + + Merge pull request #1412 from apache/athena-aws2 + + Added an AWS2-Athena native extension + +commit 823ba443481087e6653f96381dccdc2fae9ed7b8 +Author: Aemie Jariwala <44139348+AemieJ@users.noreply.github.com> +Date: Tue Jun 23 14:05:38 2020 +0530 + + CAMEL-15216 : Omit the warning of level index + + Here, within the **6** and **7** in the ordered list gets converted to **1** and **2** due to the fact a hard-break ( + ) was missing in the point number **5**. + +commit ca42ffa35f5d1d5496d0b459d1be33cc55dfb7c1 +Author: lburgazzoli +Date: Mon Jun 22 22:15:19 2020 +0200 + + chore(deps): update exec-maven-plugin to v3.0.0 + +commit 3c4e92efe3566901e86f03fadef294f23cff5544 +Author: lburgazzoli +Date: Mon Jun 22 22:14:30 2020 +0200 + + chore(deps): update groovy to v3.0.4 + +commit a004b766cf0021203346aabebd7d7a1478da3384 +Author: Andrea Cosentino +Date: Tue Jun 23 09:24:35 2020 +0200 + + AWS2-Athena: Regen metadata + +commit 986ddd6f72b1e7f9257d012a842f3a588f1f24be +Author: aldettinger +Date: Tue Jun 23 09:23:01 2020 +0200 + + Removed the useless dependency on camel-quarkus-direct-deployment + +commit 23d7705436d078fcf3bf8ae99b416431c06820a0 +Author: Andrea Cosentino +Date: Tue Jun 23 09:19:07 2020 +0200 + + Added an AWS2-Athena native extension + +commit 5027a40e948f7225de39c7177666f9c7b3c810c9 +Author: aldettinger +Date: Tue Jun 23 09:12:00 2020 +0200 + + Update integration-tests/json-validator/pom.xml + + Co-authored-by: Peter Palaga + +commit 53ce1a631a29db444604ee0932fa0302aeede525 +Author: aldettinger +Date: Tue Jun 23 09:11:49 2020 +0200 + + Update extensions/json-validator/runtime/pom.xml + + Co-authored-by: Peter Palaga + +commit e8d94738b9b4cff6aac869c5b505fccc6360930a +Author: aldettinger +Date: Wed Jun 17 18:15:59 2020 +0200 + + Added Json Validator support #1367 + +commit 9a138c7172e73c11ac87b0d77109a030698462e3 +Author: lburgazzoli +Date: Mon Jun 22 16:40:20 2020 +0200 + + Observe Camel's events #1353 (cleanup main) + +commit e22a481646913ea5c61923550a278ff9bc5ec4d6 +Author: lburgazzoli +Date: Mon Jun 22 16:16:01 2020 +0200 + + Observe Camel's events #1353 (cleanup core) + +commit 5ab973cc9950b2272af2a78023703194d488f40f +Author: lburgazzoli +Date: Mon Jun 22 11:08:35 2020 +0200 + + Observe Camel's Lifecycle events #1399 + +commit 63cdeb68ffac0eb60afc51e32350c6e70865d86d +Merge: 6f084735b5 57c35480cf +Author: Andrea Cosentino +Date: Mon Jun 22 11:50:57 2020 +0200 + + Merge pull request #1401 from apache/aws2-ses + + Aws2 ses + +commit 57c35480cf215444e28a437f2edaf4fb3862239f +Author: Andrea Cosentino +Date: Mon Jun 22 09:34:15 2020 +0200 + + Camel-AWS2-SES: Regen metadata + +commit aee8f89e8c4db2e77a1d101a3eba79e09f6fc019 +Author: Andrea Cosentino +Date: Mon Jun 22 09:27:15 2020 +0200 + + Added an AWS2-SES native extension + +commit 6f084735b5b8354dd3b5988cf6c97a46d75932af +Merge: c492548aae 5e418adc27 +Author: Andrea Cosentino +Date: Mon Jun 22 06:18:53 2020 +0200 + + Merge pull request #1400 from lburgazzoli/github-1398 + + Observe Camel's Management events + +commit 5e418adc27f313c5f4e85620304b2623f80eca46 +Author: lburgazzoli +Date: Sun Jun 21 20:47:24 2020 +0200 + + Observe Camel's Management events #1398 + +commit c492548aaebe0ebe06f8deee7d69dfd0ada88ff2 +Author: lburgazzoli +Date: Sun Jun 21 16:04:51 2020 +0200 + + Remove unneccessary properties from integration-tests and remove empty files + +commit 592d7c793cd31ae236f0f50fda148f977f1ed583 +Author: lburgazzoli +Date: Sun Jun 21 15:57:29 2020 +0200 + + Remove unneccessary class inclusion from QuarkusUnitTest + +commit 1793c3e8dd5e0a9822d8dc6936f589a41e98f47c +Author: lburgazzoli +Date: Sun Jun 21 10:28:11 2020 +0200 + + The quarkus-bootstrap-maven-plugin is listed twice on all the runtime extensions POMs #1390 + +commit 9e25da9e29f15c6524226ad0c3482391f2e3e8b1 +Author: lburgazzoli +Date: Sun Jun 21 01:36:51 2020 +0200 + + component injection: produce a CamelRuntimeTaskBuildItem for synchronization purpose + +commit 682174eb44ac8ea45c3a30b79b849ee0654e268a +Author: lburgazzoli +Date: Sat Jun 20 22:46:42 2020 +0200 + + Fix potential NPE + +commit c56f5f60f750c966bd37e650d8410430893f81c8 +Author: lburgazzoli +Date: Sat Jun 20 22:30:24 2020 +0200 + + Replace joschi/setup-jdk with AdoptOpenJDK/install-jdk #1349 + +commit 259f73616c6e12d51ccf8f5b67e334205556c287 +Author: lburgazzoli +Date: Sat Jun 20 18:06:01 2020 +0200 + + Regen + +commit e40ba5e7aa3c6bce8eb72f162e377d67514cb382 +Author: lburgazzoli +Date: Sat Jun 20 18:05:31 2020 +0200 + + Add a test to validate fix for #1368 + +commit 7896a1fa7bb29582f6b67861b14b3e1b285e4d1c +Author: lburgazzoli +Date: Fri Jun 19 18:33:27 2020 +0200 + + Fix NPE + +commit 888ec43c4853742043db03b7ba89cf8a52d7a5bf +Author: lburgazzoli +Date: Fri Jun 19 15:12:05 2020 +0200 + + Regen + +commit bfed463d4ec831929c5a5f8893f2e57301a3670b +Author: Luca Burgazzoli +Date: Fri Jun 19 14:54:13 2020 +0200 + + Revisit camel-quarkus bootstrap #1128 (docs) + + Co-authored-by: Peter Palaga + +commit 82ced6bef097ef093b6e74df0639b33d038ef462 +Author: lburgazzoli +Date: Fri Jun 19 00:45:52 2020 +0200 + + Support Quarkus command mode #1037 + +commit 6835980d1601ebb5f80281f0e5024047dbcfe545 +Author: lburgazzoli +Date: Fri Jun 19 00:45:30 2020 +0200 + + Manually re-apply commit 9d990df64ceb946e7eed6006dd01fff09e0eceef + +commit 563d0ea610382b6421fdfee06426665a6d8ae6f0 +Author: lburgazzoli +Date: Fri Jun 19 00:44:13 2020 +0200 + + Regen + +commit 848a45c9bb3c117c84d2135935b8f243c3e5a2f4 +Author: lburgazzoli +Date: Wed Jun 10 16:58:40 2020 +0200 + + Revisit camel-quarkus bootstrap #1128 + +commit 3287027244f637aaa26b80c2025cae39fbbd044a +Author: lburgazzoli +Date: Fri Jun 19 15:05:49 2020 +0200 + + Re apply commit 98abf252d399c70967ffea37295431fb37ca26c7 + +commit 354d210e9b126887919d259c44bc6ed42925d73e +Author: lburgazzoli +Date: Fri Jun 19 15:05:27 2020 +0200 + + Re-apply commit 9f425b3d14e1831f06cbe246110de670fef9cd3b + +commit a123de20a681cadf1e9762585d4e3bfe4c4a7857 +Merge: 523408b1b1 49f6390177 +Author: Andrea Cosentino +Date: Sat Jun 20 11:33:40 2020 +0200 + + Merge pull request #1389 from ppalaga/i1350 + + Fix #1350 List Quarkus configuration options on extension pages + +commit 49f63901777d27f7874a10dfd54006d8f47685e3 +Author: Peter Palaga +Date: Fri Jun 19 16:57:40 2020 +0200 + + Fix #1350 List Quarkus configuration options on extension pages + +commit 14c763b5175bac337230fafae26be7fbefde0ea7 +Author: Peter Palaga +Date: Fri Jun 19 14:24:04 2020 +0200 + + Use proper ConfigRoot in CamelServletConfig + +commit 523408b1b1d4590278a90eeb0996a9e21ff34caa +Author: James Netherton +Date: Fri Jun 19 11:47:24 2020 +0100 + + Remove unneccessary classes from unbanned reflective class list + +commit 8bd87d52f9dc97c9a61fef7213decfe772cfca29 +Author: James Netherton +Date: Fri Jun 19 10:19:27 2020 +0100 + + Remove skip of maven-enforcer-plugin from tooling module + +commit b5c8fddea41252457ded30d34bd5c3a4449ee9b3 +Author: James Netherton +Date: Fri Jun 19 10:16:12 2020 +0100 + + Remove superfluous TODO comment + +commit 98abf252d399c70967ffea37295431fb37ca26c7 +Author: James Netherton +Date: Fri Jun 19 10:11:47 2020 +0100 + + Remove exclusion for camel-caffeine-lrucache from camel-main + +commit 9f425b3d14e1831f06cbe246110de670fef9cd3b +Author: James Netherton +Date: Fri Jun 19 10:01:26 2020 +0100 + + Remove IndexDependencyBuildItem for camel-endpointdsl + +commit a99cfb96080fa4ef4826f417a4ff317c24100c28 +Author: James Netherton +Date: Fri Jun 19 09:59:24 2020 +0100 + + Remove redundant BeanValidatorRecorder + +commit 1dd40c0a06086d192b7323574f07ce4795969469 +Merge: ba454a13c5 4ece1f44d3 +Author: Andrea Cosentino +Date: Fri Jun 19 14:53:04 2020 +0200 + + Merge pull request #1385 from apache/aws2-msk + + AWS2-MSK + +commit 4ece1f44d39b9decbc58bc932d405d7417594166 +Author: Andrea Cosentino +Date: Fri Jun 19 11:35:59 2020 +0200 + + AWS-MSK2: Regen metadata + +commit 0a370c283f6f6719cdb157c47e7ea07ee9d0dd65 +Author: Andrea Cosentino +Date: Fri Jun 19 11:31:36 2020 +0200 + + AWS2-MSK: added integration test + +commit d456ee73a1427f543996cd766af5df0d60c7f811 +Author: Andrea Cosentino +Date: Fri Jun 19 11:22:24 2020 +0200 + + AWS2-MSK: Regen and rebuild + +commit 28abfaf1f570c2f8434a8f479bfded907ccf3c24 +Author: Andrea Cosentino +Date: Fri Jun 19 10:57:59 2020 +0200 + + Added an AWS2-MSK native extension + +commit ba454a13c5ff53c2abb622606ef0930cd70f5a5a +Author: James Netherton +Date: Fri Jun 19 07:15:31 2020 +0100 + + Upgrade to Quarkus 1.5.2.Final + +commit 60d76f41151befd67b7c9b0a4557398363f50d8e +Author: JiriOndrusek +Date: Thu Jun 18 16:29:16 2020 +0200 + + Log message for FileNotFound exception not clear enough #1365 + +commit 6b60b0d58f3532e8cad422ab2b648e029c99b61f +Merge: bdf1abe0e2 54744db6d4 +Author: Andrea Cosentino +Date: Fri Jun 19 08:16:22 2020 +0200 + + Merge pull request #1374 from apache/aws2-mq + + Aws2 mq + +commit 54744db6d489be38f9210cb4b053e24f81dbc5d5 +Author: Andrea Cosentino +Date: Thu Jun 18 12:52:38 2020 +0200 + + AWS2-MQ: Regen metadata + +commit 717337761a630b523f9c79df18a9ebb80171754f +Author: Andrea Cosentino +Date: Thu Jun 18 12:45:22 2020 +0200 + + Added an AWS2-MQ native extension + +commit bdf1abe0e22d29855c6dcadbaef26c36eeca9dd5 +Merge: f8862de6e4 ee4a558ced +Author: Andrea Cosentino +Date: Thu Jun 18 21:40:16 2020 +0200 + + Merge pull request #1378 from ppalaga/i1300 + + Fix #1300 Document SSL auto-enabled by extensions + +commit f8862de6e48ee41eddc5d3dec84d72b61e2f6895 +Author: lburgazzoli +Date: Thu Jun 18 12:17:06 2020 +0200 + + Type safe component injection + + This allows to: + + ```java + @ApplicationScoped + public static class Configurer { + @Inject + LogComponent log; + + @PostConstruct + void setUpLogComponent() { + log.setBasicPropertyBinding(true); + log.setExchangeFormatter(new MyExchangeFormatter()); + } + + public LogComponent getLog() { + return log; + } + } + + @ApplicationScoped + public static class Holder { + private LogComponent log; + + @Inject + public Holder(LogComponent log) { + this.log = log; + } + + public LogComponent getLog() { + return log; + } + } + ``` + +commit 77816d7233ff921a9d48322a51690b077174af1c +Author: JiriOndrusek +Date: Thu Jun 18 15:31:40 2020 +0200 + + adding a dependency to make example work (because of #1291) + +commit 9d990df64ceb946e7eed6006dd01fff09e0eceef +Author: James Netherton +Date: Mon Jun 15 10:15:49 2020 +0100 + + Exclude service ThreadPoolProfileConfigurationProperties as it references a non-existent class + +commit 0241617e7087566812f960d326d550f4184df4d6 +Author: Claus Ibsen +Date: Wed Jun 10 07:06:15 2020 +0200 + + health example - requires Camel 3.4 (#1321) + + * health example - requires Camel 3.4 + + * Upgrade microprofile integration test to latest Camel 3.4 SNAPSHOT + + * Upgrade observability example test to latest Camel 3.4 SNAPSHOT + +commit 23b2f9c635702569fca403dd120d4a9c97fe9b40 +Author: Claus Ibsen +Date: Tue Jun 9 11:22:30 2020 +0200 + + microprofile-health extensions should create health registry and initialize it at built time. Requires Camel 3.4.0 + +commit 74089b524b84bc70b0ca2f38ac77b436e9d830a7 +Author: Peter Palaga +Date: Mon May 18 21:53:01 2020 +0200 + + Upgrade to Camel 3.4.0 + +commit ee4a558ced1eed60d286aeb1e42c3dde8bf03e7a +Author: Peter Palaga +Date: Thu Jun 18 16:27:09 2020 +0200 + + Fix #1300 Document SSL auto-enabled by extensions + +commit e9bbeec1362439dd2c28995d4619c059e4abafb6 +Author: JiriOndrusek +Date: Fri Apr 3 16:48:47 2020 +0200 + + Tika support #799 + +commit b6ad4d5241660279c8f8bd14b52d235e8276764a +Merge: eb68674d83 cca807f5ea +Author: Andrea Cosentino +Date: Thu Jun 18 12:24:40 2020 +0200 + + Merge pull request #1369 from apache/aws2-kms + + AWS2-KMS + +commit cca807f5eaf22ea0694edc8f09e112b37c1ad352 +Author: Andrea Cosentino +Date: Thu Jun 18 09:53:37 2020 +0200 + + AWS2-KMS: Regen metadata + +commit 2df99a15fd720ae9e1bcc22893ebc4d30a163b80 +Author: Andrea Cosentino +Date: Thu Jun 18 09:48:04 2020 +0200 + + AWS2-KMS: Added an integration test + +commit 24e488ce7c885983212cdc1586b6272020c85bde +Author: Andrea Cosentino +Date: Thu Jun 18 09:38:09 2020 +0200 + + Added AWS2-KMS native extesion + +commit eb68674d83a7034445b895a358052be3a11719f5 +Merge: e9d5a245b8 b20f1ae76e +Author: Andrea Cosentino +Date: Wed Jun 17 13:42:45 2020 +0200 + + Merge pull request #1364 from apache/aws2-iam + + Aws2 iam + +commit b20f1ae76eefed13a5985020fedabdcfa7d3bae1 +Author: Andrea Cosentino +Date: Wed Jun 17 11:20:19 2020 +0200 + + AWS2-IAM: Regen metadata + +commit 462fd1ae22428adfcb0bbe72e24242b07ae2a2c6 +Author: Andrea Cosentino +Date: Wed Jun 17 11:16:30 2020 +0200 + + Camel-AWS2-IAM: Add specific option for region in tests + +commit 818869484ea5eda59fcab66d2847af9e4019a380 +Author: Andrea Cosentino +Date: Wed Jun 17 10:22:56 2020 +0200 + + Added an AWS2-IAM native extension + +commit e9d5a245b88890d8b6ee2feb1df77ab58b2c4ac5 +Merge: 28a72513e6 404e84c628 +Author: Andrea Cosentino +Date: Tue Jun 16 20:02:00 2020 +0200 + + Merge pull request #1361 from apache/aws2-ddb + + AWS2 DDB + +commit 28a72513e618c13193613d2b97faff4b7098b6de +Merge: 6260da2596 b22c41be9f +Author: Andrea Cosentino +Date: Tue Jun 16 16:23:54 2020 +0200 + + Merge pull request #1362 from apache/aws2-ecs-fix + + AWS2-ECS: Fixed the deployment module + +commit 404e84c6289f488c4ff0dc6fb8b296dc5914ed7a +Author: Andrea Cosentino +Date: Tue Jun 16 16:18:51 2020 +0200 + + AWS2-DDB: Fixed POM + +commit d76334694b73432005c53d0c3193f7e32560b5ba +Author: Andrea Cosentino +Date: Tue Jun 16 14:52:33 2020 +0200 + + AWS2-DDB: Regen + +commit f9a8da6526736dad8ef7f94b73131f22b8d9c8e8 +Author: Andrea Cosentino +Date: Tue Jun 16 14:44:34 2020 +0200 + + Add an AWS2-DDB Native extension + +commit b22c41be9f5b0d20a5831d2b459eb3d7670287d6 +Author: Andrea Cosentino +Date: Tue Jun 16 16:07:12 2020 +0200 + + AWS2-ECS: Fixed the deployment module + +commit 6260da2596fbb93a27f19765a6ff3c10cdc157e2 +Merge: 05d6a416b8 e3ce2e7109 +Author: Andrea Cosentino +Date: Tue Jun 16 12:20:38 2020 +0200 + + Merge pull request #1354 from apache/aws2-eks + + Aws2 eks + +commit e3ce2e7109262d7e8ac12a3c12a0dec25be235b3 +Author: Andrea Cosentino +Date: Tue Jun 16 09:22:31 2020 +0200 + + AWS2-EKS extension: Regen metadata + +commit 004f7282502d0179166494c27926455fd0fe2650 +Author: Andrea Cosentino +Date: Tue Jun 16 09:16:55 2020 +0200 + + Added an AWS2-EKS native extension + +commit 05d6a416b8f577a414d0a798ca31123493e07693 +Merge: d0b6219ecf 6fa5685de2 +Author: Andrea Cosentino +Date: Mon Jun 15 15:44:04 2020 +0200 + + Merge pull request #1352 from JiriOndrusek/695_netty-https + + Unable to GET an https URL with netty-http client #695 + +commit d0b6219ecf4432bb91b5126f2e9b9b61409feae3 +Merge: c81bddb00d d70defcec0 +Author: Andrea Cosentino +Date: Mon Jun 15 15:41:53 2020 +0200 + + Merge pull request #1351 from JiriOndrusek/deeziume-dependencies + + debezium-embedded dependencies #1340 + +commit 6fa5685de2baa8a071475018ff0c44c7f90564e0 (fork/695_netty-https) +Author: JiriOndrusek +Date: Thu Jun 11 11:18:28 2020 +0200 + + Unable to GET an https URL with netty-http client #695 + +commit d70defcec0e2fcb7c2ce9e80c39b297ad5748bd9 (fork/deeziume-dependencies) +Author: JiriOndrusek +Date: Mon Jun 15 10:07:54 2020 +0200 + + debezium-embedded dependencies #1340 + +commit c81bddb00d228317fe7664b8a3f5ac390daa9500 +Author: lburgazzoli +Date: Sun Jun 14 14:38:18 2020 +0200 + + chore(doc): rephrase CamelServiceDestination javadocs. + +commit 5c57faa027dfc59dff9f9d9839eeadd9fe917e50 +Merge: a96fe10624 1e29555032 +Author: Luca Burgazzoli +Date: Sat Jun 13 20:56:55 2020 +0200 + + Merge pull request #1346 from lburgazzoli/influxdb + + integration-tests: make influxdb tests more idiomatic + +commit a96fe10624fd36d38fd2a02b2ffe2e9316cf5d75 +Author: lburgazzoli +Date: Fri Jun 12 23:25:51 2020 +0200 + + debezium: exclude org.apache.kafka:kafka-log4j-appender from debezium-embedded transitive dependencies + +commit 1e29555032fb10e5dfe6c53afa1f0bda69087fdf +Author: lburgazzoli +Date: Fri Jun 12 23:13:31 2020 +0200 + + integration-tests: make influxdb tests more idiomatic + +commit c6a19ea8dd043ce6de345661a5cd0a330cce35a2 +Author: Peter Palaga +Date: Thu Jun 11 21:27:56 2020 +0200 + + Upgrade to Quarkus 1.5.1.Final + +commit 43d2d6d13c6eb3e9143f4dc8c809436df624f5f0 +Author: James Netherton +Date: Thu Jun 11 15:18:12 2020 +0100 + + Add notes related to quarkus extension configuration for amqp, kubernetes & mongo-gridfs docs + +commit 79d67443ebe581efa7f6e419cadd4858f8ed4f4a +Author: Peter Palaga +Date: Thu Jun 11 15:21:51 2020 +0200 + + The next is 1.0.0-CR3 + +commit 05799428cd38d91380ff317c42899a1bf426b896 +Author: lburgazzoli +Date: Thu Jun 11 13:12:29 2020 +0200 + + integration-tests: remove empty application.propertie files + +commit d556c13249512cf66d92ede4dd32a56b391c0ab3 +Author: lburgazzoli +Date: Thu Jun 11 13:09:29 2020 +0200 + + integration-tests: remove quarkus.log.file.enable property + +commit f78e6a8cd2d240819bdb9b5a6b9a18d8b3a3a2c4 +Author: lburgazzoli +Date: Thu Jun 11 13:03:52 2020 +0200 + + core: cleanup FastFactoryFinder leftovers after the migration to camel 3.3.0 + +commit 02b3c16bea0dc849b2d7632e580a513f81e9d314 +Author: James Netherton +Date: Thu Jun 11 09:23:36 2020 +0100 + + Sort BOM dependencies + +commit f82014cb4efc1e72ce47028f5f503a50403a466e +Author: James Netherton +Date: Wed Jun 10 11:15:07 2020 +0100 + + Add vertx component extension + + Fixes #1322 + +commit 6a452bf0f199f2566886fd31df80e35d7250b970 +Author: lburgazzoli +Date: Wed Jun 10 17:23:23 2020 +0200 + + Declare org.graalvm.nativeimage:svm as provided + + iThis is to avoid shaded classes to leak into the runtime as example, + svm shades an old version of ASm that could cause troubles to quarkus. + +commit 1be65a8e9b8bc5077b5f4c8521334ba1d9a1789b +Author: James Netherton +Date: Thu Jun 11 07:28:51 2020 +0100 + + Regen docs + +commit 36b7d4e001b49e473990689809c691058a851307 +Merge: 744b5efcb6 1579cf758d +Author: Andrea Cosentino +Date: Wed Jun 10 18:15:30 2020 +0200 + + Merge pull request #1329 from apache/aws2-ecs + + AWS2-ECS native extension + +commit 744b5efcb645523dc5e52b48c684b0f41e0ae87a +Author: Peter Palaga +Date: Wed Jun 10 11:39:52 2020 +0200 + + Fix #1066 Remove the need for registering RestBindingJaxbDataFormatFactory service + +commit 1579cf758df5db96df4d81ced6c38860e271e55b +Author: Andrea Cosentino +Date: Wed Jun 10 12:02:57 2020 +0200 + + Added AWS2-ECS to extensions POM + +commit d55992284cd48f4bfb94bbd68241c9e9f0fb8762 +Author: Andrea Cosentino +Date: Wed Jun 10 11:29:17 2020 +0200 + + AWS2-ECS extensions: Regen and fixed CS + +commit dfecce3129af0ff4f71c694bb649861d5bbc323b +Author: Andrea Cosentino +Date: Wed Jun 10 11:09:21 2020 +0200 + + Added AWS2-ECS native extension + +commit 43b6a76c98e2a931395ea7b9c0ce1e9ad924afe1 +Merge: 62e3a46f6d a36fe48dcf +Author: Andrea Cosentino +Date: Wed Jun 10 15:34:26 2020 +0200 + + Merge pull request #1334 from apache/fix-link-2 + + Revert "Fixed how to build link in create new extension guide" + +commit a36fe48dcfb2666412a85ed4005e0637d4f7c3e9 +Author: Andrea Cosentino +Date: Wed Jun 10 15:33:49 2020 +0200 + + Revert "Fixed how to build link in create new extension guide" + + This reverts commit 624729ec2f69664a5bcf6adcdca3659cae26f753. + +commit 62e3a46f6d27e3111201aba6720f90885d3712b6 +Author: James Netherton +Date: Wed Jun 10 11:43:10 2020 +0100 + + Set up JDK before attempting builds + +commit 1ad0ef28b79deabdd7a1c61ba06fd01e41d82b54 +Merge: feb46f8334 89fbdd6e3c +Author: Andrea Cosentino +Date: Wed Jun 10 12:32:47 2020 +0200 + + Merge pull request #1333 from apache/revert-link + + Revert link + +commit 89fbdd6e3cad5d245526d9faecc21e7d7cdcd5f4 +Author: Andrea Cosentino +Date: Wed Jun 10 12:32:08 2020 +0200 + + Revert "Fixed extensions documentation link in create new extension docs" + + This reverts commit 009306f468b0ec98cef86e688dd8187cb4368559. + +commit 7e67e6baa6fd1c21266e1974b629c605d6248032 +Author: Andrea Cosentino +Date: Wed Jun 10 12:31:21 2020 +0200 + + Revert "Fixed contributor guide index.adoc links" + + This reverts commit 619e9e6bbf0803a5681f54fa2776320640564047. + +commit feb46f83340f695b0958e9760f2a0719ead9cf1c +Merge: 5f080c4c5d 009306f468 +Author: Andrea Cosentino +Date: Wed Jun 10 12:10:59 2020 +0200 + + Merge pull request #1332 from apache/link-fix + + Link fix + +commit 009306f468b0ec98cef86e688dd8187cb4368559 +Author: Andrea Cosentino +Date: Wed Jun 10 12:09:28 2020 +0200 + + Fixed extensions documentation link in create new extension docs + +commit 624729ec2f69664a5bcf6adcdca3659cae26f753 +Author: Andrea Cosentino +Date: Wed Jun 10 12:02:17 2020 +0200 + + Fixed how to build link in create new extension guide + +commit 5f080c4c5db8546d402a9ae2001f7bd3c0195479 +Merge: 0c2a8d69ff 619e9e6bbf +Author: Andrea Cosentino +Date: Wed Jun 10 11:34:36 2020 +0200 + + Merge pull request #1330 from apache/index.adoc-quarkus-contr-guide + + Fixed contributor guide index.adoc links + +commit 619e9e6bbf0803a5681f54fa2776320640564047 +Author: Andrea Cosentino +Date: Wed Jun 10 11:33:51 2020 +0200 + + Fixed contributor guide index.adoc links + +commit 0c2a8d69ff16f94b967d95d234f79127b86d8ff4 +Author: JiriOndrusek +Date: Mon Jun 8 08:44:57 2020 +0200 + + Debezium tests fail on Quarkus Platform in native mode #1311 + +commit a9ee1d1321463448fefa28978269fd14f3975e75 +Author: Galder Zamarreño +Date: Wed Jun 10 08:00:06 2020 +0200 + + Add servlet-api to classpath to help pointsto analysis #1319 + + * No classes in the jar will make it to the native image, + it's just to help the reflection JVMCI layer of pointsto analysis. + +commit ab77bde17c7d266a66a5b00de4de79d2071c56a5 +Author: James Netherton +Date: Wed Jun 10 08:53:18 2020 +0100 + + Fix incorrect extensionDir path + +commit 9eb6425c866dc87bebf69455113a442a22531ba2 +Author: James Netherton +Date: Wed Jun 10 07:59:41 2020 +0100 + + Avoid duplicate feature registration of camel-support-debezium + +commit fbfd543c357ebb41aab14f87143ffcb2df8b2d3a +Merge: ef7a4edffb 6129dd382d +Author: Andrea Cosentino +Date: Wed Jun 10 09:33:01 2020 +0200 + + Merge pull request #1327 from apache/contributor-guide-links + + Fixing the contributing guide links in README.adoc + +commit 6129dd382d0be4d8f6d09ac9729fd64587e1d846 +Author: Andrea Cosentino +Date: Wed Jun 10 09:32:49 2020 +0200 + + Fixed link in README.adoc + +commit 120da190aa7f3b89f27fdb2694383941854c8fa1 +Author: Andrea Cosentino +Date: Wed Jun 10 09:30:34 2020 +0200 + + Fixing the contributing guide links in README.adoc + +commit ef7a4edffbb498734375a94f569ff74760ea2a09 +Author: aldettinger +Date: Mon Jun 8 19:17:52 2020 +0200 + + Added couchdb consumer support in native mode #1022 + +commit 929a7a3957c1ce4aba2a4a8b9947bb06215c9f3e +Merge: 6b558ecc70 f675b1b2f8 +Author: Andrea Cosentino +Date: Mon Jun 8 19:28:39 2020 +0200 + + Merge pull request #1318 from ppalaga/i1314 + + Fix #1314 Make Kudu native test runnable on Quarkus Platform on Java … + +commit f675b1b2f843aab591e3ef46c59ccea12c055660 +Author: Peter Palaga +Date: Mon Jun 8 15:14:32 2020 +0200 + + Fix #1314 Make Kudu native test runnable on Quarkus Platform on Java 8 and 11 + +commit 6b558ecc704ad16ef99f90a1bdaa4814bf7d8b91 +Merge: 5987807d05 54b820d8a7 +Author: Andrea Cosentino +Date: Mon Jun 8 14:34:18 2020 +0200 + + Merge pull request #1317 from apache/aws2-translate + + Aws2 translate + +commit 54b820d8a7b373f89a11f2d0c3c4362f15bc9424 +Author: Andrea Cosentino +Date: Mon Jun 8 11:51:47 2020 +0200 + + AWS2-Translate extension: Regen yaml + +commit a417015b7bdf3fbc528c1fddf2ee6df0545009a8 +Author: Andrea Cosentino +Date: Mon Jun 8 11:46:04 2020 +0200 + + Added AWS2-Translate native extension + +commit 5987807d057ab40cd2dfd7b3b3256a051a5764a5 +Author: Peter Palaga +Date: Fri Jun 5 14:15:48 2020 +0200 + + Leverage cq:promote when porting extensions from JVM to native + +commit b99d04289c172e33e41883a48594cc602e8c75dc +Author: Peter Palaga +Date: Fri Jun 5 14:54:06 2020 +0200 + + Set proper parent in JVM extensions + +commit df0a5ca98f60e2d759e01340477369b2c7288a2b +Merge: 3f7174194c e4c4c9a7c1 +Author: Andrea Cosentino +Date: Fri Jun 5 16:30:25 2020 +0200 + + Merge pull request #1315 from apache/native-fix-link + + Fixed link in Debezium-sqlserver extension + +commit e4c4c9a7c1b196da4ef399399a3f4491f426beae +Author: Andrea Cosentino +Date: Fri Jun 5 16:29:45 2020 +0200 + + Fixed link in Debezium-sqlserver extension + +commit 3f7174194cf4bc041908273d8d73d117a2d03e68 +Merge: 7abe84e79f 7c1b0ddd10 +Author: Andrea Cosentino +Date: Thu Jun 4 14:32:32 2020 +0200 + + Merge pull request #1305 from ppalaga/200604-unrevert-java-8 + + Revert #1299 require Java 11 + +commit 7abe84e79f6278556ef2a8ebf970212703c87915 +Merge: e7374e2957 eb86e562b2 +Author: Andrea Cosentino +Date: Thu Jun 4 14:17:29 2020 +0200 + + Merge pull request #1306 from apache/aws2-ec2-ext + + Add AWS2-EC2 native extension + +commit e7374e29572c34bdd6f2bb45c68f4761a1fe0800 +Merge: 3b7fbdd419 e7c996d8fd +Author: Nicola Ferraro +Date: Thu Jun 4 12:49:09 2020 +0200 + + Merge pull request #1307 from nicolaferraro/pgp + + chore(pgp): update pgp key for Nicola Ferraro + +commit 3b7fbdd41933b9daa7e241085c0a68cc8a2de56c +Merge: 72c86f369e e1e2b476d6 +Author: Andrea Cosentino +Date: Thu Jun 4 12:15:36 2020 +0200 + + Merge pull request #1304 from ppalaga/200603-debezium-mssql + + Fixup #1193 Debezium SQL Server Connector native support + +commit e7c996d8fd07af22243be2f9fabbf8f81773f2e4 +Author: Nicola Ferraro +Date: Thu Jun 4 12:12:52 2020 +0200 + + chore(pgp): update pgp key for Nicola Ferraro + +commit eb86e562b29dc8aa1883e2440b485ee0abaf69ef +Author: Andrea Cosentino +Date: Thu Jun 4 11:48:26 2020 +0200 + + Regen aws2 ec2 quarkus-extension.yaml + +commit 8f82a02a4a952240a4bbfb36870456be23ebcceb +Author: Andrea Cosentino +Date: Thu Jun 4 11:44:20 2020 +0200 + + Added AWS2-EC2 native extension + +commit 7c1b0ddd10e1e64e152bfba2aac899cd3412e7f5 +Author: Peter Palaga +Date: Thu Jun 4 11:22:22 2020 +0200 + + Revert #1299 require Java 11 + +commit e1e2b476d6a9859c09c92c275d02f6d5ff3fdd8a +Author: Peter Palaga +Date: Wed Jun 3 14:38:10 2020 +0200 + + Fixup #1193 Debezium SQL Server Connector native support + +commit 72c86f369ec12b2e933e5d268fbdbcfc7721c316 +Author: lburgazzoli +Date: Wed Jun 3 13:31:54 2020 +0200 + + Regen + +commit 01929781aa4580a89af6cd464dc12a2654b50647 +Author: lburgazzoli +Date: Mon Jun 1 16:27:36 2020 +0200 + + Create extension for camel-openapi-java #1281 + +commit a3629989db32fc9f3ac72967f42c8a77c5b2f454 +Author: Peter Palaga +Date: Wed Jun 3 11:49:16 2020 +0200 + + Fix #1299 Require Java 11 + +commit 1ff3411bf4c9c333be6a1222ba5d160423a3d6b2 +Author: Peter Palaga +Date: Wed Jun 3 11:14:06 2020 +0200 + + Regenerate MySQL Debezium docs; fixup 8022c77 + +commit d07e2a5ec7dc964c660dde3d7edc2cc1a3be9fdc +Author: Peter Palaga +Date: Wed Jun 3 11:11:05 2020 +0200 + + Fix #1225 Remove mongodb from BOM after upgrade to Quarkus 1.5.x + +commit 1587909d87ca422d1ec32eefdebb272a59233d48 +Author: Peter Palaga +Date: Wed Jun 3 10:56:38 2020 +0200 + + Fix #1222 Revert workaround for @EnabledIf after upgrade to Quarkus 1.5.x + + This reverts commit 08e65aea9aa2058a3f286cec00fa01d0bce3d882. + +commit 7c1de37e299fb0e5b8a35baf5622ce8ae89c9f56 +Author: JiriOndrusek +Date: Thu May 28 14:08:20 2020 +0200 + + Debezium SQL Server Connector native support #1193 + +commit 8c4d478bd5d7618f415dca63326850bdb0ea57c1 +Author: Galder Zamarreño +Date: Tue Jun 2 11:46:20 2020 +0200 + + Enable SSL for Azure extension #1269 + +commit f74227dff7ad3dead27fa43eb5b1d50971ac45a0 +Author: Peter Palaga +Date: Tue Jun 2 16:40:50 2020 +0200 + + Remove a workaround comment where it is not a workaround anymore + +commit c63e4193d452710ca0718d119da94cf85f119357 +Author: Peter Palaga +Date: Tue Jun 2 16:10:05 2020 +0200 + + Set camel-quarkus-last-release: 1.0.0-CR2 in antora.yml + +commit 34440418bcf55a46c714ec195fc64331d55cff43 +Author: Peter Palaga +Date: Tue Jun 2 16:08:48 2020 +0200 + + Improve MySQL Debezium docs + +commit a5b587e795ccde66e8e2ad5c5a285dd91440d0a3 +Author: James Netherton +Date: Tue Jun 2 12:13:10 2020 +0100 + + Remove superfluous metrics dependencies from OpenTracing extension + +commit 498d6b568484684ed5a0e6356e89e5b9184db07a +Author: lburgazzoli +Date: Mon Jun 1 14:20:54 2020 +0200 + + Drop the Jaxb based XMLRoutesDefinitionLoader #1291 + +commit ea5144c2cb3d5e12d9018c1dacd1dda578c843de +Author: Nicola Ferraro +Date: Mon Jun 1 12:25:13 2020 +0200 + + Fix #1288: automatically set content-length or chunked on platform-http replies + +commit f06b2fb4a7a08b52903f08e07f8615381a9d2ab6 +Author: lburgazzoli +Date: Mon Jun 1 12:26:07 2020 +0200 + + Add rest and restapi to the list of discoverable factories #1287 + +commit 0e717c2b6d77b3663028b9fc74553cca7249828a +Author: Luca Burgazzoli +Date: Sat May 30 18:16:35 2020 +0200 + + chore(deps): update testcontainers to v1.14.3 (#1279) + +commit a1ee5910c5df06f7df2037072a5ea87c1852272e +Author: lburgazzoli +Date: Fri May 29 15:53:34 2020 +0200 + + extension dependencies issue #1275 + +commit 2d2eeefecbdc0fa34b936c207d5f3ec59edc69be +Author: James Netherton +Date: Fri May 29 06:48:21 2020 +0100 + + Stub Jira endpoints for integration testing + +commit 6a8bc7a608bc0dea522a064cf5a0613c60a4c7b6 +Author: Peter Palaga +Date: Wed May 27 14:54:05 2020 +0200 + + [maven-release-plugin] prepare for next development iteration + +commit 17ef03cb632124c24ee7800135d0426f06bf6a8e (tag: 1.0.0-CR1) +Author: Peter Palaga +Date: Wed May 27 14:53:02 2020 +0200 + + [maven-release-plugin] prepare release 1.0.0-CR1 + +commit 048d22658292f001374606ee51b28ff7a318e1fd +Author: Peter Palaga +Date: Wed May 27 14:42:04 2020 +0200 + + Fixup #1192 Debezium MySQL + +commit 739f0c5380c46325d83b7f720ac249410eb0006d +Author: Peter Palaga +Date: Wed May 27 13:00:24 2020 +0200 + + Upgrade to qpid-jms 0.15.0 + +commit d141411397538000947e30aca5febdce597f7a4b +Author: Peter Palaga +Date: Wed May 27 12:51:37 2020 +0200 + + The next release will be 1.0.0-CR1 + +commit 0becc5cf634b45195ecaaba3a61707549a4dd901 +Author: Peter Palaga +Date: Wed May 27 12:34:26 2020 +0200 + + Add Peter Palaga's PGP key + +commit ad79b99743f38fd87973005938dd7dd1e3cf2b98 +Author: JiriOndrusek +Date: Fri May 22 09:45:01 2020 +0200 + + Debezium MySQL Connector native support #1192 + +commit 79209709fc4d077a21704be04f7753347b47a52c +Author: James Netherton +Date: Wed May 27 08:44:18 2020 +0100 + + Upgrade Quarkus to 1.5.0.Final + +commit be350d305dfacc663e87dc31f7d1e52a4f8ac524 +Author: Peter Palaga +Date: Tue May 26 13:35:50 2020 +0200 + + Fix #1208 Use influxdb 2.18 as in Camel 3.3.0 + +commit 16e74602f74700af34e1969741284102a96d27a3 +Author: Claus Ibsen +Date: Wed May 27 07:56:35 2020 +0200 + + CAMEL-15115: website - Quarkus Extensions List Table should be similar to Camel components table + +commit b3d0946e71d041d98d96a471f9bc3081b31d4252 +Author: Claus Ibsen +Date: Wed May 27 07:56:21 2020 +0200 + + CAMEL-15115: website - Quarkus Extensions List Table should be similar to Camel components table + +commit 60d9b22b4c5ea886ab36775f666e91a0ad281385 +Author: lburgazzoli +Date: Tue May 26 13:57:06 2020 +0200 + + Remove camel-rest workaround as the fic for the issue is included in Apache Camel 3.3.0 + +commit 2b0fd99beaf65e29104a968d86cd3ea45908cf52 +Author: Peter Palaga +Date: Mon May 25 12:12:53 2020 +0200 + + Make sure all extensions present in the List of extensions page have an extension page + +commit 015e13deeb36d4bb695b771a65791d5ceabb3b35 +Author: Peter Palaga +Date: Fri May 22 14:42:11 2020 +0200 + + Status badges on extension pages + +commit b6d82093ad21051bc6cc0af4827aed92354739d0 +Author: Peter Palaga +Date: Fri May 22 10:17:43 2020 +0200 + + Split doc pages to user-guide and contributor-guide directories and set redirects + +commit 1053f6d67179e58d2be683efc538f81f3ff6c30a +Author: Peter Palaga +Date: Fri May 22 09:45:52 2020 +0200 + + Fix #1255 Document how extension pages are generated + +commit 82de7b52d9a51f771794dc037f0c3988534aec70 +Author: Peter Palaga +Date: Thu May 21 23:11:58 2020 +0200 + + Re-generate quarkus-extension.yaml files + +commit 0ee95d5f0f7fde524397b1d184e083ca1879a122 +Author: Peter Palaga +Date: Thu May 21 23:02:34 2020 +0200 + + Fix #1243 Document how quarkus-extemsion.yaml is generated + +commit f9a50ce4caac88d121d4beed37b3b06c7d1d041a +Author: Peter Palaga +Date: Thu May 21 17:29:58 2020 +0200 + + #1232 Generate missing extension pages using update-extension-doc-page mojo + +commit ee95707119b27f9a93425ffedb338c5434fbe5a7 +Author: Peter Palaga +Date: Thu May 21 17:20:59 2020 +0200 + + #1232 Migrate existing extension pages to update-extension-doc-page mojo + +commit e0ac7cc2e69daa534e53a6d001b96c01ad71959a +Author: James Netherton +Date: Thu May 21 12:52:59 2020 +0100 + + Handle cases where branch-commit property is empty due to bad rebase + +commit 16a2adbda4808af3a04b7371456e533cf14468ed +Author: Peter Palaga +Date: Thu May 21 10:53:38 2020 +0200 + + Fixup Debezium PostgresSQL Connector native support #1191 + +commit f70e74f5601619bba2c2e59b76545590873339ad +Author: Peter Palaga +Date: Thu May 21 09:57:07 2020 +0200 + + Upgrade to Quarkus 1.5.0.CR1 + +commit 14dbc8e7992bc8cec57ca9412553a148e6067c8a +Author: James Netherton +Date: Mon Apr 27 08:15:05 2020 +0100 + + Fix CamelContextCustomizerTest compilation errors + +commit f282a957361b25005af4879e15f4a9f47f8488bd +Author: James Netherton +Date: Thu Apr 23 15:08:53 2020 +0100 + + Register required AHC classes for runtime initialization + + Fixes #1126 + +commit 7d5d932b2d882ccb39f23008dffdf6dd220e24d1 +Author: James Netherton +Date: Thu May 21 08:05:17 2020 +0100 + + Automatically cancel redundant workflow runs + +commit 49cb943b6772c177f06fd492d8189f9ef17b3832 +Author: Peter Palaga +Date: Wed May 20 22:12:19 2020 +0200 + + Enable update-extension-doc-page mojo in newly scaffolded extensions + #1232 + +commit 786c86b18ab5ab9a3b053578b883e639253537e5 +Author: Peter Palaga +Date: Wed May 20 16:01:40 2020 +0200 + + Fix #1232 Per-extension documentation pages + +commit 17c9d0d39d9a76bc796ca6dd7ce9734fc7d250af +Author: James Netherton +Date: Wed May 20 13:13:08 2020 +0100 + + Use random port for quarkus.http.test-ssl-port + +commit 6b01c12514571fa3fbb221f6599149430d73f4db +Author: James Netherton +Date: Wed May 20 07:04:55 2020 +0100 + + Add support for MicroProfile Fault Tolerance + + Fixes #1234 + +commit 34298befa20efd20b4927cb34528b08328cb064b +Author: JiriOndrusek +Date: Thu May 14 15:56:48 2020 +0200 + + Debezium PostgresSQL Connector native support #1191 + +commit a97b3d126f5d9b4d88bd4b01ea4cef71d21eb35b +Author: aldettinger +Date: Wed May 20 16:06:22 2020 +0200 + + Disabled Kudu itests on JRE 8 as not supported + +commit 35f77ad3f8987dbcf08be8c8f55aa4d9db84755e +Author: aldettinger +Date: Wed May 20 13:32:28 2020 +0200 + + Restored Kudu IT tests and added a troubleshooting section #1206 + +commit ab447399c172e2f77ef20c79b3dcabce21640b13 +Author: James Netherton +Date: Wed May 20 06:58:49 2020 +0100 + + Add MongoDB GridFS native support + + Fixes #932 + +commit 4c4b8c475d37ef2be10f17d1dcce5db75642d748 +Author: aldettinger +Date: Mon May 4 13:39:03 2020 +0200 + + Added native support for avro dataformat #1180 + +commit ec50694209902a4a8db6a7785f6b9d1120f55cf6 +Author: Peter Palaga +Date: Mon May 18 22:55:45 2020 +0200 + + Reduce the number of Qute component dependencies + + Esp. do not pull camel-test and camel-bom + +commit 7c44880d8a54df3018eab776629e9c77881a0ee9 +Author: James Netherton +Date: Tue May 19 07:48:53 2020 +0100 + + Use valid git config for github-actions bot user + +commit bcc062efa35482c1bc828aa003fbe1eafcccf0ac +Author: Amos Feng +Date: Tue May 19 12:53:46 2020 +0800 + + Fix #1212 - Add the allowTemplateFromHeader option in the qute component (#1241) + +commit 2a8b78b63e6e717a80b08a65f9d44b7f6a9e0a1f +Author: Peter Palaga +Date: Mon May 18 18:54:13 2020 +0200 + + Remove duplicate kubernetes-client.version property + +commit 7a1067d4c18752710513806721e9af9daf88997a +Author: James Netherton +Date: Mon May 18 15:05:21 2020 +0100 + + Reformat BOM dependencies & test category items + +commit de1649265c525c2a382e05bfaa2a766214addfe1 +Author: James Netherton +Date: Mon May 18 14:39:57 2020 +0100 + + Add REST OpenApi native support + + Fixes #1235 + +commit 692e5bf402b31e380fb9bae3f21e1bcccf6fe699 +Author: Peter Palaga +Date: Mon May 18 12:17:32 2020 +0200 + + Fixup Improve Quarkus metadata + +commit 0daf5b77f25998b4887e68bcc7d100b065e85a46 +Author: Peter Palaga +Date: Wed May 13 14:22:03 2020 +0200 + + Follow the existing naming convention in SAP NetWeaver test artifactId + +commit 13b4eb1dea7d648acb4e41b30c4617b39a59e6db +Author: Andrea Cosentino +Date: Sat May 16 09:20:35 2020 +0200 + + Bump Testcontainers to version 1.14.2 + +commit 8888ad53fe9c9ac35da10fa3bda646cdbb317495 +Author: Peter Palaga +Date: Fri May 15 13:34:18 2020 +0200 + + Improve Quarkus metadata + +commit 8f39b68e281cb0687f8776d2f15da5df2f02e50b +Author: James Netherton +Date: Fri May 15 14:03:50 2020 +0100 + + Remove Elasticsearch Rest doc title fix + + Fixes #1167 + +commit b91b101835e7620b3d17468f853bbf988a15cb06 +Author: James Netherton +Date: Fri May 15 13:55:21 2020 +0100 + + Test Azure extension with Azurite + + Fixes #1072 + +commit b2aa1e50599434762a58cb50307cca0fdd0b63ad +Author: Peter Palaga +Date: Fri May 15 14:20:17 2020 +0200 + + Run the CI on Java 14 instead of Java 12 + +commit 44eb2e81c4e81a4dd74c7c79ad96e0525f910567 +Author: Peter Palaga +Date: Fri May 15 10:30:55 2020 +0200 + + Upgrade to Spring 5.2.6.RELEASE to align with Camel 3.3.0 + +commit a47f1248ee12d3f6ad2e5e10c55d642193e88372 +Author: Peter Palaga +Date: Fri May 15 10:29:03 2020 +0200 + + fail-fast: false for Java 8 and 12 + +commit c658f7eb2da3a679d586e6311151374014ebadcb +Author: Peter Palaga +Date: Wed May 13 19:03:17 2020 +0200 + + Simplify Maven mojos after the upgrade to Camel 3.3.0 + +commit 2e8074b58399bd73d33f81727d2da47cfe205dd8 +Author: Peter Palaga +Date: Tue May 12 13:43:54 2020 +0200 + + Fix #1161 ClassNotFoundException JAXBContext in camel-core-impl + +commit 2539e327fca837e27c6977bfe8655f77eeb6e856 +Author: James Netherton +Date: Tue Apr 14 09:34:35 2020 +0100 + + Upgrade to Camel 3.3.0 + +commit bc0d7e67432025e7f032e6fbb479b1628fcb7e29 +Author: Peter Palaga +Date: Mon May 11 17:21:06 2020 +0200 + + Follow Camel with the kubernetes-client version + +commit b36fce46a8215b04e549189becc8ba6f5a2b545c +Author: Peter Palaga +Date: Mon May 11 16:29:05 2020 +0200 + + Pin influxdb on 2.17 to workaround #1208 + +commit 112871b13bee3e121dcf7bec260032a49315e209 +Author: Peter Palaga +Date: Fri May 8 10:10:59 2020 +0200 + + Manage MongoDB driver JARs to avoid conflicts between Camel and Quarkus + +commit 7ebda03a5372f6598ac3e685e05b0b8376baf55d +Merge: d41007ed43 08e65aea9a +Author: Guillaume Nodet +Date: Wed May 13 23:46:40 2020 +0200 + + Merge pull request #1221 from gnodet/fhir-itest-issue + + Workaround for quarkusio/quarkus/issues/9273 + +commit 08e65aea9aa2058a3f286cec00fa01d0bce3d882 +Author: Guillaume Nodet +Date: Wed May 13 18:04:55 2020 +0200 + + Workaround for quarkusio/quarkus/issues/9273 + +commit d41007ed43552442fbed3e38915c1b628a4b65eb +Author: lburgazzoli +Date: Tue May 12 15:58:20 2020 +0200 + + Introduce RuntimeCamelContextCustomizerBuildItem to allow to customize the camel context before it is started + +commit 349cbb2751277d2f141fece74a36cabe5a59156c +Author: lburgazzoli +Date: Tue May 12 16:13:57 2020 +0200 + + Remove core-impl integration test as we cover camel-cloud test through consul extension + +commit 0ba02e5d5478606b894fef2ac634accfb314a07b +Author: lburgazzoli +Date: Tue May 12 16:12:30 2020 +0200 + + Remove 'core' prefix for main related integration tests modules + +commit c22f737cd8a67643b2c3d3feaa761ad8a3b65447 +Author: lburgazzoli +Date: Tue May 12 14:28:11 2020 +0200 + + Rename test support extension to a more meaningful name + +commit 40c25e7eb334ab3c668bcdc7ae2af4f60e33ed28 +Author: Peter Palaga +Date: Tue May 12 13:57:41 2020 +0200 + + Do not use version literals in BOMs + +commit efd90b11cabcb9c0920b591ce0b06c335e6ad57f +Author: lburgazzoli +Date: Tue May 12 12:50:09 2020 +0200 + + Move SPI related classes to the SPI package + +commit 07d7692afc82ddb752b911b42f214fd177478234 +Author: lburgazzoli +Date: Tue May 12 12:47:18 2020 +0200 + + Move support classes to util package + +commit cbf8837d90e646960d1055bb0200788f1fb2faea +Author: lburgazzoli +Date: Tue May 12 12:37:07 2020 +0200 + + Move core build items to a SPI package + +commit de7854f267982680f273e61693b9d03ce56a4e8a +Author: Galder Zamarreño +Date: Thu Apr 30 12:01:40 2020 +0200 + + Allow formatter to be skipped + +commit b04e1a6c2590de009d87e3f60a87d476feb1d045 +Author: Galder Zamarreño +Date: Wed Apr 29 10:27:54 2020 +0200 + + Add jaxb as dependency to workaround issue #1161 + +commit 49946324d4c2864077d70564f8fb75d07dd4171b +Author: aldettinger +Date: Mon May 11 12:28:12 2020 +0200 + + Disabled Kudu itests as testcontainer is not able to bridge master and tablet server container on some platforms/configurations fixes #1026 + +commit a76dc0d052361d9d9dfc14acae6e574d5fc18773 +Author: lburgazzoli +Date: Mon May 11 08:55:00 2020 +0200 + + Move integration-tests support modules out of integration-tests folder + +commit 123a3b54e40eae7dfea036efa0455fb4d5e2a2f5 +Merge: 147d58b8bb cc8f5e2d63 +Author: Andrea Cosentino +Date: Sun May 10 21:22:42 2020 +0200 + + Merge pull request #1204 from ppalaga/200509-idiomatic-mustache-tests + + Idiomatic Mustache test + +commit cc8f5e2d63d60ce22d82db90dbbee74a481c63c0 +Author: Peter Palaga +Date: Sat May 9 10:11:39 2020 +0200 + + Idiomatic Mustache test + +commit 147d58b8bb0b9395cf4c99e84f81dbfe3e7cd8b8 +Author: Peter Palaga +Date: Fri May 8 18:44:52 2020 +0200 + + Do not skip tests in native jobs using -DskipTest it skips also + integration tests, not only JVM tests + + This reverts commit 310277c04ef11db70a276c5a92b913c7508b3600. + +commit a8abd91fbc2894aab8f7d594e071c2611ed0ad85 +Author: lburgazzoli +Date: Thu May 7 23:42:34 2020 +0200 + + ftp: remove redundant build items + +commit aa5363af7d37caf8bfc37192a279002dc14f7d90 +Merge: 310277c04e 617c132b70 +Author: Andrea Cosentino +Date: Fri May 8 11:12:38 2020 +0200 + + Merge pull request #1202 from lburgazzoli/caffeine-lru + + fix caffeine-lrucache modules name + +commit 310277c04ef11db70a276c5a92b913c7508b3600 +Author: Peter Palaga +Date: Thu May 7 22:14:21 2020 +0200 + + Skip JVM mode tests in the native jobs + +commit be22af523002a92bb621023573e80fc9e732bd62 +Author: Peter Palaga +Date: Wed May 6 15:29:00 2020 +0200 + + Import software.amazon.awssdk:bom instead of managing the items individually + +commit 617c132b702a7b287df0aa49ff791aeffd294f60 +Author: lburgazzoli +Date: Fri May 8 08:16:41 2020 +0200 + + fix caffeine-lrucache modules name + +commit c1be036d758e18273ae641b32fee6a00da24d879 +Author: Peter Palaga +Date: Thu May 7 17:36:23 2020 +0200 + + Set a shorter TTL on HTTP connections to match Azure NAT policy and avoid Maven Central download issues + +commit fc9845f7ca147700e5e518a0e0617ee532c7ebb2 +Author: Peter Palaga +Date: Thu May 7 15:41:37 2020 +0200 + + Use artifact uploads/downloads instead of cache to pass Maven repo to dependent CI jobs + +commit f4af30d78c9b543bbeab2c5743266714d4ef9383 +Author: James Netherton +Date: Thu May 7 14:57:23 2020 +0100 + + Ensure consistent itest name tag + +commit 04d7871f3aa52404dfb9291cd2fa8c4c5fe7aad4 +Author: James Netherton +Date: Wed May 6 15:39:38 2020 +0100 + + Fix ClassNotFoundException when using quartz extension + + Fixes #1195 + +commit 1812b1b3b37dd67c54122553eca7e49fe53175ff +Merge: 8021c933b3 e6326b9cb6 +Author: Andrea Cosentino +Date: Wed May 6 09:21:57 2020 +0200 + + Merge pull request #1189 from apache/ssl-aws2 + + AWS2-Commons extensions: Added back SSL Native support + +commit e6326b9cb6a9c744517246d79144ccc8e81e2306 +Author: Andrea Cosentino +Date: Wed May 6 09:12:14 2020 +0200 + + Fixed CS + +commit 8c67eb35c7f00360f80a9ca877150bae6ae1337a +Author: Andrea Cosentino +Date: Wed May 6 08:31:10 2020 +0200 + + AWS2-Commons extensions: Added back SSL Native support + +commit 8021c933b307d12923060131c872df50b7c7888b +Author: Peter Palaga +Date: Tue May 5 22:23:50 2020 +0200 + + Display free disk space after archiving local Maven repo in quarkus-master + +commit ac7db2123875a0456c86c52225651a6134018a30 +Merge: 61ea8e4d09 265eaf5d63 +Author: Andrea Cosentino +Date: Tue May 5 21:11:47 2020 +0200 + + Merge pull request #1186 from apache/aws2-code-cleanup + + AWS2 Extensions cleanup + +commit 61ea8e4d0995d7312da815782e794df60330f4d9 +Author: Peter Palaga +Date: Tue May 5 18:04:24 2020 +0200 + + Add branch commit to the intergration build failure report + +commit 265eaf5d6325bbb1f2c3d005999d507d6d05cf2b +Author: Andrea Cosentino +Date: Tue May 5 16:41:16 2020 +0200 + + Code cleanup: AWS2-SQS extension + +commit ed18b8873263254ef0b87d0f6a9c50eff682b780 +Author: Andrea Cosentino +Date: Tue May 5 16:40:34 2020 +0200 + + Code cleanup: AWS2-SNS extension + +commit 1160ef2d99acead62f4657412bd4cdd1a1477af7 +Author: Andrea Cosentino +Date: Tue May 5 16:39:35 2020 +0200 + + Code cleanup: AWS2-S3 extension + +commit 2464fcd11e472b05f6b10ec003a1133723303963 +Author: Peter Palaga +Date: Tue May 5 15:54:33 2020 +0200 + + Fix #1182 ASM Unsupported api 524288 after the upgrade to Gizmo 1.0.3 + +commit 12fbf15665f33e7a66114e7175a557ed116dae7b +Author: Peter Palaga +Date: Tue May 5 16:12:07 2020 +0200 + + Build Quarkus master faster with -Denforcer.skip -Dquarkus.build.skip -DskipDocs + +commit ad133ab6bd721017f4fe88dcd920503b7b89d0bf +Author: James Netherton +Date: Tue May 5 12:24:31 2020 +0100 + + Upgrade Quarkus to 1.4.2.Final + +commit 50b10024b6b19ab237e14dab8338d82e002f7cf0 +Author: lburgazzoli +Date: Mon May 4 08:21:33 2020 +0200 + + chore: suppress unchecked call wrning + +commit 02449238dc3645dcebfb9dd969fdac105250433d +Author: lburgazzoli +Date: Mon May 4 08:20:57 2020 +0200 + + chore: idiomatic use of builder + +commit 8daf843494a0282e5d46b63d6d14e0348dee35a3 +Author: lburgazzoli +Date: Mon May 4 08:10:28 2020 +0200 + + chore: replace deprecated methods + +commit 8b865a1e2b41ea3028fb8fe469b2e30a72423704 +Author: James Netherton +Date: Tue May 5 07:38:34 2020 +0100 + + Replace hard coded native test categories with dynamic lookup + +commit 83cda81e806f928889ee4bd0f63c28f021bf5a43 +Author: Peter Palaga +Date: Mon May 4 12:55:30 2020 +0200 + + Fix #1177 Add simple timer dev mode test + +commit 7fd6ac4957413ed5f77ee5ea355547cbea9dbc6e +Author: aldettinger +Date: Mon May 4 13:47:06 2020 +0200 + + Fixed the jvm8 build #1157 + +commit 7e781256d71040ee5e8d3dfa89ac62213731ffcc +Author: aldettinger +Date: Mon May 4 14:01:47 2020 +0200 + + Fixed the promote JVM Only extension to native guide + +commit 83e269d731d3403d5c2cf479adf7efbcd1e21f1e +Author: aldettinger +Date: Mon May 4 10:33:52 2020 +0200 + + Dropped JDK 8 itests infrastructure for Kudu extension #1157 + +commit aa61c73da9a917623a59e2ebfe680f7b3c520d37 +Author: Andrea Cosentino +Date: Sat May 2 08:54:22 2020 +0200 + + Bump Jandex to version 1.0.8 (#1172) + +commit e797254a76c62408a9ac61a915e2e5461faa44b8 +Merge: d67b571a71 baaa61c9d4 +Author: Andrea Cosentino +Date: Thu Apr 30 08:38:42 2020 +0200 + + Merge pull request #1170 from apache/1.0.0-M7-1 + + Bump Camel-Quarkus last release to 1.0.0-M7 + +commit baaa61c9d4026486f44f0ab411a8ceedd91067f4 +Author: Andrea Cosentino +Date: Thu Apr 30 08:33:22 2020 +0200 + + Bump Camel-Quarkus last release to 1.0.0-M7 + +commit d67b571a71b6f6d488d3b0773b5f182b4062f5b8 +Author: Peter Palaga +Date: Wed Apr 29 16:24:36 2020 +0200 + + Fix #1153 Import camel-quarkus-bom-test into camel-quarkus-build-parent-it + +commit 6fab85ab7620b4e931976cfed9fe1d83f178d8f1 +Author: James Netherton +Date: Wed Apr 29 15:43:57 2020 +0100 + + Improve Elasticsearch Rest test method name + +commit 59257bf82d18d0e0d7fbc276c8c8b330e34e9e0b +Author: aldettinger +Date: Wed Apr 29 16:16:20 2020 +0200 + + Ensure unlisted is not present while promoting a JVM only extension to native + +commit 62d2b10b24802a008419a8fcded4defe11db8c4c +Author: James Netherton +Date: Wed Apr 29 13:12:23 2020 +0100 + + Add native support for Elasticsearch REST + + Fixes #896 + +commit 391496348e7e83966713ba1eb502f020c6c3f5e4 +Author: James Netherton +Date: Wed Apr 29 11:24:36 2020 +0100 + + Upgrade Quarkus Qpid JMS to 0.14.1 + +commit 1d87d96772b5bdaee81c13dbb17ca517113e0bbd +Author: Andrea Cosentino +Date: Sun Apr 26 09:33:56 2020 +0200 + + Upgrade Activemq to version 5.11.12 + +commit ca780713cd66ba747ac6cc4d97901da84d345052 +Author: Peter Palaga +Date: Tue Apr 28 18:29:52 2020 +0200 + + Update the release guide + +commit 9b4e70173eec39f4a36ca496569b143e77e051cb +Author: Peter Palaga +Date: Tue Apr 28 16:15:53 2020 +0200 + + Fix #1156 #1155 Skip unnecessary tasks during release:prepare and + release:perform + +commit 668d7db286b11e99905c39a743048be3827895b0 +Author: Peter Palaga +Date: Tue Apr 28 15:07:14 2020 +0200 + + Do not sign twice during releases + +commit a399235272ef9515b18613717667df097da517c5 +Author: Peter Palaga +Date: Tue Apr 28 12:59:19 2020 +0200 + + Fix #1154 Generating JavaDoc is slown on Java 11 + +commit f850a1aa6e117e9b26d32fa700e8a6b8a161d1c6 +Author: Peter Palaga +Date: Tue Apr 28 11:51:10 2020 +0200 + + Bump firstVersion to 1.0.0-M8 + +commit c8df0fc7aca88a5785b81956806b88494c330876 +Author: lburgazzoli +Date: Tue Apr 28 09:15:27 2020 +0200 + + deps: update kotlin to v1.3.72 + +commit 44fb006bf001ca3b987d8c0c9e8db1852c405664 +Author: aldettinger +Date: Mon Apr 27 09:38:17 2020 +0200 + + Added JDK11 support to the Kudu container-based itests infrastructure #1132 + +commit 9bf6102a73c48b92ff66ec73c6a09ee68e24ca01 +Author: James Netherton +Date: Mon Apr 27 17:05:40 2020 +0100 + + Improve master -> camel-master sync workflow + +commit 49acf424296ebbeec513459006747b071a32498c +Author: lburgazzoli +Date: Mon Apr 27 08:30:15 2020 +0200 + + build: create build-parent-it pom to collect common integration tests set-up + +commit f0acd30656c1fc39db3966f3ef5516bd3da6c28f +Author: lburgazzoli +Date: Mon Apr 27 21:58:09 2020 +0200 + + Revert "[maven-release-plugin] prepare for next development iteration" + + This reverts commit f85703af5b57ea3ce31fa6e7fb29438489380082. + +commit 467448e7aa1d27e01bf914587c7b69d447008b7c +Author: lburgazzoli +Date: Mon Apr 27 21:58:04 2020 +0200 + + Revert "[maven-release-plugin] prepare release 1.0.0-M7" + + This reverts commit 1d33382f3268204f350904a9c7529e2b405abf39. + +commit bdec550d01f1af22e7380855e8ff0c8f7c2e26b1 +Author: lburgazzoli +Date: Mon Apr 27 21:57:58 2020 +0200 + + Revert "[maven-release-plugin] prepare for next development iteration" + + This reverts commit fefef494417b64ae164c3bf9bfa1b3c80b55b30c. + +commit fefef494417b64ae164c3bf9bfa1b3c80b55b30c +Author: lburgazzoli +Date: Mon Apr 27 13:44:42 2020 +0200 + + [maven-release-plugin] prepare for next development iteration + +commit 1d33382f3268204f350904a9c7529e2b405abf39 +Author: lburgazzoli +Date: Mon Apr 27 13:44:07 2020 +0200 + + [maven-release-plugin] prepare release 1.0.0-M7 + +commit f85703af5b57ea3ce31fa6e7fb29438489380082 +Author: Andrea Cosentino +Date: Mon Apr 27 07:47:00 2020 +0200 + + [maven-release-plugin] prepare for next development iteration + +commit b508ea12e8173d82fca3b9cc0ee8c11646f33769 +Merge: d820c96969 89050779d1 +Author: Andrea Cosentino +Date: Fri Apr 24 19:46:14 2020 +0200 + + Merge pull request #1147 from lburgazzoli/camel-quarkus-1.4.1.Final + + Update quarkus to v1.4.1.Final + +commit 89050779d14aa91c90feed852eada68e47da1ded +Author: lburgazzoli +Date: Fri Apr 24 17:51:55 2020 +0200 + + Update quarkus to v1.4.1.Final + +commit d820c969690883fa596930b5cbcb6a723ef244da +Author: Andrea Cosentino +Date: Fri Apr 24 16:17:37 2020 +0200 + + Bump Testcontainers to version 1.14.1 + +commit 0f8271653aaf6d9ab1658dff416b35b448ac81e5 +Author: James Netherton +Date: Fri Apr 24 13:15:02 2020 +0100 + + Disable Hystrix tests in CI environment + +commit 10060d5165c065d11f4e3ec2dfa7343f7300a8c0 +Author: James Netherton +Date: Fri Apr 24 10:18:36 2020 +0100 + + Upgrade Quarkus Qpid JMS to 0.14.0 + +commit 4173600c599abd0492303a0c6b48b94169d4af31 +Author: Claus Ibsen +Date: Fri Apr 24 15:09:37 2020 +0200 + + Update cdi.adoc + +commit 125c6efac8dcc692c70a9b0082e2f008a1a23682 +Author: Andrea Cosentino +Date: Fri Apr 24 08:32:23 2020 +0200 + + Bump Github-api to version 1.111 + +commit 99e27df145cef147cfb0bff6acde608c3da4f0fd +Author: James Netherton +Date: Fri Apr 24 07:56:14 2020 +0100 + + Exclude docs module from quarkus-master sync build + +commit 798fb0b7999946a91d1452a4fd4829fd5e293c5f +Author: lburgazzoli +Date: Thu Apr 23 21:24:17 2020 +0200 + + chore: move infinispan integration tests to the appropriate category + +commit 64f41d50e7dc72bb7c1235e8c017519e66494594 +Author: lburgazzoli +Date: Thu Apr 23 21:21:09 2020 +0200 + + chore: make native test quarkus categories easier to read on github + +commit 10a5fd2e645d73a2213fe7f03b51f57497f7b072 +Author: lburgazzoli +Date: Thu Apr 23 17:14:35 2020 +0200 + + Update quarkus to v1.4.0.Final + +commit 336438da6d6044a302f51b225ba8825b042eda5f +Author: David Jencks +Date: Wed Apr 22 22:36:07 2020 -0700 + + move attribute to component descriptor, update to antora 2.3.0, fix asciidoc error, use recommended playbook name + +commit d2d52b8d80d2d9cf33c4996d709c71d509bba781 +Author: Andrea Cosentino +Date: Thu Apr 23 16:57:17 2020 +0200 + + Added an AWS2-CW native extension + +commit 2b545a07fd9841d6e4c167cabe8ef7c72638eb4c +Author: Andrea Cosentino +Date: Thu Apr 23 12:52:31 2020 +0200 + + Removed RELEASING.adoc in the root folder + +commit 3699b49d8cf0550b1847b247daf89e550be85497 +Author: Andrea Cosentino +Date: Thu Apr 23 12:52:04 2020 +0200 + + Added release guide to the documentation + +commit 9a56eb2dedaddfa3d499d1eefdc9a8010ce2d822 +Author: James Netherton +Date: Thu Apr 23 11:29:32 2020 +0100 + + Move CI doc page under contributor guide + +commit 6b4ded9d670972c387b88fbd0a73576c87cfb1f8 +Author: James Netherton +Date: Thu Apr 23 10:36:02 2020 +0100 + + Add a doc page to describe the CI setup + +commit a279c9d4e9ac00374870e3cbf5f9701a66050504 +Author: Andrea Cosentino +Date: Thu Apr 23 11:18:33 2020 +0200 + + Fixed wrong repository to point for releasing + +commit 8ee6614c7318cb28e486b6a56726aeee9591fcca +Author: James Netherton +Date: Thu Apr 23 07:13:57 2020 +0100 + + Improve master -> quarkus-master branch scheduled synchronization workflow + +commit cd05a73a67d68a2c7645d8d08517e90ebca9897a +Author: James Netherton +Date: Wed Apr 22 12:53:32 2020 +0100 + + Trigger project build on push + +commit 79467fac62d9b1db0f0644a6c240668deece9b8c +Author: James Netherton +Date: Wed Apr 22 17:19:21 2020 +0100 + + Fix Kudu native build on JDK 11 + + Fixes #1121 + +commit 9e3bb403252e84b9f82dff3f758fd01d871b74e8 +Author: aldettinger +Date: Thu Apr 16 10:45:48 2020 +0200 + + Added native support for Kudu extension #1097 + +commit 1abe10cc9c7b2f23f662b46b679093be47fb4c69 +Author: lburgazzoli +Date: Tue Apr 21 18:47:39 2020 +0200 + + Dynamic endpoint cannot be resolved properly (toD) #1116 + +commit aae4f6d13ad3dbf750a34d9d756c37ff2085816c +Author: lburgazzoli +Date: Tue Apr 21 11:54:06 2020 +0200 + + Paho extension native support for Websocket Connections #1109 + +commit 560693171cfbcdc34b0c021e632552666d0925af +Author: lburgazzoli +Date: Tue Apr 21 08:09:21 2020 +0200 + + Read lock options for files are ignored #1105 + +commit e90944a16558f9492a5e0e677a183cf23f39ad53 +Author: Philippe Schaller +Date: Sun Apr 19 17:19:47 2020 +0200 + + Add integration test for a read lock on minimal length of a file + +commit 8dbb3d78b612baeb9c6b9e4826a064e454a808e3 +Author: Philippe Schaller +Date: Fri Apr 17 16:22:01 2020 +0200 + + Client defined folders for file-watch tests + +commit 116da7fa7714c399dcafe30c9e3f6dfbba86955c +Author: James Netherton +Date: Mon Apr 20 08:18:25 2020 +0100 + + Remove unneccessary reflective class registration for camel configuration + + Fixes #843 + +commit bf415291188cd779263b6b060771306bea67a7a8 +Author: Peter Palaga +Date: Fri Apr 17 11:16:40 2020 +0200 + + Regenerate the list of extensions + +commit 2616d1ac309f7bab4412f16c6b93300b91bd547e +Author: Peter Palaga +Date: Fri Apr 17 11:15:53 2020 +0200 + + Simplify the Catalog related code after the upgrade to Camel 3.2.0 + + This is allowed by https://github.com/apache/camel/pull/3695 + +commit 29043c45ef14cdedbdcfca5a93c04094a1b28edf +Author: Amos Feng +Date: Mon Apr 13 10:39:05 2020 +0800 + + Fix #984 introduce the CamelContextCustomizerBuildItem + +commit 8028be01dd6f832a5c8c7900f7d9edd032fd845a +Author: James Netherton +Date: Thu Apr 16 07:16:08 2020 +0100 + + Kubernetes extension native support + + Fixes #1039 + +commit 4efc88ec612b95d8ba12cb0c0db3e3995a6de810 +Author: Andrea Cosentino +Date: Thu Apr 16 16:47:10 2020 +0200 + + Added an AWS2 SNS extension (#1100) + + * Added an AWS2 SNS extension + + * AWS2-SNS: First version is 1.0.0-M6 + + * Added comment on aws2-* application.properties + +commit 0a98a75f62e2dfc8853e8754defee6b4bf770782 +Author: Zoran Regvart +Date: Thu Apr 16 16:16:28 2020 +0200 + + Fixes broken link + +commit 007304b78eaba32355e6c937139d05f32506189d +Author: Peter Palaga +Date: Thu Apr 16 11:14:15 2020 +0200 + + Docs navigation improvements, docs wording + +commit 85e87b5fa5b1a42bf0f34636d296be55c0ce706e +Merge: 00b8f50126 8dc50f3ec6 +Author: Andrea Cosentino +Date: Thu Apr 16 10:18:44 2020 +0200 + + Merge pull request #1096 from apache/quarkus-antora + + Fixed Typo in the antora.yml file + +commit 8dc50f3ec60b2673a4f6f4354ba5526d334327a5 +Author: Andrea Cosentino +Date: Thu Apr 16 09:47:29 2020 +0200 + + Fixed Typo in the antora.yml file + +commit 00b8f50126ea24b4eb31dfbad3e20c8b97b07cff +Merge: d0291d332c ae4e2ac789 +Author: Andrea Cosentino +Date: Wed Apr 15 21:13:43 2020 +0200 + + Merge pull request #1093 from apache/aws2-support-extension + + Introducing an AWS2 support extension + +commit ae4e2ac78961707c07b401113b1396ccca2a144f +Author: Andrea Cosentino +Date: Wed Apr 15 18:57:13 2020 +0200 + + Lets move the checkclasspath and serviceProviderBuildItem in AWS2-commons support extension + +commit 13a2a251deb2c9c5312b20f15f795037ea542813 +Author: Andrea Cosentino +Date: Wed Apr 15 18:36:09 2020 +0200 + + No need for jackson-cbor + +commit 11692e961ba1a9d3b1b5acf69be6b1c419cb562f +Author: Andrea Cosentino +Date: Wed Apr 15 17:10:11 2020 +0200 + + Introducing an AWS2 support extension + +commit d0291d332ce549b1ced8868e77b408dd7654d25d +Merge: 7da7ce71cf ef011288ef +Author: Andrea Cosentino +Date: Wed Apr 15 18:04:57 2020 +0200 + + Merge pull request #1091 from jamesnetherton/fix-amqp-native-test + + Fix AMQP tests hanging in CI environment + +commit 7da7ce71cfb6edd143820ef0324c80beac88013c +Author: JiriOndrusek +Date: Wed Apr 8 16:52:29 2020 +0200 + + InfluxDB native support #1036 + +commit ef011288efffe0f541191c7b0d4f2cb6363df674 +Author: James Netherton +Date: Wed Apr 15 14:51:03 2020 +0100 + + Fix AMQP tests hanging in CI environment + +commit 20d5d58a943d9eda5a2266cf54977119998e2ef3 +Author: James Netherton +Date: Wed Apr 15 12:08:24 2020 +0100 + + Add missing dependencies for OpenTracing extension to work around quarkusio/quarkus#8578 + +commit 2574671fc22c4e554a16cd5ec055ca3f40993e04 +Author: James Netherton +Date: Wed Apr 15 09:52:58 2020 +0100 + + Reinstate MongoDB extensions + + Fixes #1064 + +commit 2f261e4c1470303f3e371f35dd39410c96923e23 +Author: James Netherton +Date: Wed Apr 15 09:52:48 2020 +0100 + + Try to capture some debugging info for AMQP CI failures + +commit 16b1db7db8c607778a275cafd9d7eb58407dda0f +Author: James Netherton +Date: Wed Apr 15 09:45:31 2020 +0100 + + Upgrade Quarkus to 1.4.0.CR1 + +commit 05a0f54516ba55b1f6782159f9c5a753701917b5 +Author: Claus Ibsen +Date: Wed Apr 15 08:17:57 2020 +0200 + + Update readme for example + +commit 5e9b19cb36043e9a7547e6f8defdacd8a4c5ac8a +Author: Claus Ibsen +Date: Tue Apr 14 20:03:11 2020 +0200 + + Polish example readme + +commit 4e3613ed56152cf77257c83f820d8d4d1932ea5b +Author: Claus Ibsen +Date: Tue Apr 14 20:00:48 2020 +0200 + + Fixed quarkus welcome page in example + +commit 71a5de5e1610da7d6bc5170497473bc5c03cdc47 +Merge: a7a5c23a7a ce98d832e3 +Author: Andrea Cosentino +Date: Tue Apr 14 19:26:43 2020 +0200 + + Merge pull request #1085 from apache/aws2-s3 + + AWS2 S3 native extension + +commit a7a5c23a7a8f4ed551f9c4819b1c2aa243a39859 +Author: Claus Ibsen +Date: Tue Apr 14 17:23:46 2020 +0200 + + Polish examples + +commit ce98d832e362b8cb7e347342ff375b2bd88f545b +Author: Andrea Cosentino +Date: Tue Apr 14 17:16:19 2020 +0200 + + Added a line to restart job + +commit 7995af2c03623d962e9ec4ac6f8c1bcedcb863d6 +Author: Andrea Cosentino +Date: Tue Apr 14 16:02:55 2020 +0200 + + Removed not needed options in application.properties for AWS2 integration tests + +commit fbb70123c2203dc49f054cbf063b971d188c7f6c +Author: Andrea Cosentino +Date: Tue Apr 14 15:51:44 2020 +0200 + + Added an AWS2-S3 native extension + +commit c6c745e557ed0469ba64de05285cf6620922c6cc +Merge: e350ab9d5b 8b269b8078 +Author: Andrea Cosentino +Date: Tue Apr 14 14:47:47 2020 +0200 + + Merge pull request #1082 from apache/jackson-2.10.3 + + Upgrade Jackson to version 2.10.3 to align with Camel version used + +commit e350ab9d5b70bb4952ff64b34e74dd0170153821 +Author: aldettinger +Date: Tue Apr 14 14:32:16 2020 +0200 + + Fixed typos in the native promotion guide + +commit 8b269b8078f3abc618a47513603e30f4bb162f68 +Author: Andrea Cosentino +Date: Tue Apr 14 12:59:38 2020 +0200 + + Upgrade Jackson to version 2.10.3 to align with Camel version used + +commit 5130b3024f6f43e7e4b9757b609ba0d052235569 +Author: Claus Ibsen +Date: Tue Apr 14 12:46:32 2020 +0200 + + http-log example (#1079) + + * http-log example + + * Add license header + + * Add some scripts for the example + + * Turn off banner + + * Fix license header + +commit f3e76c27acca9bb38c022440a3d076f2e8aaf0f8 +Author: aldettinger +Date: Tue Apr 14 10:21:40 2020 +0200 + + Updated Gson integration tests with fix from Camel 3.2 #776 + +commit b549f71f02db510e217432ec98548c26860443a1 +Merge: f2f7af7f43 bd8d17d83a +Author: Andrea Cosentino +Date: Tue Apr 14 10:20:00 2020 +0200 + + Merge pull request #1081 from apache/testcontainers-1.14.0 + + Upgrade to Testcontainers 1.14.0 + +commit f2f7af7f43f15d2a5387c8aad220db90a2956752 +Author: Peter Palaga +Date: Tue Apr 14 10:09:15 2020 +0200 + + Bump firstVersion to 1.0.0-M7 + +commit bd8d17d83aff2490d636f6c85a5e81ae499b62a7 +Author: Andrea Cosentino +Date: Tue Apr 14 08:46:43 2020 +0200 + + Upgrade to Testcontainers 1.14.0 + +commit 6c2595c4fdda5c8ae6e1a3d78fdbcba770585ee0 +Author: Claus Ibsen +Date: Mon Apr 13 11:46:55 2020 +0200 + + The JAXB dependency is no longer needed for this example + +commit 78063f111f371c87754d7f0005c102aefa7686d4 +Author: Claus Ibsen +Date: Mon Apr 13 11:39:35 2020 +0200 + + Polished + +commit fcb9d4b46b83992f9679c825dda69d2f17b1c432 +Merge: a4b68e956e c1f4053b10 +Author: Andrea Cosentino +Date: Sun Apr 12 15:27:14 2020 +0200 + + Merge pull request #1073 from apache/camel-quarkus-1.0.0-M6 + + Bump to Camel Quarkus 1.0.0-M6 + +commit c1f4053b10a4e4eaaf5915922f47434d4d353f7a +Author: Andrea Cosentino +Date: Sun Apr 12 15:23:50 2020 +0200 + + Bump to Camel Quarkus 1.0.0-M6 + +commit a4b68e956e2e766d770d09f6c1f875e2ffc96cfa +Merge: c768e3ca9f a12ec82d1e +Author: Andrea Cosentino +Date: Fri Apr 10 21:41:28 2020 +0200 + + Merge pull request #1070 from apache/aws2-sqs + + Add a native extension for AWS2-SQS + +commit a12ec82d1e15f971dbc248537c930120462dcf80 +Author: Andrea Cosentino +Date: Fri Apr 10 19:38:27 2020 +0200 + + Added extension to pom.xml and format + +commit 863979f3b7ad8f6d4dfa51002453859438891efb +Author: Andrea Cosentino +Date: Fri Apr 3 17:05:27 2020 +0200 + + Add a native extension for AWS2-SQS + +commit c768e3ca9f994bf1fb9d4ddc3813512e25c58a1b +Merge: a10da6dc99 d21d1fc83d +Author: Andrea Cosentino +Date: Fri Apr 10 17:31:08 2020 +0200 + + Merge pull request #1068 from rimshach/patch-1 + + Sidebar menu tidy up names-14567 + +commit d21d1fc83daa7be87417fae4f36549dc78d55ba3 +Author: rimshach <44733143+rimshach@users.noreply.github.com> +Date: Fri Apr 10 19:32:36 2020 +0500 + + Sidebar menu tidy up names-14567 + +commit a10da6dc99aba2602a48acba510f4bff7811018a +Author: lburgazzoli +Date: Thu Apr 9 21:42:19 2020 +0200 + + Revert dependency patch after Camel 3.2 upgrade #1040 + +commit a16e12e958bc6f234bb79b92d8d0d96c564db510 +Author: lburgazzoli +Date: Thu Apr 9 21:39:36 2020 +0200 + + Remove platform-http workaround when upgrading camel to 3.2.0 #1013 + +commit 352130c0ebe39ad275ed5ae9b85269e98244d079 +Author: lburgazzoli +Date: Thu Apr 9 21:38:13 2020 +0200 + + Remove bytecode transormation to remove dependencies on jaxb in RestBindingReifier as it has been implemented in core + +commit d1f6247aa42826160f2dcc572c9e9e5f7496d54f +Author: lburgazzoli +Date: Thu Apr 9 21:15:09 2020 +0200 + + Move spring's kotlin processors and substitutions to a dedicated file + + As the number of kotlin related substitutions and processing logic + seems to grow, it is better to move them to a separate file/class + to make it easier to locate kotlin specific logic. + +commit ae77a295afd2127b3201510216341cb0d2e568d5 +Author: lburgazzoli +Date: Wed Apr 8 17:11:34 2020 +0200 + + Use test resources instead of system properties for easy testing within the quarkus platform + +commit 19878fa007af5a3f7c5b034708a89d061270f72f +Author: lburgazzoli +Date: Thu Apr 9 19:04:46 2020 +0200 + + Add workaround for kotlin.reflect.KFunction + +commit e2fd08c695f8a81d3a38c0b5294fe67d4f9dde62 +Author: lburgazzoli +Date: Thu Apr 9 18:00:21 2020 +0200 + + chore(build): cleanup infinispan integration test pom after the switch to testcontainers + +commit 5007659f714681f70be2c60ed59c2aafc6091440 +Author: lburgazzoli +Date: Thu Apr 9 17:59:09 2020 +0200 + + chore(build): remove duplicated groovy-maven-plugin definition + +commit f2afc47632a9761b002c5a891c67d72eaa24913b +Author: lburgazzoli +Date: Thu Apr 9 17:54:12 2020 +0200 + + Register both fields and methods from RoutesBuilder as need to be accessible by the bean post processor to properly support camel's DI + +commit 70ac49c61b37bdefb8548bf05d867f54b5467a0e +Author: lburgazzoli +Date: Thu Apr 9 17:45:44 2020 +0200 + + Add workaround for kotlin.reflect.KFunction + +commit a58312c61a438fa1adb03e13ddddc1887df365a5 +Author: lburgazzoli +Date: Thu Apr 9 16:36:36 2020 +0200 + + Use testcontainers to test activemq to reduce dependencies + +commit 98251964659e096e2facd50c114c7c75b41fe96e +Author: lburgazzoli +Date: Thu Apr 9 16:04:51 2020 +0200 + + Workaround for ActiveMQ broker JMX + +commit 8e3e5293ea113c1837e0b4aeb9c36102c5732a66 +Author: lburgazzoli +Date: Thu Apr 9 15:03:08 2020 +0200 + + Temporary disable mongo ITs + +commit a896d501e2998770b1306c7f1a1d4a934746112d +Author: lburgazzoli +Date: Thu Apr 9 15:01:34 2020 +0200 + + Add workaround for kotlin.reflect.KCallable + +commit e3c0961a3ecfbaf9c879d4378573ce6f0d432422 +Author: lburgazzoli +Date: Thu Apr 9 13:56:15 2020 +0200 + + Re-enable build steps to register discovered services for reflection + +commit 0e112f23d1e9387d921bad8bce9b0069ce6a806b +Author: Peter Palaga +Date: Thu Apr 9 11:20:18 2020 +0200 + + Properly avoid adding the mongo itest to camel-quarkus-test-list.xml used by Quarkus Platform + +commit 1f3c1385b79b6f8ca25d109db4aa8c4ca06cd5d1 +Author: Peter Palaga +Date: Thu Apr 9 11:10:11 2020 +0200 + + Avoid adding the mongo itest to camel-quarkus-test-list.xml used by Quarkus Platform + +commit 5256065b9bacb5534cb764735858e341fcd4dc24 +Author: James Netherton +Date: Thu Apr 9 09:39:44 2020 +0100 + + Align Spring version with Camel + +commit 4895109726a8162a9b9601c3fa3a22b2af0e078c +Author: James Netherton +Date: Thu Apr 9 08:11:57 2020 +0100 + + Use version property for threetenbp + +commit 92df9f7aed091dba4ce46963d352a906d093acf2 +Author: James Netherton +Date: Thu Apr 9 07:50:22 2020 +0100 + + Disable debezium-mongodb until mongodb extension is enabled again + +commit 388c02215bffa7bd2dde4a3562a211f2bb5ee7f0 +Author: James Netherton +Date: Thu Apr 9 07:49:49 2020 +0100 + + Fix formatting and missing license headers + +commit dd02663b25270f9c29d5552f0981697802c2b9fa +Author: Guillaume Nodet +Date: Thu Apr 9 10:12:44 2020 +0200 + + Fix syntax in the kt examples + +commit 577edbd729434b0c5e60bfb9524047a3f362e532 +Author: James Netherton +Date: Thu Apr 9 07:11:57 2020 +0100 + + Fix profile activation for PR validation workflow + +commit a94fcca655355e0caafed2cf0d990e94d223754b +Author: Guillaume Nodet +Date: Wed Apr 8 16:39:32 2020 +0200 + + Upgrade to camel 3.2.0 + +commit b115aeb9eba459abb63a0c3fdcb972b896e5013e +Author: James Netherton +Date: Wed Apr 8 17:05:47 2020 +0100 + + Use TrustStoreResource in Olingo4 test + + Fixes #1061 + +commit 96fc78b8f3996a9f420a193748a59025e85bbc8f +Author: James Netherton +Date: Wed Apr 8 15:39:12 2020 +0100 + + Do not skip tests for native builds + +commit 07a646157a4e7001cc19828f45a2d07544a83d1a +Author: James Netherton +Date: Wed Apr 8 14:57:48 2020 +0100 + + Build Quarkus master branch instead of relying on indeterminate SNAPSHOT versions + +commit 4ab3eed2f4d9e6546e993c25f6071ab5d01409e4 +Author: James Netherton +Date: Wed Apr 8 14:56:17 2020 +0100 + + Try to work around SNAPSHOT download issues with maven.wagon.http.retryHandler.count + +commit 80fbec12616be95843d55e004505a77af4e649a9 +Author: James Netherton +Date: Wed Apr 8 14:55:24 2020 +0100 + + Split SNAPSHOT repository activation into separate profiles + +commit 2789123a603807d6c9f76a35d056e8e9b1f87779 +Author: Zoran Regvart +Date: Wed Apr 8 12:17:56 2020 +0200 + + fix: use `xref` to link pages + + We need to use `xref` to link between pages. + + See: https://docs.antora.org/antora/2.2/asciidoc/page-to-page-xref/ + +commit cf73b948f3bb755eb567fb6399d89fc9d83fb45f +Author: Zoran Regvart +Date: Wed Apr 8 12:02:00 2020 +0200 + + fix: heading anchor id + + When pointing to anchors via `some.adoc#anchor` either naming the anchor or making sure that the generated anchor ID is used prevents us from creating broken links. + + See: https://asciidoctor.org/docs/asciidoc-syntax-quick-reference/#block-id-role-and-options + +commit 7afcc90cc57a4ad42faddb3f20a824d6791f4b48 +Author: Andrea Cosentino +Date: Wed Apr 8 10:58:19 2020 +0200 + + [maven-release-plugin] prepare for next development iteration + +commit 7df40a395267d7706371d971a3dd1fce1adfd55c +Author: Andrea Cosentino +Date: Wed Apr 8 10:57:45 2020 +0200 + + [maven-release-plugin] prepare release 1.0.0-M6 + +commit f9e7fab5847666e63a0c6dc98ad68e66d7bc89cb +Merge: f2f03eb337 0657e0fec5 +Author: Andrea Cosentino +Date: Wed Apr 8 09:55:57 2020 +0200 + + Merge pull request #1056 from apache/quarkus-1.3.2 + + Bump Quarkus to version 1.3.2.Final + +commit f2f03eb3375f4ed07c57196f3223f014751c7020 +Author: aldettinger +Date: Tue Apr 7 19:27:30 2020 +0200 + + Moved the guide to promote a JVM Only extension to native to a dedicated page #1021 + +commit 0657e0fec559fe4a5ed8d82a628127ad184b939b +Author: Andrea Cosentino +Date: Wed Apr 8 07:19:39 2020 +0200 + + Bump Quarkus to version 1.3.2.Final + +commit 3fe59a585913ceeeb4e04c6f53ea83e00cb94808 +Author: aldettinger +Date: Tue Apr 7 17:45:27 2020 +0200 + + Completed the contributor guide with a section to promote JVM Only extension to native #1021 + +commit aec6abb3c6d7c4936d3297c252e7c5f43be4c468 +Author: James Netherton +Date: Tue Apr 7 12:59:52 2020 +0100 + + Split sync of branches into their own workflows + +commit b81911586019150442c379cf354e73961e44818c +Author: James Netherton +Date: Tue Apr 7 12:58:52 2020 +0100 + + Create cache for each workflow run + +commit b67a822e4251020ee98158b457822429127da2a3 +Author: James Netherton +Date: Tue Apr 7 11:42:38 2020 +0100 + + Fix up SAP Netweaver itest module name + +commit 836445bb9814cd8640b8fa5f455a330929eeb5e5 +Author: James Netherton +Date: Tue Apr 7 11:32:13 2020 +0100 + + Webhook component support + + Fixes #820 + +commit a67ab397a7b65b85265567f7a047087dcc9b516d +Author: Peter Palaga +Date: Tue Apr 7 09:52:04 2020 +0200 + + Fix #853 NoDefaultServletTest cannot find property quarkus.camel.servlet.url-patterns + +commit 98215fd88b807e7cf7755220c829338c99bce0e3 +Author: Peter Palaga +Date: Tue Apr 7 09:43:57 2020 +0200 + + Fix #854 CustomDefaultServletClassTest Failed to index: + org.apache.camel.quarkus.component.servlet.test.CustomServlet + +commit 229bd6cd79fef53888ab4719c4621841f3898649 +Author: lburgazzoli +Date: Tue Apr 7 08:57:39 2020 +0200 + + Update groovu to v3.0.2 + +commit d9a1ba939770e12ec372f0cd2dcf82f28c16d55a +Author: lburgazzoli +Date: Mon Apr 6 18:32:07 2020 +0200 + + BeanInfo::getImplClazz can be null for primitives or arrays + +commit bb650651ad1b2ec4fc3fe571106c117426dc9c62 +Author: lburgazzoli +Date: Mon Apr 6 16:58:13 2020 +0200 + + TrustStoreResource does not work on Java 11 #852 + +commit 55a2622870d8f148ff331f0b88897047fcffede5 +Author: James Netherton +Date: Mon Apr 6 12:47:00 2020 +0100 + + SAP NetWeaver native support + + Fixes #956 + +commit 22b75409034d5360a2bc83475c7e75a861d90af7 +Author: James Netherton +Date: Mon Apr 6 07:40:39 2020 +0100 + + Fix intermittent failure of messaging tests + + Fixes #1023 + +commit fcbd1108cd521eba19a3e2071742c67bc09f05df +Author: Peter Palaga +Date: Wed Apr 1 09:30:48 2020 +0200 + + Fix #706 Improve RuntimeCatalogConfig docs + +commit 935b6db285802164aecd5e32b2b8d936ccc9c9ff +Merge: d668d45cfa 7d43c6f0e3 +Author: Andrea Cosentino +Date: Fri Apr 3 15:42:11 2020 +0200 + + Merge pull request #1030 from apache/aws-swf + + AWS-SWF: Make the extension native + +commit d668d45cfa64926ef3289e04b15ad53ecf703283 +Author: Peter Palaga +Date: Fri Apr 3 11:00:00 2020 +0200 + + Revisit #1017 Be even less intrusive when registering our TransformerFactory + +commit 7d43c6f0e3d1b5e8d3202cf1b4eb4475982af751 +Author: Andrea Cosentino +Date: Fri Apr 3 14:07:43 2020 +0200 + + AWS-SWF: Make the extension native + +commit f90ab2d2395f3e4c549fea0bd23c62066607970f +Author: James Netherton +Date: Thu Apr 2 19:38:22 2020 +0100 + + Temporarilly disable JmsTest until #1023 is fixed + +commit 53f1b7769bc6ec07833c0bd160db81f607971eb4 +Author: lburgazzoli +Date: Thu Apr 2 23:10:49 2020 +0200 + + chore(xslt): cleanup and small fix + +commit 4ac50435688e8a74b433f85e42999cf6168f4abd +Author: Peter Palaga +Date: Thu Apr 2 16:08:23 2020 +0200 + + Fix #1017 Do not hardcode the TransformerFactory implementation irreversibly + +commit e6b741f6a6364bd0305218b39ac8814811312cf2 +Author: aldettinger +Date: Fri Mar 27 09:16:10 2020 +0100 + + Added native support for Couchdb extension in producer mode #989 + +commit 3dac577db369d33922b0f750a12fd03a3df3d770 +Author: Andrea Cosentino +Date: Thu Apr 2 16:40:50 2020 +0200 + + Camel-AWS-SDB: Make the extension Native + +commit bcb6a891a4ff9e99d719230770f68ff2855a75db +Author: lburgazzoli +Date: Thu Apr 2 16:15:42 2020 +0200 + + chore: small cleanup + +commit 3d8ac9ac7f4d1e43b01e4a6a50979c052443a143 +Author: lburgazzoli +Date: Thu Apr 2 14:39:20 2020 +0200 + + Use testcontainer to test camel infinispan extension to reduce test dependencies on infinispan + +commit c3ef475aa92c3acb26d16aa9f77ace9e2788c063 +Author: lburgazzoli +Date: Thu Apr 2 10:56:15 2020 +0200 + + Workaround for RestProducer on Java 11 + +commit 075bf62237a2ba16a66069e87d937d07b1b54cf2 +Author: lburgazzoli +Date: Wed Apr 1 17:07:08 2020 +0200 + + camle-tagsoup extension tests fails in native mode on Jdk 11 #1010 + +commit af3bf7a321c188fe877073a718bf6837be37d6b4 +Author: lburgazzoli +Date: Wed Apr 1 17:06:51 2020 +0200 + + Fix findings + +commit 22cb13f633fe694f91c806f38574b0bbcdb82a9e +Author: lburgazzoli +Date: Wed Apr 1 14:18:43 2020 +0200 + + Fix native images issues on Java 11 #1000 #1005 #999 + +commit 346243916ea8d12f881e77cd7a0a15319f7d3411 +Author: lburgazzoli +Date: Wed Apr 1 14:17:58 2020 +0200 + + Set Java 11 as default + +commit e3aaeda009cce6e02cbcdeb5dd92a6e7f9de4e39 +Author: Stuart Douglas +Date: Wed Apr 1 11:42:38 2020 +1100 + + Use ASM to replace a method + +commit 35a29ee0f27976d4d1c2cc67b559b7a41213d931 +Author: lburgazzoli +Date: Wed Apr 1 18:44:40 2020 +0200 + + Workaround for the platform http not be able to handle matchOnUriPrefix + +commit 67d9373f6cc017bc843bcbd1e4c2b0865010e1b8 +Author: Andrea Cosentino +Date: Wed Apr 1 08:27:09 2020 +0200 + + Moved the PR template in the correct location + +commit 4188f4befb8539852e2a4f90890404dc38f050ff +Author: James Netherton +Date: Tue Mar 31 16:25:20 2020 +0100 + + Upgrade Quarkus Qpid JMS to 0.13.1 + +commit 529ac7e2fe18ea883780b15ffb52440c523b6682 +Author: Peter Palaga +Date: Tue Mar 31 17:44:13 2020 +0200 + + Fix #963 Build processor class template may create redundant LOG field + +commit f7c7a6f4db3547955290687d275a6b8ddb1a9b27 +Merge: 017f71e3e6 9173156d01 +Author: Andrea Cosentino +Date: Tue Mar 31 13:57:04 2020 +0200 + + Merge pull request #1004 from galderz/t_caffeine_1003 + + Make consul depend on core-cloud #1003 + +commit 9173156d0105c83cd594340b1202e741a60a3074 +Author: Galder Zamarreño +Date: Tue Mar 31 11:13:30 2020 +0200 + + Make consul depend on core-cloud #1003 + + * This indirectly brings caffeine and solves temporarily the problem. + +commit 017f71e3e62f554beb6569a2d4266f44ce2fd94e +Author: Peter Palaga +Date: Tue Mar 31 08:39:06 2020 +0200 + + New source assembly descriptor and root pom rename (#1002) + + * Fix #844 Duplicate LICENSE(.txt) and NOTICE(.txt) files in the source distribution + + * Fix #1001 Rename the top module from camel-quarkus-parent to camel-quarkus + +commit fcea69282dbef0487988e1647f1c3264bd98d23e +Author: James Netherton +Date: Mon Mar 30 11:35:42 2020 +0100 + + Use ubi-quarkus-native-image:19.3.1-java8 as build image + +commit 4c7b302645ec48910a88a99e6ca9ccce55aa9a93 +Author: James Netherton +Date: Mon Mar 30 09:02:40 2020 +0100 + + Set MAVEN_OPTS for JVM build steps + +commit d96f984b61d8e9b3f9461547368bd48223de9b4c +Author: lburgazzoli +Date: Sun Mar 29 18:04:23 2020 +0200 + + Update maven-jar-plugin to v3.2.0 + +commit 7af5e5a29633fbd50e1c9f78230efad7a238c54b +Author: lburgazzoli +Date: Sat Mar 28 15:35:54 2020 +0100 + + Update Quarkus to v1.3.1.Final + +commit 9f3c133a85bfe0f28868e5570ee608bec2299490 +Author: Galder Zamarreño +Date: Mon Mar 30 10:22:20 2020 +0200 + + Add jaxb dependency #996 + +commit 6f1f35a915e7d82e7a119fbb338f6c827b9b1045 +Author: Tear <53713122+Xxyumi-hub@users.noreply.github.com> +Date: Sat Mar 28 03:11:53 2020 -0400 + + [CAMEL-13704] - Added PR template file with instructions on what to include (#990) + + * Added PR template file with instructions on what to include when submitting a PR + + * Modified PR template file with propsoed changes + +commit d078cb2e74398a234f0acb0e134ddce38bc8e413 +Author: AemieJ +Date: Fri Mar 27 15:23:30 2020 +0530 + + make a tabular list of examples for the examples page + +commit ff7465fb625912d090f3049058453f91ba4911f1 +Author: James Netherton +Date: Thu Mar 26 17:50:06 2020 +0000 + + Add GitHub extension + + Fixes #811 + +commit 11d0386514cc9909491f985a0bb3e5b27de7db44 +Author: Peter Palaga +Date: Thu Mar 26 16:10:02 2020 +0100 + + Fix #253 Build time property to register classes for reflection + +commit a802d4719ec9e1e7ef8f79c4d8b9e900b4bc2013 +Author: Rostislav Svoboda +Date: Thu Mar 26 16:13:59 2020 +0100 + + Update Quarkus extension description for zip-deflater and lzf + +commit 2165e16f8cbda80b3293141594e8d2fcbaf24922 +Merge: b03e4d1df6 56753913b1 +Author: Andrea Cosentino +Date: Thu Mar 26 16:23:54 2020 +0100 + + Merge pull request #983 from ppalaga/200326-config-opts + + Move quarkus.camel.resources.* config options to quarkus.camel.native… + +commit 56753913b14854e572ed73026a94ede09327242e +Author: Peter Palaga +Date: Thu Mar 26 11:53:26 2020 +0100 + + Move quarkus.camel.resources.* config options to quarkus.camel.native.resources.* + +commit b03e4d1df677df62a4f31328917b6cbc7ee71959 (fork/master, fork/avro, fork/as2) +Author: James Netherton +Date: Thu Mar 26 07:57:55 2020 +0000 + + Separate some misc extensions into their own categories + +commit b8135432cb67a4739395671ea98f366d2e252b36 +Author: djencks +Date: Wed Mar 25 09:11:48 2020 -0700 + + Fix asciidoc syntax errors + +commit 3868e805e9c0518be01d7be8fa11ecd809569087 +Author: Peter Palaga +Date: Wed Mar 25 15:39:45 2020 +0100 + + Speedup the Validate PR Style GH workflow by invoking only mvn validate + +commit c0da90ea2eb0706849aa64f9f47bd899df0b7cc9 +Author: Peter Palaga +Date: Wed Mar 25 15:51:57 2020 +0100 + + Fix #976 REST OpenApi support (JVM only) + +commit 17b064ab6ff5c0ab1265048cf2d280c7cd6de69e +Author: James Netherton +Date: Wed Mar 25 14:53:15 2020 +0000 + + Add Google Pubsub extension (JVM only) + + Fixes #808 + +commit 5db4de374bbb01de8f626ec080c2ddb5a82ab764 +Merge: cfec419cc2 3b6abf3892 +Author: Andrea Cosentino +Date: Wed Mar 25 17:11:05 2020 +0100 + + Merge pull request #979 from apache/djencks-contributors-guide-syntax-error-1 + + Fix asciidoc syntax error + +commit 3b6abf38929461e37ef01c5500c33a0f40f84a3b (fork/djencks-contributors-guide-syntax-error-1) +Author: djencks +Date: Wed Mar 25 09:09:12 2020 -0700 + + Fix asciidoc syntax error + +commit cfec419cc2abc19e740e0581bb38291cffb8e97b +Author: Peter Palaga +Date: Wed Mar 25 14:19:35 2020 +0100 + + Fix #965 gRPC support (JVM only) + +commit dcb610a26e22fc9aed199cc264159238d1f6b812 +Author: Peter Palaga +Date: Tue Mar 24 12:15:10 2020 +0100 + + Fix #964 Protobuf dataformat support (JVM only) + +commit f14ce9bf7434b9792e1bcf0689c50421d8a10764 +Author: Peter Palaga +Date: Wed Mar 25 08:44:57 2020 +0100 + + Clean up poms: introduce test BOM, manage only where necessary + +commit 7b3bfb8cbbd8fd02ba5228b15debcbea7e07ef6a +Author: Amos Feng +Date: Wed Mar 25 15:20:05 2020 +0800 + + [camel-servicenow] excludes the javax.xml.ws:jaxws-api and com.sun.xml.messaging.saaj:saaj-impl + +commit 496d68c73798780a7b9e7e6f49b0d3614d3d34fc +Author: Amos Feng +Date: Wed Mar 18 16:44:26 2020 +0800 + + Update to add the camel-servicenow extension + +commit abb274d1d3ecd0aa3458c2ee0628d756d78825d2 +Author: aldettinger +Date: Tue Mar 24 18:26:50 2020 +0100 + + Documented the use of quarkus.camel.resources.*-patterns #961 + +commit 505ae109bb539c1cd24608d0f4552bcdc6337e13 +Author: mmelko +Date: Tue Mar 24 17:48:17 2020 +0100 + + Add Avro Support in JVM + fix #782 + +commit 6aac197a74bdb4be05a54eeb82c828daa8ede5b3 +Author: James Netherton +Date: Tue Mar 24 13:26:48 2020 +0000 + + Add AMQP extension + + Fixes #143 + +commit adeed3f544999f25d5c2786642d3323a67564925 +Author: James Netherton +Date: Tue Mar 24 11:51:53 2020 +0000 + + Remove redundant native profile from kubernetes extension + +commit 87743b8becd93c7ad12a5c6cdc710d0e1497109c +Author: James Netherton +Date: Tue Mar 24 10:07:44 2020 +0000 + + Add Kubernetes extension (JVM only) + + Fixes #303 + +commit bc1343f0696c3ff4cb832443a88a1699556e0358 +Author: Peter Palaga +Date: Mon Mar 23 21:33:36 2020 +0100 + + Fix #959 AWS SimpleDB support (JVM only) + +commit 08d376de5470796de74090c9727b650a4d4bb8ed +Author: Peter Palaga +Date: Mon Mar 23 18:57:26 2020 +0100 + + Fix #958 AWS Simple Workflow (JVM only) + +commit b0600f9f7a637b1a17167f86f7208fcc98739012 +Author: aldettinger +Date: Mon Mar 23 17:37:07 2020 +0100 + + Added config options to select resources for inclusion in native executable #868 + +commit e690a091bd81f93bc8e900cb1e2e6cd6e69e2a1d +Author: Peter Palaga +Date: Mon Mar 23 18:21:54 2020 +0100 + + Fix #936 Warn if JVM only extensions are used in native mode + +commit a14579d7549d5068fc04cfe9cdafd55bd7828d1a +Author: Peter Palaga +Date: Mon Mar 23 12:48:05 2020 +0100 + + Regenerate the list of extensions + +commit 40f806ee326043b04c3cf0c4d3fa117e9fb02e9e +Author: Peter Palaga +Date: Mon Mar 23 11:30:53 2020 +0100 + + Fix #953 AWS 2 Translate support (JVM only) + +commit 4608d1ba31628350c01d8032c2c091a9307a16ad +Author: Peter Palaga +Date: Mon Mar 23 11:29:44 2020 +0100 + + Fix #952 AWS 2 Simple Queue Service support (JVM only) + +commit a96252cdb2884c25c1b221e72e76f4daa707401f +Author: Peter Palaga +Date: Mon Mar 23 11:28:29 2020 +0100 + + Fix #951 AWS 2 Simple Notification System support (JVM only) + +commit 863e518367a3263ad0e4461f37f04e68e92154dc +Author: Peter Palaga +Date: Mon Mar 23 11:26:57 2020 +0100 + + Fix #950 AWS 2 Simple Email Service support (JVM only) + +commit 596a12ecc3144209de82e91cbbf183b596d872dd +Author: Peter Palaga +Date: Mon Mar 23 11:24:01 2020 +0100 + + Fix #949 AWS 2 MSK support (JVM only) + +commit 0e61388802ba7662b48bc678d86ccaf42b400b7f +Author: Peter Palaga +Date: Mon Mar 23 11:22:44 2020 +0100 + + Fix #948 AWS 2 MQ support (JVM only) + +commit c4ad7bfe4d57cb503101f7f88cf18eac9ac8b435 +Author: Peter Palaga +Date: Mon Mar 23 11:20:19 2020 +0100 + + Fix #947 AWS 2 KMS support (JVM only) + +commit 084caf7cb33b0f854b791c975f2caf1687cbaae3 +Author: Peter Palaga +Date: Mon Mar 23 11:18:52 2020 +0100 + + Fix #946 AWS 2 IAM support (JVM only) + +commit 437b7edf43455674818a197cca6f5ecca9c49422 +Author: Peter Palaga +Date: Mon Mar 23 11:16:51 2020 +0100 + + Fix #945 AWS 2 EKS support (JVM only) + +commit ae84718d728b8bf5ce8bc9530361482968e5fbae +Author: Peter Palaga +Date: Mon Mar 23 11:15:01 2020 +0100 + + Fix #944 AWS 2 ECS support (JVM only) + +commit f1abe8c88202d6f3bf4a9a0523f49a51a10c3c4e +Author: Peter Palaga +Date: Mon Mar 23 11:13:39 2020 +0100 + + Fix #943 AWS 2 EC2 support (JVM only) + +commit 9bba969a6a1b40ad7392dbc215643293f7549c14 +Author: Peter Palaga +Date: Mon Mar 23 11:11:33 2020 +0100 + + Fix #942 AWS 2 DynamoDB support (JVM only) + +commit 8e56e4e1860bb70c4898d12fd3c3d1e506a0b262 +Author: Peter Palaga +Date: Mon Mar 23 11:04:43 2020 +0100 + + Fix #941 AWS 2 CloudWatch support (JVM only) + +commit 8231cb27d3b7ad5c95c90aab6abdb7f49c0c5c66 +Author: James Netherton +Date: Mon Mar 23 09:57:36 2020 +0000 + + Add Google BigQuery extension + + Fixes #804 + +commit a08df1ea70e10f070d3625a2fef325bb0951f75d +Author: Peter Palaga +Date: Sat Mar 21 11:49:07 2020 +0100 + + Fix #410 OGNL language support (JVM only) + +commit d4efcf3197fe204c2514934b6958abbaccd56320 +Author: Peter Palaga +Date: Sat Mar 21 11:45:05 2020 +0100 + + Fix #781 Groovy language support (JVM only) + +commit 6043bd809a405dc7eac86d328fa43f8c2ee4571f +Author: Peter Palaga +Date: Sat Mar 21 11:22:44 2020 +0100 + + Fix #937 SAP NetWeaver support (JVM only) + +commit 5a90273eca02834f5f81e69bda41d55bc56dc48b +Merge: b525a2faac ed67409db6 +Author: Andrea Cosentino +Date: Fri Mar 20 13:35:18 2020 +0100 + + Merge pull request #935 from jamesnetherton/quartz-cron + + Add quartz & cron extensions + +commit ed67409db6fa2f9ee71057a9b230b0f843334d9a +Author: James Netherton +Date: Fri Mar 20 10:36:07 2020 +0000 + + Add Cron extension + + Fixes #822 + +commit a5aad8cb595d5c55c556a28ef8a1939db8828f7e +Author: James Netherton +Date: Fri Mar 20 07:36:57 2020 +0000 + + Add Quartz extension + + Fixes #823 + +commit b525a2faacd519d0279377c82c57c044ad70c619 +Author: Peter Palaga +Date: Fri Mar 20 10:10:02 2020 +0100 + + Fix #675 RabbitMQ support (JVM only) + +commit f1104a00b494aa35111c7121538be15dd1f6a115 +Author: Peter Palaga +Date: Fri Mar 20 10:04:26 2020 +0100 + + Fix #931 PubNub support (JVM only) + +commit 8af5644b976db1708880e446e049dc6fe90662e1 +Author: James Netherton +Date: Fri Mar 20 07:48:55 2020 +0000 + + Fix lingering reference to Maven 3.5.3 + +commit 4f2a14eaa8999eff114352d4a02563cc2c0fab22 +Author: James Netherton +Date: Fri Mar 20 07:30:02 2020 +0000 + + OpenStack support (JVM only) + + Fixes #922 + +commit 71e6e7223673811f52975b99a2e9ceaf05527ccd +Author: Peter Palaga +Date: Thu Mar 19 23:26:02 2020 +0100 + + Fix #928 Nitrite support (JVM only) + +commit e6a360c72a0907ab620dd8b81458d00692063df7 +Author: Peter Palaga +Date: Thu Mar 19 23:21:59 2020 +0100 + + Fix #927 MongoDB GridFS support (JVM only) + +commit efdc75d06977c2c87e0da4a0890acce5e0f50e99 +Author: Peter Palaga +Date: Thu Mar 19 23:14:42 2020 +0100 + + Fix #926 Kudu support (JVM only) + +commit 5badb3f9566d09e5aefa5e6d066b223f291b39b3 +Author: Peter Palaga +Date: Thu Mar 19 23:12:34 2020 +0100 + + Fix #925 InfluxDB support (JVM only) + +commit 01d63dc45842ac6181fd8e45aa16ac1e5aed0114 +Merge: 14a2e8669b c10ae9c061 +Author: Andrea Cosentino +Date: Thu Mar 19 17:36:02 2020 +0100 + + Merge pull request #923 from djcoleman/patch-1 + + Updated Maven version in Prerequisites section + +commit c10ae9c0613b4891039e68c784fe12ef4cc26fcd +Author: Darren Coleman +Date: Thu Mar 19 16:28:35 2020 +0000 + + Updated Maven version in Prerequisites section + + The build command fails with the following error when using Maven < 3.6.2: + [ERROR] Failed to execute goal io.quarkus:quarkus-maven-plugin:1.3.0.Final:dev (default-cli) on project camel-quarkus-tutorial: Detected Maven Version (3.5.4) is not supported, it must be in [3.6.2,). + +commit 14a2e8669b67e7b13db4cd6dff9d9cb732b364d9 +Author: lburgazzoli +Date: Thu Mar 19 09:15:42 2020 +0100 + + chore(deprecation): replace usage fo deprecated io.quarkus.vertx.web.deployment.BodyHandlerBuildItem + +commit cd53178dbb212c553387334cf41226c64770fb7e +Author: James Netherton +Date: Thu Mar 19 13:14:17 2020 +0000 + + Use Awaitility to poll for Google calendar deletion + +commit 21b1ddc6aa715f97e9d97821da6f86313a747237 +Author: Peter Palaga +Date: Thu Mar 19 13:07:47 2020 +0100 + + Fix #918 Debezium SQL Server Connector support (JVM only) + +commit b792a740ea393896c83243f2477c8e1764bfd6ee +Author: Peter Palaga +Date: Thu Mar 19 12:52:55 2020 +0100 + + Fix #917 Debezium MySQL Connector support (JVM only) + +commit c0064c4b9543ecf9de4fa523479bf5e68ad39a47 +Author: Peter Palaga +Date: Thu Mar 19 12:36:20 2020 +0100 + + Fix #916 Debezium PostgresSQL Connector support (JVM only) + +commit 1ee7cf768e4f186ad6cc335128ea10cd32bc5250 +Author: Peter Palaga +Date: Thu Mar 19 12:29:14 2020 +0100 + + Fix #915 Debezium MongoDB Connector support (JVM only) + +commit 5dbb79b0248fffb719e578fb5413726f6f061e59 +Author: James Netherton +Date: Thu Mar 19 10:12:12 2020 +0000 + + Add Google Sheets extension + + Fixes #809 + +commit fcda864c160a579c3366fbb5852d26be4da3f888 +Author: James Netherton +Date: Thu Mar 19 08:23:39 2020 +0000 + + Add Google Calendar extension + + Fixes #805 + +commit d603a1e798575a43d21a9b6e14e1e9e4d9c81867 +Merge: d8295ce9fd d612ac3195 +Author: Andrea Cosentino +Date: Thu Mar 19 09:58:53 2020 +0100 + + Merge pull request #912 from lburgazzoli/telegram-test-cleanup + + chore(it): small telegram tests cleanup + +commit d8295ce9fd4a5d9523414a298cd5c28dc130e11d +Author: Peter Palaga +Date: Wed Mar 18 22:55:32 2020 +0100 + + Fix #910 CouchDB support (JVM only) + +commit 6fedae9a8d5b8a68eaf63217c731e510a56eb3cc +Author: Peter Palaga +Date: Wed Mar 18 22:53:37 2020 +0100 + + Fix #910 Couchbase support (JVM only) + +commit 481e6ae0abc03c7356843570be07f2488b0683cd +Author: Peter Palaga +Date: Wed Mar 18 22:50:35 2020 +0100 + + Fix #908 Cassandra CQL support (JVM only) + +commit d612ac319536b26583c4525999f00d23b59174a9 +Author: lburgazzoli +Date: Thu Mar 19 08:29:11 2020 +0100 + + chore(it): small telegram tests cleanup + +commit 107102b1f092086762541aab8498730238541199 +Author: Peter Palaga +Date: Wed Mar 18 21:58:28 2020 +0100 + + Upgrade to cq-maven-plugin 0.2.0 + +commit 360b436ae96e4cdbd3ac3398a13fd49f7af9dec9 +Author: Peter Palaga +Date: Wed Mar 18 17:21:59 2020 +0100 + + Fix #897 List the JVM-only extensions in the docs + +commit a5ba872938e1350bafa5be083881466aa9990755 +Author: James Netherton +Date: Wed Mar 18 16:42:58 2020 +0000 + + Add Google Drive extension + + Fixes #806 + +commit 4a58281b4816c155f9f1c5ea8504324081172243 +Author: James Netherton +Date: Wed Mar 18 13:59:07 2020 +0000 + + Add Google Mail extension + + Fixes #807 + +commit 5bc3404156026e2ef9811f5ba24fb65b2ca31b76 +Author: Peter Palaga +Date: Wed Mar 18 15:01:22 2020 +0100 + + Sort poms using the CQ plugin instead of a groovy script + +commit 636ac1cef84b0bb51db1abd0898cc1af28859ba3 +Author: Peter Palaga +Date: Wed Mar 18 09:51:56 2020 +0100 + + Define our own requireMavenVersion and skip the one in org.apache:apache + +commit 3924e16976d7d4d347c396382f4961766de5a386 +Merge: 8a92c13f8c f8822312e3 +Author: Andrea Cosentino +Date: Wed Mar 18 14:50:36 2020 +0100 + + Merge pull request #902 from ppalaga/i901 + + Fix #901 GraphQLResource should read from the classpath instead from … + +commit f8822312e39115338a9827525aa6646aebce576f +Author: Peter Palaga +Date: Wed Mar 18 11:38:28 2020 +0100 + + Fix #901 GraphQLResource should read from the classpath instead from the filesystem + +commit 8a92c13f8c2363d9436207dbed05dc0f5a009d9c +Merge: 33603d274e 5c54f181ab +Author: Andrea Cosentino +Date: Wed Mar 18 08:37:19 2020 +0100 + + Merge pull request #900 from apache/1.0.0-M5-1 + + Bump to Camel-Quarkus 1.0.0-M5 + +commit 5c54f181ab3f1965691fb97b487ea7c8ac5d2a1b +Author: Andrea Cosentino +Date: Wed Mar 18 08:34:35 2020 +0100 + + Bump to Camel-Quarkus 1.0.0-M5 + +commit 33603d274e086caa48acacb54d6f9f670c993ff3 +Author: Peter Palaga +Date: Mon Mar 16 22:49:01 2020 +0100 + + Fix #894 Elastichsearch Rest support + +commit 93a002d54b1ac4a668b1d71fca45030f2387020d +Author: Peter Palaga +Date: Mon Mar 16 16:42:21 2020 +0100 + + Use the cq-maven-plugin instead of quarkus-maven-plugin for generating new extensions + +commit e0c7b5d15acf562c70cc41bd40b93b23e4ad536e +Author: Peter Palaga +Date: Mon Mar 16 14:24:49 2020 +0100 + + Add JVM-only extensions module + +commit e18af3b69de88639f0d3eb9cf3dec476dafd10e1 +Author: Amos Feng +Date: Thu Mar 12 15:29:58 2020 +0800 + + Update to introduce the quarkus qute in camel extension + +commit dec44cd2bd9ef94b7ac0e6552175956e6e834cff +Merge: 59c85de896 830c6f3675 +Author: Andrea Cosentino +Date: Mon Mar 16 11:18:13 2020 +0100 + + Merge pull request #893 from lburgazzoli/github-888 + + telegram extension cannot construct IncomingMessageEntity for commands + +commit 59c85de8960888d89133588c256e219510673b75 +Author: Peter Palaga +Date: Mon Mar 16 11:04:43 2020 +0100 + + The next is 1.0.0-M6 + +commit 830c6f367541d7e5f74c24ceffe78c0aaf477a84 +Author: lburgazzoli +Date: Mon Mar 16 10:12:20 2020 +0100 + + telegram extension cannot construct IncomingMessageEntity for commands #888 + +commit 131e910ec07df04013bdc1c465c5fc00e0ef0036 +Merge: 1a3a2ea9f7 41097d1f36 +Author: Andrea Cosentino +Date: Sat Mar 14 12:15:19 2020 +0100 + + Merge pull request #887 from lburgazzoli/github-886 + + camel-quarkus-core: make caffeine cache optional + +commit 41097d1f36a3e4ebd9bce6d0e1c0f3f77fd4aa34 +Author: lburgazzoli +Date: Fri Mar 13 19:51:18 2020 +0100 + + camel-quarkus-core: make caffeine cache optional #886 + +commit 1a3a2ea9f789b998ddca4bb95822c2b72c6d46e5 +Author: mmelko +Date: Thu Mar 12 14:36:29 2020 +0100 + + Add soap dataformat quarkus extension + fix #763 + +commit a34545043bdb867e936a165d6705d7988598769e +Author: Andrea Cosentino +Date: Fri Mar 13 14:43:24 2020 +0100 + + [maven-release-plugin] prepare for next development iteration + +commit d7230eb859c1405a80e1af9f3b6d4f42b5fd0ec4 (tag: 1.0.0-M5) +Author: Andrea Cosentino +Date: Fri Mar 13 14:42:57 2020 +0100 + + [maven-release-plugin] prepare release 1.0.0-M5 + +commit 638b5a6ba2204629fedad09106a53e8d28d5afe4 +Author: James Netherton +Date: Fri Mar 13 09:09:22 2020 +0000 + + Upgrade Quarkus to 1.3.0.Final + +commit f6fbc13c927ff29fb5cb54eb4b9c5c8df368617d +Author: lburgazzoli +Date: Thu Mar 12 10:55:37 2020 +0100 + + FastCamelContext to implement ModelCamelContext #877 + + ModelCamelContext is used in a number of spots by camel-main and others + bit but so far camel-quarkus's FastCamelContext did not implement it + which may cause NPE or CCE + +commit 51025ace61b06878e5935f107555f20ec7482d8c +Author: Peter Palaga +Date: Thu Mar 12 12:56:42 2020 +0100 + + Remove default or redundant config of the failsafe plugin + +commit 273dabb7b7b969bf2c70aea3765b01eb6b7cd530 +Author: lburgazzoli +Date: Wed Mar 11 18:19:07 2020 +0100 + + chore(it): remove empty application.properties (ref/src/main/resources/application.properties) + +commit 87501cf2486bc9602e9b31d07f5576d6bdb12311 +Author: lburgazzoli +Date: Wed Mar 11 16:04:56 2020 +0100 + + chore(build): disable qurkus banner + +commit 91fdbe69ccd7799ad7f05729801a6e22bc4e9355 +Author: lburgazzoli +Date: Wed Mar 11 14:02:21 2020 +0100 + + Ref component support #818 + +commit 36f3c5bc90a3c60b5455328c7d243ca6d5c1fc86 +Author: aldettinger +Date: Wed Mar 11 16:36:25 2020 +0100 + + Fixed kafka itests as @Inject is not supported in native tests + +commit b38edaa6dc812f462fe895a5520a87e3796fc203 +Author: aldettinger +Date: Wed Mar 11 10:49:33 2020 +0100 + + Fixed missing registry values in native mode #867 + +commit 16cf8e560411e044952e6ff3dbcae74b9b745889 +Author: lburgazzoli +Date: Wed Mar 11 12:03:35 2020 +0100 + + chore(doc): fix contributor guide example + +commit 48e8753356a2710146ce2adc3779cf292dc59720 +Author: lburgazzoli +Date: Wed Mar 11 09:20:32 2020 +0100 + + chore(build): update maven to v3.6.3 + +commit 792a21bf22391fe9486edc9862bc135b3b477f63 +Author: Peter Palaga +Date: Tue Mar 10 23:50:50 2020 +0100 + + Flatten the catalog module hierarchy + +commit cdc4da09e0ca7603a95435fa1cc13eb66401a9dc +Author: Peter Palaga +Date: Tue Mar 10 23:16:36 2020 +0100 + + Fix #865 Re-org the source tree + +commit a48cd8ec1fa8b6c5f55ef53f33dcddd531c58114 +Author: Peter Palaga +Date: Tue Mar 10 14:36:31 2020 +0100 + + Add a pom.xml file in the poms directory to be able to rebuild both BOMs at once + +commit f0aec2589f0114678f00b90e43ac24923072c2e9 +Author: Peter Palaga +Date: Tue Mar 10 17:26:45 2020 +0100 + + Make the file-watch tests more resilient + +commit 7133574f527e6d80bb0c35078ab58ddf226a1125 +Author: James Netherton +Date: Tue Mar 10 11:22:02 2020 +0000 + + Add GraphQL extension + + Fixes #801 + +commit 40233535ca425e65279bced33bee52685b5456ef +Author: aldettinger +Date: Tue Mar 10 16:12:01 2020 +0100 + + Regenerated docs + +commit db10ecc1dc49f00775e6fdb324721938748d7b11 +Author: aldettinger +Date: Mon Mar 9 11:33:11 2020 +0100 + + Added Mustache extension #803 + +commit f6fefd188d48810c819d96545edefcef8e78118b +Author: Peter Palaga +Date: Tue Mar 10 09:12:37 2020 +0100 + + Fix #795 File Watch support + +commit b70d6e307f423a0086d501ca19547ef6ccfd179f +Author: James Netherton +Date: Tue Mar 10 07:39:27 2020 +0000 + + Upgrade Quarkus to 1.3.0.CR2 + +commit e544f5595d0a55b705de201f3bb6b9878c072d09 +Merge: 8e4d3ec285 92f1e07059 +Author: Andrea Cosentino +Date: Mon Mar 9 13:31:42 2020 +0100 + + Merge pull request #861 from jamesnetherton/improve-actions + + Optimize PR build GitHub action + +commit 92f1e07059b08439d4e1b6e057341d6fb1df984f +Author: James Netherton +Date: Mon Mar 9 10:59:07 2020 +0000 + + Optimize PR build GitHub action + + Fixes #836 + +commit 8e4d3ec285a7f9e07cf21f80d26d58fb269b0407 +Author: James Netherton +Date: Mon Mar 9 08:47:46 2020 +0000 + + Use all lowercase keywords in ActiveMQ quarkus-extension.yaml + +commit 17eb6d19e1f325510e50e6aefb866f5010b71fa3 +Author: James Netherton +Date: Mon Mar 9 07:27:09 2020 +0000 + + Add ActiveMQ extension + + Fixes #424 + +commit a975932ab661c4c2530e076e06c7b2a032e3c608 +Author: Peter Palaga +Date: Mon Mar 9 08:23:36 2020 +0100 + + Fix quarkus:create-extension's templatesUriBase after the upgrade to Quarkus 1.3.0.CR1 + +commit 247af3fc0d2038569716f2ecbe1189ce0424de03 +Author: Peter Palaga +Date: Sun Mar 8 11:45:35 2020 +0100 + + groovy mojo not execute in the enforce profile because it was inside block + +commit bef92dbbee79150928e12acda2177898f632cc80 +Author: Peter Palaga +Date: Fri Mar 6 18:36:10 2020 +0100 + + Fix #787 JSon XStream dataformat support + +commit 4b153df4de25b3d1f0d7bdf8e1c149bf625edb16 +Merge: 80bc1f2a10 10f78be32e +Author: Andrea Cosentino +Date: Fri Mar 6 18:23:56 2020 +0100 + + Merge pull request #856 from apache/oscerd-patch-1 + + Bump to Quarkus 1.0.0-M4 + +commit 10f78be32eab4533a5ec09cb602254e27fba087f +Author: Andrea Cosentino +Date: Fri Mar 6 16:44:59 2020 +0100 + + Bump to Quarkus 1.0.0-M4 + +commit 80bc1f2a10a74e302b12a6fe82599492f24deabc +Author: James Netherton +Date: Fri Mar 6 12:22:11 2020 +0000 + + Downgrade manven-surefire-plugin to 2.22.2 + +commit 0d331f4d77876e0ee319e2f0f8640d5442150784 +Author: James Netherton +Date: Fri Mar 6 11:52:53 2020 +0000 + + Remove redundant ServiceProviderBuildItem from WebSocketJSR356Processor + +commit 298f609180532c3f0e30819be926b716ef34b038 +Author: James Netherton +Date: Fri Mar 6 11:49:44 2020 +0000 + + Camel MongoDB extension does not register camelMongoClient bean + + Fixes #747 + +commit 79b58b61093f39f3e67d36c1539a7af555099d61 +Author: mmelko +Date: Thu Mar 5 15:31:30 2020 +0100 + + add camel-jaxb into extensions + +commit e24b071747ff04cb82cd707c033e6ac7a57f2b2b +Author: James Netherton +Date: Fri Mar 6 07:40:44 2020 +0000 + + Upgrade to Quarkus 1.3.0.CR1 + +commit 0ee6af8d975d28f5f28e7f064ccb50de42878a8b +Author: lburgazzoli +Date: Thu Mar 5 14:59:03 2020 +0100 + + chore(jackson-dataformat-xml): small fixes to projects names and mvnd setup + +commit 1da05af9280ea2fbbdd58b9518360ca06b0cfb53 +Author: lburgazzoli +Date: Thu Mar 5 14:13:29 2020 +0100 + + chore(salesforce): add missing reflective base dto classes + +commit 5828fcbd7d0bd6f430cba1b03cf458d5ecfc308e +Author: lburgazzoli +Date: Thu Mar 5 12:06:06 2020 +0100 + + Support for camel-xml-io #847 + +commit 05940a2bc6b30cfabe25ae8e102ba052957c30e0 +Author: aldettinger +Date: Thu Mar 5 18:35:59 2020 +0100 + + Aligned quarkus keywords for json related dataformats + +commit 056c964566f73c53a7e827651780d8643257cfb9 +Author: Peter Palaga +Date: Thu Mar 5 09:18:42 2020 +0100 + + Fix #785 JacksonXML support + +commit 02fe20002840a58bd0f692ede52d0ef134cbcd40 +Author: Peter Palaga +Date: Wed Mar 4 14:46:43 2020 +0100 + + Remove redundant svm dependency from the jackson runtime module + +commit 014697fe9ba98699d3bf6352a1547a9d3d737f0b +Author: Peter Palaga +Date: Wed Mar 4 12:38:45 2020 +0100 + + Fix since versions on various places + +commit 0e245b7577c9ab278db347008a5223fd55281ec6 +Author: Peter Palaga +Date: Wed Mar 4 12:25:51 2020 +0100 + + The next is 1.0.0-M5 + +commit 2384fe4b75691bb1e5a34af255040b2a5456ba8a +Author: James Netherton +Date: Tue Mar 3 19:38:19 2020 +0000 + + Regen docs + +commit d043ee213934da0d94911a7c37b507f866b90ffa +Author: James Netherton +Date: Tue Mar 3 17:28:22 2020 +0000 + + Combine messaging tests into one module + +commit 265c19b8ea2cecde6c2af11db631a272a433250f +Author: James Netherton +Date: Tue Mar 3 11:35:56 2020 +0000 + + Add JMS extension + + Fixes #767 + +commit 6dad9dbe7611448b2d320a36d9c170792fdf8ca7 +Author: aldettinger +Date: Tue Mar 3 10:45:19 2020 +0100 + + Added Johnzon extension #775 + +commit 5bce951e7073b20684ca1c9515552b164db24790 +Merge: ac095a1c27 5b4ea006b5 +Author: Andrea Cosentino +Date: Tue Mar 3 17:26:06 2020 +0100 + + Merge pull request #839 from ppalaga/i784 + + Fix #784 iCal support + +commit 5b4ea006b5d3d95078f11edc2185c29296e976cb +Author: Peter Palaga +Date: Tue Mar 3 14:44:55 2020 +0100 + + Fix #784 iCal support + +commit 567a6e89ca6998223ecd3b97b127879442844ccf +Author: Peter Palaga +Date: Mon Mar 2 21:05:05 2020 +0100 + + Move SnakeYAML DSL tests to dataformat itest + +commit e55ccee47b097b4b340bf1c2c84d1f2d0334f35e +Author: Peter Palaga +Date: Mon Mar 2 18:00:17 2020 +0100 + + Refactor the dataformat itest to allow hosting more dataformat tests + +commit ac095a1c27796d1bee095bd3ba428d4ebd208ed1 +Author: James Netherton +Date: Mon Mar 2 14:35:55 2020 +0000 + + Remove MongoDB dependency overrides + +commit 466e0cfa97587d5edb8b74ac4423ec76816e8285 +Author: James Netherton +Date: Mon Mar 2 11:22:44 2020 +0000 + + Add websocket-jsr356 extension + + Fixes #613 + +commit f3b78fe40b0a61de085e39c396ad1836ce6a221c +Merge: 4a918831d9 13d306389c +Author: Andrea Cosentino +Date: Mon Mar 2 11:42:59 2020 +0100 + + Merge pull request #832 from ppalaga/i831 + + Fix #831 Move Groovy executions under the enforce profile + +commit 13d306389cf4deff92836fc856f31277eb4404e2 +Author: Peter Palaga +Date: Mon Mar 2 10:38:40 2020 +0100 + + Fix #831 Move Groovy executions under the enforce profile + +commit 4a918831d9a66e48200e0bbb1e571b1e7d825a18 +Author: Peter Palaga +Date: Fri Feb 28 16:33:25 2020 +0100 + + Fix #788 LZF Deflate Compression dataformat support + +commit 9acaa96e5a07674c215828df10eccb246439dea4 +Author: Peter Palaga +Date: Fri Feb 28 15:45:45 2020 +0100 + + Document the additionalRuntimeDependencies option of the Quarkus create-extension mojo + +commit 72e2d3c5a8798336b6de970e3286778c836d23d3 +Author: Peter Palaga +Date: Fri Feb 28 15:34:43 2020 +0100 + + Fix #791 #783 Zip and Gzip Deflate Compression dataformat support + +commit da060c568b2e0045ec23d814b4d2c04e5a9f09bd +Author: Peter Palaga +Date: Fri Feb 28 13:56:43 2020 +0100 + + Rename the zipfile itest to compression so that it can host also test of + other compression formats + +commit e84ac37b56b5c097eace9693ffc10fa785209900 +Author: aldettinger +Date: Fri Feb 28 19:20:40 2020 +0100 + + Faked the failing test until CAMEL-14630 has been solved #775 + +commit 1175fdc6dd5e6ee4a7782afa56b404803ad2e73d +Author: James Netherton +Date: Fri Feb 28 14:07:45 2020 +0000 + + Add Braintree extension + + Fixes #810 + +commit c34d83e81524df1289ca659cc4a7955de04c78ce +Author: James Netherton +Date: Fri Feb 28 08:20:13 2020 +0000 + + Add xpath language extension + + fixes #739 + +commit cc2b89f6c4486f61b8ab35b9cab09866e45353a5 +Author: Peter Palaga +Date: Thu Feb 27 18:29:40 2020 +0100 + + Update mvnd.builder.rule in the timer-log example + +commit 03723a8a7722a41f4277166da162db4ce2b8442a +Author: Peter Palaga +Date: Thu Feb 27 18:20:42 2020 +0100 + + Fix #498 Improve the XSLT test coverage + +commit 6ec4cbda2f7732e6014d25dfa5edcae3de1cef7b +Author: Peter Palaga +Date: Thu Feb 27 13:58:33 2020 +0100 + + Join TagSoup and XSLT integration tests + +commit ba40c080ffc2858a1ad538383be2f3cfeeccfa76 +Author: Peter Palaga +Date: Thu Feb 27 21:53:51 2020 +0100 + + Execute the reactive-streams itest by the CI + +commit b6b2e5802f9d575215620a41d532933aa907cfa0 +Author: Peter Palaga +Date: Thu Feb 27 21:53:11 2020 +0100 + + Ensure that the GitHub Actions run each itest + +commit 4ad9eec2e5a39796ffc12c843b3a5a64baccbde1 +Author: James Netherton +Date: Thu Feb 27 14:01:25 2020 +0000 + + Add Azure extension + + fixes #761 + +commit 049a0764be1bb20f7be94abc260d406e75a653a7 +Author: James Netherton +Date: Thu Feb 27 12:53:28 2020 +0000 + + Add telegram extension to CI build + +commit 6679d06e78e1b488d77d35f65ed5b8460696ae58 +Author: Claus Ibsen +Date: Wed Feb 26 09:35:15 2020 +0100 + + Workaround https://github.com/apache/camel-quarkus/issues/756 + +commit 9506243796653e821d72a73a097390d5cb749053 +Author: James Netherton +Date: Tue Feb 18 08:14:03 2020 +0000 + + Upgrade to Camel 3.1.0 + +commit 3e99813220e8fc3bee5264bd2a5d65faf623549b +Author: Peter Palaga +Date: Mon Dec 23 16:46:52 2019 +0100 + + Fix #74 Telegram extension + +commit d68e8b756337bc4c0ab4714feef55e0d4a26bda3 +Author: James Netherton +Date: Thu Jan 23 15:11:07 2020 +0000 + + Fix incompatibilities between Quarkus and Camel MongoDB dependencies + + fixes #544, #649 + +commit 40d10e20a62eda5f591abc4b4d07b9d5673d747f +Author: James Netherton +Date: Tue Feb 25 08:01:37 2020 +0000 + + Exclude j2objc-annotations from camel-jira + + fixes #753 + +commit bc2873657fb4e9b4ed041b0b46e440a3f00f9c51 +Author: James Netherton +Date: Tue Feb 25 08:01:03 2020 +0000 + + Jira integration test fails in native mode + + fixes #757 + +commit 623e0456c074b26d1ca53cd2baf28b17c23257b3 +Author: Peter Palaga +Date: Mon Feb 24 17:30:46 2020 +0100 + + Fix #960 Do not expose mutable collections from FHIR BuildItems + +commit 9ea9e079f19db737025c4c7aa522a28c76cd65fe +Author: Peter Palaga +Date: Mon Feb 24 18:10:38 2020 +0100 + + Remove redundant mvnd.builder.rules from the top level pom.xml + +commit 509c48f817ca0e69b37438b605c42f81ff7878e9 +Author: Peter Palaga +Date: Mon Feb 24 12:52:50 2020 +0100 + + Remove redundant quarkus.ssl.native=true from box application.properties + +commit c511b53e4bfed4458a2f39e5aee60edeb6cf3b78 +Author: James Netherton +Date: Mon Feb 24 11:10:00 2020 +0000 + + FhirDataformatTest failure -TransformerFactoryImpl not found + + fixes #748 + +commit f2e2c3966b905dcea6b681a5b26dce4a7dfa2420 +Merge: 5add94d38a f176ecf44e +Author: Andrea Cosentino +Date: Mon Feb 24 13:10:38 2020 +0100 + + Merge pull request #749 from ppalaga/200224-chore + + Minor cleanup and a mvnd.builder.rule update + +commit f176ecf44eec02d113c60fd36cb84774fde1e64d +Author: Peter Palaga +Date: Mon Feb 24 11:43:18 2020 +0100 + + Remove redundant native-image mojo from the reactive streams itest + +commit 71b42711e14cb41ace01285e0b405c5a97c5a1f6 +Author: Peter Palaga +Date: Mon Feb 24 11:42:22 2020 +0100 + + Update mvnd.builder.rule in the salesforce itest + +commit 5add94d38ac5f5ce0256bebccff834a78ab66748 +Author: James Netherton +Date: Thu Feb 20 13:16:36 2020 +0000 + + Add LoginToken to Salesforce reflective class list + + fixes #740 + +commit bfd8febdf8f5786c7c710cb57a3bd9256679a74c +Author: lburgazzoli +Date: Wed Feb 19 14:27:14 2020 +0100 + + chore(test): add test for bean(class, method) + +commit 3ba3c24d0c1b5b46b9001f21fc219d5e24e75487 +Author: aldettinger +Date: Wed Feb 19 16:35:03 2020 +0100 + + Created a camel gson extension #681 + +commit 0abaf5a53dc7a282cf5260f465e7de3f5105a02a +Merge: 2bbdea21c1 7f3b951200 +Author: Andrea Cosentino +Date: Wed Feb 19 14:46:23 2020 +0100 + + Merge pull request #736 from jamesnetherton/fix-xslt + + Fix XSLT extension NoSuchMethodError: TransformerFactory.newInstance(String,ClassLoader) + +commit 7f3b951200adf86ba8aa2f4c07d6616516c08024 +Author: James Netherton +Date: Wed Feb 19 12:47:38 2020 +0000 + + Fix XSLT extension NoSuchMethodError: TransformerFactory.newInstance(String,ClassLoader) + + fixes #721 + +commit 2bbdea21c1094fe7052e5fe8e28fe251277feffe +Author: James Netherton +Date: Tue Feb 18 17:14:32 2020 +0000 + + build: Do resource hungry native builds in parallel + +commit 5de6a12a2e459fb83fee62a99ed6801c988b8148 +Author: aldettinger +Date: Tue Feb 18 17:00:51 2020 +0100 + + CAMEL-QUARKUS-729: Centralized JSON dataformats related itests in dataformats-json + +commit d0e437f63cc32421dd07779bdc152066cddc1cfb +Author: James Netherton +Date: Tue Feb 18 14:49:26 2020 +0000 + + Fix olingo4 tests for native mode + +commit 6225dcedd2289978e8487507a8ae2c9c7424399b +Author: James Netherton +Date: Tue Feb 18 14:03:56 2020 +0000 + + chore: Remove redundant quarkus-maven-plugin exection from native profile + +commit 38fe5c065380690f6177c3782f55e5396ca69325 +Merge: 8a03fa35b8 6328ec8081 +Author: Andrea Cosentino +Date: Tue Feb 18 13:46:41 2020 +0100 + + Merge pull request #732 from apache/jenkinsfiles + + Removed useless Jenkinsfile(s) + +commit 6328ec808128bd9abf17800698ea9b1896283320 +Author: Andrea Cosentino +Date: Tue Feb 18 13:43:43 2020 +0100 + + Removed useless Jenkinsfile(s) + +commit 8a03fa35b8ef79711457d0dd791c2f47f60c7267 +Author: lburgazzoli +Date: Tue Feb 18 11:25:07 2020 +0100 + + Regen + +commit 32d9a5cf512a0d091172e4dea7a0ca80ef265a0e +Author: lburgazzoli +Date: Tue Feb 18 11:10:11 2020 +0100 + + it-cleanup(salesforce): rename + +commit c0cea071b63eae29029db6ae3a9cdd3b4fe16ab5 +Author: lburgazzoli +Date: Tue Feb 18 11:09:17 2020 +0100 + + it-cleanup(infinispan): rename + +commit 7ac531e44287789938ae4726a3823fdb87ef57cb +Author: lburgazzoli +Date: Tue Feb 18 11:03:36 2020 +0100 + + it-cleanup(core-main-xml): enable native tests + +commit f50532cbea3f3166cca428c067b30ae65e3523cb +Author: lburgazzoli +Date: Tue Feb 18 11:03:02 2020 +0100 + + it-cleanup(core-main-xml): rename + +commit 5d22cc4f6a6fbd7f3eebd118a5b506ecca59090d +Author: lburgazzoli +Date: Tue Feb 18 10:53:29 2020 +0100 + + it-cleanup(core-main-collector): rename + +commit 2f5567d10ae769333eb2a7a4a81df04f99d45561 +Author: lburgazzoli +Date: Tue Feb 18 10:48:58 2020 +0100 + + it-cleanup(core-main): rename + +commit b7ad5637ffcc3bb3b82951c8612f33d572fab416 +Author: lburgazzoli +Date: Tue Feb 18 10:48:10 2020 +0100 + + it-cleanup(core-main): move assertj conditions to camel-quarkus-integration-test-support + +commit f47d0aeb3641d7fc72786473ea5d2e52e41dd511 +Author: lburgazzoli +Date: Tue Feb 18 10:35:06 2020 +0100 + + it-cleanup(core): remove unknown property + +commit 3969f56920ad804717d08167b97ac33bd4ede8d6 +Author: lburgazzoli +Date: Tue Feb 18 10:34:43 2020 +0100 + + it-cleanup(core): rename + +commit 76dfa29e011ae37e4d16f8325d9c1304d4724cf5 +Author: lburgazzoli +Date: Tue Feb 18 10:21:29 2020 +0100 + + Update kotlin to v1.3.61 + +commit c0c900e17d6591c0cc06144dbc09bef4db6952b0 +Author: James Netherton +Date: Tue Feb 18 07:44:37 2020 +0000 + + chore: regen + +commit f64b94cfc3d5bcebe89f19efccf39ce56b0da576 +Merge: 05ce2f6ab6 5f82c11f00 +Author: Andrea Cosentino +Date: Mon Feb 17 16:51:24 2020 +0100 + + Merge pull request #722 from johnpoth/camel-box + + Resolves #162 adds camel-box support + +commit 05ce2f6ab6a8803260759d1ed3fcd12b976907c9 +Merge: 1b0c05856f d5165e7588 +Author: Andrea Cosentino +Date: Mon Feb 17 16:51:04 2020 +0100 + + Merge pull request #728 from jamesnetherton/jira-improvements + + Improve Jira extension + +commit 1b0c05856f9d14874baae8c96d83aa784cab0d08 +Author: lburgazzoli +Date: Fri Feb 7 10:49:27 2020 +0100 + + Fix MongoDbProcessor according to the latest changes in the mongodb extension + +commit 467ece275ee1a0386ceb602ccd35c2e4da824c60 +Author: lburgazzoli +Date: Mon Feb 17 13:50:07 2020 +0100 + + Update quarkus to v1.3.0.Alpha2 + +commit d5165e7588fb5cd25748b3258f3d0010241f052f +Author: James Netherton +Date: Mon Feb 17 13:26:10 2020 +0000 + + Improve Jira extension + - Use RuntimeInitializedClassBuildItem instead of configuring additionalBuildArgs + - Use application.properties for test configuration + + Fixes #715 + +commit 5f82c11f00278d6f744484afd8c84a8f343087f1 +Author: John Poth +Date: Tue Feb 4 16:52:19 2020 +0100 + + Resolves #162 adds camel-box support + +commit 4241a4b03c31d5ffc886e8cbfa84d6b444f106aa +Author: Peter Palaga +Date: Fri Feb 14 11:29:59 2020 +0100 + + Fix #598 Use quarkus.package.type=native instead of the native-image mojo + +commit 2ef5da4bfdba2e0cb76ac17ed21c1c6b7de0b8da +Author: Peter Palaga +Date: Fri Feb 14 10:47:09 2020 +0100 + + Re-indent integration-tests/pdf/pom.xml with 4 spaces + + I would not bother but I am about to perform a couple of find & replace + ops and I do not want the PDF itest pom.xml to escape. + +commit e0cfce2532df123bd216e7c6c40507217bf4980f +Author: Peter Palaga +Date: Fri Feb 14 11:22:58 2020 +0100 + + Fix #713 Revisit the Quarkus native image mojo options generated by + create-extension + +commit 5b6685c09457ec665c698703b039ff00e553c5d4 +Author: Peter Palaga +Date: Fri Feb 14 08:44:02 2020 +0100 + + Fix #716 Move the Atlassian Maven repository to the Jira runtime module + +commit d032f1cfa24bd6987ba64dd24644d66a95412e71 +Author: James Netherton +Date: Fri Feb 14 08:05:52 2020 +0000 + + Schedule sync of quarkus-master branch + +commit 45d8654855988b8a84f44ad9593ea36c298a3421 +Merge: 6655ce1257 a06e266214 +Author: Freeman(Yue) Fang +Date: Thu Feb 13 18:15:53 2020 -0500 + + Merge pull request #714 from ffang/issues710 + + camel-jira extension:more polish up + +commit a06e266214f435fe29f0d8b013fdb8dff1f652dd +Author: Freeman Fang +Date: Thu Feb 13 18:09:07 2020 -0500 + + camel-jira extension:more polish up + +commit 6655ce12576b62de5db4c99504bd91df1b0081aa +Merge: a2c8b41de7 ddd14483ea +Author: Freeman(Yue) Fang +Date: Thu Feb 13 14:52:07 2020 -0500 + + Merge pull request #712 from ffang/issues710 + + create camel-jira extension #710 + +commit ddd14483ead6c43119e83a06ba79c4c48c5cf771 +Author: Freeman Fang +Date: Thu Feb 13 14:03:25 2020 -0500 + + create camel-jira extension #710 + +commit a2c8b41de7c6db195de8621185b55d5dab03c917 +Author: Peter Palaga +Date: Thu Feb 13 15:14:16 2020 +0100 + + Fix #694 quarkus-maven-plugin generate application.properties file for IT tests + +commit c9a5ddd3c259f57b3a7198dba956e15db5a38fb0 +Author: Peter Palaga +Date: Thu Feb 13 15:01:15 2020 +0100 + + Fix #688 Create extension mojo not working after Quarkus 1.3.0.Alpha1 upgrade + +commit cd5d161fe471fb9712f3932b1b4592038bb455be +Author: Peter Palaga +Date: Thu Feb 13 09:23:31 2020 +0100 + + Update mvnd.builder.rules by running mvn process-resources -Pformat + +commit 559fbdb74f511208335b205f1be159d2062d2544 +Author: Peter Palaga +Date: Wed Feb 12 09:14:03 2020 +0100 + + Update via -Pformat + +commit 08201feb558a0312d78678ab6d9564dfd7c1b313 +Author: Peter Palaga +Date: Wed Feb 12 17:46:24 2020 +0100 + + Set -Dmaven.wagon.http.retryHandler.requestSentEnabled=true + + This is to enable retries even on dependency downloads where the request + was sent successfully + +commit 95a081e05cc86f81b51acddfe5cf17c6634847b8 +Author: lburgazzoli +Date: Wed Feb 12 10:53:15 2020 +0100 + + Ensure that catalog files are added to the native image #686 (fix findings) + +commit f140b7169649405313d7d86004d524fee98ef3ce +Author: lburgazzoli +Date: Fri Feb 7 16:14:34 2020 +0100 + + Ensure that catalog files are added to the native image #686 + +commit 4deda3829468d0f3510a30f1115285f3b5276862 +Merge: 73afcd22bd 95ecf8f91f +Author: Freeman(Yue) Fang +Date: Wed Feb 12 19:25:05 2020 -0500 + + Merge pull request #707 from ffang/issue670 + + #670 fix PDF itests in native mode + +commit 95ecf8f91f2fe25a960d827a3fdc9c0b5bbc41aa +Author: Freeman Fang +Date: Wed Feb 12 17:23:29 2020 -0500 + + #670 fix PDF itests in native mode + +commit 73afcd22bd03be7cbff9ca6faf8e088e578de624 +Merge: 53ffbc544a d5c59e1411 +Author: Andrea Cosentino +Date: Wed Feb 12 17:39:23 2020 +0100 + + Merge pull request #697 from ppalaga/i696 + + Fix #696 Test HTTPS with the HTTP clients + +commit d5c59e141168b5c856f7e7750d3cd5724a36a3e5 +Author: Peter Palaga +Date: Wed Feb 12 13:45:29 2020 +0100 + + Re-use the cached local Maven repo even in build-alternative-jvm job + +commit 7634cc00c708a8c01971eb39258e58c1e7bd486f +Author: Peter Palaga +Date: Tue Feb 11 07:52:52 2020 +0100 + + Fix #696 Test HTTPS with the HTTP clients + +commit 53ffbc544aee33539cde33bb4dd453d9bb1c8325 +Author: Peter Palaga +Date: Mon Feb 10 10:45:59 2020 +0100 + + Cleanup: Declare quarkus-development-mode-spi as a nonExtensionArtifact + +commit a766a3ace9e5bbbaa3db01230f1c545f8b2bd5d0 +Author: James Netherton +Date: Wed Feb 12 08:00:03 2020 +0000 + + Use camel-quarkus-support-httpclient in slack extension + +commit ca39d376c5d6c787bd4289fc1212c95355702000 +Author: lburgazzoli +Date: Tue Feb 11 18:40:17 2020 +0100 + + Remove enableJni from integration tests as JNI si always enabled on GraalVM 19.3.1 + +commit 6e759cd149ae2e79cc9af2c89c71088e8a3afa3f +Author: James Netherton +Date: Tue Feb 11 18:31:57 2020 +0000 + + Add olingo4 itest to project list + +commit 74c51b1d2544bacad49745075ca29d5c6af19c99 +Author: James Netherton +Date: Tue Feb 11 15:19:02 2020 +0000 + + chore: Remove redundant note related to fileWatcher param in stream extension docs + +commit 68f9774e5a0d047f2c077a8be102dbe4a747972f +Author: James Netherton +Date: Tue Feb 11 09:19:43 2020 +0000 + + Add olingo4 extension + + fixes #692 + +commit e884ccbabeff2e8f50724be4e9ca5517a71723f4 +Author: lburgazzoli +Date: Fri Feb 7 07:41:48 2020 +0100 + + GitHUb Actions: include quarkus-master for branches to watch + +commit e5cdba6f99405be2032dd3235292e9a2815ee87e +Author: lburgazzoli +Date: Fri Feb 7 07:40:50 2020 +0100 + + Activate snapshot repos with a single profile + +commit edb03e1aa231f9e00a6f13e17003d9a7d5ed9f1e +Author: lburgazzoli +Date: Tue Jan 28 17:26:52 2020 +0100 + + Upgrade to quarkus 1.3.0.Alpha1 #684 + +commit 8eb4f5da2144657ccc28e6f32c4151e42eb75595 +Author: James Netherton +Date: Wed Feb 5 13:34:47 2020 +0000 + + Add stream extension + + fixes #680 + +commit ea2b52c09bad81b6cc1af5cb9d09983a34af0ebf +Merge: 29ca6b08b6 a7f383759e +Author: Andrea Cosentino +Date: Tue Feb 4 18:11:07 2020 +0100 + + Merge pull request #679 from johnpoth/dev-profile + + Create enforce profile that disables dependency checks + +commit a7f383759e0423d6b758db1e879c12a50c5844f3 +Author: John Poth +Date: Tue Feb 4 12:09:40 2020 +0100 + + Create an enforce profile to disable sanity checks while building. This can be done by adding -Denforce=false + +commit 29ca6b08b611452ceb0ba11ce8797127d51cb385 +Merge: 3ab385a437 5a2c395e62 +Author: Andrea Cosentino +Date: Tue Feb 4 13:11:06 2020 +0100 + + Merge pull request #678 from johnpoth/fhir-context-recorder + + camel-fhir record FHIR context instead of creating it at runtime. Onl… + +commit 3ab385a437a74c3bd150a2f5f4443b4a57a2dbef +Merge: 82de7364e2 ff8ab6dc28 +Author: Andrea Cosentino +Date: Tue Feb 4 13:10:46 2020 +0100 + + Merge pull request #677 from jamesnetherton/ci-schedule + + Add GitHub action for automatic testing of camel-master branch + +commit 82de7364e2b8fe9f45f37c455b0ebbe8c6db5939 +Merge: f7d07bc787 c02682856e +Author: Andrea Cosentino +Date: Tue Feb 4 13:10:24 2020 +0100 + + Merge pull request #674 from hanzo2001/patch-1 + + fix(rest-json/pom.xml): use quarkus-based dependency + +commit 5a2c395e6271455ef266bf8a397e969dae165380 +Author: John Poth +Date: Fri Jan 31 18:14:25 2020 +0100 + + camel-fhir record FHIR context instead of creating it at runtime. Only one FHIR context per specification is permitted in native mode + +commit ff8ab6dc287bfa2a1e1496697638adef4e168151 +Author: James Netherton +Date: Fri Jan 31 10:22:19 2020 +0000 + + Add GitHub action for automatic testing of camel master branch + +commit c02682856ed236f7976509cd2bebbd1b4e99668b +Author: Santiago Acosta +Date: Thu Jan 30 13:01:10 2020 +0000 + + fix(rest-json/pom.xml): use quarkus-based dependency + +commit f7d07bc787e79706c78f731374484418af13329e +Author: aldettinger +Date: Fri Jan 24 19:39:07 2020 +0100 + + Added a camel-bindy extension #653 + +commit af59c8f900488402fa28a12507fb29c2546925d3 +Author: James Netherton +Date: Wed Jan 29 16:09:36 2020 +0000 + + chore: Fix typo + +commit ae90a267ba3f679cbda0b923787c567e9d13eb2e +Merge: 78d05049d1 eb28cddeb6 +Author: Andrea Cosentino +Date: Tue Jan 28 22:31:33 2020 +0100 + + Merge pull request #667 from lburgazzoli/cleanup + + Cleanup + +commit eb28cddeb67ca189bab965f56382ea0d063ee559 +Author: lburgazzoli +Date: Tue Jan 28 19:13:26 2020 +0100 + + Remove NativeImageResourceBuildItem from dozer processor + +commit b9f9b561270b48273d1e949f030512e33c376f27 +Author: lburgazzoli +Date: Tue Jan 28 19:13:18 2020 +0100 + + Remove duplicate dependency + +commit 8b144fae59a7f580e7ce63626edcd14a9d61bc0a +Author: lburgazzoli +Date: Tue Jan 28 19:12:55 2020 +0100 + + Explicit disable Apache snapshot repository + +commit 78d05049d1f97e8d49a4c1842877f716d333959c +Merge: ab47f495d1 ec0b3234fc +Author: Andrea Cosentino +Date: Tue Jan 28 09:30:42 2020 +0100 + + Merge pull request #665 from ppalaga/200127-first-version + + Fix the of extensions that were released for the first… + +commit ec0b3234fc80b5bd984002621cf03c641db74013 +Author: Peter Palaga +Date: Mon Jan 27 18:42:05 2020 +0100 + + Fix the of extensions that were released for the first time + +commit ab47f495d1cc896186ff1edb8798fbb27f75ee52 +Merge: eb5cc63f6b 0dbb6b702b +Author: Andrea Cosentino +Date: Mon Jan 27 15:15:09 2020 +0100 + + Merge pull request #664 from apache/oscerd-patch-1 + + Bump To Quarkus 1.0.0-M3 + +commit 0dbb6b702b2586aecb8857518a244da1f4bf656b +Author: Andrea Cosentino +Date: Mon Jan 27 15:14:35 2020 +0100 + + Bump To Quarkus 1.0.0-M3 + +commit eb5cc63f6b47970361056872a8e53d3a3bf040a5 +Merge: b2d8823af0 9e42a57747 +Author: Andrea Cosentino +Date: Sat Jan 25 13:01:48 2020 +0100 + + Merge pull request #662 from apache/testcontainers-1.12.5 + + Upgrade TestContainers to version 1.12.5 + +commit b2d8823af04849ed69d47d111f0fd5075d59b362 +Merge: d000dfb646 06e5fcef93 +Author: Andrea Cosentino +Date: Sat Jan 25 11:46:33 2020 +0100 + + Merge pull request #663 from philschaller/i637 + + Add integration test for Jackson unmarshalling with different POJOs + +commit 06e5fcef93d7478f5447da8107542fc6a9a1b865 +Author: Philippe Schaller +Date: Sat Jan 25 09:32:04 2020 +0100 + + Add integration test for Jackson unmarshalling with different POJOs + +commit 9e42a577473b79e7c45685d9ca7ba2d5f3952441 +Author: Andrea Cosentino +Date: Fri Jan 24 17:30:30 2020 +0100 + + Upgrade TestContainers to version 1.12.5 + +commit d000dfb6464ee335635454353e41463381c80eec +Author: Andrea Cosentino +Date: Fri Jan 24 09:43:26 2020 +0100 + + [maven-release-plugin] prepare for next development iteration + +commit 1d2aed4e4b60d7a885b4193727fa04613715fe8d (tag: 1.0.0-M3) +Author: Andrea Cosentino +Date: Fri Jan 24 09:43:00 2020 +0100 + + [maven-release-plugin] prepare release 1.0.0-M3 + +commit 06051130f7e3479e6b7b9a1c0eb132c6bfccb46e +Author: Peter Palaga +Date: Thu Jan 23 20:51:54 2020 +0100 + + Set firstVersion to 1.0.0 to match the reality + +commit 2dfafe3ba69fde74d9f63bdac86d903f194f467f +Author: Peter Palaga +Date: Thu Dec 5 11:57:59 2019 +0100 + + Fix #518 Rely on configurers for Configuration classes instead of using + reflection + +commit b9200ade3c9b3cce1a8e8bc86b8f7579f90215a5 +Author: lburgazzoli +Date: Wed Dec 11 16:33:08 2019 +0100 + + Disable sftp native tests on Jenkins + +commit 8fb71a454f131ec12de20a066a507d6434ab73e1 +Author: Peter Palaga +Date: Mon Jan 20 11:36:34 2020 +0100 + + Fix #635 Dependency parity check + +commit fc29217818caa3d6a477252e5850bf197d05f4ae +Author: lburgazzoli +Date: Thu Jan 23 11:04:03 2020 +0100 + + Create a Camel ReactiveStreams extension #304 + +commit 011b79fcb8a1370e4c53fe4f2fef697911d0dcca +Author: lburgazzoli +Date: Thu Jan 23 12:42:43 2020 +0100 + + The MicroProfile test fails if message history is turned off #650 + +commit c6b1b27dc4a18e91a173889cad321762a13ec8c2 +Merge: 9c4a4f1348 c2ea610a7d +Author: Andrea Cosentino +Date: Thu Jan 23 12:18:06 2020 +0100 + + Merge pull request #658 from lburgazzoli/quarkus-1.2.0.Final + + Update Quarkus to v1.2.0.Final + +commit c2ea610a7dc1fdd3157a4f768303860336dd1b60 +Author: lburgazzoli +Date: Thu Jan 23 11:05:39 2020 +0100 + + Update Quarkus to v1.2.0.Final + +commit 9c4a4f1348dc4a72d9d46ba4f552a50255aed3b2 +Author: lburgazzoli +Date: Thu Jan 23 09:55:44 2020 +0100 + + factory-finder: move reactive-executor filter to core processor as the related service is always programmatically configured + +commit 5477f3bb303b966e4e77d4f6345a294d954d036a +Author: lburgazzoli +Date: Thu Jan 23 09:18:56 2020 +0100 + + factory-finder: include constant among the list of languages to bound to the rigistry + +commit d7ea50474ae5d4cb453bc9f62d2cea9ad8757718 +Author: lburgazzoli +Date: Thu Jan 23 07:53:40 2020 +0100 + + fast-camel-context: don't lookup for custom Injector + +commit 7f9ec9cfe1c30765f3d554f561c28deabe0d5dff +Author: Peter Palaga +Date: Tue Jan 21 11:49:07 2020 +0100 + + Fix #599 Document the need to set quarkus.native.add-all-charsets = true in HTTP extensions + +commit 6bec1855b28d5c8ea63836090aea80004586dfd4 +Author: Peter Palaga +Date: Mon Jan 20 11:51:32 2020 +0100 + + Use application.properties rather than pom.xml for addAllCharsets + +commit 0223c2b172c8aceeadbae9bdac32446ea55c991d +Author: Peter Palaga +Date: Mon Jan 20 09:19:18 2020 +0100 + + Determine the Camel version at build time + +commit 694f8408c0b8a621d4409411f7b86d58389abd35 +Author: James Netherton +Date: Wed Jan 22 07:26:46 2020 +0000 + + Add ahc-ws extension + + fixes #619 + +commit 52400e575c2b49b681945596ba339cafaab10239 +Author: lburgazzoli +Date: Wed Jan 22 18:16:09 2020 +0100 + + fhir: reduce uri options by leveraging component configuration + +commit 0fbd055137765a5e10209a8c0c66323b69c098f2 +Author: lburgazzoli +Date: Wed Jan 22 11:03:03 2020 +0100 + + factory-finder: add tests for camel factories discovery and registration + +commit f10ae1aa5772c575a486bd24f5bb38dcee04d227 +Author: lburgazzoli +Date: Wed Jan 22 13:01:41 2020 +0100 + + factory-finder: improve use of Optional + +commit 2daea0aa9d94db0eefa9bd0a6832e537ec9f46ee +Author: lburgazzoli +Date: Wed Jan 22 13:00:33 2020 +0100 + + factory-finder: register singleton languaages + +commit cf345640659f8b1ae66de4cabe35241275016ba5 +Author: lburgazzoli +Date: Tue Jan 21 17:11:48 2020 +0100 + + chore: move dependencies exlusions to runtime bom + +commit f068c23b5d3ec9019522ec8d960aff44efa45442 +Author: lburgazzoli +Date: Sat Jan 18 12:25:33 2020 +0100 + + Move Apache snapshot repository activation to a dedicate profile + +commit 536ad91e4b2384620424212d135885847741a632 +Author: lburgazzoli +Date: Sat Jan 18 00:50:05 2020 +0100 + + Run native tests with GitHub Actions + +commit 42604f8e4cbd209c10eb0308d2761a5d71b7c9e2 +Merge: 93b8dae9b8 194d93dec2 +Author: Andrea Cosentino +Date: Wed Jan 22 14:12:53 2020 +0100 + + Merge pull request #626 from apache/aws-kinesis + + Added an AWS Kinesis extension + +commit 194d93dec2d581e8dd3f91cf7d1d401e91829942 +Author: Andrea Cosentino +Date: Thu Jan 16 10:10:38 2020 +0100 + + Added an AWS Kinesis extension + +commit 93b8dae9b8189d1e5199c3f4d245d2d8d13583bb +Author: aldettinger +Date: Tue Jan 21 12:19:50 2020 +0100 + + Removed the now useless alias for DefaultAnnotationExpressionFactory #611 + +commit de4fffced064c9d9fd08379f7bae95403d707fbc +Author: Guillaume Smet +Date: Tue Jan 21 12:28:09 2020 +0100 + + Temporarily force a locale with a country to work around a Quarkus issue + +commit c50d10711f0eddc8901a3f518734c9c6ff0e2b54 +Author: Guillaume Smet +Date: Thu Jan 16 15:09:51 2020 +0100 + + Fix a JAXB dependency to avoid a warning + +commit 7c89888c60ad46040f00ab6ef76cc204b0e6b9d5 +Author: Martin Kouba +Date: Tue Jan 14 21:25:54 2020 +0100 + + Workaround for https://github.com/oracle/graal/issues/1971 + +commit 813b91884fe5f2c2fba4f4ad09d6ea70ac8f6db3 +Author: Guillaume Smet +Date: Mon Jan 13 15:07:12 2020 +0100 + + Add the mongodb-driver-legacy artifact and a substitution + +commit 8634da2c594d8ed1d22e0ddcc11bd56e72b20af0 +Author: Guillaume Smet +Date: Mon Jan 6 16:59:48 2020 +0100 + + Upgrade to Quarkus 1.2.0.CR1 + +commit d1f9f58b6cd67f2c81c9e0df6e37952636f1fd7a +Author: Guillaume Smet +Date: Mon Jan 6 16:50:39 2020 +0100 + + Use the quarkus-jsch extension instead of having substitutions + +commit 0f5a831f745605ce3c6baa80d649dfd77d9afcde +Author: Guillaume Smet +Date: Mon Jan 6 16:48:19 2020 +0100 + + Revert "Create substitutions for jsch" + + This reverts commit da0a462f17652b199ab8d3097783c4efdd5a290d. + +commit f720a00208df35aa97e71487b941b8862d6695e5 +Author: James Netherton +Date: Tue Jan 21 07:45:10 2020 +0000 + + Remove PlatformHttpSpanDecorator from OpenTracing extension + + fixes #605 + +commit 2d197c340d7b4c9c547ea70c862fc4eef4ecdd97 +Author: Peter Palaga +Date: Mon Jan 20 22:11:04 2020 +0100 + + Fix #640 Lower the level of "Could not find a non-optional class for key ..." message + +commit a2e1dc2984c484b817299e8cef0ac27ddd2511d2 +Author: Peter Palaga +Date: Fri Jan 17 17:47:26 2020 +0100 + + Do not register languages and dataformats so that they can be used in parallel with conflicting configs + +commit 30908ac710919c987c382f7aa8896d532324a1d6 +Author: Peter Palaga +Date: Fri Jan 17 16:15:15 2020 +0100 + + Fix #617 Registerable and discoverable Camel services + +commit 06f9625b84353fb0879daa145cf0970b022da7e8 +Author: Peter Palaga +Date: Wed Jan 15 17:28:16 2020 +0100 + + Avoid using field injection in the core NativeImageProcessor + +commit e728940db17a0d5947d8c7fd374322f8804841c7 +Author: Peter Palaga +Date: Thu Jan 16 18:04:30 2020 +0100 + + Revert "Fix #620 Introduce CamelServiceInfo transformers" + + This reverts commit e6920d014fec0ea4ec52ab527fdd0d1ac05ad7ee. + + We decided to adopt another approach + +commit 1c428cb983aee9ab66614d2dd68bf1346014e6c5 +Merge: 74680679a4 f109e42de8 +Author: Andrea Cosentino +Date: Mon Jan 20 17:36:52 2020 +0100 + + Merge pull request #639 from apache/camel-3.0.1 + + Removed the Apache repositories since now the situation should be ok … + +commit f109e42de85db1a609086808c8f0d4b158e74fe0 +Author: Andrea Cosentino +Date: Mon Jan 20 13:00:07 2020 +0100 + + Removed the Apache repositories since now the situation should be ok in central + +commit 74680679a4940c5f21a7e7b1bfa30dc5d97a228f +Author: lburgazzoli +Date: Fri Jan 17 10:31:51 2020 +0100 + + Update to Apache Camel 3.0.1 + +commit 60dd5f66ad751804367c35a8278615858a64923c +Merge: d26b474d56 e87c37e654 +Author: Andrea Cosentino +Date: Sat Jan 18 06:07:12 2020 +0100 + + Merge pull request #632 from ppalaga/200117-impsort + + Add impsort-maven-plugin + +commit d26b474d56578d94a71e042e78f09db845c9b48a +Author: Peter Palaga +Date: Fri Jan 17 21:49:52 2020 +0100 + + Fix #622 Encourage users to ask for missing extensions and to help implementing them + +commit e87c37e6549ed627b0674a93753fcea850f3da03 +Author: Peter Palaga +Date: Fri Jan 17 22:20:15 2020 +0100 + + Apply the import sorting rules + +commit 9fbeff3dc0a335e97645c504e6d68c531b41e7f3 +Author: Peter Palaga +Date: Fri Jan 17 17:02:07 2020 +0100 + + Add impsort-maven-plugin + +commit 3580c7777ced4f6eb4281bc11b5cd8b559b47d67 +Merge: 1025de0403 b8484974e7 +Author: Andrea Cosentino +Date: Fri Jan 17 12:43:05 2020 +0100 + + Merge pull request #629 from lburgazzoli/sjms2 + + chore: fix sjm2 extension metadata + +commit 1025de040313f75560296c88d98b25816aceeaa0 +Author: Guillaume Nodet +Date: Fri Jan 17 10:03:26 2020 +0100 + + Remove usage of deprecated setBody(Supplier) + +commit b8484974e7b675375120004a6f85b32a2e92b4ed +Author: lburgazzoli +Date: Fri Jan 17 11:06:44 2020 +0100 + + chore: fix sjm2 extension metadata + +commit 433da5fe42c9ae234aa9cf5e141c6de12786e042 +Merge: 8338f9dc07 e6920d014f +Author: Andrea Cosentino +Date: Thu Jan 16 12:17:48 2020 +0100 + + Merge pull request #621 from ppalaga/200114-service-renaming + + Fix #620 Introduce CamelServiceInfo transformers + +commit 8338f9dc0710e5a50c71cadbedbaf22c8c338a78 +Author: aldettinger +Date: Wed Jan 15 18:21:23 2020 +0100 + + Cut an unsupported native code path in camel-quarkus-jsonpath #610 + +commit e6920d014fec0ea4ec52ab527fdd0d1ac05ad7ee +Author: Peter Palaga +Date: Wed Jan 15 12:03:05 2020 +0100 + + Fix #620 Introduce CamelServiceInfo transformers + +commit 9c16da6353164e035a068b73fdf1139e788c6dbf +Merge: 22d038cb38 b2b07f68f2 +Author: Andrea Cosentino +Date: Sat Jan 11 19:23:04 2020 +0100 + + Merge pull request #615 from lburgazzoli/consul + + Initial camel-consul support + +commit b2b07f68f2bc88d9ed4f7a4c9b872bdd5c7521a7 +Author: lburgazzoli +Date: Tue Jan 7 14:15:26 2020 +0100 + + Initial camel-consul support + +commit 22d038cb38caf6de105e51d4ab2eff12cd0df654 +Merge: 68aef81b25 4ad09e3bd0 +Author: Andrea Cosentino +Date: Fri Jan 10 18:09:00 2020 +0100 + + Merge pull request #614 from apache/aws-translate + + Added an AWS Translate extension + +commit 4ad09e3bd0b872670dc66043656b2ff3da699d8c +Author: Andrea Cosentino +Date: Fri Jan 10 12:59:16 2020 +0100 + + Added an AWS Translate extension + +commit 68aef81b25e0d88918d8a5af4b5d4fd6fa959839 +Merge: 1a267178c1 f962c85f34 +Author: Andrea Cosentino +Date: Thu Jan 9 13:00:48 2020 +0100 + + Merge pull request #608 from jamesnetherton/spring-common-extension + + Add spring common extension + +commit 1a267178c1dfe7c6c7584c39c3673cec3a29b271 +Author: aldettinger +Date: Thu Jan 9 11:25:28 2020 +0100 + + Created a camel-jsonpath extension #426 (#609) + +commit f962c85f3477e84017b9fa9d8a830421e40db615 +Author: James Netherton +Date: Wed Jan 8 10:28:38 2020 +0000 + + Add spring common extension + + fixes #538 + +commit b36d2e4643be2ba0a18cf632ddafc239455df751 +Merge: 229a6256f9 1dc3be465c +Author: Andrea Cosentino +Date: Tue Jan 7 20:18:03 2020 +0100 + + Merge pull request #607 from apache/1.1.1.Final + + Bump Quarkus to version 1.1.1.Final + +commit 1dc3be465c2182733cbbf52542c845f6d209e910 +Author: Andrea Cosentino +Date: Tue Jan 7 14:31:11 2020 +0100 + + Bump Quarkus to version 1.1.1.Final + +commit 229a6256f9cfc4779d7aa6bb3e0e02c7c1b5ce14 +Author: lburgazzoli +Date: Mon Jan 6 18:04:09 2020 +0100 + + ahc dependencies #601 + +commit 64088ce312776f22f29c957950c3762eb1953873 +Author: lburgazzoli +Date: Mon Jan 6 15:45:54 2020 +0100 + + Consolidate http based component integration tests #600 + +commit f8538cfc03060e6d364e3637d2edcd7393c538a0 +Author: lburgazzoli +Date: Mon Jan 6 15:45:17 2020 +0100 + + ahc: fix wrong servlet dependency + +commit 44771563e1a6d2b07290dfde24ce405b6512d126 +Author: lburgazzoli +Date: Mon Jan 6 00:05:20 2020 +0100 + + Create a camel-http extension #596 + +commit 26ad0a50ad0d729d0b70e8652c24a7c24d61d3f4 +Author: lburgazzoli +Date: Mon Jan 6 00:04:07 2020 +0100 + + Add IntelliJ IDEA's lsp output dir to gitignore + +commit 52aa82f0dbd233b392a5f9f857c42ba8cd45b833 +Author: lburgazzoli +Date: Sat Jan 4 23:57:30 2020 +0100 + + build: formatter-maven-plugin should validate code format when check-format profile is active + +commit 8bdb2982b0d702cc3b1a16d7be239799d0867165 +Merge: fc8fe2eae8 6fc0cdd2f0 +Author: Andrea Cosentino +Date: Sun Jan 5 04:05:04 2020 +0100 + + Merge pull request #594 from lburgazzoli/jetty + + chore: remove jetty-maven-plugin.version as jetty-maven-plugin is not more used + +commit 6fc0cdd2f069d7001e53289886fb752c13b2487a +Author: lburgazzoli +Date: Sun Jan 5 00:00:56 2020 +0100 + + chore: remove jetty-maven-plugin.version as jetty-maven-plugin is not more used + +commit fc8fe2eae80c31e009ab83b18d3a103dd3bf814e +Author: lburgazzoli +Date: Sat Jan 4 23:27:08 2020 +0100 + + build: add Java 12 to PR build action + +commit c1401ad5a270f97c0fbf8813c65369d481ed491b +Author: lburgazzoli +Date: Sat Jan 4 14:59:43 2020 +0100 + + Remove @Nullable leftovers + +commit 6d99cce81f529f98d74c727fca028fb5d0edba04 +Author: Peter Palaga +Date: Sat Jan 4 13:19:32 2020 +0100 + + Apply the new formatting rules + +commit 6a1e8d45e12ca6346b28714f7b6c8e9d620b9630 +Author: Peter Palaga +Date: Sat Jan 4 12:54:47 2020 +0100 + + Format method param JavaDoc in columns + +commit b76d4f90eab2fab895613893ad097fbed1557546 +Author: lburgazzoli +Date: Sat Jan 4 11:18:15 2020 +0100 + + make dev mode test more resilient + +commit ac0f64d0baac4815175e0f6ee8f7f111b106701f +Author: lburgazzoli +Date: Sat Jan 4 10:57:33 2020 +0100 + + bean build items: replace @Nullable with Optional + +commit eb86b49713b7f32bef154b38123a705e7fc2a103 +Author: lburgazzoli +Date: Fri Jan 3 16:44:15 2020 +0100 + + chore: fix warning + +commit c185c1f1c62f782dae298d75c75c799473e40c4b +Author: lburgazzoli +Date: Fri Jan 3 16:42:49 2020 +0100 + + chore: disable javadoc formatting + +commit 5b194c8329ae1e46fa7bb03ee23264abb0cd977a +Author: lburgazzoli +Date: Fri Jan 3 16:36:50 2020 +0100 + + chore: add missing @Override annotations + +commit 2fcf055490528ce4638f52d3a2f36faf14a78aad +Author: lburgazzoli +Date: Fri Jan 3 16:34:19 2020 +0100 + + Simplify service binding with Camel*BeanBuildItem for trivial services + +commit 520cb2598c7a1c41edb02748d8980f3d98e0ee10 +Author: lburgazzoli +Date: Fri Jan 3 16:28:52 2020 +0100 + + chore: replace deprecated capability definition with dedicated capability build item + +commit 03333d29aa99482d35f18a2de842fd10e3461b8f +Author: lburgazzoli +Date: Fri Jan 3 15:25:29 2020 +0100 + + chore: fix doc + +commit 93591c37ae4eaa8f67f30f7b73d551227a087aa9 +Author: James Netherton +Date: Fri Jan 3 09:54:26 2020 +0000 + + Move MicroProfile metrics camel context configuration to static init + +commit 50d9d59cf8e79afa3aa1c29f7fa93948e374ec9f +Merge: ebe54ae904 259b65bc15 +Author: Andrea Cosentino +Date: Fri Jan 3 16:58:13 2020 +0100 + + Merge pull request #586 from apache/cleanup-aws + + Camel-AWS extensions: Cleanup + +commit ebe54ae904aefd49e413b57ec5cc97c830983105 +Author: lburgazzoli +Date: Fri Jan 3 09:36:09 2020 +0100 + + chore: include test xml routes in native image + +commit 259b65bc1515c52a5f5b0579d2de7dc3da424e95 +Author: Andrea Cosentino +Date: Fri Jan 3 10:06:20 2020 +0100 + + Camel-AWS extensions: Cleanup + +commit fabd5290a2cdd4abc2d302711ab7926ca5b8c6d3 +Merge: 8fd7a41d1e fb8fa44589 +Author: Andrea Cosentino +Date: Fri Jan 3 07:07:41 2020 +0100 + + Merge pull request #584 from apache/aws-lambda-ext + + Added AWS-Lambda extension + +commit 8fd7a41d1efe8f0fc9eb1b39ff59e31b09efd758 +Merge: b3ed5163a5 c3176144d6 +Author: Andrea Cosentino +Date: Fri Jan 3 00:31:32 2020 +0100 + + Merge pull request #581 from lburgazzoli/github-543 + + Add tests for #543 + +commit b3ed5163a52204e30e514e0ea01c4b4a6a98d1db +Merge: d701f32145 141c59b478 +Author: Andrea Cosentino +Date: Fri Jan 3 00:30:43 2020 +0100 + + Merge pull request #580 from jamesnetherton/dozer-jaxb + + Dozer extension should use JaxbFileRootBuildItem + +commit d701f32145ea6ffad06188378b54b13d2a83470c +Merge: 3ec84a443b 7164e1a0c3 +Author: Andrea Cosentino +Date: Thu Jan 2 20:52:57 2020 +0100 + + Merge pull request #582 from lburgazzoli/language-resolver + + Throw NoSuchLanguageException if a language cannot be found + +commit 3ec84a443b9124098589b9f18bed8b38a7ef4f51 +Author: lburgazzoli +Date: Thu Jan 2 16:35:09 2020 +0100 + + Add basic tests for dev mode + +commit fb8fa44589d22f8eab3edbf54d4a0a9093d274a8 +Author: Andrea Cosentino +Date: Thu Jan 2 16:57:57 2020 +0100 + + Added AWS-Lambda extension + +commit c3176144d66a0172ca07e253dedd0f93c8acbf4d +Author: lburgazzoli +Date: Thu Jan 2 10:55:00 2020 +0100 + + Add tests for #543 + +commit 7164e1a0c3f1c6ee0948d8e417aaf4e3c33dfc13 +Author: lburgazzoli +Date: Thu Jan 2 11:51:11 2020 +0100 + + Throw NoSuchLanguageException if a language cannot be found + +commit 141c59b478aefd6b4c58a8c2e3488ed987bbacb0 +Author: James Netherton +Date: Thu Jan 2 08:32:33 2020 +0000 + + Dozer extension should use JaxbFileRootBuildItem + + fixes #539 + +commit 3bd3938dbe50b6cbf7390ed9766f08e781df16e0 +Merge: f656bab65c 5f4be8def0 +Author: Andrea Cosentino +Date: Sun Dec 29 16:59:18 2019 +0100 + + Merge pull request #577 from apache/cleanup + + Cleanup + +commit 5f4be8def0ff1cc327cbbb44622c457f1827b186 +Author: Andrea Cosentino +Date: Sun Dec 29 16:11:03 2019 +0100 + + Renamed customerlist.csv file in file-split-to-log + +commit fc3f9f181d5eba72f087eaeb0e37c8019119705c +Author: Andrea Cosentino +Date: Sun Dec 29 15:34:01 2019 +0100 + + Added file-split-log-xml example to modules + +commit f656bab65c90b6de8a4c1e78de29d27904cbf5bc +Merge: 91773d5306 fff2fd91f6 +Author: Andrea Cosentino +Date: Sun Dec 29 15:30:20 2019 +0100 + + Merge pull request #575 from Namphibian/master + + CSV File Splitter To Log + +commit 91773d5306ad4fe070a689887d887e9e34785516 +Merge: bd2518517b 96fa50bf3a +Author: Andrea Cosentino +Date: Sun Dec 29 12:02:46 2019 +0100 + + Merge pull request #576 from apache/csv-exclude-license + + Don't search license in csv file + +commit 96fa50bf3ab4ddf14b92abcf48bd9fbace15fea3 +Author: Andrea Cosentino +Date: Sun Dec 29 12:02:14 2019 +0100 + + Don't search license in csv file + +commit fff2fd91f637501dd419581330b34a2238a22670 +Author: Cornelius Franken +Date: Sun Dec 29 11:07:44 2019 +1100 + + CSV File Splitter To Log + + A simple file reader that splits the row and the columns of a csv file. All done in XML DSL + +commit bd2518517b9307c4f424d071a55706c3eed7ba4e +Merge: 1ad5302e79 7ad77716d5 +Author: Andrea Cosentino +Date: Mon Dec 23 16:49:56 2019 +0100 + + Merge pull request #573 from apache/jackson + + AWS support: Leverage Quarkus-jackson instead of using Jackson stuff … + +commit 1ad5302e79496d64399dcf7fdc3f7e15acfbc747 +Merge: 3b268766c3 88998b2751 +Author: Andrea Cosentino +Date: Mon Dec 23 14:17:37 2019 +0100 + + Merge pull request #570 from ppalaga/i560 + + Fix #560 AHC extension + +commit 88998b2751a0eeb4433f0b5ec0d049cdbcdb35b5 +Author: Peter Palaga +Date: Mon Dec 23 13:01:55 2019 +0100 + + Remove unnecessary plugin version properties from deployment BOM + +commit 08f5318dc90897b44550ddabf4308d87057ac8ea +Author: Peter Palaga +Date: Fri Dec 20 17:20:08 2019 +0100 + + Fix #560 AHC extension + +commit 7ad77716d58a178183fe419ed81f71a0ff03d416 +Author: Andrea Cosentino +Date: Mon Dec 23 12:32:37 2019 +0100 + + AWS support: Leverage Quarkus-jackson instead of using Jackson stuff in each extension + +commit 3b268766c301cf5a2f8af26dec2d4f0bfb439e5e +Merge: 8c76de9383 6809cc86c7 +Author: Andrea Cosentino +Date: Sun Dec 22 19:11:44 2019 +0100 + + Merge pull request #567 from apache/aws-commons + + Create an AWS commons extension + +commit 8c76de9383db5cb6d6b35ef8313adc09f4bd04bf +Merge: d5c0215e75 63a533d594 +Author: Andrea Cosentino +Date: Sun Dec 22 15:30:27 2019 +0100 + + Merge pull request #571 from lburgazzoli/remove-mp-config-workaround + + Remove mp-config workaround + +commit 6809cc86c7daf0a9877d3161911c9c090d07da0b +Author: Andrea Cosentino +Date: Sun Dec 22 14:58:24 2019 +0100 + + Removed wrong reference in xalan support extension + +commit 63a533d594475ffb05c5c52dbddae1c12bc819c5 +Author: lburgazzoli +Date: Sun Dec 22 11:23:26 2019 +0100 + + Remove mp-config workaround + +commit 2bc07327168bc93ca01c114b1a6c7cda239fccfc +Author: Andrea Cosentino +Date: Sun Dec 22 10:41:55 2019 +0100 + + Create an AWS common extension + +commit d5c0215e75eab51df07384721f0ad2ccccbfee0b +Author: Peter Palaga +Date: Sat Dec 21 19:25:05 2019 +0100 + + Fix #568 Untrack Artemis test instance data + +commit 1bc112d9d85cb1dccd3b8779334d2079bab00dad +Merge: f6a5304b30 4d848c6dc8 +Author: Andrea Cosentino +Date: Fri Dec 20 21:27:30 2019 +0100 + + Merge pull request #565 from apache/aws-ec2 + + AWS-EC2 Extension + +commit 4d848c6dc83012e69ed5f6f842d35bb0f982f881 +Author: Andrea Cosentino +Date: Fri Dec 20 17:24:24 2019 +0100 + + Regen + +commit 8b2c4ca711e3cc7653c5070144e0382e06ea52f5 +Author: Andrea Cosentino +Date: Fri Dec 20 17:20:02 2019 +0100 + + Added AWS EC2 Extension + +commit f6a5304b304f04d4f8a27a597602c2f02472ef4b +Merge: 5efe30cc10 478c13ce02 +Author: Andrea Cosentino +Date: Fri Dec 20 13:51:12 2019 +0100 + + Merge pull request #559 from apache/sql-fix-first-version + + Fix first version of Camel-SQL extension + +commit 478c13ce0285fa17569e164b1ad5ee469d4344fa +Author: Andrea Cosentino +Date: Fri Dec 20 13:40:09 2019 +0100 + + Regen extensions list + +commit efc90694f8b92e77aba79fc9db020fb5e75e81e1 +Author: Andrea Cosentino +Date: Fri Dec 20 13:35:47 2019 +0100 + + Set the correct first version for Camel-SQL extension, 1.0.0-M2 + +commit 5efe30cc102ba00ae61a346682f199f6ba483c7d +Merge: f51de5f794 613e622ede +Author: Andrea Cosentino +Date: Fri Dec 20 12:45:05 2019 +0100 + + Merge pull request #558 from apache/site-upgrade + + Update docs to version 1.0.0-M2 + +commit 613e622ede8143f2e1e0c6255910516329061e0f +Author: Andrea Cosentino +Date: Fri Dec 20 12:34:48 2019 +0100 + + Update docs to version 1.0.0-M2 + +commit f51de5f7943fa05deface4e10bd4c6b1781cf087 +Merge: 7231941869 9fad67d49f +Author: Andrea Cosentino +Date: Thu Dec 19 19:24:31 2019 +0100 + + Merge pull request #556 from aldettinger/camel-quarkus-472 + + Restored the native profile for camel-quarkus-pdf integration tests + +commit 723194186949c13b7a44e464b4c2fd0e20a5f686 +Merge: f1441f757a d2c7fea108 +Author: Andrea Cosentino +Date: Thu Dec 19 17:27:19 2019 +0100 + + Merge pull request #555 from lburgazzoli/github-553 + + Randomize http test port + +commit f1441f757a82762b3099d64f9c94bca5087373f1 +Author: Peter Palaga +Date: Thu Dec 19 15:15:20 2019 +0100 + + A JUnit dependency is required to run our integration tests outside of + our source tree, e.g. inside Quarkus Platform + +commit 9fad67d49f529fa09b6eb53804e86b4ee07c46c7 +Author: aldettinger +Date: Thu Dec 19 15:08:13 2019 +0100 + + Restored the native profile for camel-quarkus-pdf integration tests + +commit d2c7fea10853c75dc99e59d41633a64977798414 +Author: lburgazzoli +Date: Thu Dec 19 13:53:23 2019 +0100 + + Randomize http test port #553 + +commit f3e6fce8cd727f577914cd43f03c486326079350 +Author: lburgazzoli +Date: Wed Dec 18 21:30:06 2019 +0100 + + Modular RoutesCollector + + The aim here is to make the RoutesCollector more flexible so platform + such as camel-k can fine tune the behavior of the collector i.e. by + providing am ad-hoc way of discovery certain routes from the registry + +commit a54053a2cac86ce698cc650f2e7a287f4f1e02a9 +Author: lburgazzoli +Date: Wed Dec 18 14:31:29 2019 +0100 + + Add camel-endpointdsl extension #551 + +commit 1010c0497727d9b6aa73070b9d02602336f190b5 +Author: Andrea Cosentino +Date: Tue Dec 17 16:43:12 2019 +0100 + + [maven-release-plugin] prepare for next development iteration + +commit e3dc74e1de196d30b499841086eed7da164701e3 (tag: 1.0.0-M2) +Author: Andrea Cosentino +Date: Tue Dec 17 16:42:47 2019 +0100 + + [maven-release-plugin] prepare release 1.0.0-M2 + +commit ccf8d0920f8d6c25453bef66a002a75c4edf7378 +Author: lburgazzoli +Date: Mon Dec 16 21:08:56 2019 +0100 + + Fix formatting + +commit 5d79801e1af51ebf16b62f3a5c8857e9598b18e1 +Author: lburgazzoli +Date: Wed Dec 11 16:32:40 2019 +0100 + + Create substitutions for jsch + +commit da352f07a7ea8413141900720f1f6367c992d3d7 +Author: Guillaume Smet +Date: Tue Dec 10 16:18:29 2019 +0100 + + Update the Quarkus config to be supported by new smallrye-config + + Potentially empty collections/maps need to be marked with Optional. + +commit 19ff84978f055e21422fb61e5906b8f1bfb36463 +Author: Guillaume Smet +Date: Tue Dec 10 15:46:22 2019 +0100 + + Rename GizmoAdaptor to GeneratedClassGizmoAdaptor + +commit 073e017afbd04252ad3919d34a77b56169d75ccd +Author: Guillaume Smet +Date: Tue Dec 17 10:26:31 2019 +0100 + + Update Quarkus to 1.1.0.Final + +commit 89be3be23fadf01b31e5578210c97e08055f4f37 +Author: Guillaume Smet +Date: Tue Dec 10 15:45:47 2019 +0100 + + Fix Jetty dependency convergence issues + + Quarkus doesn't define the Jetty versions anymore. + +commit f3dca920b7870e7a30887c585b04e5440993deb3 +Merge: c40a0b61dc eef25fe785 +Author: Andrea Cosentino +Date: Tue Dec 17 06:08:40 2019 +0100 + + Merge pull request #549 from lburgazzoli/kotlin-extension + + Add initial support for kotlin + +commit eef25fe785e07a57b80d08a51d7e45f0896954e9 +Author: lburgazzoli +Date: Thu Dec 12 23:25:02 2019 +0100 + + Add initial support for kotlin + +commit c40a0b61dc2f03fe3535cf7cb91b5571d59bb6fc +Merge: 7d3f3847e7 c7b637f4f5 +Author: Andrea Cosentino +Date: Sat Dec 14 00:21:42 2019 +0100 + + Merge pull request #548 from lburgazzoli/unremovable-services + + Ensure custom services such as deataformats, languages and component are not removed from container + +commit c7b637f4f54754dd83d072b0eec52c86ff627a20 +Author: lburgazzoli +Date: Fri Dec 13 18:08:50 2019 +0100 + + Ensure custom services such as deataformats, languages and component are not removed from container + +commit 7d3f3847e72161816916b80b197ae494b69b5551 +Author: lburgazzoli +Date: Fri Dec 13 11:58:44 2019 +0100 + + Ensure RoutesBuilder instances created by a CDI Producder are not removed + +commit cac308cd51d242f9c082517f87a174d08bd5eee2 +Author: lburgazzoli +Date: Fri Dec 13 08:36:20 2019 +0100 + + Fix cherry-pick leftovers + +commit 1e785f99b476d8d6bff5815c50790944f9c693b6 +Author: lburgazzoli +Date: Wed Dec 11 16:33:27 2019 +0100 + + Fix commons-logging setup + +commit b13e1fc792e7075989465bb3a22611e58d7282f2 +Author: lburgazzoli +Date: Thu Dec 12 18:03:16 2019 +0100 + + examples: add timer-log kotlin example + +commit a10f4636d6a49c92550d30d29f1f26cfa252ce6f +Author: James Netherton +Date: Tue Dec 10 11:29:38 2019 +0000 + + chore: Clarify supported URI schemes in SQL script-files config property + +commit 4d6f78d09a5c76ac542e08f093690af148b55485 +Author: James Netherton +Date: Mon Dec 9 20:06:08 2019 +0000 + + chore: Remove redundant banned dependency + +commit 97df21de4bad233c293593af0935903bce205711 +Merge: 41815e88a6 546fe6723d +Author: Andrea Cosentino +Date: Tue Dec 10 10:49:37 2019 +0100 + + Merge pull request #533 from jamesnetherton/sql-extension + + Add SQL component extension + +commit 41815e88a60fee97bb4617a3a86e5583aacae5e4 +Author: lburgazzoli +Date: Fri Dec 6 13:11:42 2019 +0100 + + refactor FHIR integration tests + +commit 546fe6723d7f301bf71b3fd11a19345aa25d8e35 +Author: James Netherton +Date: Tue Dec 10 07:50:57 2019 +0000 + + Add SQL component extension + + fixes #505 + +commit c22df12ea58c5a7d5897e7b6797d71b809c2bb55 +Merge: 951b347ed4 e23a7dc677 +Author: Andrea Cosentino +Date: Tue Dec 10 08:54:28 2019 +0100 + + Merge pull request #529 from ppalaga/191209-versions-in-docs + + Replace 0.5.0 with 1.0.0-M1 + +commit e23a7dc6775e062105f6d60fe5c2cbdef1050285 +Author: Peter Palaga +Date: Mon Dec 9 14:09:22 2019 +0100 + + Regenerate the list of extensions + +commit e92566f5f2276ca6351d7750245b71d0664d3921 +Author: Peter Palaga +Date: Mon Dec 9 14:08:56 2019 +0100 + + Present the whole version incl. micro in the list of extensions + + We will be adding extensions in 1.0.0 Milestones and we do not want them + all to be listed as since 1.0 + +commit b698e3aafe41cc9418881e66b5cb3f61d5f0fcf1 +Author: Peter Palaga +Date: Mon Dec 9 13:57:05 2019 +0100 + + Replace 0.5.0 with 1.0.0-M1 because that's what we released + +commit 951b347ed4a7b580950db93b42743bde3932222d +Author: James Netherton +Date: Mon Dec 9 09:33:25 2019 +0000 + + chore: Fix JavaDoc generation on JDK 11 + +commit 949d10267d2e47f0dbc61550ff5203cdffdeaab8 +Author: lburgazzoli +Date: Sun Dec 8 12:32:45 2019 +0100 + + Re-introduce RoutesBuilderBuildItem #526 + +commit f9e8c4e7af90b70238f7bd1ce72192698535c0d4 +Merge: fc08606a14 5b3f9328e4 +Author: Andrea Cosentino +Date: Sun Dec 8 10:53:56 2019 +0100 + + Merge pull request #527 from apache/1.0.0-M1-site + + 1.0.0-M1 + +commit 5b3f9328e479327b5f1dba5ccfebba4d2dae3adc +Author: Andrea Cosentino +Date: Sun Dec 8 10:47:44 2019 +0100 + + Regen + +commit f40c8202cee009d332ec065aa080050e8e4a8347 +Author: Andrea Cosentino +Date: Sun Dec 8 10:40:22 2019 +0100 + + Update docs to version 1.0.0-M1 + +commit fc08606a14fda18b2e01a87824ee61e618691d03 +Merge: 5b8497a76d bd646e7cca +Author: Andrea Cosentino +Date: Sat Dec 7 22:47:16 2019 +0100 + + Merge pull request #525 from lburgazzoli/camel-di + + Add a workaround for Camel's DI (see CAMEL-14271) + +commit bd646e7ccab47723ba8fcf0780b608402a4b74fe +Author: lburgazzoli +Date: Sat Dec 7 19:37:04 2019 +0100 + + Add a workaround for Camel's DI (see CAMEL-14271) + +commit 5b8497a76d9202b691aa66b81c76acbd9295dbc1 +Merge: d0b42e3c59 697c4825b1 +Author: Andrea Cosentino +Date: Fri Dec 6 19:51:57 2019 +0100 + + Merge pull request #522 from ppalaga/191206-no-lics-sjms-data + + Do not check licenses in integration-tests/sjms/data + +commit d0b42e3c59db75231106a839ef426ff3916069b3 +Author: Peter Palaga +Date: Fri Dec 6 18:14:56 2019 +0100 + + Fix #520 XSLT documentation is misleading + +commit 697c4825b14fbb7086fb65954c118d13daf0e6a4 +Author: Peter Palaga +Date: Fri Dec 6 17:48:10 2019 +0100 + + Sort license-maven-plugin's excludes + +commit 1b10e034f9e8e88d900ab96b12e441c02575e561 +Author: Peter Palaga +Date: Fri Dec 6 17:39:08 2019 +0100 + + Do not check licenses in integration-tests/sjms/data + +commit 6b7ba8811cfe2004f1ef9716dcf7ff50b16c8b8a +Author: lburgazzoli +Date: Fri Dec 6 09:54:49 2019 +0100 + + chore: cleanup poms + +commit a11050f7170715e91997e3c02441fe6d6349fe56 +Merge: fd2bbf0810 b67c67d831 +Author: Andrea Cosentino +Date: Fri Dec 6 01:43:32 2019 +0100 + + Merge pull request #515 from apache/aws-iam + + Create AWS-IAM Extension + +commit fd2bbf0810eddbc29e8c8e917f96554c01774a9e +Merge: 7ce3cc203b 33652f511c +Author: Andrea Cosentino +Date: Thu Dec 5 22:42:19 2019 +0100 + + Merge pull request #517 from lburgazzoli/testcontainers-kafka + + introduce testcontainers + +commit 33652f511c7b2209e0678501d083621435f5d54e +Author: lburgazzoli +Date: Thu Dec 5 17:57:44 2019 +0100 + + use testcontainers to test mongodb extension + +commit 0310707b5d6ebf93ddf02592f8b7c4120db02a3b +Author: lburgazzoli +Date: Thu Dec 5 17:57:35 2019 +0100 + + use testcontainers to test kafka extension + +commit 23fbb0afafa4ca2cb6be85c2cb0bbc9ad69b1429 +Author: lburgazzoli +Date: Thu Dec 5 17:57:17 2019 +0100 + + introduce testcontainers #516 + +commit 7ce3cc203b9d342255d286bac16dca7f33497d11 +Author: lburgazzoli +Date: Thu Dec 5 12:07:19 2019 +0100 + + ftp: implement ftp/sft server test support with QuarkusTestResourceLifecycleManager + +commit b67c67d8315b39392e9b3f52f27ae8f485a2268c +Author: Andrea Cosentino +Date: Thu Dec 5 12:55:19 2019 +0100 + + Create AWS-IAM Extension + +commit c57b8a873f0f8d4f829698a48d144378de7658d6 +Author: lburgazzoli +Date: Wed Dec 4 14:56:17 2019 +0100 + + Do not use hard coded ports in integration-tests #508 + +commit fb34e008a24f24a7e784c260d061fb5864621fef +Author: James Netherton +Date: Thu Dec 5 08:04:08 2019 +0000 + + chore: Fix pom sorting script execution (#510) + +commit 2db85bc896a83a385a664afeac157125db348744 +Author: James Netherton +Date: Wed Dec 4 07:49:34 2019 +0000 + + Automatically register dozer mapping classes for reflection + +commit f38d426620b565f42a47a9b1fde8c59046b0e2f5 +Author: Andrea Cosentino +Date: Wed Dec 4 10:51:03 2019 +0100 + + [maven-release-plugin] prepare for next development iteration + +commit eaae8bb2e6b09247ac37db1393bcb0d1d926706c (tag: 1.0.0-M1) +Author: Andrea Cosentino +Date: Wed Dec 4 10:50:39 2019 +0100 + + [maven-release-plugin] prepare release 1.0.0-M1 + +commit ac9f96cd9aebc097d634a960452cda899d531c78 +Author: Claus Ibsen +Date: Wed Dec 4 10:18:05 2019 +0100 + + feat: base64 extension (#506) + +commit ef44422ed5d45f65b2e2eb4711056476c0cf110c +Author: Claus Ibsen +Date: Wed Dec 4 06:00:13 2019 +0100 + + Update contributor-guide.adoc + +commit 1d84ae791d89f1cc30c6f73e4d97a3113d7b280d +Author: lburgazzoli +Date: Wed Dec 4 00:09:41 2019 +0100 + + chore: remove unused method + +commit 92eece186330f44b175394b905be38edb57bf942 +Author: lburgazzoli +Date: Tue Dec 3 19:46:54 2019 +0100 + + Improve bean discovery filtering + +commit 9a47a8923eef53940f26fdae488ae41be621c9b3 +Author: James Netherton +Date: Tue Dec 3 19:20:50 2019 +0000 + + chore: Add extra docs for the Dozer type converter + +commit 71ae253d9c15cc6e655134b3866436fc943080a4 +Author: James Netherton +Date: Tue Dec 3 14:50:43 2019 +0000 + + Improve registration of DozerTypeConverter + +commit 8d12432e335bc4a20fa66e4f55d8f0cf33ecb39c +Author: lburgazzoli +Date: Tue Dec 3 11:15:51 2019 +0100 + + chore: fix typo + +commit 8ef79d4b2ff1c33df48d7751de05d636a6fcb236 +Author: lburgazzoli +Date: Tue Dec 3 11:15:15 2019 +0100 + + chore: add .factorypath to the license exclusion list + +commit 3c69ceec562b5a8123ef16b8c1e844a53ad08b4e +Author: lburgazzoli +Date: Mon Dec 2 19:50:52 2019 +0100 + + Filter out beans from CDI from build time discovery #499 + +commit 5e09052c2ba1d3ac20b0780cc40bca6ce3cdaf27 +Author: Claus Ibsen +Date: Tue Dec 3 11:57:56 2019 +0100 + + feat: seda extension. + +commit 7913591b29e7cf54a36db7f990bc1d41e3ae35e8 +Author: Claus Ibsen +Date: Tue Dec 3 11:50:36 2019 +0100 + + feat: seda extension. + +commit 9738f90d01aab2de61dc9c4ef656a931e5559fc8 +Author: Peter Palaga +Date: Mon Dec 2 22:11:37 2019 +0100 + + Use DOM API instead of XPath to check the DOM produced by TagSoup + +commit 3e5753716158a80d113f4e21672d7902bc2a3385 +Author: Jess Sightler +Date: Fri Nov 29 14:57:40 2019 -0500 + + Issue 490: Add tagsoup support + +commit f7d8d79cca9a8d5d9e34a34d3411668876fa05e6 +Author: lburgazzoli +Date: Mon Dec 2 22:41:16 2019 +0100 + + fix dependencies management in package-maven-plugin + +commit 4bb8ad008f68c835b1248cf7e5088b6142373076 +Author: lburgazzoli +Date: Mon Dec 2 14:01:25 2019 +0100 + + mp-config: enable testing profiles in native mode + +commit e41250fd2d15cf8d575328a520a25831efec0af8 +Author: Peter Palaga +Date: Mon Dec 2 11:53:39 2019 +0100 + + Fix #494 Group catalog re-generation and formatting mojos under a single profile + +commit b1ad98c284d87a6c55bb9c4bcc6389508154cb04 +Author: Peter Palaga +Date: Sat Nov 30 17:38:11 2019 +0100 + + Scripts to sort pom.xml files (#492) + + * Scripts to sort pom.xml files + + * Sort POMs using cd extensions && mvn groovy:execute@sort-poms + +commit 074b969689c0db0d2299066dbd27c68b3bc36ca8 +Author: Peter Palaga +Date: Thu Nov 28 23:16:27 2019 +0100 + + Document and test referring to beans by name + +commit 9f0689f6b954427fa8c022409c0854ec798dc5c1 +Author: Peter Palaga +Date: Thu Nov 28 14:28:29 2019 +0100 + + Fix #483 Flatten the integration-tests hierarchy and remove camel-quarkus-test-list.xml from git + +commit b04680f7b74195080f88dc8bb72504c20c032756 +Author: Peter Palaga +Date: Thu Nov 28 12:33:35 2019 +0100 + + Fix #484 The validator test should use a classpath URI for the XSD + +commit a16a6ce9cb67bd9168eb15176bd2ebe46650737b +Author: lburgazzoli +Date: Wed Nov 27 12:40:38 2019 +0100 + + Add workaroud for MP Config profile awarness + +commit afd6dc6b00b7eac63372b4a5a7d567142fb1ea76 +Author: lburgazzoli +Date: Thu Nov 28 13:49:35 2019 +0100 + + Update to camel 3.0.0 GA + +commit 0f0374568ca7f44a07dd25a5d14bf168e82bcaeb +Author: lburgazzoli +Date: Thu Nov 28 13:36:34 2019 +0100 + + Update to quarkus-1.0.1.Final + +commit 92fcd3881f52b594d0d7e17538ce38a1d49590f5 +Author: lburgazzoli +Date: Thu Nov 28 11:19:19 2019 +0100 + + Add camel-sjms2 extension + +commit 0eac61c788153b79cd5998bf09f034703f208441 +Author: Peter Palaga +Date: Wed Nov 27 21:35:43 2019 +0100 + + Fix #476 List itests in an XML file for the Quarkus platform + +commit c22bf9879e22ff27f9ab7d559a0c77f22c457ae1 +Author: Peter Palaga +Date: Thu Nov 28 05:57:25 2019 +0100 + + Simplify the Tooling hierarchy (#479) + + * Simplify the Tooling hierarchy + + * Move build/**/* to tooling + +commit 2fdbb4e5488f83a11364838022837ddd3fba94ee +Author: James Netherton +Date: Wed Nov 27 15:21:10 2019 +0000 + + Add MongoDB extension + + fixes #302 + +commit 8cb4d595eaa37a129275335729e7268ba1c80528 +Author: John Poth +Date: Wed Nov 27 09:13:59 2019 +0100 + + Add suport for FHIR R5 + +commit 30ae9b766aa09f73c167bd3ed05922ebc0bd3e81 +Author: John Poth +Date: Tue Nov 26 17:34:32 2019 +0100 + + Fixes #473 + +commit 3614e5b68f1b97b2c99141a5f19cb28bcc458fe0 +Author: John Poth +Date: Tue Nov 26 10:37:04 2019 +0100 + + Revert "Disable fhir native images tests" + + This reverts commit 8047331509c6ce1743aefe551b7217a4867768d0. + +commit 4011b1c372e7ae198eba4da9589794893aa4b56b +Author: Luca Burgazzoli +Date: Wed Nov 27 05:16:45 2019 +0100 + + Support dependency injection of FluentProducerTemplate/FluentConsumerTemplate #474 (#475) + +commit 13fdc4e436aa8a563a16ea411e3ca05de326da82 +Author: Peter Palaga +Date: Wed Nov 27 05:16:33 2019 +0100 + + Fix #453 Move the platform-http component to Camel (#459) + + * Fix #441 Avoid subclassing the upstream XsltComponent + + * Fix #453 Move the platform-http component to Camel + +commit fb3f9fbf60aa778e3be623a8ac219affce6ce68d +Author: lburgazzoli +Date: Tue Nov 26 09:32:03 2019 +0100 + + Disable fhir native images tests + +commit 21fe3450e83aa3af8d5ab96d577f5e7ca87357f0 +Author: lburgazzoli +Date: Mon Nov 25 16:20:30 2019 +0100 + + Upgrade to quarkus 1.0.0.Final #470 + +commit 3d74e8853d2a0a3a0d77c8a3c260c08a2de79d91 +Author: lburgazzoli +Date: Mon Nov 25 15:17:55 2019 +0100 + + temporary disable camel-quarkus-pdf native tests as it fails to build the native image + +commit e64f5cf2b5af0f29e71c8d7da09d667bd2c54985 +Author: lburgazzoli +Date: Mon Nov 25 14:22:39 2019 +0100 + + Remove MicroProfile Metrics extension workarounds #319 + +commit f5787d710ce774b5d530798d223358f45239808f +Author: lburgazzoli +Date: Mon Nov 25 14:22:13 2019 +0100 + + Upgrade to camel 3.0.0 #469 + +commit ef45ab78482dae8f8ab8ae1ac32c5b40eb75cc4f +Author: John Poth +Date: Mon Nov 25 17:31:14 2019 +0100 + + Startup a FHIR server when running the FHIR integration tests (#461) + +commit ddda40ca010cbe89f8f8d88ee27ce63bfef10dc5 +Author: James Netherton +Date: Mon Nov 25 16:30:58 2019 +0000 + + Add FTP extension (#464) + + fixes #463 + +commit ed1840ab929d84b4fc717a0bca87be41c09cc9c0 +Author: Claus Ibsen +Date: Fri Nov 22 19:26:48 2019 +0100 + + Fix doc failed website build + +commit 0c411271a3b03f5c13ec9d579390d0cea8dab3a1 +Author: lburgazzoli +Date: Fri Nov 22 16:35:04 2019 +0100 + + Fix examples + +commit f0149f8ec3063487b9cae01a67b32ab497dbcfd8 +Author: lburgazzoli +Date: Fri Nov 22 13:45:46 2019 +0100 + + Fix README for timer-log-cdi and timer-log-spring + +commit 2b9ecebdafaa6b57e6ab8568609ba208229ef001 +Author: lburgazzoli +Date: Fri Nov 22 13:21:48 2019 +0100 + + Add spring-di example + +commit 2dae84775e1d289af064ed0a2ea69fb8c0db3e9f +Author: lburgazzoli +Date: Thu Nov 21 14:02:35 2019 +0100 + + Add support extension for commons-logging + +commit 54ff524775dc25d52c121efe946fc141cfe3ba7f +Author: Peter Palaga +Date: Thu Nov 21 11:53:29 2019 +0100 + + Fix #455 Support only classpath: XSLT URIs + +commit 2735fe97b3a3dd6b7ce7fcad66c23a5288b962a3 +Author: Peter Palaga +Date: Wed Nov 20 22:33:42 2019 +0100 + + Split the User guide, add chapters for CDI and Examples, fix #415 + +commit bb206481775d825f64baa6f7f47c1fd8b2195c57 +Author: Peter Palaga +Date: Wed Nov 20 17:14:57 2019 +0100 + + Fix #416 Use @Inject in the timer-log-cdi example + +commit 908556c97feb632f7d0a3739fc7130d4f85e829d +Author: lburgazzoli +Date: Wed Nov 20 15:39:30 2019 +0100 + + Upgarde to Quarkus 1.0.0-RC2 + +commit 9bbab37c54cedb64666643a0e3c45313cb91571d +Author: James Netherton +Date: Wed Nov 20 21:07:21 2019 +0000 + + Add Hystirx component extension (#449) + + fixes #429 + +commit 3763f1a7837e5293c50b40df986cfc1c1c8b5eb3 +Author: lburgazzoli +Date: Wed Nov 20 11:53:54 2019 +0100 + + Remove workaround for https://github.com/quarkusio/quarkus/issues/4564 as it seems to be fixed + +commit 81efd6f37d39f43c6a1d012e346bc8d56e7227dc +Author: Andrea Cosentino +Date: Wed Nov 20 12:36:20 2019 +0100 + + Add Camel-AWS-ECS extension + +commit c39fbd901b436b6854c611412a473db6b84c8c53 +Author: Andrea Cosentino +Date: Wed Nov 20 12:36:20 2019 +0100 + + Fixed FhirProcessor imports + +commit a63a9d5b59471ebe33439bd20b18a4172cb63e95 +Author: aldettinger +Date: Wed Nov 20 13:08:17 2019 +0100 + + Polished camel-quarkus-pdf tests + +commit 5acebbb7002742abc53a387c006531e4532ecb21 +Author: John Poth +Date: Tue Oct 22 10:20:18 2019 +0200 + + Set error parsing to strict for FHIR extension + +commit c744d191470f342556fabfbaead955608db6f6b4 +Author: John Poth +Date: Mon Oct 21 13:10:06 2019 +0200 + + Add FHIR DSTU2 enums + +commit c8f9255b455039103f0fa943113355b799b2e092 +Author: Andrea Cosentino +Date: Tue Nov 19 12:02:57 2019 +0100 + + Add Camel-AWS-KMS extension + +commit 2e772465ea8612b14f8b9505c7aade3af5989362 +Author: James Netherton +Date: Tue Nov 19 10:01:29 2019 +0000 + + Add Dozer component extension + + fixes #435 + +commit c958f7f6373fa0a343b4505057a4a9190b6dbfe5 +Author: Peter Palaga +Date: Tue Nov 19 09:09:25 2019 +0100 + + Fix #428 XSLT extension does not work with file: URIs + +commit 46636b1d222a4840d44079b85d4e97b93f775676 +Author: lburgazzoli +Date: Mon Nov 18 17:27:49 2019 +0100 + + xslt extension not working on java 11 #427 + +commit d907e86ab9d5a76d7662bcc11850f7ed35aa1c86 +Author: Andrea Cosentino +Date: Mon Nov 18 15:45:54 2019 +0100 + + Update latest version released to 0.4.0 + +commit dceecc473db3494f58485ae3630870c94b6beee6 +Author: lburgazzoli +Date: Mon Nov 18 12:20:21 2019 +0100 + + chore: fix typo + +commit 42e30cfae6fb946f6c30b5600bd42b812d4a619b +Author: lburgazzoli +Date: Mon Nov 18 10:21:54 2019 +0100 + + chore: fix first version information in camel-quarkus-sjms + +commit 910914611bb45ef011ff04d883e607bf4df95ac9 +Author: lburgazzoli +Date: Sat Nov 16 15:29:32 2019 +0100 + + Create a Camel Kafka extension #142 + +commit d93ef5b8ad9a0e1fc94d07fe79f07bc26623a6d3 +Author: lburgazzoli +Date: Sun Nov 17 13:27:13 2019 +0100 + + Consolidate microprofile integration tests #433 + +commit 8cf1a09300808a99d7cb12e78dc6d542684f4eee +Merge: 9a18c74dc4 aa82291728 +Author: Andrea Cosentino +Date: Mon Nov 18 09:06:16 2019 +0100 + + Merge pull request #431 from lburgazzoli/bean-validator-enahncements + + Improve bean validator extension + +commit 9a18c74dc4bccd72d0b5c6dd3f21eddd3331c719 +Merge: f8d80abc74 f25717a592 +Author: Andrea Cosentino +Date: Mon Nov 18 09:05:58 2019 +0100 + + Merge pull request #430 from lburgazzoli/sjms + + Initial JMS support + +commit aa82291728cb946a4745f8a120abf465a5d63c8d +Author: lburgazzoli +Date: Sat Nov 16 14:53:28 2019 +0100 + + Improve bean validator extension + +commit f8d80abc74285ab759bd1013cba3ff77d1a462f5 +Author: Claus Ibsen +Date: Sat Nov 16 07:57:04 2019 +0100 + + Polished + +commit f25717a59260e9ddbc3171bf495a8ab2f11aa28a +Author: lburgazzoli +Date: Fri Nov 15 22:11:55 2019 +0100 + + Initial JMS support + +commit a2d7095282e659517f4606c21f7835e0b40b0b65 +Author: lburgazzoli +Date: Fri Nov 15 09:41:55 2019 +0100 + + Make the BeanValidatorComponent leverage the ValidatorFactory computed by Quarkus + +commit 5c4487e7632980d53a901908c56afd1a909faa13 +Author: Claus Ibsen +Date: Wed Nov 13 12:11:53 2019 +0100 + + Polished, remove duplicate, thanks Peter, and order a..z + +commit 8ec7447d64e3706b714059cf9c07924396757b21 +Author: Claus Ibsen +Date: Wed Nov 13 11:52:36 2019 +0100 + + #411 use hibernate-validator extension. Thanks Luca + +commit 1060ba90ef91e6ff56d4ff8b98583752fc4596b9 +Author: Claus Ibsen +Date: Wed Nov 13 11:38:29 2019 +0100 + + Fixes #411 bean-validator extension + +commit 035ba5028fa80ce11ad3c2434e0ec17e61b6d3bd +Author: aldettinger +Date: Fri Nov 15 17:23:30 2019 +0100 + + Fixed an issue where camel-quarkus-pdf was ignoring the camel-pdf configuration in native mode + +commit 9e9dd33930685ca42ce512abdfa909937b91a357 +Author: Andrea Cosentino +Date: Fri Nov 15 14:39:50 2019 +0100 + + [maven-release-plugin] prepare for next development iteration + +commit 2c4918edb654559ec3d5ce55f8fcadd58d07b8de (tag: 0.4.0) +Author: Andrea Cosentino +Date: Fri Nov 15 14:39:20 2019 +0100 + + [maven-release-plugin] prepare release 0.4.0 + +commit 4d4e2c442613191890d73f69cec332d907276814 +Author: Peter Palaga +Date: Fri Nov 15 05:43:43 2019 +0100 + + Fix #356 Issues in the List of extensions (#425) + +commit 1348a08fc4c389a5ebaf79da0ee61e4333931ab2 +Author: lburgazzoli +Date: Wed Nov 13 14:27:46 2019 +0100 + + xslt extension not building in native mode #419 + +commit 00d36e2727d6c7718105acb64f9a634a02f63458 +Author: lburgazzoli +Date: Thu Nov 14 17:59:47 2019 +0100 + + build(actions): enable build in jvm mode for all the supported java versions + +commit d8291620e10858597a8c14ec267a611615d3ad89 +Author: aldettinger +Date: Thu Nov 14 18:02:35 2019 +0100 + + Fixed unclosed resources warning in camel-quarkus-pdf + +commit 8864ad8cb11ec9b54d9d641776d12aac92f089c4 +Author: James Netherton +Date: Thu Nov 14 08:21:04 2019 +0000 + + Add exec component extension + + fixes #417 + +commit 6c910a8f2df91a108e917ccc112a66643f1fe28b +Author: James Netherton +Date: Thu Nov 14 08:41:43 2019 +0000 + + chore: Remove unused itest dependencies + +commit ddd0648c4fb079d4bfe001fa4988a8b719a13663 +Author: Peter Palaga +Date: Wed Nov 13 14:05:10 2019 +0100 + + Fix #382 Support path parameters in platform-http + +commit 74ce46d8f1a7c833331a7f0749f6f5b6d59d17c2 +Author: lburgazzoli +Date: Wed Nov 13 11:58:42 2019 +0100 + + chore: add timer-log-cdi example + +commit fd3b4d53058b619045d620353a2a1ab7d70b8b0a +Author: lburgazzoli +Date: Wed Nov 13 14:39:53 2019 +0100 + + temporary disable xslt extension tests in native mode because of #419 + +commit b65802c6408880ea606731efe441ec8ed0a77c6a +Author: lburgazzoli +Date: Wed Nov 13 10:00:34 2019 +0100 + + chore: fix camel-validator it + +commit ee0d89110cb57a8ddcbb092f553b261f9eee47da +Author: lburgazzoli +Date: Tue Nov 12 23:37:01 2019 +0100 + + core: avoid referencing application classes in bean build items and loading them in core build processors + +commit cb088f67c1c3453f726af20d46db68b85eee2b28 +Author: Claus Ibsen +Date: Wed Nov 13 14:23:59 2019 +0100 + + Increate timeout as CI server can be really slow + +commit 9257c0131d5f96a369de18123da9b7043b16adb9 +Author: Claus Ibsen +Date: Wed Nov 13 09:30:44 2019 +0100 + + Fixes #408 dataformat extension. Regen + +commit 0eb407155155f8bd6aedcfb6baeaea675f5c7c6f +Author: Claus Ibsen +Date: Wed Nov 13 09:22:41 2019 +0100 + + Dataformat (#409) + + * Fixes #408 dataformat extension + + * Fixes #408 dataformat extension + +commit a3c664111231a2ccc01d5aca6de3f03bd33bf705 +Author: Claus Ibsen +Date: Wed Nov 13 09:00:44 2019 +0100 + + Xslt (#407) + + * Fixes #406 xslt extension + + * Fixes #406 xslt extension + + * #406 regen + + * Fixed CS + +commit a52d87f40e786ae33e78d4d3c576be749def3356 +Author: Claus Ibsen +Date: Tue Nov 12 21:09:42 2019 +0100 + + Make test smarter, thanks Peter for the suggestion. + +commit 24211883324d84a2cf40297fb262bf89298df289 +Author: Claus Ibsen +Date: Tue Nov 12 20:54:44 2019 +0100 + + Fixes #403 adding scheduler extension + +commit 21c49f173fdbe696997073377684414c7a7259d2 +Author: Claus Ibsen +Date: Tue Nov 12 20:35:31 2019 +0100 + + Fixes #403 adding scheduler extension + +commit 68b6096e31c7f6fcd5af5323011bedb15881672a +Author: lburgazzoli +Date: Tue Nov 12 09:04:14 2019 +0100 + + Add an option to filter auto-discovered routes #396 + +commit e765b0066e65c34fe3d7905bec21bdb4ba442759 +Author: Peter Palaga +Date: Mon Nov 11 19:25:29 2019 +0100 + + Fix #136 @ConfigProperty and @Inject do not work in RouteBuilders + +commit db4d1b68d68fc9ec9aabe917605cbf9ae7092d68 +Author: Claus Ibsen +Date: Tue Nov 12 20:31:41 2019 +0100 + + Update contributor-guide.adoc + +commit 00cf8e75e619cf74881f6ed15692b9d7d90f3b98 +Author: Claus Ibsen +Date: Tue Nov 12 20:21:13 2019 +0100 + + Regen + +commit 1d6a969bbeaa1bcf99688d62370d17cbab047d66 +Author: ploef +Date: Tue Nov 12 20:14:25 2019 +0100 + + added Camel validation extension (#393) + + * added Camel validation extension + + * added camel-quarkus-support-xml-deployment to Validator extension deployment + + * registering reflection for xerces + + * fixing missing license on message.xsd + +commit a940fa35091720ff369cc25cfbb24f87a08cf45c +Author: Peter Palaga +Date: Mon Nov 11 14:38:44 2019 +0100 + + Introduce CamelRoutesBuilderClassBuildItem to query for RoutesBuilder + classes just once. + +commit ec21d49062ada072f4608d864812caa36dadd2f0 +Author: Peter Palaga +Date: Mon Nov 11 13:57:02 2019 +0100 + + Publish discovered RoutesBuilders via CamelBeanBuildItem instead of CamelRoutesBuilderBuildItem + +commit 2867226c4ab7f81ba45ac94e3f2f66ed8d1c30cb +Author: lburgazzoli +Date: Tue Nov 12 12:58:24 2019 +0100 + + chore: Fix deprecation warning on netty tests and simplify it a bit + +commit c9bd14792ffa94e69cef04b3fa552d7b8afcb2ba +Merge: d89b6edfa8 95e5d20c24 +Author: Andrea Cosentino +Date: Tue Nov 12 12:42:27 2019 +0100 + + Merge pull request #399 from jamesnetherton/file-extension + + Add file component extension + +commit 95e5d20c24f7cd3705a86a970acbdb40b570ab36 +Author: James Netherton +Date: Tue Nov 12 11:04:24 2019 +0000 + + chore: Fix SnakeYAML itest native profile id + +commit 64e150e7989a36201cb5c47f12f12dcb55e70227 +Author: James Netherton +Date: Tue Nov 12 10:19:48 2019 +0000 + + Add file component extension + + fixes #398 + +commit d89b6edfa884970f71f43a77201f1a08f6545330 +Merge: cbbd832b00 e09d80152a +Author: Andrea Cosentino +Date: Tue Nov 12 11:41:25 2019 +0100 + + Merge pull request #397 from lburgazzoli/cleanup + + Cleanup and CamelConfig improvements + +commit e09d80152acf842b75324976a695b554c3662d3f +Author: lburgazzoli +Date: Tue Nov 12 09:33:32 2019 +0100 + + config: switch to quarkus.camel..enabled pattern instead of quarkus.camel.-enabled to enable/disable features + +commit 53a6c75cdbee8e6ee4b740c318f16568b27833ed +Author: lburgazzoli +Date: Tue Nov 12 09:21:12 2019 +0100 + + config: simplify CamelConfig as runtime configuration happens trough camel.* properties handled by camel-main + +commit 77e825613e9e0506d0c009a0efacc107670cc017 +Author: lburgazzoli +Date: Tue Nov 12 09:15:58 2019 +0100 + + Replace deprecated SubstrateTest with NativeImageTest + +commit ee183427cbaa03aab777c5083eba8e70ba0d3283 +Author: lburgazzoli +Date: Tue Nov 12 09:14:38 2019 +0100 + + config: remove unused configuration option dump-routes + +commit cbbd832b00ae878b0b9dc1223cf20e30a1ca6de9 +Author: Luca Burgazzoli +Date: Tue Nov 12 05:47:59 2019 +0100 + + Cleanup Netty extension (#395) + + * chore: fix usage of deprecated io.quarkus.deployment.builditem.substrate.ReflectiveClassBuildItem + + * netty: review and cleanup the list of classes registered for reflection + +commit 9303490d7de6bebcf48c2167108b1ee4e4c9e46c +Author: Peter Palaga +Date: Tue Nov 12 05:47:27 2019 +0100 + + Fix license headers (#394) + + * Add missing license header configuration + + * Add missing licenseheaders + + * Let the CI check the licenses + +commit 391348d5fa62092ce9f7e47dae55a510bef98792 +Author: lburgazzoli +Date: Mon Nov 11 13:18:01 2019 +0100 + + Fix findings + +commit 47591887286a8764411a1af72eef6c44dbcda2c9 +Author: lburgazzoli +Date: Mon Nov 11 11:25:12 2019 +0100 + + code formatter] multi line TODOs are not supported #389 + +commit b7ad857c2a0820c7405f1717c4f63720e92bdf17 +Author: lburgazzoli +Date: Mon Nov 11 11:24:35 2019 +0100 + + Perform TypeConverterLoader discovery using jandex instead of camel's class path scanner + +commit b9eb61e22e35b24ffd7a81ea5eefd42edabf5295 +Author: James Netherton +Date: Mon Nov 11 09:56:42 2019 +0000 + + chore(build): Make PR validate run package phase to avoid downloading stale SNAPSHOT artifacts + +commit 28b70c40e184be09f33fe4c58adce19ffbedfa99 +Author: James Netherton +Date: Mon Nov 11 08:48:12 2019 +0000 + + Add SnakeYAML extension + + fixes #338 + +commit 396e008a9549b07cbea0835d655e2324aecf5d1a +Author: Claus Ibsen +Date: Fri Nov 8 15:40:29 2019 +0100 + + feat: controlbus extension. (#388) + + * feat: controlbus extension. + + * feat: controlbus extension. + + * Argh please keep those pom.xml ordered a..z + + * Fixed pom.xml + + * Update test thanks to Peter for the suggestion + +commit e3cbc0a9505d7eed2af49b5570e1483e9dce328d +Author: Peter Palaga +Date: Fri Nov 8 15:31:54 2019 +0100 + + Recommend mvn license:format -Plicense in the docs (#387) + +commit 8e768e5db5a7d35d6aa64f4b26c191c4c4b8b417 +Merge: 2680982f09 2ae34c692a +Author: Andrea Cosentino +Date: Wed Nov 6 21:19:15 2019 +0100 + + Merge pull request #381 from lburgazzoli/camel-1.0.0.CR1 + + Update to Quarkus 1.0.0.CR1 + +commit 2680982f099b698ad9352d94047e2dfd39e0ded7 +Merge: 44e9f70865 24d4e8e5e5 +Author: Andrea Cosentino +Date: Wed Nov 6 19:22:11 2019 +0100 + + Merge pull request #380 from lburgazzoli/checkstyle-cleanup + + chore: remove checkstyle leftovers + +commit 2ae34c692a22fef2eaf15827e0fad005896654f8 +Author: lburgazzoli +Date: Wed Nov 6 17:29:39 2019 +0100 + + Update to Quarkus 1.0.0.CR1 + +commit 24d4e8e5e54ce094c3f29f2ded43e9af689c2118 +Author: lburgazzoli +Date: Wed Nov 6 17:10:43 2019 +0100 + + chore: remove checkstyle leftovers + +commit 44e9f7086543233f86de489c8006915e4b359fa2 +Author: Peter Palaga +Date: Mon Nov 4 17:17:20 2019 +0100 + + Improve the Github workflows: check licenses, better step and WF names + +commit b35d5fd545eaf914766e5d4e044346a316b75339 +Author: Guillaume Nodet +Date: Tue Nov 5 18:25:22 2019 +0100 + + Revert to the previous usage in examples where the user now has to change the pom to camel-quarkus-bom + +commit a94586616a5e01aea1d1837b1728be6ad66aafa5 +Merge: 87b0cdfef6 b72c2f087b +Author: Andrea Cosentino +Date: Tue Nov 5 15:36:20 2019 +0100 + + Merge pull request #378 from lburgazzoli/quarkus-0.28.1 + + Update to quarkus 0.28.1 + +commit b72c2f087b79131717d10605770c361743cc6afc +Author: lburgazzoli +Date: Tue Nov 5 14:51:51 2019 +0100 + + Update to quarkus 0.28.1 + +commit 87b0cdfef6db4c65f7200c2878f1b69acfc69aa0 +Merge: 21785c8e4e 7af2bf0284 +Author: Guillaume Nodet +Date: Tue Nov 5 11:33:02 2019 +0100 + + Merge pull request #371 from gnodet/issue-337 + + Use automatic code formatting, fixes #337 + +commit 7af2bf0284cc3fdff8197b8cc03ce03f40399e11 +Author: Guillaume Nodet +Date: Tue Nov 5 11:10:28 2019 +0100 + + Examples should import the BOM instead of inheriting it as users would do + +commit 8c24914c630bc86a4b94030b48ecfcc4066157c7 +Author: Guillaume Nodet +Date: Tue Nov 5 10:30:11 2019 +0100 + + Regen + +commit c4fe6a0803f4a443e68ae80bdb9bcdc75c0fb563 +Author: Guillaume Nodet +Date: Mon Nov 4 11:22:40 2019 +0100 + + Add automatic code formatting, fixes #337 + +commit 21785c8e4e841147617f82c35d2c4e73efd0987b +Merge: 27b1149ea6 2ec1203d98 +Author: Guillaume Nodet +Date: Tue Nov 5 10:29:56 2019 +0100 + + Merge pull request #377 from gnodet/issue-376 + + Use local legal files, fixes #376 + +commit 2ec1203d981225f98e029efeadf4e17a6559f927 +Author: Guillaume Nodet +Date: Tue Nov 5 10:16:47 2019 +0100 + + Use local legal files, fixes #376 + +commit 27b1149ea6bf7c7f7e756ef826502167c6e231c7 +Author: lburgazzoli +Date: Mon Nov 4 17:05:26 2019 +0100 + + chore(deps): remove jetty-client from suport/common + +commit 74099a2ab741122caf6abc68a5f760e29236127a +Merge: 07ac9d7071 c00d4932de +Author: Guillaume Nodet +Date: Tue Nov 5 09:03:30 2019 +0100 + + Merge pull request #375 from gnodet/issue-336 + + Reuse camel package maven plugin to avoid duplicating code, fixes #336 + +commit 07ac9d70715e74da523768595beae80f86caf961 +Author: Guillaume Nodet +Date: Mon Nov 4 14:44:35 2019 +0100 + + Upgrade to quarkus 0.28.0, fixes #372 + +commit c00d4932de8cc8c1ab80e50cd3044e425dbc59cb +Author: Guillaume Nodet +Date: Mon Nov 4 17:20:54 2019 +0100 + + Reuse camel package maven plugin to avoid duplicating code, fixes #336 + +commit 86b5830c998d79854cacbe0015925e213b513d55 +Author: lburgazzoli +Date: Sun Nov 3 14:39:40 2019 +0100 + + Use capabilities instead of feature names + +commit 719774d8fcdabbbbdac9a61d7446673d2410ea9e +Author: lburgazzoli +Date: Sun Nov 3 10:59:30 2019 +0100 + + Add description to extension matedata #360 + +commit 05ed6c377b9f55caf7c71d161a322e08f4093a47 +Author: lburgazzoli +Date: Sun Nov 3 12:05:45 2019 +0100 + + Move pr-build-java-11 to github workflow + +commit a9066d6dd2a5eb19bfc1aa3ec8e8b5a770c6bf91 +Author: Luca Burgazzoli +Date: Sun Nov 3 12:03:09 2019 +0100 + + Add action to test pr against Java 11 in JVM mode + +commit 0d854dcdad13f8e6faae56b33abbb24a1ecd9aa1 +Author: Peter Palaga +Date: Sun Nov 3 09:46:13 2019 +0100 + + Set camel-quarkus-last-release: 0.3.1 in site.yml + +commit f8fd325c04eb65f7b0cc1cdaff031d58aa8226af +Author: Peter Palaga +Date: Fri Nov 1 16:50:05 2019 +0100 + + Fix #357 Make netty-http dependent on netty and remove the duplications (#365) + +commit 91bd05b2b8f77bb259cb9230c5aca9288b4de04a +Author: Peter Palaga +Date: Fri Nov 1 12:21:15 2019 +0100 + + Make -Pnative equivalent with -Dnative, prefer -Pnative in the docs (#363) + + * Make -Pnative equivalent with -Dnative, prefer -Pnative in the docs + + Same for -Ddocker and -Pdocker + + * Have a some basic common structure in the example READMEs + +commit 270cbbf05ed67dad9b6947f7e05519ed837267b0 +Author: Luca Burgazzoli +Date: Fri Nov 1 08:46:57 2019 +0100 + + chore: fix cs (#362) + +commit 61867773dbccee557390d96e5286b144e5e79cff +Author: dhartford +Date: Wed Oct 30 22:39:53 2019 -0400 + + Initial camel-quarkus-netty support + +commit c81a15c584f8751afbb211a584ba24468eb789a0 +Author: Luca Burgazzoli +Date: Thu Oct 31 22:51:04 2019 +0100 + + Update pr-validate.yml + +commit d8fc9b1912bffbee27cf5f56159491de18f04d91 +Author: Luca Burgazzoli +Date: Thu Oct 31 22:44:10 2019 +0100 + + Update pr-validate.yml + +commit 5c2c1c2605afea7a6fc9c59d10709ff4401584c2 +Author: Luca Burgazzoli +Date: Thu Oct 31 22:31:29 2019 +0100 + + Add PR validation workflow + +commit 80ef8f7d9bd37f92306dccdecd15f4f69735db79 +Author: Peter Palaga +Date: Wed Oct 30 20:51:59 2019 +0100 + + Fix #354 Update contributor guide: s/json/yaml/, extension adoc page + +commit 8871ed9289cd16c09327aed2b4b19730013b361f +Author: Peter Palaga +Date: Thu Oct 31 20:11:26 2019 +0100 + + Use uppercase FHIR where appropriate (#359) + +commit 7bb74e548a011228357a7e82347c9363c3eb3556 +Author: Andrea Cosentino +Date: Wed Oct 30 13:56:56 2019 +0100 + + [maven-release-plugin] prepare for next development iteration + +commit 622458e1bbaf582344118b26dac579bfc2d68e1e (tag: 0.3.1) +Author: Andrea Cosentino +Date: Wed Oct 30 13:56:33 2019 +0100 + + [maven-release-plugin] prepare release 0.3.1 + +commit 24cfba015d31c0eb86f64a9eab032d63bb32cc31 +Author: lburgazzoli +Date: Wed Oct 30 12:10:57 2019 +0100 + + Add quarkus-platform-ignore to test that are not supposed to be executed in quarkus-platform + +commit f1a1d14150e443b7436d0ec16b52c7020be028e9 +Author: lburgazzoli +Date: Wed Oct 30 11:39:41 2019 +0100 + + Tenporary disable tfhir tests as the testing endpoint seems to be down + +commit 97791aefa82152e375dcf378cdc86d7b7f46200a +Author: lburgazzoli +Date: Wed Oct 30 07:39:14 2019 +0100 + + Add category to extension descriptors #347 + +commit 90ed33c07925bc00875225edeb0fcd6bd17125e1 +Author: lburgazzoli +Date: Wed Oct 30 07:17:23 2019 +0100 + + Support new yaml format to extension meatdata validation script + +commit 88d3727ebd4b43da56803b8455f58736f7f54222 +Author: Max Rydahl Andersen +Date: Mon Oct 28 23:08:00 2019 +0100 + + Move to Quarkus 0.27+ yaml descriptor + + Why: + + * in 0.27 Quarkus are moving to a updated structure that is more flexible + (use of open-ended `metadata` for tooling/UI annoations/labels) + * in 0.27 we are also changing `quarkus-extension.json` to `quarkus-extension.yaml` + * For now this only affect tools/plaform usage, thus there should be no runtime impact. + + This change addreses the need by: + + * scripted conversion from old to new format. Verified same number of files changed. + +commit 7f25029c9dcccba786e1b3cd50d2bcd873469173 +Author: lburgazzoli +Date: Tue Oct 29 15:03:11 2019 +0100 + + Update to quarkus 0.27.0 + +commit ac1ef8f2344a51599efc4a48d48b07f8fb3d96c3 +Author: Peter Palaga +Date: Wed Oct 30 09:44:22 2019 +0100 + + Fix #299 Use Camel's async processor in platform-http + +commit b20849240e73559f761cadc0f64f098f4283590f +Author: Peter Palaga +Date: Tue Oct 29 12:31:15 2019 +0100 + + Fix #220 platform-http component should return 204 for success and no body + +commit 44d18e8b0344b0df82c5e47d25d47e09dca1023d +Author: Peter Palaga +Date: Tue Oct 29 13:19:23 2019 +0100 + + Fix #270 TarfileTest can fail on exotic platforms + +commit 2e43a14f64c9b57d09ffba8da2b9bad4d1a66c47 +Author: lburgazzoli +Date: Tue Oct 29 20:02:03 2019 +0100 + + Simplify filter methods + +commit 915c863934eb52ea9ab5f80fd8e0d2b92188f11e +Author: lburgazzoli +Date: Tue Oct 29 19:42:53 2019 +0100 + + Add helper methods to create filters for camel services discovered at build time + +commit 6d4313863ec0b2e1ee7bd49423df8d0d36035149 +Author: aldettinger +Date: Tue Oct 29 10:18:09 2019 +0100 + + Update extensions/pdf/runtime/src/main/resources/META-INF/quarkus-extension.json + + Co-Authored-By: Peter Palaga + +commit 5c780b27795f18788fd214d482505b50ca95effc +Author: aldettinger +Date: Tue Oct 29 10:17:51 2019 +0100 + + Update integration-tests/pdf/pom.xml + + Co-Authored-By: Peter Palaga + +commit 6d59cd8f294bf4f5fd13dae970c1c567386d6677 +Author: aldettinger +Date: Tue Oct 29 10:17:44 2019 +0100 + + Update integration-tests/pdf/pom.xml + + Co-Authored-By: Peter Palaga + +commit d2081b26e5dd9e860149494aaac7c1ef4c46f6ed +Author: aldettinger +Date: Tue Oct 29 10:17:36 2019 +0100 + + Update extensions/pdf/runtime/src/main/resources/META-INF/quarkus-extension.json + + Co-Authored-By: Peter Palaga + +commit ff90bab3c8033ea02a1f5afbfc32d5ffe9cd9235 +Author: aldettinger +Date: Tue Oct 29 10:17:28 2019 +0100 + + Update extensions/pdf/runtime/pom.xml + + Co-Authored-By: Peter Palaga + +commit 8b31aae18ae61f5411c497dbc7a821802af33646 +Author: aldettinger +Date: Tue Oct 29 10:17:17 2019 +0100 + + Update extensions/pdf/pom.xml + + Co-Authored-By: Peter Palaga + +commit 4a2db9b6c8cd4f82691f18c44ec942ffb0c50ccf +Author: aldettinger +Date: Tue Oct 29 10:17:06 2019 +0100 + + Update extensions/pdf/deployment/pom.xml + + Co-Authored-By: Peter Palaga + +commit 233f56ba27f6abe975f50f57b2bfd82205f8166c +Author: aldettinger +Date: Tue Oct 22 15:44:12 2019 +0200 + + Created a camel-pdf component extension fixes #341 + +commit 41af163cc2a25da6a0ec87ffa030bd870189dbf4 +Merge: 2ac6ea7d6e 5a08ff4327 +Author: Andrea Cosentino +Date: Tue Oct 29 10:57:35 2019 +0100 + + Merge pull request #345 from ppalaga/191029-camel-quarkus-last-release-0.3.0 + + Set camel-quarkus-last-release: 0.3.0 in site.yml + +commit 5a08ff432741fae4dee71580a1e44ba7a115c153 +Author: Peter Palaga +Date: Tue Oct 29 10:56:20 2019 +0100 + + Set camel-quarkus-last-release: 0.3.0 in site.yml + +commit 2ac6ea7d6ed4a3ddbe43d0797a4196f9b7f62c0c +Author: Peter Palaga +Date: Tue Oct 29 06:33:14 2019 +0100 + + Improve the contributor guide, esp. the create-extension examples (#343) + +commit 14b90854efdcf8a8574cb2350f67dd2fe999d9c8 +Author: lburgazzoli +Date: Sun Oct 27 21:35:46 2019 +0100 + + main: wrap MainListener with a RuntimeValue + +commit 1a4c361eff4b6b8a18cd2c3b10ffd152638d347c +Author: lburgazzoli +Date: Sun Oct 27 19:43:11 2019 +0100 + + main: fire start event before context post processor is fired + +commit bf2e3e1adc47c2eb14b3b20f65c7bd613f6799b8 +Author: lburgazzoli +Date: Mon Oct 28 10:21:15 2019 +0100 + + core(test): reduce noisy logging in platform-http component tests + +commit 2bac3e17366c4ec92fdbd9b1dc726dedac973f47 +Author: lburgazzoli +Date: Mon Oct 28 10:16:43 2019 +0100 + + core: create a CamelServiceFilterBuildItem to let extension filter services automatically discovered and instantiated at augmentation phase + +commit 30cb04246b83253b3d04956fa80941de691c827a +Author: lburgazzoli +Date: Mon Oct 28 09:37:56 2019 +0100 + + chore(style): remove unused arguments + +commit a0ecb587f09ca735ead9fcfbf1cadfe85dcc2168 +Author: lburgazzoli +Date: Mon Oct 28 09:36:45 2019 +0100 + + chore(style): remove unused method + +commit f00b10b21d241b5a56e26d0eb5c9f4126babf0b2 +Author: Peter Palaga +Date: Fri Oct 25 13:37:40 2019 +0200 + + platform-http should return 406 it it cannot satisfy the client accept + header + +commit 90a9143a7c6b6aee1607b9453bdf772391155b82 +Author: Peter Palaga +Date: Fri Oct 25 12:59:33 2019 +0200 + + Fix #326 platform-http should return 415 for an unaccepted content type + +commit e74950e09288d43e2e2478df9f84bc03189ada0f +Author: Andrea Cosentino +Date: Fri Oct 25 12:09:18 2019 +0200 + + [maven-release-plugin] prepare for next development iteration + +commit 90230ceca163dc11fe6f3328ef07a832b03ed590 (tag: 0.3.0) +Author: Andrea Cosentino +Date: Fri Oct 25 12:08:55 2019 +0200 + + [maven-release-plugin] prepare release 0.3.0 + +commit bb9e67fa0b19f88fd4959bd2e5c808000284bbc3 +Author: Andrea Cosentino +Date: Fri Oct 25 12:03:14 2019 +0200 + + Added a DummyClass to timer-log-xml example to make Javadoc happy for the moment + +commit 87a5d2eba1a08da32d9e83ee62f0272384d7f3bd +Author: Andrea Cosentino +Date: Fri Oct 25 11:38:54 2019 +0200 + + Added Javadoc to Package Maven plugin + +commit ae3cae843d1a025ee7069a7e1024647255f19c8a +Author: lburgazzoli +Date: Fri Oct 25 09:34:11 2019 +0200 + + chore: remove staging repo + +commit 2aae48209104969cc47fc9ba160ea5c226e85952 +Author: Claus Ibsen +Date: Fri Oct 25 08:37:59 2019 +0200 + + Polish examples and use -P native for all of them for native build. (#334) + +commit 01dd1a536f028a5154103828d143784cfd5cd8da +Author: James Netherton +Date: Fri Oct 25 07:28:25 2019 +0100 + + chore: Make fhir extension doc consistent with other extensions doc + +commit 7d158d7897955f8ac35d2e37480fe490cb199914 +Author: James Netherton +Date: Fri Oct 25 07:23:44 2019 +0100 + + chore: Fix typo in platform-http extension docs + +commit bb887a1d04afe27e96037d2b86a4f388c2a4e24f +Author: lburgazzoli +Date: Fri Oct 25 01:57:54 2019 +0200 + + chore: fix cs + +commit edec6989ceacbd29aa7dfd9d7399c16e9dac5995 +Author: lburgazzoli +Date: Fri Oct 25 01:40:03 2019 +0200 + + fhir: update doc doc + +commit 35529af24e16e073182cd08aae34e433d68a2092 +Author: lburgazzoli +Date: Fri Oct 25 01:38:14 2019 +0200 + + fhir: build time config options (improved) + +commit cbba43987f167618f1efc10b872ea6fe87f7a1aa +Author: lburgazzoli +Date: Thu Oct 24 20:17:39 2019 +0200 + + chore: fix cs + +commit 0c48f79abbd194506556103888c09cb582577185 +Author: lburgazzoli +Date: Thu Oct 24 19:46:47 2019 +0200 + + chore: fix dependencies issues reported during augmentation phase + +commit 80d34206e64dfa9d3390c14c06c9d3aeb04a8b2d +Author: lburgazzoli +Date: Thu Oct 24 19:45:56 2019 +0200 + + chore: fix unchecked cast warning + +commit d0962de71e96f71456b23b8e12246107d964a225 +Author: lburgazzoli +Date: Thu Oct 24 19:35:50 2019 +0200 + + fhir: build time config options + +commit cfa44195ec8617408cc5a6165fc3621f6ec1539c +Author: lburgazzoli +Date: Thu Oct 24 17:50:00 2019 +0200 + + chore(build): add a profile to activate native build in containers, default is to build with local native-image + +commit b37698cd7540273626265eec62b7615ed2d5683c +Author: Guillaume Nodet +Date: Thu Oct 24 23:04:26 2019 +0200 + + Do not use docker to run native tests, fixes #332 + +commit c4663d70881a6119e445fa5e3eb9d0e56bab12b0 +Merge: 80c0f95b59 db4795bf10 +Author: Guillaume Nodet +Date: Thu Oct 24 22:59:27 2019 +0200 + + Merge pull request #320 from gnodet/issue-306 + + Add jackson and vm extensions, fixes #306 and #318 + +commit db4795bf10e8f66be8d80dc25f538a13ff445779 +Author: Guillaume Nodet +Date: Tue Oct 22 18:03:08 2019 +0200 + + Add jackson and vm extensions, fixes #306 and #318 + +commit 80c0f95b590eb6b8688ac9e1af7196752534b482 +Merge: aec0003990 34c1f46d01 +Author: Andrea Cosentino +Date: Thu Oct 24 21:21:34 2019 +0200 + + Merge pull request #331 from jamesnetherton/slack-extension + + Add Slack extension + +commit 34c1f46d01c320f07ec90c86a0cd5ab75f21903f +Author: James Netherton +Date: Thu Oct 24 16:15:01 2019 +0100 + + Add Slack extension + + fixes #305 + +commit aec00039908d167bc48359afa1398baf4c50b436 +Author: John Poth +Date: Tue Oct 15 12:56:01 2019 +0200 + + Add FHIR extension + +commit f5243c6a82dfde937673e80d3e0c5acad5aaf390 +Author: Peter Palaga +Date: Wed Oct 23 15:03:47 2019 +0200 + + Add more platform-http tests + +commit eb4cdfb9f0d869e19397d062571a90d76f2fbe21 +Author: Peter Palaga +Date: Wed Oct 23 12:30:25 2019 +0200 + + Make since versions of new extensions to be 0.3.0 + +commit 228bec793ad5faa4294210a4a5ccac56eb52b0e9 +Author: Peter Palaga +Date: Wed Oct 23 11:45:46 2019 +0200 + + Fix #324 Document the platform-http extension + +commit 3f48af64dec23b7649c94ba03204c8bbfbdfe679 +Author: Peter Palaga +Date: Wed Oct 23 10:58:04 2019 +0200 + + Fix #322 Make camel-attachments an optional dependency of platform-http + +commit ab5e2c88960dfbe8d35bc2e3ed779a2587ab77a1 +Author: lburgazzoli +Date: Wed Oct 23 19:15:22 2019 +0200 + + chore(build): set groovy-maven-plugin version + +commit a95a2234696471dad04c31e233a82f0e91a780f0 +Merge: 6eee6b304b 6473b8973f +Author: Andrea Cosentino +Date: Thu Oct 24 15:26:07 2019 +0200 + + Merge pull request #327 from lburgazzoli/github-314 + + Improve dev mode + +commit 6473b8973f527337bd971d657eb62231aecb17bd +Author: lburgazzoli +Date: Wed Oct 23 19:02:31 2019 +0200 + + Improve dev mode #314 + +commit 6eee6b304b76218b9bf5bf2a230ee78374744de7 +Author: lburgazzoli +Date: Wed Oct 23 19:25:23 2019 +0200 + + chore(build): add doclint-java8-disable profile borrowed from Apache Camel + +commit 7113d1ebd5d840f24c4224e829450b1f6ed9ba9a +Author: lburgazzoli +Date: Wed Oct 23 13:32:44 2019 +0200 + + Upgarde quarkus to v0.26.1 + +commit 5ad2524e99ac0dda642af61291c560fe68547ca5 +Author: James Netherton +Date: Wed Oct 23 10:38:14 2019 +0100 + + chore: Fix typo in observability example README + +commit 7aa41066ecddc2b85abb4de540acef9a766233d7 +Author: Peter Palaga +Date: Tue Oct 22 17:35:21 2019 +0200 + + Fix #308 Support multipart/form-data in platform-http extension + +commit e5096a1afdc2f9616c3cc230ecbd9b8e077d267c +Author: Peter Palaga +Date: Tue Oct 22 14:05:24 2019 +0200 + + Add Attachments extension + +commit c26af89fac7282c7e157761d97a1c4912127f733 +Author: James Netherton +Date: Tue Oct 22 14:33:36 2019 +0100 + + Upgarde to camel 3.0.0-RC3 + + fixes #316 + +commit 04d4487e5483c51c6321ebebef92066f3cb4518c +Author: James Netherton +Date: Tue Oct 22 13:39:52 2019 +0100 + + Upgrade to quarkus 0.26.0 + + fixes #315 + +commit 0541c8509a52d61148f809ad15de92a03b218974 +Author: James Netherton +Date: Tue Oct 22 14:10:58 2019 +0100 + + Add observability example (#311) + + fixes #297 + + WIP + +commit 2458c1e7d2a181164deb9a7b953b3674e328a63a +Author: Peter Palaga +Date: Tue Oct 22 15:06:22 2019 +0200 + + Fixup #262 Use bomEntryVersion of CreateExtensionMojo (#313) + +commit 21544b2351e2e25ef4d12828878b525aac1507f6 +Author: Claus Ibsen +Date: Tue Oct 22 15:04:27 2019 +0200 + + Timer example (#312) + + * #310: A simple timer to log example as hello world + + * #310: A simple timer to log example as hello world + + * #310: Polished + + * Update examples/timer-log/README.adoc + + Co-Authored-By: Peter Palaga + +commit 876b52dd4a21d35ed31f0fd3797d1115c635d89d +Author: Claus Ibsen +Date: Tue Oct 22 11:20:11 2019 +0200 + + Fixes #309: Updated readme + +commit d30d05d659779b19810e390f1ac0881953fe7b49 +Author: lburgazzoli +Date: Tue Oct 22 10:49:27 2019 +0200 + + chore: add metadata for support extension + +commit 06391c1e7c6c85af540bc82efc5921c0b90f11d3 +Author: lburgazzoli +Date: Tue Oct 22 07:22:49 2019 +0200 + + chore: rename SubstrateProcessor + +commit e43b7b65733b4b743c2c9d6c3d96d0051a331413 +Author: lburgazzoli +Date: Mon Oct 21 19:43:39 2019 +0200 + + chore: add tests for quarkusio/quarkus#4408 + +commit 2a11167addd4503e0ca632cf279f47561ebacfea +Author: Peter Palaga +Date: Mon Oct 21 17:13:30 2019 +0200 + + Fix #285 Un-negate the config options names + +commit 3f37320597c79a65cddd2774eddf9aa22baf8f6a +Author: Peter Palaga +Date: Mon Oct 21 16:14:49 2019 +0200 + + Rename camel-quarkus-extensions-support to + camel-quarkus-support-extensions so that the ordering by artifactId is + the same as ordering by directory name. This simplifies the orientation + in IDEs. + +commit 64cbae287b6f873f76e785fa406dc43fb22c9ddc +Author: lburgazzoli +Date: Mon Oct 21 13:40:55 2019 +0200 + + chore: delete wrong extension metadata file + +commit 11636be01711ba65c6cd3b7229ddeac0be304722 +Author: lburgazzoli +Date: Mon Oct 21 13:40:32 2019 +0200 + + chore: re-organize support extensions + +commit f9b20ba5cf3a0cd9c168b0576409837838eac08e +Author: lburgazzoli +Date: Mon Oct 21 13:39:41 2019 +0200 + + Add a support/xml artifact for common substrate support #294 + +commit d26175001188d07b49c50da02337bf379891fc7f +Author: lburgazzoli +Date: Mon Oct 21 12:42:05 2019 +0200 + + Rename xml-common extension to core-xml #292 + +commit cf932eee3c6efbaccf84150d90d7afa6729c4d71 +Author: Peter Palaga +Date: Mon Oct 21 12:26:33 2019 +0200 + + Enable PlatformHttpTest.invalidMethod() https://github.com/quarkusio/quarkus/issues/4408 seems to be fixed as of Quarkus 0.25 + +commit b00dc4cd294d587de8e3856a318e614ae8f32c56 +Author: Peter Palaga +Date: Mon Oct 21 09:43:25 2019 +0200 + + Followup #278 Fix extension metadata validation failures + +commit ec918eca71eeafb0cda0b304763004613e686e09 +Author: Peter Palaga +Date: Fri Oct 18 14:09:48 2019 +0200 + + Followup #278 Assert that quarkus-extension.json exists for each + extension + +commit c63168cc1781989adcb49753e9369e785378610b +Author: John Poth +Date: Fri Oct 18 16:34:15 2019 +0200 + + Fix version in integration-test-pom.xml + +commit 374b5bbd74a686dddf28a94d4228fcee66afc2f0 +Author: lburgazzoli +Date: Mon Oct 21 09:18:06 2019 +0200 + + Improve routes collector + +commit 5b669020b01a09ceadfb048fa537ad02f673472f +Author: lburgazzoli +Date: Mon Oct 21 08:01:34 2019 +0200 + + create routes builder with RecorderContext + +commit cbbd2a9ba46ce435216da6dccbcd7af25eee047d +Author: Peter Palaga +Date: Fri Oct 18 17:07:52 2019 +0200 + + Fix #262 Use bomEntryVersion of CreateExtensionMojo + + to avoid ${project.version} usage in BOMs + +commit f1a6aae060632a65f1e89056a92a6bf394429dc3 +Author: lburgazzoli +Date: Sat Oct 19 11:39:53 2019 +0200 + + master failing #288 + +commit a81ee97ed72215d8113f2938d8e4a89bcbbe8a72 +Author: James Netherton +Date: Fri Oct 18 09:36:39 2019 +0100 + + Document health, metrics & OpenTracing extensions + +commit 9e47685c8215c7c6d50587154b2f1c712ac32785 +Author: Guillaume Nodet +Date: Fri Oct 18 14:21:38 2019 +0200 + + Add mvn daemon rules + +commit fb03b3b8e1642883274254bfd9f20157fdd5ea18 +Author: lburgazzoli +Date: Thu Oct 17 15:12:21 2019 +0200 + + Add minimal extension metadata #278 + +commit cc876147987aa5eb918d927b2380b970ac2d1a60 +Author: lburgazzoli +Date: Sun Oct 13 23:51:07 2019 +0200 + + Update to quarkus 0.25.0 + +commit 50475186dabc250c93fc645a6018f89eec4c8cb1 +Merge: 35db58676e d356025247 +Author: Andrea Cosentino +Date: Thu Oct 17 11:05:49 2019 +0200 + + Merge pull request #279 from jamesnetherton/276-opentracing + + fix: Add OpenTracing extension + +commit 35db58676e75db63b0c5a6044ded572d6f6e7070 +Author: lburgazzoli +Date: Thu Oct 17 09:31:16 2019 +0200 + + chore: fix leftovers + +commit 081cea2057b09d8cf9f1c4142595acaf93d3a063 +Author: Guillaume Nodet +Date: Wed Oct 16 12:15:28 2019 +0200 + + Make xml and jaxb disabled by default and opt-in when depending on camel-quarkus-xml-common, also upgrade to quarkus 0.24.0, #188 + +commit d356025247b2cceb52d2d72b731bfb11b2fa7552 +Author: James Netherton +Date: Thu Oct 17 08:03:14 2019 +0100 + + fix: Add OpenTracing extension + + fixes #276 + +commit 2d8223b5eea9cccdd30d258203cd9385f3249bef +Author: James Netherton +Date: Wed Oct 16 08:04:33 2019 +0100 + + fix(build): Handle loading routes from XML with latest camel SNAPSHOT + +commit c61a79bc7f75a068175fad0281cbddbf5b58b758 +Author: James Netherton +Date: Mon Oct 14 13:50:52 2019 +0100 + + fix: Paho integration tests fail in native mode + + fixes #273 + +commit 753743636597a16d95f45817080b81ac775f502a +Author: James Netherton +Date: Mon Oct 14 09:59:05 2019 +0100 + + fix: CamelContext.getVersion() always returns an empty string + + fixes #247 + +commit 4152d3dfa49501e05f8480c2032e8c7d61bd2a04 +Author: James Netherton +Date: Fri Oct 11 11:01:35 2019 +0100 + + Add MicroProfile Health extension + + fixes #141 + +commit 205085f71db94c57f714b46d1af5a4d8af531d04 +Author: Claus Ibsen +Date: Mon Oct 14 08:53:10 2019 +0200 + + Polish2 (#269) + + * Sort + + * Upgrade ActiveMQ + + * Sort + +commit 1b7930b414ea9498be2b2e96d4894b40c8de8ca2 +Author: Claus Ibsen +Date: Mon Oct 14 05:19:40 2019 +0200 + + Fixes #265 - Add tarfile extension (#266) + +commit 0f72f544d24b9e4633a714f3d83bdc2f6b29bcee +Author: Claus Ibsen +Date: Sun Oct 13 09:54:02 2019 +0200 + + Regen + +commit 6c7ae13bae61817e5483d88302abb5b8d7adb0c7 +Author: Peter Palaga +Date: Sun Oct 13 09:53:28 2019 +0200 + + Fix #217 Support rest dsl in platform-http component (#256) + +commit 94ac2e636b6125c3eb91650a093b94d178dfa950 +Author: Peter Palaga +Date: Fri Oct 11 21:45:34 2019 +0200 + + Fix #251 Unrecognized configuration key (#254) + + "quarkus.camel.servlet.url-patterns" provided + +commit a8bac2456bf27b39091fe674655fe87e89444ae2 +Author: Peter Palaga +Date: Fri Oct 11 21:45:07 2019 +0200 + + Fix #259 The User guide should refer to the rest-json example (#261) + + * Do not use ${project.version} in the BOMs + + * Comment and simplify the rest-json example + + * Fix #259 The User guide should refer to the rest-json example + + rather than the servlet itest + +commit 3e9b4dd1b24f466d75eaeeaca76c4c3ca6360563 +Author: Peter Palaga +Date: Thu Oct 10 18:10:38 2019 +0200 + + Remove the script for generating synthetic test-jars. + + This is now done on the Quarkus side + +commit da86fbae3038aeb5901e8084832129083f1a3667 +Author: lburgazzoli +Date: Thu Oct 10 12:40:01 2019 +0200 + + camel application property routesUri is not overridden at runtime #54 + +commit ca095b33e392848600dd7093c4174d290b130781 +Author: Andrea Cosentino +Date: Thu Oct 10 16:54:10 2019 +0200 + + Adding -U to Jenkinsfile.quarkus + +commit 3c7ad7baa1184eb5e6ebc7c375735db43bd01372 +Author: Claus Ibsen +Date: Thu Oct 10 12:05:59 2019 +0200 + + #245 update the extensions list in the website docs also (#250) + + Fixes #45 to update the extensions list in the website docs also. + +commit 1d047caad133e53a24dbe55b309900d1ca60b3e5 +Author: lburgazzoli +Date: Wed Oct 9 12:36:35 2019 +0200 + + chore: add some doc about camel-main build steps + +commit e3b2a2f03eb89e547cf241b62e6e20b849e974a0 +Author: lburgazzoli +Date: Wed Oct 9 11:48:39 2019 +0200 + + chore: remove workaround for runtime registry as issue has been fixed upstream + +commit 457847bc9525054462f2a47a85d4180ab0d7f771 +Author: Claus Ibsen +Date: Wed Oct 9 11:01:55 2019 +0200 + + Polished + +commit fef580a1cf519494df891db6e1ed517f05a578d0 +Author: Claus Ibsen +Date: Wed Oct 9 11:01:44 2019 +0200 + + Update readme.adoc + +commit 1c08fef7cbc61e21c0a9d342e3c493ade0632a8b +Author: Claus Ibsen +Date: Wed Oct 9 10:57:13 2019 +0200 + + Generate extension list readme file via tooling like we do at Apache Camel (#243) + + * Generate extension list readme file via tooling like we do at Apache Camel + + * Polished + + * Generate extension list readme file via tooling like we do at Apache Camel + + * Lets use firstVersion from camel-quarkus release in quarkus catalog and readme documentation. + +commit 60c9734a1903c682fb4f4ee1895de542ac4c478f +Author: Claus Ibsen +Date: Wed Oct 9 08:52:48 2019 +0200 + + Polished + +commit 065cf52ce61ec61859d235353feffbfc02d225e6 +Author: Claus Ibsen +Date: Wed Oct 9 08:51:17 2019 +0200 + + quarkus-camel-catalog (#242) + + Fixes #75: Adding camel-quarkus-catalog + +commit b440acb712c09402999e30bdb254021c332fb107 +Author: James Netherton +Date: Tue Oct 8 07:23:57 2019 +0100 + + Auto configure MicroProfile metrics Camel context event notifier + + fixes #240 + +commit 59f2aa60f7323ce31910f22df3b8053c2cf6af9e +Author: Willem Jiang +Date: Tue Oct 8 08:43:39 2019 +0800 + + Added License header on the html file + +commit 57be75573cb94a3a8e6be7ed27e2945d9f7cf6c7 +Author: lburgazzoli +Date: Mon Oct 7 13:45:15 2019 +0200 + + port rest-json quickstart to camel-quarkus + +commit 8e2e7a709643b61ddc920efb15eeef8e896749b6 +Author: lburgazzoli +Date: Mon Oct 7 11:45:42 2019 +0200 + + Add workarounds for https://github.com/quarkusio/quarkus/issues/4407 + +commit 64a4b2715771568acdba7741f0c9fd862bff9aaa +Merge: a0d9ab08d7 43e5fc939b +Author: Andrea Cosentino +Date: Mon Oct 7 14:37:33 2019 +0200 + + Merge pull request #235 from WillemJiang/issue-234 + + #234 Added log when starting or stoping ActiveMQ Broker failed + +commit a0d9ab08d7c3176b069f9b374ffaae85dc9dd4a5 +Author: Peter Palaga +Date: Mon Oct 7 12:54:13 2019 +0200 + + Improve the beans and registry BuildItems' JavaDoc + +commit 43e5fc939bb32d98078781fd5b8b0d78a135a5e7 +Author: Willem Jiang +Date: Mon Oct 7 16:47:54 2019 +0800 + + Throw exception out in ActiveMQTestResource + +commit b2caa793ad92d969788b0718a3a8524be0548ff0 +Author: lburgazzoli +Date: Mon Oct 7 13:04:30 2019 +0200 + + chore: fix typo + +commit 72d1082cebe93d4d52e9cabea5a8cb7eb2cbfc93 +Author: lburgazzoli +Date: Mon Oct 7 10:49:37 2019 +0200 + + chore: fix javadoc + +commit e0a0ad77a692e660ee792448487706000d87f6ba +Author: Andrea Cosentino +Date: Mon Oct 7 10:15:03 2019 +0200 + + Camel-Quarkus daily: Use the same settings for install phase too + +commit 0d8d0e4ac405b6f20fc871664083933b8ade22e7 +Author: Andrea Cosentino +Date: Mon Oct 7 10:12:21 2019 +0200 + + Removed the quarkus.version property placeholder for quarkus-snapshots profile. It doesn't work. Specify through command line. + +commit 506702de24975d4f7d2412b70dd0287a2ed4d6e7 +Author: Andrea Cosentino +Date: Mon Oct 7 10:11:08 2019 +0200 + + Camel-Quarkus: Set built against snapshot in Jenkinsfile.quarkus + +commit 99df4b7bd9b4981a05a5d19ea2dfb2a5bae712a6 +Author: lburgazzoli +Date: Mon Oct 7 10:05:51 2019 +0200 + + chore: fix checkstyle violations + +commit c8bffa2c59a9d5ca4fef74a40c90351b3ddccfc1 +Author: lburgazzoli +Date: Mon Oct 7 00:10:28 2019 +0200 + + Add support for quarkus provided event loop #131 + +commit 027d923ba64bd1116e3fabb66b93f885dc80c3d2 +Author: Andrea Cosentino +Date: Mon Oct 7 09:25:13 2019 +0200 + + Added a Jenkinsfile for Quarkus snapshot profile + +commit fcd8de38fbe20d73a9004640fb026cc51eea67a0 +Merge: 6a1e1d823e 5e9ea01781 +Author: Andrea Cosentino +Date: Sun Oct 6 21:04:02 2019 +0200 + + Merge pull request #230 from lburgazzoli/github-218 + + Ensure the PlatformHttpComponent is registered before the routes are started + +commit 5e9ea01781a3ee56060abd86f42b9542de65c76e +Author: lburgazzoli +Date: Sun Oct 6 16:05:27 2019 +0200 + + Ensure the PlatformHttpComponent is registered before the routes are started #218 + +commit 6a1e1d823ec1e661f90e51b6a452b6f1198a0746 +Author: lburgazzoli +Date: Sun Oct 6 14:14:34 2019 +0200 + + chore: remove unused constants + +commit 8fe41e08db0223dbe076aa91e4ce234884245e0d +Author: lburgazzoli +Date: Sun Oct 6 14:14:08 2019 +0200 + + chore: do not use deprecated methods + +commit 8100e8c307351f3008b0d6d694c26a8b6618d78f +Merge: 092d855d94 3821fcaacf +Author: Andrea Cosentino +Date: Sun Oct 6 09:39:20 2019 +0200 + + Merge pull request #134 from ppalaga/i133 + + Fix #133 Test netty4-http as a producer + +commit 3821fcaacffb55b693e7e60d8d6258c8471ef568 +Author: Peter Palaga +Date: Tue Aug 13 22:19:56 2019 +0200 + + Fix #133 Test netty4-http as a producer + +commit 092d855d942dcf99ab8edf224cc14181da23b84b +Author: lburgazzoli +Date: Sat Oct 5 15:32:35 2019 +0200 + + chore: simplify bean registration and document contraints + +commit 747b1dc27259a4ac4b4bef3c36572b91dcb4b01a +Author: lburgazzoli +Date: Sat Oct 5 14:39:04 2019 +0200 + + chore: replace MainSupport with BaseMainSupport in CamelMain + +commit 6568dbc674d11db3c34c69fc7d45fd0a879f9ee2 +Author: lburgazzoli +Date: Sat Oct 5 14:04:22 2019 +0200 + + chore: re-enable caffeine as a workaround is in place in camel + +commit d8c8cd1bca4f31c8f842b1dfa011e65c5fae1632 +Author: lburgazzoli +Date: Sat Oct 5 14:03:45 2019 +0200 + + chore: adapt to lastet cmale snapshot + +commit baedf0cb53f6fb09058e0e9c6b76e58dda0999ec +Author: lburgazzoli +Date: Sat Oct 5 13:29:35 2019 +0200 + + chore: use RecorderContext to load classes when possible to delegate class loading to quarkus engine + +commit 152559eea93d9380baf757732c3408b308470686 +Author: lburgazzoli +Date: Sat Oct 5 09:17:27 2019 +0200 + + remove redunand dependency on camel-quarkus-core from integration tests #9 + +commit c23864cbcedafe8ad7260de65e65ef0fa07d01aa +Author: lburgazzoli +Date: Sat Oct 5 09:16:50 2019 +0200 + + inline BeanManagerHelper in RuntimeBeanRepository #9 + +commit 23359bde170cab70af02b1933d14aebfe73bc08b +Author: lburgazzoli +Date: Fri Oct 4 21:43:12 2019 +0200 + + integrate main support in camel-quarkus-core + +commit 26770163fc57484591c22dcac22c17cfd8736b9e +Author: lburgazzoli +Date: Fri Oct 4 15:18:17 2019 +0200 + + Use MainSupport as base for running Camel #9 + +commit 9607e9b464531266c4e8e9c9dfff083230a50c04 +Author: lburgazzoli +Date: Fri Oct 4 15:17:17 2019 +0200 + + Remove custom registry implementation #198 + +commit b6b57772cb5679e5e656898e83365e221d0fb642 +Author: James Netherton +Date: Thu Oct 3 14:59:10 2019 +0100 + + Fix failing MicroProfile metrics tests + +commit 9232f3c7b7c5fd9fd4f668c839483ad929a1de63 +Merge: 4123df5aa6 dab472ed16 +Author: Andrea Cosentino +Date: Thu Oct 3 16:22:41 2019 +0200 + + Merge pull request #225 from lburgazzoli/substitutions + + Rename substitutions class names + +commit dab472ed1672aff17697ccd1fbb0204c24c85f3b +Author: lburgazzoli +Date: Thu Oct 3 15:05:14 2019 +0200 + + Fix a typo + +commit 7be262eae7b7584c243c8ecd1a472555f4342839 +Author: lburgazzoli +Date: Thu Oct 3 14:55:25 2019 +0200 + + chore(deps): fix dependency declared by support/jetty and support/xstream artefacts + +commit e755e62d6934f6dbfb1f17c57927e1f1b580fd92 +Author: lburgazzoli +Date: Thu Oct 3 14:54:21 2019 +0200 + + chore(substrate): move java beans substitutions to a support artefact" + +commit bee070539e2a801433cdd3e2398d59900d7d2e80 +Author: lburgazzoli +Date: Thu Oct 3 14:39:23 2019 +0200 + + chore(substrate): simplify name of camel-quarkus-core substitutions classes + +commit 08f111fe2676c167fcdb11a007a9a7aeff12ce9a +Author: lburgazzoli +Date: Thu Oct 3 14:27:58 2019 +0200 + + chore(substrate): simplify name of camel-quarkus-netty-http substitutions classes + +commit 462127e521c56f2ca1a77d53c3c36b317b83df51 +Author: lburgazzoli +Date: Thu Oct 3 14:23:58 2019 +0200 + + chore(substrate): simplify name of camel-quarkus-core-cloud substitutions classes + +commit f97125a15ebe4f1f74aa48559157a78897f792a1 +Author: lburgazzoli +Date: Thu Oct 3 14:21:22 2019 +0200 + + chore(substrate): simplify name of camel-quarkus-infinispan substitutions classes + +commit 4123df5aa6d05ef84798da2768abf37ff91a2123 +Merge: ac84533b2a 03ccfa5482 +Author: Andrea Cosentino +Date: Thu Oct 3 14:54:02 2019 +0200 + + Merge pull request #222 from lburgazzoli/camel-bean-item + + chore: rename CamelRegistryBuildItem to a more meaningful CamelBeanBuildItem + +commit 03ccfa5482f1bacc7f77ac02512a333adb0f9135 +Author: lburgazzoli +Date: Thu Oct 3 10:30:00 2019 +0200 + + chore: rename CamelRegistryBuildItem to a more meaningful CamelBeanBuildItem + +commit ac84533b2a780a12a3f83f0f3438fcc156bb0b2a +Merge: f1921006a8 4495866379 +Author: Claus Ibsen +Date: Thu Oct 3 10:21:30 2019 +0200 + + Merge pull request #201 from ppalaga/i184 + + Fix #184 Leverage platform http service + +commit f1921006a8c0917b39bbaf0d1550ff237c78b4c9 +Author: lburgazzoli +Date: Wed Oct 2 19:52:52 2019 +0200 + + chore(deps): upgrade quarkus to v0.23.2 + +commit 44958663793a7aee1fbc3616b59ffcd940c10230 +Author: Peter Palaga +Date: Thu Sep 26 12:10:27 2019 +0200 + + Fix #184 Leverage platform http service + +commit b7f386f0d132a0eb5330707f78eb8dec10ceb5af +Merge: 9843061388 cc87d524c7 +Author: Andrea Cosentino +Date: Tue Oct 1 22:47:38 2019 +0200 + + Merge pull request #219 from lburgazzoli/mail + + chore: fix mail cs + +commit cc87d524c7fe3797dc406107b652963e9e172797 +Author: lburgazzoli +Date: Tue Oct 1 21:16:55 2019 +0200 + + chore: fix mail cs + +commit 984306138820622ff6fa7f02323f6f33d9d65a22 +Author: lburgazzoli +Date: Mon Sep 30 20:59:20 2019 +0200 + + Remove scaffold-integration-test.groovy #173 + +commit 2d6c3f2e5517b350a1156aec0c74678aa39289ad +Merge: cf56799bd1 7669973d3c +Author: Andrea Cosentino +Date: Mon Sep 30 19:59:27 2019 +0200 + + Merge pull request #215 from lburgazzoli/dependencies-validation + + chore(build): move depdendencies enforcer script to build/scripts + +commit cf56799bd1d3d27074d4d52fa488f91a2d83970b +Merge: d5ebcbdec9 d44baab126 +Author: Andrea Cosentino +Date: Mon Sep 30 18:13:03 2019 +0200 + + Merge pull request #214 from lburgazzoli/github-213 + + Submodule for support extensions + +commit 7669973d3cf0d2a541917ef822d96036619378e5 +Author: lburgazzoli +Date: Mon Sep 30 17:45:06 2019 +0200 + + chore(build): move depdendencies enforcer script to build/scripts + +commit d44baab126a78a4b9bd05b07f4d3934f2b79faf0 +Author: lburgazzoli +Date: Mon Sep 30 14:50:52 2019 +0200 + + Submodule for support extensions #213 + +commit d5ebcbdec9cdf5d4c788ac3738649087372b3771 +Merge: 7719640f25 71deaab1c5 +Author: Andrea Cosentino +Date: Mon Sep 30 15:08:21 2019 +0200 + + Merge pull request #212 from lburgazzoli/e-cleanup + + cleanup aws and paho extensions + +commit 71deaab1c5e4a2045b4a561cfac5f746ab877b34 +Author: lburgazzoli +Date: Mon Sep 30 14:59:16 2019 +0200 + + chore: automatically configure ssl in aws + +commit b62b9855d77f2debfbace196576a68b8c3c58351 +Author: lburgazzoli +Date: Mon Sep 30 11:23:57 2019 +0200 + + chore: cleanup aws extensions + +commit 8ca390a1f3d0d959e0256e50ed689a9cd6ad2c77 +Author: lburgazzoli +Date: Mon Sep 30 11:25:18 2019 +0200 + + chore: cleanup paho integration-tests + +commit 7719640f25483be9cfe1bc253f693941b014b6f8 +Merge: 5d81db03bf 9fe12f9b9f +Author: Andrea Cosentino +Date: Mon Sep 30 12:03:55 2019 +0200 + + Merge pull request #211 from lburgazzoli/quarkus-0.23.1 + + Upgarde to quarkus v0.23.1 + +commit 9fe12f9b9f4fbab20e654b4d7cc49c1810ea209a +Author: lburgazzoli +Date: Mon Sep 30 11:33:03 2019 +0200 + + Fix findings #209 + +commit 5b84c0ea682a4e5495fbf73e339db9dc243aaece +Author: lburgazzoli +Date: Mon Sep 30 10:33:52 2019 +0200 + + Remove reportErrorsAtRuntime #209 + +commit c31a6a525b5a84c1c1f398c7081c782edbde0c48 +Author: lburgazzoli +Date: Fri Sep 27 17:18:02 2019 +0200 + + Upgarde to quarkus v0.23.1 #209 + +commit 8859c02a1fa70662565d101a577ec16c418e4650 +Author: Andrea Cosentino +Date: Fri Sep 27 16:04:09 2019 +0200 + + First attempt to upgrade to Quarkus 0.23.0 + +commit 5d81db03bf5b29b11de32cc22fdf9febe2ff581c +Merge: b01d972dda c8385f5b07 +Author: Andrea Cosentino +Date: Thu Sep 26 14:28:51 2019 +0200 + + Merge pull request #210 from ppalaga/190926-upgrade-docs-version + + Upgrade the docs to camel-quarkus-last-release: 0.2.0 + +commit c8385f5b07fe4616ce4e79533ed2a9c1fd680ce6 +Author: Peter Palaga +Date: Thu Sep 26 12:12:41 2019 +0200 + + Upgrade the docs to camel-quarkus-last-release: 0.2.0 + +commit b01d972ddaaf0850f8bac11026672f7308bea55d +Merge: 5f0a398a8d e8488b0c38 +Author: Andrea Cosentino +Date: Thu Sep 26 11:03:37 2019 +0200 + + Merge pull request #205 from jamesnetherton/195-metrics-autoconfig + + Auto configuration of metrics management strategies + +commit 5f0a398a8dc4d79022d619aa05889c3215a97879 +Author: Andrea Cosentino +Date: Mon Sep 23 08:20:20 2019 +0200 + + [maven-release-plugin] prepare for next development iteration + +commit db041a133f6087573ca85b3fa9ab0b2b1ee0c6c9 (tag: 0.2.0) +Author: Andrea Cosentino +Date: Mon Sep 23 08:19:58 2019 +0200 + + [maven-release-plugin] prepare release 0.2.0 + +commit e7f4531ce1eda17475458495f29b43a6aee0df32 +Author: Andrea Cosentino +Date: Mon Sep 23 08:15:40 2019 +0200 + + Re-aling to version 0.2.0-SNAPSHOT + +commit d8aa81527dc049c8c5bb535b67781369e125fe3f +Merge: a486fc30ca 897642e69b +Author: Andrea Cosentino +Date: Sun Sep 22 23:50:02 2019 +0200 + + Merge pull request #208 from ppalaga/190922-remove-test-poms + + Disable deployment of synthetic test poms for now see #207 + +commit 897642e69b3e86bb7f4614a272b0d83b30485239 +Author: Peter Palaga +Date: Sun Sep 22 21:31:41 2019 +0200 + + Disable deployment of synthetic test poms for now see #207 + +commit a486fc30cab1f71349334fff3bda360be62ad564 +Author: Andrea Cosentino +Date: Sat Sep 21 12:29:57 2019 +0200 + + Go Back to 0.2.0-SNAPSHOT + +commit c5afd8e783b00f81279634b3464786b2aa96cd52 +Author: Andrea Cosentino +Date: Sat Sep 21 11:32:00 2019 +0200 + + [maven-release-plugin] prepare for next development iteration + +commit 6b91440e7ad97cecf40102849789f80ee76275de +Author: Andrea Cosentino +Date: Sat Sep 21 11:31:36 2019 +0200 + + [maven-release-plugin] prepare release 0.2.0 + +commit 5086fe6a99dba99ccffb28f18e6dc07c1cfa5a02 +Merge: 91d1f21453 6277cf6dc5 +Author: Andrea Cosentino +Date: Fri Sep 20 17:13:36 2019 +0200 + + Merge pull request #206 from ppalaga/i184.2 + + Improve the maven deployment of the synthetic test jars + +commit 6277cf6dc50712a64465b286183d5a964aab7117 +Author: Peter Palaga +Date: Fri Sep 20 11:56:16 2019 +0200 + + Improve the maven deployment of the synthetic test jars + +commit 91d1f21453e2b3fb5f878c4d65db523a036c2b3f +Author: Andrea Cosentino +Date: Thu Sep 19 15:38:43 2019 +0200 + + [maven-release-plugin] rollback the release of 0.2.0 + +commit 13ee96e485f000d17fdb37ea94c044dc47e276ec +Author: Andrea Cosentino +Date: Thu Sep 19 15:05:34 2019 +0200 + + [maven-release-plugin] prepare for next development iteration + +commit b96be74b10a23f3a7a636aca8d4665f6e2c97c03 +Author: Andrea Cosentino +Date: Thu Sep 19 15:05:08 2019 +0200 + + [maven-release-plugin] prepare release 0.2.0 + +commit e8488b0c38381cf9ef512c3bab10377b679da77b +Author: James Netherton +Date: Thu Sep 19 12:25:39 2019 +0100 + + Auto configuration of metrics management strategies + + fixes #195 + +commit 76570d89246915575597debe4292deae8d6498ba +Merge: 4e6f90d830 7139f71efa +Author: Andrea Cosentino +Date: Thu Sep 19 12:34:28 2019 +0200 + + Merge pull request #204 from ppalaga/190919-deployer-properties + + Set the missing deploy plugin properties for the reusable-test-jar ex… + +commit 7139f71efa2def06502c629c7d1ef75fb1172e35 +Author: Peter Palaga +Date: Thu Sep 19 11:23:09 2019 +0200 + + Set the missing deploy plugin properties for the reusable-test-jar execution + +commit 4e6f90d830c24ee39bdaa6de3fabf2320bc3ab6c +Author: Andrea Cosentino +Date: Wed Sep 18 09:41:04 2019 +0200 + + [maven-release-plugin] rollback the release of 0.2.0 + +commit c4248ca2e71a23ee12a8f42eac5fcfb7c0615fca +Author: Andrea Cosentino +Date: Wed Sep 18 09:13:58 2019 +0200 + + [maven-release-plugin] prepare for next development iteration + +commit 7d8782a6e18a721e9451ac81ea40087bcb62da14 +Author: Andrea Cosentino +Date: Wed Sep 18 09:13:37 2019 +0200 + + [maven-release-plugin] prepare release 0.2.0 + +commit d4346ac491a500b5a7c7cd2088bb0a6b88030da9 +Author: Andrea Cosentino +Date: Wed Sep 18 09:10:41 2019 +0200 + + Added failIfNoTests option set to false to surefire configuration + +commit b1a6eb9b0fb5f24cf272b80b8ab4bfa4a67f95ee +Merge: 212887909b 243e3223d0 +Author: Andrea Cosentino +Date: Mon Sep 16 17:11:58 2019 +0200 + + Merge pull request #202 from ppalaga/190916-quarkus-0.22.0 + + Upgrade to Quarkus 0.22.0 + +commit 243e3223d05d6aeb64ff983571c4bd5aaa3631de +Author: Peter Palaga +Date: Mon Sep 16 16:03:03 2019 +0200 + + Upgrade to Quarkus 0.22.0 + +commit 212887909b4509b99abe77860d833670935e85d9 +Author: Andrea Cosentino +Date: Thu Sep 12 08:17:30 2019 +0200 + + Fixed CS for Paho extension and integration test + +commit 2abb646ba525be5643edf2ea03a445e65f0266e0 +Merge: 0153c5497e d9943b2f0a +Author: Andrea Cosentino +Date: Thu Sep 12 07:41:37 2019 +0200 + + Merge pull request #200 from zhfeng/improve-paho-tests + + improve the paho integration test + +commit d9943b2f0a8893e07534fec6de1619568e08f20c +Author: Amos Feng +Date: Thu Sep 12 09:40:38 2019 +0800 + + improve the paho integration test + +commit 0153c5497efd66e51cfc0c5a9ee0bc24db1223d5 +Merge: 5315349bba bf856616cf +Author: Andrea Cosentino +Date: Wed Sep 11 07:14:25 2019 +0200 + + Merge pull request #197 from zhfeng/camel-paho-support + + Add the camel-paho extension to support the MQTT + +commit bf856616cf18c2ddb81286e13f9118d037f91021 +Author: Amos Feng +Date: Mon Sep 9 09:11:53 2019 +0800 + + Add the camel-paho extension to support the MQTT + +commit 5315349bba625b335f1d2e5652ed1cd2142f747f +Merge: 4d76f70e74 c4554b6bb4 +Author: Andrea Cosentino +Date: Tue Sep 10 19:03:40 2019 +0200 + + Merge pull request #196 from lburgazzoli/quarkus-0.21.2 + + chore(deps): update quarkus to v0.21.2 + +commit c4554b6bb44a52aad67941d1448affb9a26ae565 +Author: lburgazzoli +Date: Tue Sep 10 17:56:40 2019 +0200 + + chore(deps): update quarkus to v0.21.2 + +commit 4d76f70e74a4461b542b8f3748ed9fcad1fcb513 +Merge: 0d07b5eb30 c26ebeff75 +Author: Andrea Cosentino +Date: Tue Sep 10 10:30:13 2019 +0200 + + Merge pull request #164 from gnodet/camel-mail + + Support for camel-mail + +commit c26ebeff75247e76018e349c26c0365d64603821 +Author: Guillaume Nodet +Date: Mon Sep 9 21:13:24 2019 +0200 + + Add missing reflection / resource data for native mode, fix test to work in native mode + +commit 0d07b5eb3023563b4d77805b961d773427f7fc24 +Author: lburgazzoli +Date: Mon Sep 9 22:37:31 2019 +0200 + + chore(it): add noDeps to quarkus-maven-plugin to make hot-reload working in multi-module projects + +commit 7c5955b70e986de5c58a563a24a028798297a3f0 +Author: lburgazzoli +Date: Mon Sep 9 14:41:14 2019 +0200 + + don't start camel context before the container is fully started + +commit 981080059370bc346ab790e6e0b58a7604ba63fe +Merge: 6f8a7be285 be7e1ff11a +Author: Andrea Cosentino +Date: Mon Sep 9 18:09:26 2019 +0200 + + Merge pull request #193 from lburgazzoli/context-reflection + + chore(reflection): add CamelContext and StreamCachingStrategy to the list of reflective classes + +commit be7e1ff11a1b64853a97ad4e5604dd0b6cd748ff +Author: lburgazzoli +Date: Mon Sep 9 15:11:47 2019 +0200 + + chore(reflection): add CamelContext and StreamCachingStrategy to the list of reflective classes + +commit 6f8a7be285d10bb3752a26af966b788d458da4f0 +Merge: 149bce2701 2c54352c33 +Author: Andrea Cosentino +Date: Mon Sep 9 11:25:40 2019 +0200 + + Merge pull request #181 from ppalaga/i179 + + Fix #179 Generate a jar with a non-test pom for each integration test + +commit 2c54352c33d8cf7ec552c1cf8a751124a324059e +Author: Peter Palaga +Date: Thu Sep 5 17:23:45 2019 +0200 + + Fix #179 Generate a jar with a non-test pom for each integration test + +commit 58519740d921a8c75822e40b662a080bf751ad71 +Author: Guillaume Nodet +Date: Wed Aug 28 17:46:59 2019 +0200 + + Support for camel-mail + +commit 149bce270164849b4508632ebb3dcc2e5e5b5cf0 +Author: Guillaume Nodet +Date: Tue Sep 3 16:43:35 2019 +0200 + + Cleanup following #172, fixes #69 + +commit c8dcb980715c049e3169df34875423d0ecbaa32a +Author: Guillaume Nodet +Date: Tue Sep 3 15:27:59 2019 +0200 + + Remove support for defer-init-phase, fixes #172 + +commit e26206207adbc17f77f52dc11082f473a95dd7fb +Merge: b939d1371f ba6f784888 +Author: Claus Ibsen +Date: Thu Sep 5 16:28:00 2019 +0200 + + Merge pull request #177 from jamesnetherton/fix-templates + + Make code generators checkstyle compliant + +commit ba6f78488854d0a7ae14b4e349c3525f4c7a8f8c +Author: James Netherton +Date: Thu Sep 5 13:35:49 2019 +0100 + + Make code generators checkstyle compliant + +commit b939d1371ffa774d977bf9980b3f535489bab217 +Merge: 663909488d 1dd7e3d87d +Author: Andrea Cosentino +Date: Thu Sep 5 14:47:11 2019 +0200 + + Merge pull request #176 from ppalaga/190905-maven-3.6.2 + + Upgrade to Maven 3.6.2 + +commit 663909488d745cd5f1662dcfd0e0c73cb6afb406 +Author: James Netherton +Date: Thu Sep 5 09:46:44 2019 +0100 + + Add missing license headers + +commit f6bc879c2923481985b13ffafc329f25a9162e5e +Author: James Netherton +Date: Thu Sep 5 09:35:52 2019 +0100 + + Fix checkstyle violations + +commit 1dd7e3d87d8e8dffaa15a4e51daecafacb6d7baa +Author: Peter Palaga +Date: Thu Sep 5 11:41:07 2019 +0200 + + Upgrade to Maven 3.6.2 + +commit 80d041126c5195735611e65c409fdd95238cbe10 +Author: Zoran Regvart +Date: Thu Sep 5 09:03:55 2019 +0200 + + fix: trigger `master` build of website pipeline + +commit ea5c7aa38268181b7d4e2314f13879698cce6ec1 +Merge: 50735f1aac af169a7656 +Author: Andrea Cosentino +Date: Wed Sep 4 20:32:23 2019 +0200 + + Merge pull request #174 from jamesnetherton/128-metrics + + Expose metrics in quarkus + +commit af169a76561cef2a9b352f6d7a9abad1161865b0 +Author: James Netherton +Date: Wed Sep 4 10:40:48 2019 +0100 + + Expose metrics in quarkus + + fixes #128 + +commit 50735f1aac1a255a8bb399ba472f7f890e50286f +Author: lburgazzoli +Date: Sun Aug 11 23:56:31 2019 +0200 + + Upgrade to Apache Camel RC1 #139 + +commit 62566b706640b2a7136ed43b26f0104ea43d69cc +Merge: 37eba37a71 05ed25eff8 +Author: Zoran Regvart +Date: Mon Sep 2 14:59:38 2019 +0200 + + Merge pull request #169 from apache/issue/168 + + Add website build trigger + +commit 05ed25eff8c8568cf91897df0dae87f5d0020fd9 +Author: Zoran Regvart +Date: Mon Sep 2 13:43:07 2019 +0200 + + Add website build trigger + + When a change to any files in the `docs/` directory on the master branch + the `Camel.website` job is triggered to update the website with those + changes. + + Fixes #168 + +commit 37eba37a712c9149ad4bfb11437d954ce863dd8b +Merge: 27fe31d75d ee298c02ba +Author: Andrea Cosentino +Date: Fri Aug 30 21:21:19 2019 +0200 + + Merge pull request #167 from ppalaga/190828-csv + + CSV Extension + +commit ee298c02ba22dfa4d8276aa32eabdb4fd4fc4fa1 +Author: Peter Palaga +Date: Fri Aug 30 20:31:50 2019 +0200 + + CSV Extension + +commit 27fe31d75d8e2358a6dbce027e0b76d58ce54713 +Author: Andrea Cosentino +Date: Thu Aug 29 09:37:58 2019 +0200 + + Added a Jenkinsfile for deploy and build + +commit 5c32e092f36f5a632f0e6edf9f0df06e7149fc8d +Merge: 1a4283a459 3b62ad1229 +Author: Andrea Cosentino +Date: Thu Aug 29 09:28:03 2019 +0200 + + Merge pull request #166 from apache/issue-123 + + Fixes #123 adding a deploy profile + +commit 3b62ad1229864e74e9cf94256495f1337537f1f9 +Author: Andrea Cosentino +Date: Thu Aug 29 08:12:05 2019 +0200 + + Fixes #123 adding a deploy profile + +commit 1a4283a459905795d9deb51d86428edef309e1cb +Merge: 121e6c110d b6370d49e4 +Author: Andrea Cosentino +Date: Wed Aug 28 21:54:49 2019 +0200 + + Merge pull request #165 from apache/zipfile + + camel-zipfile quarkus extension + +commit b6370d49e42c9442f88e032f53424cbfe4564183 +Author: Claus Ibsen +Date: Wed Aug 28 18:07:49 2019 +0200 + + camel-zipfile quarkus extension + +commit 121e6c110d8c13f251ff2b81b8b01f91955d7923 +Merge: d9dd538d49 324e5372e8 +Author: Andrea Cosentino +Date: Wed Aug 28 12:05:51 2019 +0200 + + Merge pull request #160 from ppalaga/190823-itest-stub-generator + + Groovy script to scaffold an integration test when creating a new + +commit d9dd538d49d672925a93ee46d6d8e4a675105842 +Merge: 58c98e9263 1893db0c8d +Author: Andrea Cosentino +Date: Sun Aug 25 00:19:42 2019 +0200 + + Merge pull request #161 from fviolette/patch-1 + + Fix README link + +commit 1893db0c8d823a9b40100cd487e4103531793592 +Author: François Violette +Date: Sun Aug 25 00:16:01 2019 +0200 + + Fix README link + +commit 324e5372e801b4834299aebb077de07a3cd60e9b +Author: Peter Palaga +Date: Fri Aug 23 12:24:45 2019 +0200 + + Groovy script to scaffold an integration test when creating a new + extension + +commit 58c98e92632f30d32153eb75c2bc57acbdbcd519 +Author: Peter Palaga +Date: Thu Aug 22 13:25:02 2019 +0200 + + Fix #70 Bean extension does not fail in native mode due to dynamic proxies anymore + +commit 6726300c4e69be01c2c44412d9a54ad04edce6fc +Author: Peter Palaga +Date: Thu Aug 22 11:45:31 2019 +0200 + + Fixup #58 Enforce dependency rules + +commit 9f35cba4ec5560597be04d7755955e0eee4a7dd2 +Author: Peter Palaga +Date: Thu Aug 22 10:28:06 2019 +0200 + + Fixup #124 Deployments POM + +commit 65e57be0b06eec2daf20a77a2840d58fa3fa7fd1 +Merge: cf67701aab cccd214f67 +Author: Andrea Cosentino +Date: Thu Aug 22 09:31:23 2019 +0200 + + Merge pull request #156 from ppalaga/i58 + + Fix #58 Enforce dependency rules + +commit cf67701aab8cc7288e1e1bacad579838585c4fdc +Merge: 9bb2fabce3 40dba9be75 +Author: Andrea Cosentino +Date: Wed Aug 21 19:46:03 2019 +0200 + + Merge pull request #154 from lburgazzoli/route-discovery-cleanup + + Remove unecessary conditional discovery + +commit 9bb2fabce31fe0c4e91a9ac913479e5dc144cf02 +Author: Andrea Cosentino +Date: Wed Aug 21 15:32:07 2019 +0200 + + Update the link to the new site of Camel + +commit a8703f58c2c4bfc99bb814d63335bf12d8d4ae55 +Author: Peter Palaga +Date: Wed Aug 21 10:38:58 2019 +0200 + + Adapt the Contributor guide to the new layout of POMs and new native build arguments + +commit cccd214f6788cead37c47cb66e30b8457cb22861 +Author: Peter Palaga +Date: Wed Aug 21 16:07:57 2019 +0200 + + Fix #58 Enforce dependency rules + +commit a9f0fab1e7292751aa91eb75e40f2e8da41f087a +Author: Peter Palaga +Date: Wed Aug 21 16:26:26 2019 +0200 + + Move the test extension under core itest where it is used + +commit 40dba9be7531950c7228049346cd17b3806302c7 +Author: lburgazzoli +Date: Wed Aug 21 15:51:25 2019 +0200 + + refine the object needed by camel runtime + +commit 39b9e8b40c9c75ee5b4fa74dd62c5c88c8c4701e +Author: Peter Palaga +Date: Wed Aug 21 09:43:17 2019 +0200 + + Set disableReports=true in quarkus-maven-plugin config to speed up the itests execution + +commit 696107eaf3e6d40e92b060fe285865e3d224997f +Author: lburgazzoli +Date: Wed Aug 21 14:34:33 2019 +0200 + + Remove unecessary conditional discovery + +commit 4c8702b0a50aef69e75618b4c14c824450666d99 +Author: lburgazzoli +Date: Wed Aug 21 13:58:58 2019 +0200 + + chore(build): add ad-hoc properties set up too servlet itest as it does not hinherit from it parent + +commit ba3906558d0d0a1e8dee9299862bce8106162dfe +Author: lburgazzoli +Date: Wed Aug 21 09:12:06 2019 +0200 + + Modularize recorder and processors + +commit 31861f04afd583277e286df9398a0957f5f5b111 +Author: Peter Palaga +Date: Tue Aug 20 14:31:24 2019 +0200 + + Fix #41 Re-introduce test scope in integration test projects + +commit cf4b94cbf53ccbd53b407e5229c757eacc8de72f +Author: lburgazzoli +Date: Tue Aug 20 17:31:26 2019 +0200 + + fix CamelRegistryBuildItem setup + +commit fbfb7f2260eb596fa5b6001e26235288cfdef1f3 +Author: Peter Palaga +Date: Mon Aug 19 18:20:56 2019 +0200 + + Adapt quarkus:create-extension config to the new quarkus version and to the new layout of the POMs + +commit a5de3c1f0df88ca521a10760f836999f096edc5d +Author: Peter Palaga +Date: Mon Aug 19 16:28:47 2019 +0200 + + Fix #124 Deployment BOM + +commit 76001e241f6230e41aba54fd7c4817d890e0be90 +Author: Peter Palaga +Date: Mon Aug 19 15:27:19 2019 +0200 + + Move the BOM and Build Parent to poms directory + +commit d964470d589a01f59330f064d96ed992498ec291 +Author: Peter Palaga +Date: Thu Aug 15 18:10:37 2019 +0200 + + Add tests to the twitter itest project + +commit 515c1de68d6cf52f369505cc999146255226a904 +Author: lburgazzoli +Date: Tue Aug 20 01:13:26 2019 +0200 + + Use docker by default because of https://github.com/oracle/graal/issues/1582 + +commit 596eb4c75ee8096cbd2e8559a258ee1abf4795ed +Author: lburgazzoli +Date: Tue Aug 20 01:12:36 2019 +0200 + + Basic impl for #147 + +commit 94703710d0e951fdd3b863f663229228de728abe +Author: lburgazzoli +Date: Mon Aug 19 17:07:07 2019 +0200 + + chore(test): add test to validate camel registry hooks in ArC + +commit b493048362ae01c957db502fd7f9637f666f60be +Merge: c74d4a2846 3507543499 +Author: Andrea Cosentino +Date: Mon Aug 19 17:42:00 2019 +0200 + + Merge pull request #144 from lburgazzoli/http-common + + chore(extension): add extension for camel-http-common + +commit 35075434992f268f7865cfebcb9854290827437c +Author: lburgazzoli +Date: Mon Aug 19 14:18:26 2019 +0200 + + chore(extension): add extension for camel-http-common + +commit c74d4a2846c5bd5b6c2963e9b2d8ccf78fadd4a9 +Author: Peter Palaga +Date: Thu Aug 15 16:18:27 2019 +0200 + + Upgrade to Quarkus 0.21.1 + +commit f3e7dbcad37aec1ae54b2dfb5d05d2ff462b6e49 +Author: Peter Palaga +Date: Thu Aug 15 12:44:07 2019 +0200 + + Upgrade to Quarkus 0.21.0 + +commit be79b585357be3f2a71b55eabdcf3af43d9a2c2e +Author: Peter Palaga +Date: Mon Aug 12 17:46:39 2019 +0200 + + Fix #129 Properies evaluation broken after the introduction of PropertyBindingSupport + +commit dce74db5da6643696388e5af8d60e869f23ded07 +Author: Peter Palaga +Date: Mon Aug 12 11:46:57 2019 +0200 + + Order the dependencies managed in the BOM + +commit 70f217943909850699d2d5af4cdc521a104c2248 +Author: Peter Palaga +Date: Mon Aug 12 10:07:48 2019 +0200 + + Fix #114 Move create-extension-templates to i.e. tooling + +commit 200f82f3476a80dda1f4af22abfab06be78490cd +Author: Peter Palaga +Date: Mon Aug 12 10:01:16 2019 +0200 + + Fix #113 Document the release process + +commit e19c31f353ef7b58112cfa257b61747e4541045d +Author: lburgazzoli +Date: Sun Aug 11 17:09:14 2019 +0200 + + chore: regen + +commit 19f1474755df32256cf77d722ab2dc613175b12b +Author: lburgazzoli +Date: Sun Aug 11 17:09:01 2019 +0200 + + chore(build): fix common extension detection + +commit 574470d0cc4fd30c818ae1e3af75b1c2951ce60b +Author: lburgazzoli +Date: Sun Aug 11 17:08:43 2019 +0200 + + chore(build): add missing groovy dependencies + +commit 0625d8c5c8d519d9d3a451e7701e10b8a05d48b5 +Merge: 0edeb2039b cb5f0c62ab +Author: Andrea Cosentino +Date: Sat Aug 10 09:44:00 2019 +0200 + + Merge pull request #122 from ppalaga/190806-user-guide + + User guide + +commit 0edeb2039ba7bb3b1c246faf8faf94f881ebb7e6 +Merge: daaf4d455a fbec7aaf45 +Author: Andrea Cosentino +Date: Sat Aug 10 09:43:33 2019 +0200 + + Merge pull request #121 from lburgazzoli/camel-cloud-impl-ext + + create extension for camel's core cloud impl + +commit cb5f0c62ab9c6203e4b05434fe7ba62c2c182aec +Author: Peter Palaga +Date: Fri Aug 9 21:35:53 2019 +0200 + + User guide + +commit fbec7aaf4521642be03988477165826174556a7c +Author: lburgazzoli +Date: Fri Aug 9 16:20:29 2019 +0200 + + create extension for camel's core cloud impl + +commit daaf4d455aace992d5ef5cd727c9297c2686d4dd +Author: lburgazzoli +Date: Fri Aug 9 11:32:02 2019 +0200 + + chore: add a note about removing custom resolveSpoolDirectory + +commit 631a0e68825488de37564b717de3522bbddc925b +Merge: a76c752696 1b9c397981 +Author: Andrea Cosentino +Date: Fri Aug 9 11:16:26 2019 +0200 + + Merge pull request #115 from ppalaga/i112 + + Fix #112 Make camel-quarkus-bom usable as a parent for user applications + +commit 1b9c3979810ecb254617fc47b0842ccc3458f75b +Author: Peter Palaga +Date: Thu Aug 8 19:15:34 2019 +0200 + + Let the servlet itest use camel-quarkus-bom as a parent to simulate the setup recommended for user apps + +commit 401ca817583c6d640bb59e9f551e952f72f17399 +Author: Peter Palaga +Date: Thu Aug 8 13:40:32 2019 +0200 + + Do not manage quarkus-integration-test-class-transformer in + integration-tests because we do not use it + +commit ccc8f15c9d11542f3d8a3fb2a018905ba9f47b2d +Author: Peter Palaga +Date: Thu Aug 8 12:23:33 2019 +0200 + + Fix #112 Do not use ${project.version} in the BOM so that it can serve + as a parent of end user apps + +commit 97806662d50db0a4296b428c471f4cad06db898c +Author: Peter Palaga +Date: Thu Aug 8 12:01:21 2019 +0200 + + Manage exec-maven-plugin + +commit 549096889d7c8997e871aae08fb4ed14a53f1e90 +Author: Peter Palaga +Date: Wed Aug 7 21:40:35 2019 +0200 + + maven-resources-plugin is managed in org.apache:apache + +commit fad921c41cbaac9471cbc13d0ec4c1aaf8cc710b +Author: Peter Palaga +Date: Wed Aug 7 21:29:01 2019 +0200 + + Simplify the surefire and failsafe setup + +commit 69b3fe359f705c97db3f1b28d42cdfbc094704cf +Author: Peter Palaga +Date: Wed Aug 7 13:28:36 2019 +0200 + + Keep only those parts of the enforcer plugin config that we actually use and need + +commit 56651ee307e0950b5a31798262e5951445ed4e2f +Author: Peter Palaga +Date: Wed Aug 7 12:45:38 2019 +0200 + + Manage quarkus-bootstrap-maven-plugin and quarkus-maven-plugin only + where they are needed + +commit 6ecdb13508637f3ed63ebfa8a3996d04f84e7733 +Author: Peter Palaga +Date: Wed Aug 7 12:38:07 2019 +0200 + + Simplify the configuration of maven-compiler-plugin + +commit a76c7526960ecabb1a1ebafc18c211a361bcf998 +Author: lburgazzoli +Date: Thu Aug 8 19:24:43 2019 +0200 + + chore: replace custom properties binding implementation with PropertyBindingSupport from camel support + +commit d66aca35fac27a8c50f61fc132c7da0efa69ffbf +Merge: 741a1a26fe 7ddcfd317e +Author: Andrea Cosentino +Date: Fri Aug 9 08:01:57 2019 +0200 + + Merge pull request #120 from lburgazzoli/management-name + + Override DefaultStreamCachingStrategy::resolveSpoolDirectory to avoid NPE + +commit 7ddcfd317ec8a2aea0d62598e5880d8d6c9e140d +Author: lburgazzoli +Date: Thu Aug 8 23:27:51 2019 +0200 + + Override DefaultStreamCachingStrategy::resolveSpoolDirectory to avoid NPE + + The default implementation of StreamCachingStrategy leverages the + ManagementNameStrategy to determine the name of the stream cache + spool directory but as there's no ManagementNameStrategy in Camel + Quarkus, it throws an NPE. The new method replaces the default + implementation with a simplified one + +commit 741a1a26fe0e697313b302b08f0a6605e118aa93 +Author: lburgazzoli +Date: Thu Aug 8 18:38:55 2019 +0200 + + chore(xml-common): add javax.xml.namespace.QName among the reflective classes + +commit 92106acb70310d9e7c4ade4af6340e5c2114c93c +Author: lburgazzoli +Date: Thu Aug 8 18:35:29 2019 +0200 + + rename xml extension to xml-common #116 + +commit 28b0af405352a237c0845d9e4a9676fdc5326acd +Author: lburgazzoli +Date: Wed Aug 7 19:25:35 2019 +0200 + + chore(it): rename method handler to reflect event type + +commit cd401268b448ded85520ec341f29dcc7a5368be4 +Author: Andrea Cosentino +Date: Wed Aug 7 08:57:54 2019 +0200 + + [maven-release-plugin] prepare for next development iteration + +commit 96fc234f0bb214aee5a81482f0f5a66d79aacd19 (tag: 0.1.0) +Author: Andrea Cosentino +Date: Wed Aug 7 08:57:32 2019 +0200 + + [maven-release-plugin] prepare release 0.1.0 + +commit 1f3d36376a033e99348f1b8e4ee5a57df239dcda +Author: Andrea Cosentino +Date: Wed Aug 7 08:52:49 2019 +0200 + + Set correctly quarkus version for Quarkus-maven-plugin + +commit 55da3ae786b606806aac4758ed29850b8524ff98 +Merge: 8d122f5c6f 6299410923 +Author: Andrea Cosentino +Date: Tue Aug 6 16:55:23 2019 +0200 + + Merge pull request #110 from lburgazzoli/github-98 + + Figure out whether the Reifier substitutions can be added conditionally + +commit 629941092358e873d0508740ce03b4e4cd9b6ac6 +Author: lburgazzoli +Date: Tue Aug 6 16:10:09 2019 +0200 + + Figure out whether the Reifier substitutions can be added conditionally #98 + +commit 8d122f5c6f93fa1c5da17a90f6fe76a465ff34a8 +Merge: f6daa02a37 a8b9bf39a5 +Author: Andrea Cosentino +Date: Fri Aug 2 20:22:29 2019 +0200 + + Merge pull request #106 from apache/zregvart-patch-1 + + Use source block instead of code + +commit a8b9bf39a52a253f37d5820ee5d9e06623e89060 +Author: Zoran Regvart +Date: Fri Aug 2 19:16:30 2019 +0200 + + Use source block instead of code + + This should fix issues reported in the Antora build: + + ``` + [2019-08-02T17:09:35.089Z] asciidoctor: WARNING: contributor-guide.adoc: line 18: invalid style for listing block: code + + [2019-08-02T17:09:35.089Z] asciidoctor: WARNING: contributor-guide.adoc: line 26: invalid style for listing block: code + + [2019-08-02T17:09:35.089Z] asciidoctor: WARNING: contributor-guide.adoc: line 33: invalid style for listing block: code + + [2019-08-02T17:09:35.089Z] asciidoctor: WARNING: contributor-guide.adoc: line 42: invalid style for listing block: code + + [2019-08-02T17:09:35.089Z] asciidoctor: WARNING: contributor-guide.adoc: line 50: invalid style for listing block: code + + [2019-08-02T17:09:35.089Z] asciidoctor: WARNING: contributor-guide.adoc: line 72: invalid style for listing block: code + ``` + +commit f6daa02a37bcf3b44288282000fa9e921a22015d +Merge: 8190fdbe20 e3f9e11868 +Author: Andrea Cosentino +Date: Fri Aug 2 18:09:36 2019 +0200 + + Merge pull request #105 from ppalaga/190802-doc + + Fix #37 Setup the documentation + +commit e3f9e11868fdf540761e6b2969fe7848565374aa +Author: Peter Palaga +Date: Fri Aug 2 15:13:02 2019 +0200 + + Run antora-xref-check by Maven + +commit 13b544df3d69c733323e051e40e8e03ce5e1c49c +Author: Peter Palaga +Date: Fri Aug 2 14:03:24 2019 +0200 + + Add Contributor guide + +commit e20f2d5d9de6b53201f410e9b9010236290c39e6 +Author: Peter Palaga +Date: Fri Aug 2 13:14:24 2019 +0200 + + Fix #37 Setup the documentation + +commit 8190fdbe2060e568afc9788836e248d39a8add5f +Merge: d3fbee69e4 1d45ed653e +Author: Andrea Cosentino +Date: Fri Aug 2 10:34:47 2019 +0200 + + Merge pull request #104 from ppalaga/190802-remove-travis-badge + + Remove the TravisCI badge from the README + +commit 1d45ed653eb17aaea43811deae4736594e080590 +Author: Peter Palaga +Date: Fri Aug 2 09:52:24 2019 +0200 + + Remove the TravisCI badge from the README + +commit d3fbee69e44f28487b9291efc768b7a39f8e70e8 +Merge: e822d08de5 fae027770d +Author: Andrea Cosentino +Date: Thu Aug 1 17:05:43 2019 +0200 + + Merge pull request #103 from ppalaga/190801-rename-test-packages + + Rename the rest of java packages in itests + +commit e822d08de57ea9ea5bdc5cf5f724c65eb39bdf99 +Merge: b7097adde8 859dc72470 +Author: Andrea Cosentino +Date: Thu Aug 1 11:28:52 2019 +0200 + + Merge pull request #102 from ppalaga/190712-create-extension + + Add configuration for quarkus:create-extension mojo + +commit fae027770d2f84f07d68b4f06b848e7386b01ffd +Author: Peter Palaga +Date: Thu Aug 1 11:17:56 2019 +0200 + + Rename the rest of java packages in itests + +commit 859dc724707e6227f2100a6cd9306e99d9d983ec +Author: Peter Palaga +Date: Fri Jul 12 08:50:26 2019 +0200 + + Add configuration for quarkus:create-extension mojo + +commit b7097adde871be003f20171d60d43cd74a32019b +Merge: 36b6c7f3c1 254825bbbd +Author: Andrea Cosentino +Date: Thu Aug 1 10:19:25 2019 +0200 + + Merge pull request #100 from lburgazzoli/quarkus-0.20.0 + + Upgrade quarkus to v0.20.0 plsu some cleanup + +commit 36b6c7f3c1e74e2710e482e1638f009f1f93de87 +Merge: d965b39551 6e9649b5fe +Author: Andrea Cosentino +Date: Thu Aug 1 10:19:15 2019 +0200 + + Merge pull request #101 from lburgazzoli/cleanup + + chore(cleanup): remove ide-config + +commit 6e9649b5fe82642431cec49554af0b1aac1c3adb +Author: lburgazzoli +Date: Thu Aug 1 08:44:45 2019 +0200 + + chore(cleanup): remove ide-config + +commit 254825bbbdc6db35cd16892ed00c8f85c60fc33a +Author: lburgazzoli +Date: Thu Aug 1 08:40:51 2019 +0200 + + chore(style): shorter anme for processor + +commit 8005b541cef02ae201aad21cdac23727daff18ff +Author: lburgazzoli +Date: Thu Aug 1 08:35:15 2019 +0200 + + chore(style): fix license and checkstyle findings + +commit 782de0d43cf33789ee30b1d4e26bb56e1ed5a25a +Author: lburgazzoli +Date: Thu Aug 1 08:04:31 2019 +0200 + + chore(deps): upgrade quarkus to v0.20.0 + +commit d965b39551af874cc0074206775c8762b8cbfb01 +Merge: 73907a7ea1 070205b1a5 +Author: Andrea Cosentino +Date: Wed Jul 31 15:26:00 2019 +0200 + + Merge pull request #72 from ppalaga/camel-3.0.0-M3.1 + + Upgrade to Camel 3.0.0-M4 + +commit 070205b1a53ea3639a573ed5afaddfec83e2159f +Author: Peter Palaga +Date: Tue Jul 30 20:04:45 2019 +0200 + + Workaround #80 + +commit 36d335a616c926e97cc18089b0fa6b2b19ac9a6a +Author: Peter Palaga +Date: Mon Jul 29 21:15:44 2019 +0200 + + Upgrade to Camel 3.0.0-M4 + +commit 659de8643abfbb029ee5afbafabc546ab4341af2 +Author: Peter Palaga +Date: Fri Jul 26 15:22:02 2019 +0200 + + Make the AWS extensions use the new XML extension + +commit c24d05fe2d8e8665f2b0aa6fcc0a4905c7ba76b8 +Author: Peter Palaga +Date: Fri Jul 26 10:26:38 2019 +0200 + + Make the core-cdi itest pass on Camel 3.0.0-M3 + +commit 788dcfbe8b23f2bb5c832ac54029795800ba4221 +Author: Peter Palaga +Date: Fri Jul 26 10:24:03 2019 +0200 + + Add XML extension + +commit 8407fc14b67f1c4a8e28e7dfdaeb04052afe6fa9 +Author: Peter Palaga +Date: Mon Jul 15 10:19:48 2019 +0200 + + Add bean extension, fix #39 Move Bean test out of Core integration test + +commit f786a4a4ba59debb9bac3e08284f1f36bdf7fc44 +Author: Peter Palaga +Date: Fri Jul 12 23:19:21 2019 +0200 + + Exclude all from camel-core + +commit e22fdf19cca7fcdb55f461ab2aa1926e4486e9b0 +Author: Peter Palaga +Date: Fri Jul 12 21:55:48 2019 +0200 + + Upgrade to Camel 3.0.0-M3 + +commit 73907a7ea1a78e9edb82fb2eef70c23e58cee988 +Merge: 73d5d36f02 8a316979a9 +Author: Andrea Cosentino +Date: Wed Jul 31 12:13:26 2019 +0200 + + Merge pull request #99 from jamesnetherton/57-twitter + + Add twitter extension + +commit 8a316979a9492cf2738c21aafd6f7d39a9895026 +Author: James Netherton +Date: Wed Jul 31 08:30:49 2019 +0100 + + Add twitter extension + + fixes #57 + +commit 73d5d36f028e82e7a6f47124cff3ab4856faa083 +Author: Peter Palaga +Date: Thu Jul 25 14:40:34 2019 +0200 + + Omit the artifactId in release tags + +commit 2a834d7e8836b828438facacdd5e60a53bc4aba0 +Author: lburgazzoli +Date: Sun Jul 21 22:44:27 2019 +0200 + + disable caffine cache (because of #80) + +commit 3bef7a406df2709c7e7d8886ed4f91e13d02aeae +Author: lburgazzoli +Date: Thu Jul 18 08:56:54 2019 +0200 + + move test packages to org.apache.camel + +commit 4cc0b4437e8f57bdfd8be800ec0b7e6491c81736 +Merge: 7527471b36 24e0097f46 +Author: Andrea Cosentino +Date: Thu Jul 25 14:45:06 2019 +0200 + + Merge pull request #94 from ppalaga/190725-AWs + + Fix typo s/AWs_REGION/AWS_REGION/ + +commit 24e0097f464db764eba98e8c21e24ee645ce561f +Author: Peter Palaga +Date: Thu Jul 25 13:20:24 2019 +0200 + + Fix typo s/AWs_REGION/AWS_REGION/ + +commit 7527471b36155f44cbdd16520a21ff50f9e5d487 +Author: Andrea Cosentino +Date: Thu Jul 25 12:55:45 2019 +0200 + + [maven-release-plugin] prepare for next development iteration + +commit 1f2a7cd6a2b0467bb75650d0d901de6791dd2d11 +Author: Andrea Cosentino +Date: Thu Jul 25 12:55:24 2019 +0200 + + [maven-release-plugin] prepare release camel-quarkus-parent-0.0.2 + +commit be3e468db23c634dcbbef0e79bef53bc23e12586 +Author: Andrea Cosentino +Date: Thu Jul 25 11:59:34 2019 +0200 + + [maven-release-plugin] prepare for next development iteration + +commit 952d29baf3432822d8e73b88f8051cc777d4b8e6 (tag: camel-quarkus-parent-0.0.1) +Author: Andrea Cosentino +Date: Thu Jul 25 11:50:00 2019 +0200 + + [maven-release-plugin] rollback the release of camel-quarkus-parent-0.0.1 + +commit 3355dd26d3a58f86dcd92ee76f6ba5c3befe8e8c +Author: Andrea Cosentino +Date: Thu Jul 25 11:45:51 2019 +0200 + + [maven-release-plugin] prepare release camel-quarkus-parent-0.0.1 + +commit 4a6e8d513f62b14309997c5dc7954c7db386390c +Merge: 0217f6b6e6 801107d1ca +Author: Andrea Cosentino +Date: Thu Jul 25 11:43:26 2019 +0200 + + Merge pull request #93 from apache/clean-up-release + + Added failIfNoTest option in surefire configuration + +commit 801107d1ca28567aa5ef3f613e7f1c97eb03510b +Author: Andrea Cosentino +Date: Thu Jul 25 11:42:47 2019 +0200 + + Added failIfNoTest option in surefire configuration + +commit 0217f6b6e655b3a330f8c22c7d743e33edf7ada4 +Merge: 364a959765 bf5cfc55b5 +Author: Andrea Cosentino +Date: Thu Jul 25 11:21:07 2019 +0200 + + Merge pull request #92 from lburgazzoli/release-profile + + chore(build): move release profile to camel-quarkus-parent + +commit bf5cfc55b5ae0fc0faa78b5f45cf14e78a1590dd +Author: lburgazzoli +Date: Thu Jul 25 11:20:20 2019 +0200 + + chore(build): move release profile to camel-quarkus-parent + +commit 364a95976563b216ba513ae3d9f5e5a2e6fd47cb +Merge: a655fe4484 538447da2a +Author: Andrea Cosentino +Date: Thu Jul 25 08:27:05 2019 +0200 + + Merge pull request #90 from lburgazzoli/it-pom-cleanup + + chore(it): cleanup it poms + +commit a655fe44841bb7fc1794b43105b8a38de78705b1 +Author: Peter Palaga +Date: Wed Jul 24 11:16:01 2019 +0200 + + Remove unused imports from CamelRoute in netty4-http integration test + +commit 538447da2a1472b185700c69f04fea2b62631632 +Author: lburgazzoli +Date: Wed Jul 24 16:42:43 2019 +0200 + + chore(it): cleanup it poms + +commit 4408f995cd2d5fda55d6f02b40bc697d4fb442d3 +Merge: 8c6ea1c557 1092b205be +Author: Andrea Cosentino +Date: Wed Jul 24 23:42:58 2019 +0200 + + Merge pull request #89 from apache/refl-1 + + AWS Extension configuration classes need to be registered for reflection + +commit 8c6ea1c55794553cd0788f58d288d0bf4ca67db5 +Author: Andrea Cosentino +Date: Wed Jul 24 15:01:32 2019 +0200 + + Changed the AWS integration test module name and folder name + +commit 74e1da3502145b599ada8ffb579b05fb1264ca11 +Merge: 96cf416684 b805f698de +Author: Andrea Cosentino +Date: Wed Jul 24 19:36:41 2019 +0200 + + Merge pull request #87 from lburgazzoli/cdi-test + + chore(test): add camel core cdi test + +commit 96cf41668461de496a97407d1ce7f9ea964001b3 +Merge: e53ab42ca6 d32226b806 +Author: Andrea Cosentino +Date: Wed Jul 24 17:24:58 2019 +0200 + + Merge pull request #86 from ppalaga/190724-nett4 + + Fix typo s/nett4/netty4/ + +commit 1092b205bef9644e58369e17e5cf0e0eec1a548b +Author: Andrea Cosentino +Date: Wed Jul 24 15:56:17 2019 +0200 + + AWS S3 Extension: S3Configuration needs to be registered for Reflection + +commit 306315f7009ea9b2e976781101712758600e1f15 +Author: Andrea Cosentino +Date: Wed Jul 24 16:04:32 2019 +0200 + + AWS-EKS Extension: EKSConfiguration needs to be registered for reflection + +commit 97cf08e09ea579516df2798f088f6cdf27fb09aa +Author: Andrea Cosentino +Date: Wed Jul 24 15:57:57 2019 +0200 + + AWS-SQS Extension: SQSConfiguration needs to be registered for reflection + +commit d954de8dad713dfbc6cfb2b0cf1608e62dd33c23 +Author: Andrea Cosentino +Date: Wed Jul 24 15:57:14 2019 +0200 + + AWS-SNS Extension: SNSConfiguration needs to be registered for Reflection + +commit e53ab42ca6b37e37b33adfdab0991cbeae50384e +Merge: a11beb3467 0a5bf0e228 +Author: Andrea Cosentino +Date: Wed Jul 24 14:59:22 2019 +0200 + + Merge pull request #85 from apache/aws-single-itest + + Add a single integration test module for the AWS extensions + +commit b805f698def59a4fd02397e652a9b2d43fca0784 +Author: lburgazzoli +Date: Wed Jul 24 13:01:50 2019 +0200 + + chore(test): add camel core cdi test + +commit d32226b8065904950dd1415d97ff5d98009c9820 +Author: Peter Palaga +Date: Wed Jul 24 10:57:58 2019 +0200 + + Fix typo s/nett4/netty4/ + +commit 0a5bf0e228a667a3664c9a06a647cca285bf4946 +Author: Andrea Cosentino +Date: Wed Jul 24 10:24:31 2019 +0200 + + Add a single integration test module for the AWS extensions + +commit a11beb3467a58512d3ee317f56693ed4f6d7f5b8 +Merge: e99876cd5c 7da74e857d +Author: Andrea Cosentino +Date: Tue Jul 23 18:50:04 2019 +0200 + + Merge pull request #84 from lburgazzoli/it-cleanup + + chore(it): cleanup application.properties and poms + +commit 7da74e857dce3bc73675347860a4c353ad1a6318 +Author: lburgazzoli +Date: Tue Jul 23 15:01:38 2019 +0200 + + chore(it): cleanup application.properties and poms + +commit e99876cd5c960aa18e6411fc29782494ad92b6f3 +Merge: bcd4441c0c 28ccde2258 +Author: Andrea Cosentino +Date: Mon Jul 22 16:16:26 2019 +0200 + + Merge pull request #83 from apache/aws-eks + + Fixes #18 Add a Camel AWS-EKS Extension + +commit 28ccde2258bbbe9afb7b341ccba4ccc2acba67e3 +Author: Andrea Cosentino +Date: Mon Jul 22 15:32:09 2019 +0200 + + Fixes #18 Add a Camel AWS-EKS Extension + +commit bcd4441c0cede6808c4c60ae5b04f52e6cc19069 +Merge: 9577f25a64 01cbb6cdda +Author: Andrea Cosentino +Date: Sun Jul 21 18:24:27 2019 +0200 + + Merge pull request #79 from lburgazzoli/github-32 + + Move netty integration-tests out of core + +commit 01cbb6cdda38eb29ffee1984b6d5586813e442bf +Author: lburgazzoli +Date: Sun Jul 21 17:38:22 2019 +0200 + + Move netty integration-tests out of core #32 + +commit 9577f25a64d03ab18007c4b921158c44f3a42453 +Author: lburgazzoli +Date: Sat Jul 20 15:21:04 2019 +0200 + + Move XStream processor from salesforce to a dedicated extension #34 + +commit cc3f501a9048fcdedf922755173f93d5b7a58d49 +Author: lburgazzoli +Date: Sat Jul 20 14:15:48 2019 +0200 + + Move jetty processor from salesforce to a dedicated extension #33 + +commit 615c20a111dfa3ab639743bd11c0969fcc89651a +Author: Peter Palaga +Date: Fri Jul 12 13:42:05 2019 +0200 + + Add timer extension + +commit 6c19894d6563d815b8022076a76b869713cc32fe +Author: Peter Palaga +Date: Fri Jul 12 12:40:25 2019 +0200 + + Add rest extenstion + +commit ec02bd9b40c6cd41c5b65f28c649f0e6658be81c +Author: Peter Palaga +Date: Fri Jul 12 11:44:59 2019 +0200 + + Add direct extension + +commit 90576ed141edcb631cda12c82f83c3f7d7318094 +Author: Peter Palaga +Date: Fri Jul 12 10:40:05 2019 +0200 + + Add log extension + +commit 13fc8f3730f52f7c7d005a86318401f479fd5edd +Author: lburgazzoli +Date: Thu Jul 11 17:12:00 2019 +0200 + + Upgrade quarkus to v0.19.1 + +commit 0e0d0b793dac58ccc948a5ee892334ba17f9bb37 +Author: lburgazzoli +Date: Wed Jul 10 16:55:38 2019 +0200 + + Upgrade quarkus to v0.19.0 #60 + +commit eb389277aead41be6ffce0abcc4d5af09bd7648b +Author: lburgazzoli +Date: Wed Jul 10 16:31:38 2019 +0200 + + chore(build): cleanup build set-up + +commit a68f54b6bad1ac41bc05cdea72608cba6ea55551 +Author: lburgazzoli +Date: Wed Jul 10 12:49:17 2019 +0200 + + Review extensions' dependencies chains #56 + +commit 8a9a2a41a4d2c0a2ede2cd8f9fe38be197674996 +Author: Peter Palaga +Date: Tue Jul 9 20:53:56 2019 +0200 + + Fix #31 Move infinispan integration-tests out of core + +commit 692b3e66aef9bf791d9d93351fae1eb0b1962352 +Author: lburgazzoli +Date: Mon Jul 8 20:21:20 2019 +0200 + + Use RestAssured in JDBC test #42 + +commit 4e7a3a63b479f8f8a104deda83d1b558fd4f65db +Author: lburgazzoli +Date: Tue Jul 9 14:24:27 2019 +0200 + + chore(build): remove travis build + +commit 7e05bb7f47461d7d4d7e211c3005fb33f564d013 +Author: Andrea Cosentino +Date: Tue Jul 9 14:21:36 2019 +0200 + + Removed Jenkinsfile not used + +commit f1aa1b59c031a8919f3d9d33ec14aedba9da9e4d +Merge: 7899370340 418d93d8a9 +Author: Andrea Cosentino +Date: Tue Jul 9 12:42:01 2019 +0200 + + Merge pull request #50 from ppalaga/190709-migrate-constants + + Do not use io.quarkus...FeatureBuildItem feature constants + +commit 418d93d8a98d6e83472cb7fe4be363ec786232b0 +Author: Peter Palaga +Date: Tue Jul 9 12:12:23 2019 +0200 + + Do not use io.quarkus...FeatureBuildItem feature constants + + Those constants will be removed from Quarkus together with Camel + extensions + +commit 78993703406c93c5112a477501b901588ce88e31 +Merge: b5fc2ce06b 0304e02803 +Author: Andrea Cosentino +Date: Tue Jul 9 12:07:05 2019 +0200 + + Merge pull request #48 from lburgazzoli/producers + + chore(arc): add ConsumerTemplate and ProducerTemplate producers + +commit b5fc2ce06b1e7078ea755ae6b032a1dd242cd9a6 +Merge: 206aebb909 59632ad6f6 +Author: Andrea Cosentino +Date: Tue Jul 9 11:42:52 2019 +0200 + + Merge pull request #49 from lburgazzoli/jenkins + + chore(build): add Jenkinsfile + +commit 59632ad6f63939d675003add925ff2f5cfe1c447 +Author: lburgazzoli +Date: Tue Jul 9 11:36:17 2019 +0200 + + chore(build): add Jenkinsfile + +commit 0304e02803a1bb347126911772cca3f99873a483 +Author: lburgazzoli +Date: Tue Jul 9 11:26:53 2019 +0200 + + chore(arc): add ConsumerTemplate and ProducerTemplate producers + +commit 206aebb9092df90a788a3110298f41dacb9dcabb +Merge: 86e02a7463 1a808a0e0e +Author: Andrea Cosentino +Date: Tue Jul 9 08:30:29 2019 +0200 + + Merge pull request #46 from lburgazzoli/caffeine + + Caffeine + +commit 86e02a7463dac95a7e9a860bdd4e05727f244a80 +Author: lburgazzoli +Date: Mon Jul 8 18:04:38 2019 +0200 + + chore: ignore ObjectStore folder + +commit 1a808a0e0e7aa04a99c4477a60e8bf1469f33816 +Author: lburgazzoli +Date: Mon Jul 8 18:57:57 2019 +0200 + + Infinispan substrate test are disbaled #44 + +commit d82e084e9cd1df41feb99fa8586bd4a13af29517 +Author: lburgazzoli +Date: Mon Jul 8 18:57:40 2019 +0200 + + Use caffein as LRUCache in native mode #45 + +commit f5ad4ed24628fff4bad7f6ffad8f63b058782816 +Author: Peter Palaga +Date: Thu Jul 4 12:20:03 2019 +0200 + + Fix #10 Produce test-jars of the integration tests + +commit 99f0b97724338f65aa5772d54603bbe32598443a +Merge: 0dbf3d8d60 33b56fcc81 +Author: Andrea Cosentino +Date: Mon Jul 8 14:08:04 2019 +0200 + + Merge pull request #40 from ppalaga/190708-manage-servlet-and-sns + + Manage camel-servlet and camel-aws-sns in the BOM + +commit 33b56fcc81085f422b518f3e79dfffc96ba49e1e +Author: Peter Palaga +Date: Mon Jul 8 12:53:35 2019 +0200 + + Manage camel-servlet and camel-aws-sns in the BOM + + This becomes required when Camel stuff is removed from Quarkus BOM + +commit 0dbf3d8d60d574dbe8e96930e7cd192f227f688a +Merge: 8eea15e120 17cfd9038a +Author: Claus Ibsen +Date: Thu Jul 4 16:55:54 2019 +0200 + + Merge pull request #23 from ppalaga/i6.1 + + Fix #6 Rename packages from io.quarkus.camel to org.apache.camel.quarkus + +commit 8eea15e12004d318f0071e868f7cf456a846965f +Author: lburgazzoli +Date: Wed Jul 3 10:42:55 2019 +0200 + + Use docker-build in travis #29 + +commit 8c474bf9c019720edf8748838b8128a29e9f18d5 +Author: lburgazzoli +Date: Wed Jul 3 10:30:41 2019 +0200 + + Avoid 3rd party maven repositories if possible #20 + +commit 8a59dbaf14109faccf1bf79443c8783e7079e30e +Merge: 1851223da9 565898d233 +Author: Claus Ibsen +Date: Wed Jul 3 05:12:56 2019 +0200 + + Merge pull request #26 from ppalaga/i25 + + Fix #25 Use the same naming scheme for artifactIds and module names + +commit 1851223da9891d463d64227936baffb159ce025d +Merge: 6cbe697176 e7a50071ff +Author: Claus Ibsen +Date: Wed Jul 3 05:12:07 2019 +0200 + + Merge pull request #27 from ppalaga/190702-readme + + Add badges and How to build section to the README + +commit e7a50071ffcdf93115d52b4b9b8237a8fe8c3138 +Author: Peter Palaga +Date: Sun Jun 30 20:02:50 2019 +0200 + + Add badges and How to build section to the README + +commit 565898d233463579d2d0399168027c822eb7d06b +Author: Peter Palaga +Date: Tue Jul 2 19:38:36 2019 +0200 + + Fix #25 Use the same naming scheme for artifactIds and module names. + +commit 17cfd9038a167aebbf673a67842a237fcda6ecc7 +Author: Peter Palaga +Date: Tue Jul 2 12:14:51 2019 +0200 + + Fix #6 Rename packages from io.quarkus.camel to org.apache.camel.quarkus + +commit 6cbe697176ee55d60ef9008666abfabc6efbe0d2 +Author: Peter Palaga +Date: Mon Jul 1 21:21:38 2019 +0200 + + Fix #11 Test the native mode on TravisCI + +commit 1f18332a84c06a347c21e0774f3bf2166ae02c6b +Merge: 7e3e865d4d 16e47c9f5a +Author: Andrea Cosentino +Date: Tue Jul 2 11:20:16 2019 +0200 + + Merge pull request #22 from lburgazzoli/cleanup + + Initial import cleanup + +commit 16e47c9f5ad0595ce849ed05ffdbcc798c749414 +Author: lburgazzoli +Date: Tue Jul 2 10:24:08 2019 +0200 + + chore: PR review findings + +commit 55eb40a5a2c23ced0abc1a6bc0906b8e2f1496df +Author: lburgazzoli +Date: Tue Jul 2 08:57:21 2019 +0200 + + Initial source code - Add license headers #4 + +commit ba0169f480dc7657c529298b1b1ee60e022c3809 +Author: lburgazzoli +Date: Tue Jul 2 08:49:45 2019 +0200 + + Configure license format #19 + +commit 5e19c7faa9710e0ec4f069d7d18868258785152c +Author: lburgazzoli +Date: Tue Jul 2 08:46:54 2019 +0200 + + Configure checkstyle #14 + +commit 7e3e865d4d673c833b7a1c47f1e001b11d9a1a2b +Author: lburgazzoli +Date: Tue Jul 2 07:47:48 2019 +0200 + + chore(build): use project.version + +commit 372e13ee62b35f20436e577db388a76fc227368e +Author: Claus Ibsen +Date: Tue Jul 2 08:49:03 2019 +0200 + + Use vanilla Maven Compiler Plugin version (from maven central) + +commit a1396bd42032d3bc9323aa4badd80e84bf8e1c29 +Merge: 92df3bcaa0 1b07f2d964 +Author: Andrea Cosentino +Date: Tue Jul 2 08:33:30 2019 +0200 + + Merge pull request #13 from lburgazzoli/keys + + Add keys + +commit 1b07f2d96447a3dc99a51046e4d569ce18c3575c +Author: lburgazzoli +Date: Tue Jul 2 06:51:16 2019 +0200 + + Add keys + +commit 92df3bcaa0f593a1dff7f55dcd6a664a2fe380b5 +Merge: 2d55cf0257 4e0ac7bd76 +Author: Luca Burgazzoli +Date: Mon Jul 1 20:45:32 2019 +0200 + + Merge pull request #3 from ppalaga/190626-migrate-extensions-from-quarkus + + Migrate Camel extensions from Quarkus + +commit 4e0ac7bd767f5de656b0757f11f0b00b72fa7933 +Author: Peter Palaga +Date: Fri Jun 28 12:32:26 2019 +0200 + + Adapt the POM files of the imported modules and wire them into the top level POM + +commit 509080dc5722c11928e40791c6b446c9ee9a4c7e +Author: Guillaume Smet +Date: Thu Jun 27 12:28:41 2019 +0200 + + [RELEASE] - Bump version to 0.18.0 + +commit 2d55cf0257f5a1c4a3f4b3e422712fb68f9700ec +Author: Peter Palaga +Date: Mon Jun 24 15:13:31 2019 +0200 + + Add .travis.yml + +commit f68554426be8da6bba0470a536ba9c90fe742c65 +Author: Peter Palaga +Date: Mon Jun 24 14:28:04 2019 +0200 + + Add Maven Wrapper + +commit 4d7cc01c94e31572dc67b51284a00ab963e05178 +Author: Peter Palaga +Date: Mon Jun 24 12:15:52 2019 +0200 + + Add basic README + +commit 3266728ea5aea83fe093da2580f255dab9383617 +Author: Peter Palaga +Date: Mon Jun 24 11:59:09 2019 +0200 + + Add Parent POM + +commit 41f9fcfda7ab0fb3221c893a424c79f43bb1634b +Author: Andrea Cosentino +Date: Fri Jun 21 11:36:38 2019 +0200 + + Added Keys for releasing + +commit bc4980e0191efcd05393137057c498dedee733dd +Author: Andrea Cosentino +Date: Fri Jun 21 11:36:16 2019 +0200 + + Added License + +commit 0aeb682d86e3878b5413958563c10d06ba14babd +Author: Andrea Cosentino +Date: Fri Jun 21 11:36:05 2019 +0200 + + Added NOTICE.txt + +commit 92fe72728588b43b1185adc246b2e44e5d669dd0 +Author: Stuart Douglas +Date: Fri Jun 14 08:01:18 2019 +1000 + + Remove license headers + +commit 2d9130f95f27c8072714609d3675ab3bbb5750ea +Merge: eb15ade2b1 f7a10d6914 +Author: Stuart Douglas +Date: Tue Jun 11 16:07:10 2019 +1000 + + Merge pull request #2749 from michalszynkiewicz/ws-encoders-registration + + register websocket encoders and decoders for reflection + +commit eb15ade2b14e44d64cb2564e36b5dac968fbb64b +Merge: 5b4ae3c54e 214199b480 +Author: Clement Escoffier +Date: Tue Jun 11 08:04:36 2019 +0200 + + Merge pull request #2769 from mkouba/issue-1656-yasson + + Implement JsonbComponentInstanceCreator + +commit 5b4ae3c54eb57bf00a2755ea3f2fa2f2c2951ced +Author: Clement Escoffier +Date: Mon Jun 10 12:41:38 2019 +0200 + + Merge pull request #2754 from machi1990/fix-formatting-issue + + style(camel): fix formatting issue + +commit 214199b480910eb6ef731e36552c8cbbc4c19361 +Author: Martin Kouba +Date: Fri May 3 11:16:33 2019 +0200 + + Implement JsonbComponentInstanceCreator + + - upgrade Yasson to 1.0.4 + - resolves #1656 + +commit f7a10d691444a516e22eb52e19375ea9263b0ca7 +Author: Michal Szynkiewicz +Date: Fri Jun 7 18:15:28 2019 +0200 + + register websocket client encoders and decoders for reflection + + fixes #2745 + +commit 4cf97b9e425bb69f9d1fef5064df81de451ccb8e +Merge: 250ed546c6 4b6cbd19f1 +Author: Clement Escoffier +Date: Fri Jun 7 13:50:11 2019 +0200 + + Merge pull request #2542 from ppalaga/190521-camel-servlet + +  Fix #2547 Camel servlet extension + +commit 250ed546c6441bfe2b249bf0958eb258476b4da5 +Merge: 8443572c5f f5cdb6fc56 +Author: Clement Escoffier +Date: Fri Jun 7 13:48:55 2019 +0200 + + Merge pull request #2682 from oscerd/aws-sns + + Add an extension for Camel-AWS SNS + +commit 8443572c5f5a0bc0cb1469dfea56d69986c94d2c +Merge: 549183bc3b c56aeb6d10 +Author: Clement Escoffier +Date: Fri Jun 7 08:19:12 2019 +0200 + + Merge pull request #2361 from ppalaga/190429-camel-jdbc + + Camel JDBC extension + +commit 549183bc3b4051c592a233e10ec3a7301e69a649 +Merge: 990baf7218 33e5e4e7e4 +Author: Guillaume Smet +Date: Wed Jun 5 10:06:02 2019 +0200 + + Merge pull request #2562 from gnodet/fix-2205 + + Make sure the JAXBContext is initialized at build time when running i… + +commit f5cdb6fc5632c54eb407b7149481c742e0f0df48 +Author: Andrea Cosentino +Date: Fri May 31 17:03:00 2019 +0200 + + feature(aws-sns): Fixes #2681 Add an extension for Camel-AWS SNS + +commit 990baf7218249ab742dbe8b179ae5683b8b9bcea +Author: Stuart Douglas +Date: Wed May 29 21:32:59 2019 +1000 + + If start failed always attempt restart + + We may not have all application config files registered + so without this fixing a config file problem may not allow + your app to restart. + +commit 3c0131d1b45733ffd2c6f2a01dc27f16ee9e2333 +Author: David M. Lloyd +Date: Fri May 24 13:21:16 2019 -0500 + + Merge pull request #2581 from machi1990/chore-configure-remove-unused-imports + + chore: configure automatic removal of unused imports + +commit c56aeb6d1059e4f4f5d5d18b26827db95ecc996c +Author: Peter Palaga +Date: Fri May 24 17:51:39 2019 +0200 + + Camel JDBC extension + +commit 3474d4a61406b20dce109b2a4d1c0afdd1646bd8 +Merge: 7508310ae0 1d5d3ed355 +Author: Martin Kouba +Date: Fri May 24 16:04:00 2019 +0200 + + Merge pull request #2580 from mkouba/issue-2574-hotdeploybuilditem + + Rename HotDeploymentConfigFileBuildItem + +commit 7508310ae01867adc9551627492dadfaf0c1156d +Merge: 63af7333d9 7a4a5565c8 +Author: Martin Kouba +Date: Fri May 24 15:11:08 2019 +0200 + + Merge pull request #2541 from gnodet/fix-2525 + + Camel-AWS - fix env variable substitution, fixes #2525 + +commit 4b6cbd19f10a7e0dce3c3a87f7d9cfbf5639975f +Author: Peter Palaga +Date: Tue May 21 16:04:21 2019 +0200 + + Fix #2547 Camel servlet extension + +commit 1d5d3ed3554d7477cecc0cba9cf257c646fa476d +Author: Martin Kouba +Date: Fri May 24 09:59:25 2019 +0200 + + Rename HotDeploymentConfigFileBuildItem + + - to HotDeploymentWatchedFileBuildItem + - resolves #2574 + +commit 33e5e4e7e4268821a7c49217194177af641eb7d1 +Author: Guillaume Nodet +Date: Wed May 22 17:48:42 2019 +0200 + + Make sure the JAXBContext is initialized at build time when running in native mode, fixes #2205 + +commit 7a4a5565c891223eafb5887c43270d4851202188 +Author: Guillaume Nodet +Date: Tue May 21 17:57:37 2019 +0200 + + Fix env variable substitution, fixes #2525 + +commit 63af7333d9a9890d7984ca811d21ca38de2f738b +Author: Andrea Cosentino +Date: Tue May 21 08:54:47 2019 +0200 + + Fixes #2537 Add Extension for Camel-AWS-SQS + +commit 4e7b2d5a867f800c398e79ad19cd6b0f9e190045 +Author: Peter Palaga +Date: Mon May 6 21:50:31 2019 +0200 + + Activate camel-core integration tests via -Dnative + + Before this change -Dnative-camel was needed and the camel-core + integration tests were not run on Quarkus CI. + +commit ac413f11379c75fe667029131f8193ffb87f9e28 +Author: Peter Palaga +Date: Mon May 6 21:48:16 2019 +0200 + + Disable CamelInfinispanITCase see #2351 + +commit 327d7ddec19a09679eabba8296965476e6f31ba5 +Author: Peter Palaga +Date: Mon May 6 14:49:39 2019 +0200 + + Fix #2347 Still: Could not find field com.sun.beans.WeakCache.map on class com.sun.beans.WeakCache + +commit 962781ff9b427de529fd0fb832194f38573c9727 +Author: Peter Palaga +Date: Mon May 6 14:28:21 2019 +0200 + + Fix #2346 CamelConfig.BuildTime.disableJaxb and disableXml need defaults + +commit c53f96b35cc3439f4c24fc101f1218458f976303 +Merge: 1e0b94ad77 a896fb97de +Author: Jason T. Greene +Date: Tue Apr 30 17:54:29 2019 -0500 + + Merge pull request #2310 from gnodet/fix-2233 + + Camel extension is too verbose on default log level, fixes #2233 + +commit a896fb97de5485c0080dfc4fc9ae5bc1d5c61487 +Author: Guillaume Nodet +Date: Tue Apr 30 18:21:40 2019 +0200 + + Camel extension is too verbose on default log level, fixes #2233 + +commit 1e0b94ad777937b1a1fe9da821a59251c1ecdd47 +Author: Guillaume Nodet +Date: Tue Apr 30 13:45:59 2019 +0200 + + Make sure version is available for Camel, fixes #1807 + +commit 77ba3291a6c9425b2fdc8c82f13faca088750b1d +Merge: 0333ba9867 936f05f623 +Author: Guillaume Smet +Date: Mon Apr 29 22:45:34 2019 +0200 + + Merge pull request #2278 from gnodet/fix-2273 + + Possible NPE in camel extension, fixes #2273 + +commit 936f05f623058e90f3541fae71e6bb615887c974 +Author: Guillaume Nodet +Date: Mon Apr 29 18:12:40 2019 +0200 + + Possible NPE in camel extension, fixes #2273 + +commit 0333ba98671585958e8a0c7d3a24b4db918a21e0 +Author: Guillaume Nodet +Date: Mon Apr 29 16:19:06 2019 +0200 + + Fix WeakCache substitution on JDK8 + JDK11, fixes #2207 + +commit 3dd748cc5100174354f6044ef42fd006aae266f3 +Author: Peter Palaga +Date: Fri Apr 26 12:30:20 2019 +0200 + + Do not duplicate managed version of slf4j-jboss-logging + +commit d4dfccb1a5f04e2235a2c0eba42b04407861bcf8 +Author: Stuart Douglas +Date: Tue Apr 16 13:25:05 2019 +1000 + + Add support for Amazon lambda tests + +commit 3dc2b317ba08ff0f1dad068f5bd332af8af7988d +Author: Rostislav Svoboda +Date: Fri Apr 12 14:33:01 2019 +0200 + + org.jboss.builder package rename to io.quarkus.builder + +commit 03b96407ec981d11594e14756056cb9c1c0876ac +Author: Rostislav Svoboda +Date: Fri Apr 5 23:12:39 2019 +0200 + + io.quarkus.it packages prefix for integration-tests module + +commit 75f518d4dadda352c33f5347a29ae6aeaa73e294 +Author: Guillaume Smet +Date: Wed Apr 3 17:13:14 2019 +0200 + + Fix an Eclipse JDT specific compilation error + +commit 3b2881a633cecf6029f7e4a94a19f1f7b3300e2a +Author: Alexey Loubyansky +Date: Tue Apr 2 20:54:51 2019 +0200 + + changed groupId of bootstrap from io.quarkus.bootstrap to io.quarkus + +commit 5d7eeba54009350ef07e86ce8e08041c00fffe15 +Merge: 8fc190a409 7b1d7bf431 +Author: Alexey Loubyansky +Date: Mon Apr 1 23:51:31 2019 +0200 + + Merge pull request #1800 from gsmet/rename-bootstrap-plugin + + Make the bootstrap plugin more consistent with the code base + +commit 7b1d7bf431404bc0660f15ac1e8af90753de9161 +Author: Guillaume Smet +Date: Mon Apr 1 11:35:16 2019 +0200 + + Rename bootstrap-maven-plugin to quarkus-bootstrap-maven-plugin + + Fixes #1712. + +commit 8fc190a4090cb29f33062392be022efad53e6279 +Author: David M. Lloyd +Date: Mon Apr 1 08:33:01 2019 -0500 + + Fix usage of class not available in Java 9+ + +commit 64b87fa455828159aa18cf3beeabd28fd884bf05 +Merge: ab445e8ecc acd6980825 +Author: Guillaume Nodet +Date: Fri Mar 29 17:06:34 2019 +0100 + + Merge remote-tracking branch 'origin/master' into camel-m2 + +commit ab445e8ecc5e8b9e02f30c887da305789cbf2af9 +Author: Guillaume Nodet +Date: Fri Mar 29 11:24:43 2019 +0100 + + Make sure CamelProducers is unremovable + +commit 32ce28c60762d6040c3ab1a7e7431b07d2c7d063 +Author: Guillaume Nodet +Date: Fri Mar 29 08:54:13 2019 +0100 + + Add producers for CamelContext, Registry and configs + +commit 293afb214eec781a15ef9bf9f0b93ad026002927 +Author: Guillaume Nodet +Date: Thu Mar 28 16:14:45 2019 +0100 + + Remove retained references to private java.lang.Object.registerNatives / java.lang.reflect.Proxy.defineClass0 methods + +commit acd6980825ce047e62445b92e3c42d0db1f050fe +Author: Guillaume Smet +Date: Thu Mar 28 12:21:48 2019 +0100 + + Fix the version of commons-lang3 in the bom and remove exclusions + +commit 5087d0cef09364e8e8c86f50d75655ddceea4cbb +Author: Guillaume Nodet +Date: Wed Mar 27 15:07:03 2019 +0100 + + Add a easier way to customize properties + +commit 973d88b434db2651289ca75257a7b0d9a5f6b5cd +Author: Guillaume Nodet +Date: Wed Mar 27 14:49:47 2019 +0100 + + Fix NPE when using deferInitPhase + +commit 9c4aa7c1df571af6482e66229c9d2f979eed05e9 +Author: Guillaume Nodet +Date: Wed Mar 27 09:39:19 2019 +0100 + + Add a flag to partially disable xml support in camel and trim down the native binary size + +commit 2e8955eb4ceab39ea1f472444383101e293e0d4a +Author: Guillaume Nodet +Date: Fri Mar 22 15:56:00 2019 +0100 + + Make jaxb an opt-in extension and allow disabling it in camel + +commit b191fe9a81d312c9bf2fd1a33af2650e38c6ae87 +Author: Guillaume Nodet +Date: Wed Mar 27 10:48:54 2019 +0100 + + Add events around CamelRuntime lifecycle + +commit dcebf09b464cc22102b684ccfc8d405244965d01 +Author: Guillaume Nodet +Date: Mon Mar 18 15:31:17 2019 +0100 + + Add back support for initializing routes at build time and support for hot reloading the xml routes + +commit 038b1c505d23ec5109c7a11fa2265275f9230137 +Author: Guillaume Nodet +Date: Mon Mar 18 11:09:09 2019 +0100 + + Simple hot replacement setup for camel + +commit 1697ff9322ba8d43ba6d60feea42380d3b36595c +Merge: 7f627fa807 982f3f9fb1 +Author: Stuart Douglas +Date: Wed Mar 27 08:31:16 2019 +1100 + + Merge pull request #1682 from mkouba/issue-1672-camel-producer-unremovable + + Replace CamelRuntimeProducer with RuntimeBeanBuildItem + +commit 7f627fa807a5d82317d1c3c170a4f2a6be80da3c +Author: Guillaume Smet +Date: Tue Mar 26 16:19:35 2019 +0100 + + Remove quarkus-caffeine dependency from Camel integration tests + + It now comes with quarkus-camel-core. + +commit 2a50bb6c1878a4b9dea08c775354ce53670dccdc +Author: Guillaume Smet +Date: Mon Mar 25 19:06:40 2019 +0100 + + Add the quarkus-caffeine dependencies to quarkus-camel + +commit 429d9f25b4275d22b4e950b6bcbdbfb026e099d1 +Author: Guillaume Smet +Date: Mon Mar 25 19:01:59 2019 +0100 + + Add missing quarkus-jaxb dependency + +commit 85c9eaf325f6cd509f8d9edd4ce77f1b933d9d2d +Author: Guillaume Smet +Date: Mon Mar 25 19:03:20 2019 +0100 + + Reformat quarkus-camel pom properly + +commit 982f3f9fb155b20d0da58346663a5b59a33efeea +Author: Martin Kouba +Date: Mon Mar 25 17:30:51 2019 +0100 + + Simplify RuntimeBeanBuildItem - make it possible to use RuntimeValue + +commit cf6c6d1525fa834b2777b33449b37e671bc609fb +Author: Alexey Loubyansky +Date: Mon Feb 25 10:50:39 2019 +0100 + + Bootstrap dependency resolver and classpath setup for the tests and dev mode + +commit 8df92874129a2fa452b493fd329ca32e07ce2dc8 +Author: Martin Kouba +Date: Mon Mar 25 16:43:16 2019 +0100 + + Replace CamelRuntimeProducer with RuntimeBeanBuildItem + + - fix qualifier annotation values in RuntimeBeanProcessor + - add RuntimeBeanBuildItem.removable + - resolves #1672 + +commit 60495a39b81aba6e9812cf47fcea0bdb78b5abd1 +Author: Clement Escoffier +Date: Tue Mar 19 15:01:10 2019 +0100 + + Disable native build for camel components + + This is because they take a LOT of time on the CI. They will be run in a nightly build. + +commit 48ba791cdb6b9d973b17e65212ecb4cd7ab67290 +Author: Andrea Cosentino +Date: Sat Mar 16 13:00:13 2019 +0100 + + Fixes #1469 Add Extension for Camel-AWS S3 + +commit 1fc2f8a5d7fce97096124491f0c92410c44ab8a9 +Merge: b0e3c1effb a1813a1aaa +Author: Sanne Grinovero +Date: Mon Mar 18 11:03:00 2019 +0000 + + Merge pull request #1467 from gnodet/camel-improvement + + [camel-core] Do not force the creation of the jaxb context if not in native mode + +commit b0e3c1effb8fa1def2a9a4c91e351cbfd568d9aa +Author: Guillaume Smet +Date: Fri Mar 15 19:44:45 2019 +0100 + + Camel - Use a constant for Camel root package directory + +commit 6674b0bd159528106f6878341140cb6612143ae5 +Author: lburgazzoli +Date: Mon Mar 11 19:31:14 2019 +0100 + + camel: fix broken indexing introduced by camel-core split + +commit a1813a1aaaa24711fc73a40fbb7ebea723a87864 +Author: Guillaume Nodet +Date: Wed Mar 13 10:54:41 2019 +0100 + + Do not force the creation of the jaxb context if not in native mode + +commit cebfcfe3eb235b9d302a8434cfa71281f2dde3ab +Author: Stuart Douglas +Date: Mon Mar 4 10:14:46 2019 +0100 + + Get Camel Salesforce and Infinispan working in native mode + + Also add a Java Agent that can be used to diagnose reflection issues + +commit 7ba8aa2e14e61eee24f8f3a0997aa6098a5596d4 +Author: lburgazzoli +Date: Mon Mar 11 18:43:03 2019 +0100 + + camel: enable integration tests + +commit ee6606961c9776daada9a1318154920b854a4a8b +Author: Andrea Cosentino +Date: Mon Mar 11 10:33:34 2019 +0100 + + Fixes #1385 - Camel Integration tests: Both camel-core and camel-salesforce Integration test don't compile + +commit 64bccedfbac31828091bd17b4915369a01edb02c +Author: Guillaume Smet +Date: Fri Mar 8 17:28:59 2019 +0100 + + Finalize the migration to application.properties + + Fixes #1224 + +commit e89354c313d0a150694cc71fef46358842e7ef69 +Merge: 480ce3aa6d 983ed8f80b +Author: Clement Escoffier +Date: Wed Mar 6 10:41:59 2019 +0100 + + Merge branch 'master' into features/pom-pom-pom + +commit 983ed8f80bc3275c552ac6f974fa88dbb8214cab +Merge: be3e0ee9a1 d8025be35c +Author: Stuart Douglas +Date: Wed Mar 6 10:31:43 2019 +0100 + + Merge pull request #1248 from stuartwdouglas/artifact-rename + + Remove -deployment suffix from artifacts + +commit 480ce3aa6d338e3240219136cc403a0a50cd9c15 +Author: Clement Escoffier +Date: Wed Mar 6 10:16:54 2019 +0100 + + Switch to version 999-SNAPSHOT + Remove occurrence of the version in code snippet + Make the gradle plugin "ready" for release + +commit be3e0ee9a19298893958c82426b6915cede99032 +Author: Guillaume Smet +Date: Tue Mar 5 18:24:30 2019 +0100 + + Reorganize packages to have proper API packages + +commit d8025be35ccfae5921ecbc0367d633eaf0da072c +Author: Stuart Douglas +Date: Wed Mar 6 07:43:02 2019 +0100 + + Remove -deployment suffix from artifacts + +commit 7af04d30ebe00d6d4c1ac706b7dedc0b9815a3c8 +Author: Guillaume Smet +Date: Sat Mar 2 16:41:24 2019 +0100 + + Camel - Add FeatureBuildItems for all the Camel components + +commit ac251cd4840366ffb5b1ca6c17af26dfe3e023ad +Author: Guillaume Smet +Date: Fri Mar 1 12:37:24 2019 +0100 + + Camel - Fix typos and a warning + + The typos were in the error message we get right now when running the + integration tests. + +commit a0bf50efe713f364ce1c9207fce69bc10150d5e8 +Author: Guillaume Smet +Date: Thu Feb 28 13:20:40 2019 +0100 + + Add artifact names for Camel artifacts + +commit d611f7374e25f6279afd4e1d796ed2bafec49367 +Author: Stuart Douglas +Date: Wed Feb 27 11:07:49 2019 +1100 + + Increase timeout + +commit 0e8177815305790d7e79004a9e9f81a48d2b7c41 +Author: Stuart Douglas +Date: Mon Feb 25 09:56:49 2019 +1100 + + Add Camel Extensions