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 3c78a41699 Workaround openstack4j incompatibility with Jackson 2.16.x
#5604
discard 80f5d0e8ed Upgrade Quarkus to 3.7.0.CR1
add 7f8a30a9f8 Attempt to point at Camel SNAPSHOT docs
add f3a799d2c6 Switch to quay.io/strimzi container images for Kafka testing
add 74077c2ec5 Revert "Bump actions/download-artifact from 3 to 4"
add 98c7669339 Revert "Bump actions/upload-artifact from 3 to 4"
add 2055a79909 Replace tinyproxy container image with an embedded HTTP
proxy server
add 61232e9ee0 Use Quarkus Derby DevServices for SQL integration test
add 37d45bc03b Remove Salesforce PubSubApiConsumer POJO class loading
workaround
new fab1f4e6ad Upgrade Quarkus to 3.7.0.CR1
new 09071af1c6 Workaround openstack4j incompatibility with Jackson 2.16.x
#5604
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 (3c78a41699)
\
N -- N -- N refs/heads/quarkus-main (09071af1c6)
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 2 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 | 16 +--
.github/workflows/quarkus-master-cron.yaml | 16 +--
docs/antora.yml | 4 +-
.../deployment/KafkaDevServicesEnabledTest.java | 25 +++-
integration-test-groups/http/common/pom.xml | 16 ---
.../component/http/common/HttpTestResource.java | 130 +++++++++++++++++----
integration-test-groups/http/http/pom.xml | 11 --
.../quarkus/component/http/http/HttpResource.java | 4 +-
integration-test-groups/http/netty-http/pom.xml | 16 ---
.../ProxyCapableClientInitializerFactory.java | 4 +-
integration-test-groups/http/vertx-http/pom.xml | 16 ---
.../component/http/vertx/VertxResource.java | 4 +-
integration-tests-support/kafka/pom.xml | 4 +-
.../test/support/kafka/KafkaTestResource.java | 18 +--
integration-tests-support/pom.xml | 1 -
.../sql-derby-support/README.adoc | 3 -
.../sql-derby-support/pom.xml | 42 -------
.../kafka/oauth/it/KafkaKeycloakTestResource.java | 3 +-
integration-tests/kafka-sasl-ssl/pom.xml | 4 +-
.../kafka/sasl/KafkaSaslSslTestResource.java | 58 ++++-----
integration-tests/kafka-sasl/pom.xml | 6 +-
.../quarkus/kafka/sasl/KafkaSaslTestResource.java | 34 +++---
integration-tests/kafka-ssl/pom.xml | 4 +-
.../quarkus/kafka/ssl/KafkaSslTestResource.java | 50 +++-----
integration-tests/kafka/pom.xml | 10 +-
.../kafka/it/CamelKafkaHealthCheckTest.java | 4 +-
.../src/main/resources/application.properties | 3 -
integration-tests/sql/.gitignore | 1 +
integration-tests/sql/pom.xml | 24 ----
.../quarkus/component/sql/it/SqlDbInitializer.java | 6 -
.../storedproc/derby/NumberAddStoredProcedure.java | 10 +-
.../sql/src/main/resources/sql/derby/initDb.sql | 2 +-
.../src/main/resources/sql/derby/initDb_docker.sql | 20 ----
.../component/sql/it/DerbyTestResource.java | 96 ---------------
.../camel/quarkus/component/sql/it/SqlTest.java | 3 -
pom.xml | 8 +-
poms/bom-test/pom.xml | 5 -
poms/bom/src/main/generated/flattened-full-pom.xml | 2 +-
.../src/main/generated/flattened-reduced-pom.xml | 2 +-
.../generated/flattened-reduced-verbose-pom.xml | 2 +-
41 files changed, 253 insertions(+), 450 deletions(-)
delete mode 100644 integration-tests-support/sql-derby-support/README.adoc
delete mode 100644 integration-tests-support/sql-derby-support/pom.xml
create mode 100644 integration-tests/sql/.gitignore
rename
integration-tests-support/sql-derby-support/src/main/java/test/AddNumsProcedure.java
=>
integration-tests/sql/src/main/java/org/apache/camel/quarkus/component/sql/it/storedproc/derby/NumberAddStoredProcedure.java
(82%)
delete mode 100644
integration-tests/sql/src/main/resources/sql/derby/initDb_docker.sql
delete mode 100644
integration-tests/sql/src/test/java/org/apache/camel/quarkus/component/sql/it/DerbyTestResource.java