This is an automated email from the ASF dual-hosted git repository.

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


 discard b47452b2e2 Upgrade Quarkus to 3.11.0.CR1
     add f4e9d46a6a Bump quarkiverse-pooled-jms.version from 2.3.1 to 2.4.0
     add 112ff86cce Add test report object debugging to test-summary-report 
action
     add 917745414f Migrate from camel.main.debugging to camel.debug config 
prefix
     add 95b20582e7 Disabled Crypto tests in FIPS
     add 3313c0648d Split MicroProfile integration tests into separate modules
     add e4c3ee10e6 Auto label issues relating to FIPS
     add 33501630ed Upgrade Quarkus to 3.11.0.CR1
     add 7c190913e3 Increase Xmx to 3500m for Validate PR workflow
     add 901e0beba9 Clean up leftovers from removed non-camel-main based runtime
     add ffc8c12d34 Use more correct convention with configuring datasource
     add e46046465c Pin test report action junit2json package version to 3.1.7 
as later releases are currently broken
     new 1a576137fc Upgrade Quarkus to 3.12.0.CR1

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (b47452b2e2)
            \
             N -- N -- N   refs/heads/quarkus-main (1a576137fc)

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

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

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


Summary of changes:
 .github/actions/test-summary-report/action.yaml    |   4 +-
 .github/auto-label-configuration.yaml              |   5 +
 .github/workflows/pr-validate.yml                  |   2 +-
 docs/antora.yml                                    |   2 +-
 .../reference/extensions/file-cluster-service.adoc |   4 +-
 .../ROOT/pages/reference/extensions/grpc.adoc      |   8 +-
 .../extensions/kubernetes-cluster-service.adoc     |   4 +-
 .../ROOT/pages/reference/extensions/xslt.adoc      |   4 +-
 .../camel/quarkus/core/CamelContextRecorder.java   |  64 -------
 .../camel/quarkus/core/CamelContextRuntime.java    |  80 ---------
 .../component/debug/deployment/DebugProcessor.java |   2 +-
 ...est.java => DebugEnabledFromCamelMainTest.java} |  14 +-
 .../foundation/core-fault-tolerance/pom.xml        | 128 -------------
 .../it/CoreFaultToleranceResource.java             |  70 --------
 .../it/CoreFaultToleranceRoutes.java               |  38 ----
 .../src/main/resources/application.properties      |  27 ---
 .../faulttolerance/it/CoreFaultToleranceIT.java    |  23 ---
 integration-test-groups/foundation/pom.xml         |   1 -
 integration-tests/crypto/pom.xml                   |   5 +
 .../quarkus/component/crypto/it/CryptoTest.java    |   2 +
 .../pom.xml                                        |  26 +--
 .../it/faulttolerance/GreetingBean.java            |   0
 .../MicroProfileFaultToleranceHelper.java          |   0
 .../MicroProfileFaultToleranceRoutes.java          |  11 ++
 .../MicroprofileFaultToleranceProducers.java       |  16 +-
 .../MicroprofileFaultToleranceResource.java        |  38 ++++
 ...MicroProfileFaultToleranceConfigurationIT.java} |   3 +-
 ...icroProfileFaultToleranceConfigurationTest.java |  14 +-
 ...fileFaultToleranceConfigurationTestProfile.java |  22 +--
 .../MicroprofileFaultToleranceIT.java              |   0
 .../MicroprofileFaultToleranceTest.java            |   0
 .../microprofile-health}/pom.xml                   |  16 +-
 .../it/health/CustomHealthCheckRepository.java     |   0
 .../microprofile/it/health/FailingHealthCheck.java |   0
 .../microprofile/it/health/LivenessCheck.java      |   0
 .../it/health/MicroProfileHealthResource.java      |   0
 .../it/health/MicroProfileHealthRouteBuilder.java  |   0
 .../microprofile/it/health/ReadinessCheck.java     |   0
 .../microprofile/it/health/SimpleHealthCheck.java  |   0
 .../src/main/resources/application.properties      |   0
 .../it/health/MicroProfileHealthTest.java          |   0
 .../it/health/MicroprofileHealthIT.java            |   0
 integration-tests/microprofile/pom.xml             | 200 ---------------------
 .../component/opentelemetry/it/JdbcQueryBean.java  |   2 -
 .../src/main/resources/application.properties      |   3 +-
 integration-tests/pom.xml                          |   3 +-
 pom.xml                                            |   2 +-
 poms/bom/src/main/generated/flattened-full-pom.xml |   4 +-
 .../src/main/generated/flattened-reduced-pom.xml   |   4 +-
 .../generated/flattened-reduced-verbose-pom.xml    |   4 +-
 tooling/scripts/test-categories.yaml               |   3 +-
 51 files changed, 144 insertions(+), 714 deletions(-)
 delete mode 100644 
extensions-core/core/runtime/src/main/java/org/apache/camel/quarkus/core/CamelContextRuntime.java
 copy 
extensions/debug/deployment/src/test/java/org/apache/camel/quarkus/component/debug/deployment/{DebugEnabledTest.java
 => DebugEnabledFromCamelMainTest.java} (84%)
 delete mode 100644 
integration-test-groups/foundation/core-fault-tolerance/pom.xml
 delete mode 100644 
integration-test-groups/foundation/core-fault-tolerance/src/main/java/org/apache/camel/quarkus/core/faulttolerance/it/CoreFaultToleranceResource.java
 delete mode 100644 
integration-test-groups/foundation/core-fault-tolerance/src/main/java/org/apache/camel/quarkus/core/faulttolerance/it/CoreFaultToleranceRoutes.java
 delete mode 100644 
integration-test-groups/foundation/core-fault-tolerance/src/main/resources/application.properties
 delete mode 100644 
integration-test-groups/foundation/core-fault-tolerance/src/test/java/org/apache/camel/quarkus/core/faulttolerance/it/CoreFaultToleranceIT.java
 copy integration-tests/{jsonpath => microprofile-fault-tolerance}/pom.xml (90%)
 rename integration-tests/{microprofile => 
microprofile-fault-tolerance}/src/main/java/org/apache/camel/quarkus/component/microprofile/it/faulttolerance/GreetingBean.java
 (100%)
 rename integration-tests/{microprofile => 
microprofile-fault-tolerance}/src/main/java/org/apache/camel/quarkus/component/microprofile/it/faulttolerance/MicroProfileFaultToleranceHelper.java
 (100%)
 rename integration-tests/{microprofile => 
microprofile-fault-tolerance}/src/main/java/org/apache/camel/quarkus/component/microprofile/it/faulttolerance/MicroProfileFaultToleranceRoutes.java
 (91%)
 rename 
integration-test-groups/foundation/core-fault-tolerance/src/main/java/org/apache/camel/quarkus/core/faulttolerance/it/CoreFaultToleranceProducers.java
 => 
integration-tests/microprofile-fault-tolerance/src/main/java/org/apache/camel/quarkus/component/microprofile/it/faulttolerance/MicroprofileFaultToleranceProducers.java
 (84%)
 rename integration-tests/{microprofile => 
microprofile-fault-tolerance}/src/main/java/org/apache/camel/quarkus/component/microprofile/it/faulttolerance/MicroprofileFaultToleranceResource.java
 (57%)
 copy 
integration-tests/{microprofile/src/test/java/org/apache/camel/quarkus/component/microprofile/it/faulttolerance/MicroprofileFaultToleranceIT.java
 => 
microprofile-fault-tolerance/src/test/java/org/apache/camel/quarkus/component/microprofile/it/faulttolerance/MicroProfileFaultToleranceConfigurationIT.java}
 (90%)
 rename 
integration-test-groups/foundation/core-fault-tolerance/src/test/java/org/apache/camel/quarkus/core/faulttolerance/it/CoreFaultToleranceTest.java
 => 
integration-tests/microprofile-fault-tolerance/src/test/java/org/apache/camel/quarkus/component/microprofile/it/faulttolerance/MicroProfileFaultToleranceConfigurationTest.java
 (77%)
 copy 
integration-test-groups/foundation/log/src/test/java/org/apache/camel/quarkus/component/log/it/MdcLoggingTestProfile.java
 => 
integration-tests/microprofile-fault-tolerance/src/test/java/org/apache/camel/quarkus/component/microprofile/it/faulttolerance/MicroProfileFaultToleranceConfigurationTestProfile.java
 (57%)
 rename integration-tests/{microprofile => 
microprofile-fault-tolerance}/src/test/java/org/apache/camel/quarkus/component/microprofile/it/faulttolerance/MicroprofileFaultToleranceIT.java
 (100%)
 rename integration-tests/{microprofile => 
microprofile-fault-tolerance}/src/test/java/org/apache/camel/quarkus/component/microprofile/it/faulttolerance/MicroprofileFaultToleranceTest.java
 (100%)
 copy {integration-test-groups/foundation/mock => 
integration-tests/microprofile-health}/pom.xml (91%)
 rename integration-tests/{microprofile => 
microprofile-health}/src/main/java/org/apache/camel/quarkus/component/microprofile/it/health/CustomHealthCheckRepository.java
 (100%)
 rename integration-tests/{microprofile => 
microprofile-health}/src/main/java/org/apache/camel/quarkus/component/microprofile/it/health/FailingHealthCheck.java
 (100%)
 rename integration-tests/{microprofile => 
microprofile-health}/src/main/java/org/apache/camel/quarkus/component/microprofile/it/health/LivenessCheck.java
 (100%)
 rename integration-tests/{microprofile => 
microprofile-health}/src/main/java/org/apache/camel/quarkus/component/microprofile/it/health/MicroProfileHealthResource.java
 (100%)
 rename integration-tests/{microprofile => 
microprofile-health}/src/main/java/org/apache/camel/quarkus/component/microprofile/it/health/MicroProfileHealthRouteBuilder.java
 (100%)
 rename integration-tests/{microprofile => 
microprofile-health}/src/main/java/org/apache/camel/quarkus/component/microprofile/it/health/ReadinessCheck.java
 (100%)
 rename integration-tests/{microprofile => 
microprofile-health}/src/main/java/org/apache/camel/quarkus/component/microprofile/it/health/SimpleHealthCheck.java
 (100%)
 rename integration-tests/{microprofile => 
microprofile-health}/src/main/resources/application.properties (100%)
 rename integration-tests/{microprofile => 
microprofile-health}/src/test/java/org/apache/camel/quarkus/component/microprofile/it/health/MicroProfileHealthTest.java
 (100%)
 rename integration-tests/{microprofile => 
microprofile-health}/src/test/java/org/apache/camel/quarkus/component/microprofile/it/health/MicroprofileHealthIT.java
 (100%)
 delete mode 100644 integration-tests/microprofile/pom.xml

Reply via email to