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 b174fae112 synced + generated files
 discard 094d58cbc9 Upgrade Camel to 4.0.0
     add d804d670d2 Ref #5056: Improve the replacement of 
RecorderContext#classProxy (#5077)
     add 0aa1aa1bee Enable Twilio test after the component was fixed via Camel 
4.0.0-M2 #4527
     add dcf2bc8ca2 NettyHttpJaasTestResource reads config.jaas from disk fix 
#5083
     add c965ed5e19 Updated CHANGELOG.md
     add 141ad67342 Re-add activemq extension after it was added back in Camel 
4.0.0-RC1 fix #5087
     add fc71f405e8 Updated CHANGELOG.md
     new 96b37daa29 Upgrade Camel to 4.0.0
     new 83dabb52c0 synced + generated files
     new c3b0f4fc1a fixed optaplanner version conflict + generated files

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   (b174fae112)
            \
             N -- N -- N   refs/heads/camel-main (c3b0f4fc1a)

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 3 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:
 CHANGELOG.md                                       |   6 +
 docs/modules/ROOT/examples/components/activemq.yml |  13 ++
 docs/modules/ROOT/nav.adoc                         |   1 +
 .../extensions/{sjms.adoc => activemq.adoc}        |  46 ++++---
 .../language/runtime/LanguageSupportRecorder.java  |  28 ----
 extensions/{jsch => activemq}/deployment/pom.xml   |  10 +-
 .../activemq/deployment/ActiveMQProcessor.java     | 141 +++++++++++++++++++++
 extensions/{amqp => activemq}/pom.xml              |   4 +-
 extensions/{amqp => activemq}/runtime/pom.xml      |  25 ++--
 .../activemq/runtime/src/main/doc/limitations.adoc |   2 +
 .../runtime/src/main/doc/usage.adoc                |   2 +-
 .../activemq/graal/ActiveMQSubstitutions.java}     |  30 +++--
 .../activemq/graal/SpringJMSSubstitutions.java     |  89 +++++++++++++
 .../main/resources/META-INF/quarkus-extension.yaml |   7 +-
 .../groovy/deployment/GroovyProcessor.java         |   6 +-
 .../groovy/runtime/GroovyExpressionRecorder.java   |   5 +-
 .../component/joor/deployment/JoorProcessor.java   |  10 +-
 .../joor/runtime/JoorExpressionRecorder.java       |  18 ++-
 extensions/pom.xml                                 |   1 +
 integration-tests/{amqp => activemq}/pom.xml       |  34 +++--
 .../it/ActiveMQConnectionFactoryProducer.java      |  47 +++++++
 .../quarkus/component/activemq/it/ActiveMQIT.java  |   4 +-
 .../component/activemq/it/ActiveMQTest.java}       |   9 +-
 .../activemq/it/ActiveMQTestResource.java}         |  37 +++---
 .../netty/http/NettyHttpJaasTestResource.java      |   9 +-
 integration-tests/pom.xml                          |   3 +-
 .../component/twilio/it/TwilioResource.java        |   6 +-
 poms/bom/pom.xml                                   |  23 ++++
 poms/bom/src/main/generated/flattened-full-pom.xml |  23 ++++
 .../src/main/generated/flattened-reduced-pom.xml   |  28 +++-
 .../generated/flattened-reduced-verbose-pom.xml    |  28 +++-
 tooling/scripts/test-categories.yaml               |   2 +
 32 files changed, 542 insertions(+), 155 deletions(-)
 create mode 100644 docs/modules/ROOT/examples/components/activemq.yml
 copy docs/modules/ROOT/pages/reference/extensions/{sjms.adoc => activemq.adoc} 
(53%)
 delete mode 100644 
extensions-support/language/runtime/src/main/java/org/apache/camel/quarkus/support/language/runtime/LanguageSupportRecorder.java
 copy extensions/{jsch => activemq}/deployment/pom.xml (88%)
 create mode 100644 
extensions/activemq/deployment/src/main/java/org/apache/camel/quarkus/component/activemq/deployment/ActiveMQProcessor.java
 copy extensions/{amqp => activemq}/pom.xml (93%)
 copy extensions/{amqp => activemq}/runtime/pom.xml (91%)
 create mode 100644 extensions/activemq/runtime/src/main/doc/limitations.adoc
 copy extensions/{sjms => activemq}/runtime/src/main/doc/usage.adoc (76%)
 copy 
extensions/{spring-rabbitmq/runtime/src/main/java/org/apache/camel/quarkus/component/rabbitmq/graal/SpringRabbitMQSubstitutions.java
 => 
activemq/runtime/src/main/java/org/apache/camel/quarkus/component/activemq/graal/ActiveMQSubstitutions.java}
 (53%)
 create mode 100644 
extensions/activemq/runtime/src/main/java/org/apache/camel/quarkus/component/activemq/graal/SpringJMSSubstitutions.java
 copy extensions/{base64 => 
activemq}/runtime/src/main/resources/META-INF/quarkus-extension.yaml (86%)
 copy integration-tests/{amqp => activemq}/pom.xml (85%)
 create mode 100644 
integration-tests/activemq/src/main/java/org/apache/camel/quarkus/component/activemq/it/ActiveMQConnectionFactoryProducer.java
 copy 
integration-test-groups/aws2/aws2-s3/src/test/java/org/apache/camel/quarkus/component/aws2/s3/it/Aws2S3IT.java
 => 
integration-tests/activemq/src/test/java/org/apache/camel/quarkus/component/activemq/it/ActiveMQIT.java
 (90%)
 copy 
integration-tests/{jms-artemis-client/src/test/java/org/apache/camel/quarkus/component/jms/artemis/it/JmsArtemisCustomTest.java
 => 
activemq/src/test/java/org/apache/camel/quarkus/component/activemq/it/ActiveMQTest.java}
 (78%)
 copy 
integration-tests/{consul/src/test/java/org/apache/camel/quarkus/component/consul/it/ConsulTestResource.java
 => 
activemq/src/test/java/org/apache/camel/quarkus/component/activemq/it/ActiveMQTestResource.java}
 (58%)

Reply via email to