This is an automated email from the ASF dual-hosted git repository.
jiriondrusek pushed a change to branch camel-main
in repository https://gitbox.apache.org/repos/asf/camel-quarkus.git
discard 529393632e Disabled observability services native because of #7946
discard 479d31ee0d Disabled micrometer native because of #7946
discard 85f3685158 Gen files
discard 88edbca21a Generated changes
discard afaac71f47 Generated files
discard ca54cbed78 Upgrade Camel to 4.17.0
discard dfb3a4f3aa fixes #7942: Revert "Workaroound because of #7942"
discard c025a5ece9 Workaroound because of #7942
discard be6c00e534 Enable okhttp 5.x to coexist with 4.x
discard 7976613a47 Upgrade Camel to 4.16.0
add 7b8215549c Upgrade Camel to 4.16.0
add 09461a1404 Enable okhttp 5.x to coexist with 4.x
add 169a23e505 Workaround because of #7942
add b560b8b4f0 Bump com.microsoft.graph:microsoft-graph from 6.55.0 to
6.56.0
add 4791a506d6 Bump quarkiverse-jsch.version from 3.1.1 to 3.1.2
add 37aa3bb693 Bump io.quarkiverse.artemis:quarkus-artemis-bom from 3.10.1
to 3.10.3
add d803ddf059 Test Artemis ConnectionFactory URL with parameters
add c9f2dbf73b Restore PQC documentation component links
add 2358fd799c Add ActiveMQ 6 extension
add 61c6fbcedc Update release maven plugin version to 3.2.0
add dd8145f740 Upgrade Quarkus to 3.30.0.CR1
add e1aa36e9be Disable jms-artemis-ra tests due to #7953
new 161a863ea9 Upgrade Camel to 4.17.0
new 0d623cd6ed Generated files
new 4515998e9c Generated changes
new b53c460cf3 Gen files
new 6864a6e770 Disabled micrometer native because of #7946
new d326630f69 Disabled observability services native because of #7946
new e2987b01b7 Generated
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 (529393632e)
\
N -- N -- N refs/heads/camel-main (e2987b01b7)
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 7 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/dependabot.yml | 2 --
catalog/pom.xml | 13 ++++++++
docs/antora.yml | 2 +-
.../modules/ROOT/examples/components/activemq6.yml | 13 ++++++++
docs/modules/ROOT/nav.adoc | 1 +
.../extensions/{activemq.adoc => activemq6.adoc} | 39 +++++++++++-----------
.../{activemq => activemq6}/deployment/pom.xml | 12 ++++---
.../activemq6/deployment/ActiveMQ6Processor.java} | 10 +++---
.../parent-pom.xml => extensions/activemq6/pom.xml | 8 ++---
.../{debezium-oracle => activemq6}/runtime/pom.xml | 25 ++++++--------
.../runtime/src/main/doc/limitations.adoc | 0
.../runtime/src/main/doc/usage.adoc | 0
.../activemq6}/graal/ActiveMQSubstitutions.java | 2 +-
.../activemq6}/graal/SpringJMSSubstitutions.java | 2 +-
.../main/resources/META-INF/quarkus-extension.yaml | 6 ++--
extensions/pom.xml | 1 +
.../scheme/MessagingComponentSchemeProducer.java | 2 ++
integration-tests/{activemq => activemq6}/pom.xml | 14 ++++----
.../it/ActiveMQConnectionFactoryProducer.java | 4 +--
.../component/activemq6/it/ActiveMQ6IT.java | 4 +--
.../component/activemq6/it/ActiveMQ6Test.java} | 6 ++--
integration-tests/jira/pom.xml | 2 +-
.../jms/artemis/it/CustomConnectionFactory.java | 16 ++++++---
.../jms/artemis/it/JmsArtemisResource.java | 14 +++++++-
.../src/main/resources/application.properties | 7 ++--
...java => JmsArtemisCustomConnectionFactory.java} | 5 +--
...va => JmsArtemisCustomConnectionFactoryIT.java} | 2 +-
... => JmsArtemisCustomConnectionFactoryTest.java} | 14 ++++++--
.../component/jms/artemis/it/JmsArtemisTest.java | 4 +--
integration-tests/jms-artemis-ra/pom.xml | 7 ++++
.../camel/quarkus/component/jms/ra/it/JmsRAIT.java | 2 ++
.../quarkus/component/jms/ra/it/JmsRATest.java | 2 ++
.../opentelemetry/it/OpenTelemetryTest.java | 5 ++-
integration-tests/pom.xml | 1 +
pom.xml | 20 +++++------
poms/bom/pom.xml | 15 +++++++++
poms/bom/src/main/generated/flattened-full-pom.xml | 39 +++++++++++++++-------
.../src/main/generated/flattened-reduced-pom.xml | 33 +++++++++++++-----
.../generated/flattened-reduced-verbose-pom.xml | 33 +++++++++++++-----
.../quarkus/maven/UpdateExtensionDocPageMojo.java | 1 -
tooling/scripts/test-categories.yaml | 1 +
41 files changed, 261 insertions(+), 128 deletions(-)
create mode 100644 docs/modules/ROOT/examples/components/activemq6.yml
copy docs/modules/ROOT/pages/reference/extensions/{activemq.adoc =>
activemq6.adoc} (70%)
copy extensions/{activemq => activemq6}/deployment/pom.xml (82%)
copy
extensions/{activemq/deployment/src/main/java/org/apache/camel/quarkus/component/activemq/deployment/ActiveMQProcessor.java
=>
activemq6/deployment/src/main/java/org/apache/camel/quarkus/component/activemq6/deployment/ActiveMQ6Processor.java}
(95%)
copy tooling/create-extension-templates/parent-pom.xml =>
extensions/activemq6/pom.xml (86%)
copy extensions/{debezium-oracle => activemq6}/runtime/pom.xml (79%)
copy extensions/{activemq => activemq6}/runtime/src/main/doc/limitations.adoc
(100%)
copy extensions/{activemq => activemq6}/runtime/src/main/doc/usage.adoc (100%)
copy
extensions/{activemq/runtime/src/main/java/org/apache/camel/quarkus/component/activemq
=>
activemq6/runtime/src/main/java/org/apache/camel/quarkus/component/activemq6}/graal/ActiveMQSubstitutions.java
(96%)
copy
extensions/{activemq/runtime/src/main/java/org/apache/camel/quarkus/component/activemq
=>
activemq6/runtime/src/main/java/org/apache/camel/quarkus/component/activemq6}/graal/SpringJMSSubstitutions.java
(98%)
copy extensions/{activemq =>
activemq6}/runtime/src/main/resources/META-INF/quarkus-extension.yaml (92%)
copy integration-tests/{activemq => activemq6}/pom.xml (90%)
copy
integration-tests/{activemq/src/main/java/org/apache/camel/quarkus/component/activemq
=>
activemq6/src/main/java/org/apache/camel/quarkus/component/activemq6}/it/ActiveMQConnectionFactoryProducer.java
(93%)
copy
integration-test-groups/aws2/aws2-sqs/src/test/java/org/apache/camel/quarkus/component/aws2/sqs/it/Aws2SqsIT.java
=>
integration-tests/activemq6/src/test/java/org/apache/camel/quarkus/component/activemq6/it/ActiveMQ6IT.java
(89%)
copy
integration-tests/{activemq/src/test/java/org/apache/camel/quarkus/component/activemq/it/ActiveMQTest.java
=>
activemq6/src/test/java/org/apache/camel/quarkus/component/activemq6/it/ActiveMQ6Test.java}
(90%)
rename
integration-tests/jms-artemis-client/src/test/java/org/apache/camel/quarkus/component/jms/artemis/it/{JmsArtemisDisable.java
=> JmsArtemisCustomConnectionFactory.java} (81%)
copy
integration-tests/jms-artemis-client/src/test/java/org/apache/camel/quarkus/component/jms/artemis/it/{JmsArtemisIT.java
=> JmsArtemisCustomConnectionFactoryIT.java} (91%)
rename
integration-tests/jms-artemis-client/src/test/java/org/apache/camel/quarkus/component/jms/artemis/it/{JmsArtemisCustomTest.java
=> JmsArtemisCustomConnectionFactoryTest.java} (77%)