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 4252bcc9b1 Disable Kubernetes Client tests due to #5318
discard a13e60d9ec Upgrade Quarkus to 3.5.0.CR1
add 8eddb64648 perf: Upgrade to Java 17 #5417 (#5418)
add 190cfbbf5c Upgrade Camel to 4.1.0
add 7a68aa35e8 Add native support for rest-openapi request validation
feature
add c3985e643f Camel 4.1 docs is not published (yet)
add 6a63a2eb1e Upgrade Quarkus to 3.5.0.CR1
add eb9e26301b Remove auto update of antora camel-docs-version attribute
until Camel 4.1 docs are published
add 49852bc9d0 Sql: Test SqlTest#testDefaultErrorCode fails with mssql
add 3f7e28b49f Splunk docker image for testing should be 9.0 (not 9.1)
add 18b24e5fd8 Bump io.quarkiverse.artemis:quarkus-artemis-bom from 3.1.1
to 3.1.2
add b12ff0dcd6 Remove erroneous SpoolRule reflective class configuration
from camel-k-runtime extension
add 5e92e2eafc Fix snakeyaml-engine version property name
add 7dba0e3628 Reformat generated files
new 2ed830fe6b Upgrade Quarkus to 3.6.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 (4252bcc9b1)
\
N -- N -- N refs/heads/quarkus-main (2ed830fe6b)
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:
catalog/pom.xml | 13 +
docs/antora.yml | 6 +-
.../ROOT/examples/components/azure-servicebus.yml | 2 +-
.../ROOT/pages/reference/extensions/tika.adoc | 2 +
.../quarkus/core/CamelQuarkusClassResolver.java | 9 +
.../quarkus/core/DisabledModelToXMLDumper.java | 10 +-
.../quarkus/core/DisabledModelToYAMLDumper.java | 13 +-
.../language/deployment/dm/DryModeInjector.java | 9 +
.../quarkus/k/deployment/RuntimeProcessor.java | 6 -
.../camel/quarkus/k/runtime/Application.java | 10 +
.../kamelet/deployment/KameletProcessor.java | 16 +-
.../component/kamelet/EmptyKameletResource.java | 93 ++
.../quarkus/component/kamelet/KameletRecorder.java | 24 +
extensions/nats/runtime/pom.xml | 10 +
.../nats/graal/EdDSAEngineSubstitutions.java | 96 ++
.../component/pdf/deployment/PdfProcessor.java | 2 -
.../openapi/deployment/RestOpenapiProcessor.java | 64 +
extensions/rest-openapi/runtime/pom.xml | 5 +
.../LoadingMessageSourceProviderSubstitutions.java | 20 +-
.../tika/runtime/src/main/doc/limitations.adoc | 2 +
.../org/apache/camel/quarkus/core/CoreTest.java | 2 +-
.../RouteConfigurationsTest.java | 2 -
.../runtime/support/CustomRoutesCollector.java | 10 +
...portCustomTypeConverterBulkConverterLoader.java | 9 +
integration-tests/camel-k-runtime/pom.xml | 2 -
integration-tests/fop/pom.xml | 2 +
.../camel/quarkus/component/fop/it/FopTest.java | 4 +-
.../component/hazelcast/it/HazelcastMapTest.java | 8 +-
integration-tests/kamelet/pom.xml | 13 +
.../component/kamelet/it/KameletRoutes.java | 2 +-
integration-tests/kubernetes/pom.xml | 7 -
.../component/kubernetes/it/KubernetesTest.java | 2 +
.../apache/camel/quarkus/main/cmd/CamelRoute.java | 2 +-
.../src/main/resources/application.properties | 1 +
.../camel/quarkus/main/CoreMainXmlJaxbTest.java | 8 +-
integration-tests/master-openshift/pom.xml | 4 -
.../component/master/it/MasterOpenShiftTest.java | 2 +
.../quarkus/component/pdf/it/PdfResource.java | 12 +-
.../camel/quarkus/component/pdf/it/PdfTest.java | 7 +-
.../component/rest/openapi/it/FruitResource.java | 13 +
.../rest/openapi/it/RestOpenApiRoutes.java | 3 +
.../rest/openapi/it/RestOpenapiResource.java | 49 +-
.../component/rest/openapi/it/model/Fruit.java | 3 +
.../rest-openapi/src/main/resources/openapi.json | 77 +-
.../component/rest/openapi/it/RestOpenapiTest.java | 33 +
.../quarkus/component/sql/it/SqlResource.java | 7 +
.../camel/quarkus/component/sql/it/SqlTest.java | 9 +-
.../tika/src/main/resources/application.properties | 3 +-
.../camel/quarkus/component/tika/it/TikaTest.java | 3 +
.../quarkus/component/twilio/it/TwilioTest.java | 2 +
pom.xml | 28 +-
poms/bom/pom.xml | 16 +
poms/bom/src/main/generated/flattened-full-pom.xml | 1560 ++++++++++----------
.../src/main/generated/flattened-reduced-pom.xml | 762 +++++-----
.../generated/flattened-reduced-verbose-pom.xml | 882 +++++------
.../cq-perf-regression-sample-base/pom.xml | 4 +-
56 files changed, 2299 insertions(+), 1666 deletions(-)
create mode 100644
extensions/kamelet/runtime/src/main/java/org/apache/camel/quarkus/component/kamelet/EmptyKameletResource.java
create mode 100644
extensions/nats/runtime/src/main/java/org/apache/camel/component/nats/graal/EdDSAEngineSubstitutions.java
copy
extensions-core/core/runtime/src/main/java/org/apache/camel/quarkus/core/graal/SubstituteIntrospectionSupport.java
=>
extensions/rest-openapi/runtime/src/main/java/org/apache/camel/quarkus/component/rest/openapi/graal/LoadingMessageSourceProviderSubstitutions.java
(63%)