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 49e29550b9 Upgrade Quarkus to 3.34.0.CR1
     add 8b86603c75 Upgrade Quarkus Amazon Services to 3.15.0
     add cef05de75f Clean up usage of deprecated APIs
     add 4432a7e716 Move file-cluster-service config options to 
ConfigPhase.RUN_TIME
     add 85ed372e6a Remove redundant groovy-xml native mode workaround
     add 86acb78fb0 Remove deprecated Jolokia register-management-endpoint 
config option
     add 32b5da47ad Use dynamic db-kind for all configuration profiles in JPA & 
SQL tests
     add 395e413cbe Fix propagation of config values from QuarkusTestProfile in 
Azure Key Vault native tests
     add 98a5efb3c8 Move license files to dedicated license directory in all 
shaded Spring JARs
     add fcf553c5d5 Upgrade hapiproject/hapi container image to v8.6.0-1
     add 4360c5df7e Upgrade Quarkus to 3.33.0.CR1
     add 05bb31a4b8 Bump actions/download-artifact from 8.0.0 to 8.0.1
     add 99e5346c1d Bump quarkiverse-groovy.version from 3.32.2 to 3.32.3
     add ed251d3afe Bump io.debezium:debezium-bom from 3.4.0.Final to 
3.4.2.Final
     add 52acb2659a Verify that gRPC generated stub object toString works in 
native mode
     add e9bcb67705 Avoid using reserved word ApiResponse in rest-openapi specs
     add cf3dc135b1 Rename CI workflow extensions-jvm-tests job to 
integration-tests-jvm
     add 2bf296a3b5 Bump io.quarkiverse.artemis:quarkus-artemis-bom from 3.12.1 
to 3.12.2
     new 3cd7c47f75 Upgrade Quarkus to 3.34.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   (49e29550b9)
            \
             N -- N -- N   refs/heads/quarkus-main (3cd7c47f75)

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/workflows/camel-master-cron.yaml           |   16 +-
 .github/workflows/ci-build.yaml                    |   14 +-
 .github/workflows/ci-semeru-jdk.yaml               |   12 +-
 .github/workflows/jdk25-build.yaml                 |   12 +-
 .github/workflows/quarkus-lts-ci-build.yaml        |   14 +-
 .github/workflows/quarkus-master-cron.yaml         |   16 +-
 docs/antora.yml                                    |    2 +-
 .../modules/ROOT/pages/migration-guide/3.33.0.adoc |   11 +
 docs/modules/ROOT/pages/migration-guide/index.adoc |    1 +
 .../reference/extensions/file-cluster-service.adoc |   18 +-
 .../pages/reference/extensions/groovy-xml.adoc     |   12 -
 .../ROOT/pages/reference/extensions/jolokia.adoc   |   13 -
 extensions-support/aws2/runtime/pom.xml            |    9 +
 .../aws/commons/ChecksumProviderSubstitutions.java |   72 +
 extensions-support/spring/shade/core/pom.xml       |   27 -
 extensions-support/spring/shade/pom.xml            |   27 +
 .../FileLockClusterServiceProcessor.java           |   15 +-
 .../FileLockClusterServiceBuildTimeConfig.java}    |   25 +-
 .../cluster/FileLockClusterServiceRecorder.java    |    9 +-
 ...va => FileLockClusterServiceRuntimeConfig.java} |   30 +-
 .../runtime/src/main/doc/limitations.adoc          |    6 -
 .../codegen/CamelQuarkusGrpcCodegenProvider.java   |    6 +-
 .../jolokia/deployment/JolokiaProcessor.java       |   37 -
 .../jolokia/JolokiaCustomContextPathTest.java      |    8 -
 .../camel/quarkus/jolokia/JolokiaEnabledTest.java  |   25 +-
 .../JolokiaManagementEndpointDisabledTest.java     |   36 -
 .../camel/quarkus/jolokia/JolokiaRecorder.java     |   49 -
 .../jolokia/JolokiaRequestRedirectHandler.java     |   44 -
 .../jolokia/config/JolokiaBuildTimeConfig.java     |   14 -
 .../component/kafka/deployment/KafkaProcessor.java |    4 +-
 .../component/ssh/deployment/SshProcessor.java     |    7 +
 .../azure/key/vault/it/AzureKeyVaultResource.java  |   10 +
 .../it/AbstractAzureKeyVaultContextReloadTest.java |    5 +-
 .../src/main/resources/application.properties      |   19 -
 .../camel/quarkus/component/grpc/it/GrpcRoute.java |    1 +
 .../src/main/resources/application.properties      |    1 -
 .../quarkus/component/jolokia/it/JolokiaTest.java  |   13 +-
 .../jpa/src/main/resources/application.properties  |    6 +-
 .../rest-openapi/src/main/openapi/petstore.json    |    4 +-
 .../sql/src/main/resources/application.properties  |   10 +-
 pom.xml                                            |   18 +-
 poms/bom/src/main/generated/flattened-full-pom.xml | 3311 ++++++++++----------
 .../src/main/generated/flattened-reduced-pom.xml   |  158 +-
 .../generated/flattened-reduced-verbose-pom.xml    |  486 +--
 44 files changed, 2237 insertions(+), 2396 deletions(-)
 create mode 100644 docs/modules/ROOT/pages/migration-guide/3.33.0.adoc
 create mode 100644 
extensions-support/aws2/runtime/src/main/java/org/apache/camel/quarkus/component/aws/commons/ChecksumProviderSubstitutions.java
 copy 
extensions/{kubernetes-cluster-service/runtime/src/main/java/org/apache/camel/quarkus/component/kubernetes/cluster/KubernetesClusterServiceBuildTimeConfig.java
 => 
file-cluster-service/runtime/src/main/java/org/apache/camel/quarkus/component/file/cluster/FileLockClusterServiceBuildTimeConfig.java}
 (66%)
 rename 
extensions/file-cluster-service/runtime/src/main/java/org/apache/camel/quarkus/component/file/cluster/{FileLockClusterServiceConfig.java
 => FileLockClusterServiceRuntimeConfig.java} (80%)
 delete mode 100644 extensions/groovy-xml/runtime/src/main/doc/limitations.adoc
 delete mode 100644 
extensions/jolokia/deployment/src/test/java/org/apache/camel/quarkus/jolokia/JolokiaManagementEndpointDisabledTest.java
 delete mode 100644 
extensions/jolokia/runtime/src/main/java/org/apache/camel/quarkus/jolokia/JolokiaRequestRedirectHandler.java
 delete mode 100644 
integration-tests/groovy-xml/src/main/resources/application.properties

Reply via email to