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 d67539afd1 Upgrade Quarkus to 3.0.0.Final
add dff1099366 Ref #4749 - java-joor-dsl - Add templated route support to
native mode
add 4f0a06253b Updated CHANGELOG.md
add 393d29388f Upgrade to quarkus-cxf 2.0.0.Alpha7
add adb626918b #4291 avoid In/Out Message soap headers conflict
add af16c8f33a Upgrade to quarkus-cxf 2.0.0.CR1
add 37cf94504d Bump quarkiverse-tika.version from 2.0.0.CR2 to 2.0.0
(#4763)
add 81b2bcac61 Bump quarkiverse-jsch.version from 2.0.3 to 3.0.0 (#4764)
add 98b97228a4 file: disabling idempotent test in order to experiment
around flakiness #3584 (#4762)
add 2efc3dad3a Bump quarkus-amazon-services-bom from 2.0.0.Alpha1 to 2.0.0
(#4767)
add acfbbd7c4c Bump quarkiverse-jgit.version from 2.3.2 to 3.0.0
add ebe2787216 Auto generated changes for dependabot commit
a731ab875a5c6ee332ad8801063fc9a731434dfb
add bcfe8e0e92 Ref#4596 Cover different db types for jdbc
add b7e05ce29c Fix #4717 to expand camel-quarkus-mybatis test coverage
add 91467e9735 Upgrade to Quarkus 3.0.0.Final
add ad4d909524 Cxf fixes (#4771)
add 91ee9787bc Test also GITHUB_BASE_REF to checkout the right examples
branch (#4776)
add b73fdaea39 Bump quarkus-amazon-services-bom from 2.0.0 to 2.0.1 (#4777)
add cfefa0e817 Updated CHANGELOG.md
add b89f922e77 Fix #4781 Intermittent failure of MyBatisConsumerTest
(#4782)
add 8f5dc1357d Updated CHANGELOG.md
add 8a6e1ece59 Bump quarkiverse-mybatis.version from 2.0.0.CR2 to 2.0.0
(#4787)
add 6b7d29fca5 Updated CHANGELOG.md
new 85662e6995 Upgrade Quarkus to 3.1.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 (d67539afd1)
\
N -- N -- N refs/heads/quarkus-main (85662e6995)
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/ci-build.yaml | 2 +
CHANGELOG.md | 121 +-
.../cxf/soap/deployment/CxfBuildTimeConfig.java | 48 +
.../cxf/soap/deployment/CxfSoapProcessor.java | 77 +-
.../java/joor/deployment/JavaJoorDslProcessor.java | 10 +-
.../dsl/java/joor/runtime/JavaJoorDslRecorder.java | 11 +-
.../cxf/soap/server/it/CxfSoapRoutes.java | 32 +-
.../server/it/WsSecurityPolicyServerRoutes.java | 13 +-
.../server/it/CxfWssSecurityPolicyServerTest.java | 4 +-
.../it/ws/trust/server/WsTrustServerRoutes.java | 12 +-
.../cxf/soap/it/ws/trust/CxfWsTrustTest.java | 25 +-
.../camel/quarkus/component/file/it/FileTest.java | 2 +
.../resources/routes/MyRoutesWithTemplate.java} | 12 +-
.../src/main/resources/routes/MyTemplate.java} | 14 +-
.../quarkus/dsl/java/joor/JavaJoorDslTest.java | 4 +-
integration-tests/jdbc/README.adoc | 26 +
integration-tests/jdbc/pom.xml | 16 +-
.../quarkus/component/jdbc/CamelResource.java | 116 +-
.../camel/quarkus/component/jdbc/JdbcRoutes.java | 28 +-
.../jdbc/src/main/resources/application.properties | 7 +-
.../src/main/resources/sql/db2.sql} | 8 +-
.../src/main/resources/sql/derby.sql} | 8 +-
.../src/main/resources/sql/droptables.sql} | 7 +-
.../src/main/resources/sql/h2.sql} | 8 +-
.../src/main/resources/sql/inserts.sql} | 10 +-
.../src/main/resources/sql/mariadb.sql} | 8 +-
.../src/main/resources/sql/mssql.sql} | 7 +-
.../src/main/resources/sql/mysql.sql} | 8 +-
.../src/main/resources/sql/oracle.sql} | 15 +-
.../src/main/resources/sql/postgresql.sql} | 8 +-
.../quarkus/component/jdbc/CamelJdbcTest.java | 73 +-
integration-tests/mybatis/pom.xml | 8 +-
.../quarkus/component/mybatis/it/MyBatisRoute.java | 36 +-
.../component/mybatis/it/MybatisResource.java | 76 +
.../src/main/resources/application.properties | 2 +
.../mybatis/src/main/resources/insert.sql | 7 +-
.../component/mybatis/it/MyBatisConsumerTest.java} | 36 +-
.../quarkus/component/mybatis/it/MyBatisTest.java | 141 +-
pom.xml | 18 +-
poms/bom/src/main/generated/flattened-full-pom.xml | 2665 ++++++++++----------
.../src/main/generated/flattened-reduced-pom.xml | 146 +-
.../generated/flattened-reduced-verbose-pom.xml | 702 +++---
42 files changed, 2546 insertions(+), 2031 deletions(-)
create mode 100644
extensions/cxf-soap/deployment/src/main/java/org/apache/camel/quarkus/component/cxf/soap/deployment/CxfBuildTimeConfig.java
copy
integration-tests/{base64/src/main/java/org/apache/camel/quarkus/component/base64/it/Base64RouteBuilder.java
=> java-joor-dsl/src/main/resources/routes/MyRoutesWithTemplate.java} (78%)
copy
integration-tests/{jfr/src/main/java/org/apache/camel/quarkus/component/jfr/it/JfrRoutes.java
=> java-joor-dsl/src/main/resources/routes/MyTemplate.java} (72%)
create mode 100644 integration-tests/jdbc/README.adoc
copy integration-tests/{debezium/src/test/resources/initMysql.sql =>
jdbc/src/main/resources/sql/db2.sql} (68%)
copy integration-tests/{debezium/src/test/resources/initMysql.sql =>
jdbc/src/main/resources/sql/derby.sql} (72%)
copy
integration-tests/{sql/src/main/resources/sql/common/selectProjectsAsNumber.sql
=> jdbc/src/main/resources/sql/droptables.sql} (91%)
copy integration-tests/{debezium/src/test/resources/initMysql.sql =>
jdbc/src/main/resources/sql/h2.sql} (76%)
copy integration-tests/{debezium/src/test/resources/initMysql.sql =>
jdbc/src/main/resources/sql/inserts.sql} (72%)
copy integration-tests/{debezium/src/test/resources/initMysql.sql =>
jdbc/src/main/resources/sql/mariadb.sql} (76%)
copy
integration-tests/{sql/src/main/resources/sql/common/selectProjectsAsBoolean.sql
=> jdbc/src/main/resources/sql/mssql.sql} (76%)
copy integration-tests/{debezium/src/test/resources/initMysql.sql =>
jdbc/src/main/resources/sql/mysql.sql} (76%)
copy integration-tests/{mybatis/src/main/resources/insert.sql =>
jdbc/src/main/resources/sql/oracle.sql} (68%)
copy integration-tests/{debezium/src/test/resources/initMysql.sql =>
jdbc/src/main/resources/sql/postgresql.sql} (76%)
copy
integration-tests/{pgevent/src/test/java/org/apache/camel/quarkus/component/pgevent/it/PgeventTest.java
=>
mybatis/src/test/java/org/apache/camel/quarkus/component/mybatis/it/MyBatisConsumerTest.java}
(56%)