You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by nf...@apache.org on 2023/07/07 15:44:31 UTC

[camel-quarkus] branch 4894/make-groovy-dsl-its-platform-compliant updated (6459e3a4ab -> c8ebe7eb57)

This is an automated email from the ASF dual-hosted git repository.

nfilotto pushed a change to branch 4894/make-groovy-dsl-its-platform-compliant
in repository https://gitbox.apache.org/repos/asf/camel-quarkus.git


 discard 6459e3a4ab Ref #4894: Make Groovy DSL ITs platform compliant
     add bcf6bd4a82 Updated CHANGELOG.md
     add 279944f957 Ref #5056: Replace the deprecated RecorderContext#classProxy
     add 65a5ce1617 Fix #5068 to add a pooling test with quarkus-qpid-jms (#5069)
     add 9a5790022e Restrict downloading of com.atlassian dependencies to packages.atlassian.com
     add 039b8e5a19 Bump htmlunit-driver from 4.9.1 to 4.10.0
     add e97f3885c2 Bump os-maven-plugin from 1.7.0 to 1.7.1
     add a57ae34b5a Use NativeImageFeatureBuildItem instead of deprecated AutomaticFeature annotation
     add da6b251c87 Register additional JDK classes for serialization required by Nitrite
     add 4f5c96c3e2 chore: Add git diff when there are uncommitted changes (#5076)
     add c7b033146a Re-sync with main
     add c8ebe7eb57 Ref #4894: Make Groovy DSL ITs platform compliant

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   (6459e3a4ab)
            \
             N -- N -- N   refs/heads/4894/make-groovy-dsl-its-platform-compliant (c8ebe7eb57)

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.

No new revisions were added by this update.

Summary of changes:
 .github/workflows/camel-master-cron.yaml            |  4 ++--
 .github/workflows/ci-build.yaml                     |  4 ++--
 .github/workflows/quarkus-master-cron.yaml          |  4 ++--
 .mvn/maven.config                                   |  2 ++
 .mvn/rrf/groupId-atlassian.txt                      |  6 ++++++
 CHANGELOG.md                                        |  3 +++
 .../ROOT/pages/reference/extensions/amqp.adoc       | 21 ++++++++++++++++-----
 .../deployment/CamelSerializationProcessor.java     |  8 ++++++--
 .../language/runtime/LanguageSupportRecorder.java   | 10 +++++-----
 .../xalan/deployment/XalanNativeImageProcessor.java |  9 ++++++---
 .../amqp/runtime/src/main/doc/limitations.adoc      |  3 ---
 extensions/amqp/runtime/src/main/doc/usage.adoc     | 19 +++++++++++++++++++
 .../groovy/deployment/GroovyProcessor.java          |  9 +++------
 .../groovy/runtime/GroovyExpressionRecorder.java    |  4 ++--
 .../component/joor/deployment/JoorProcessor.java    | 13 +++++--------
 .../joor/runtime/JoorExpressionRecorder.java        | 13 ++++++-------
 integration-tests/amqp/pom.xml                      |  6 ++++++
 .../src/main/resources/application.properties       |  2 +-
 .../amqp/it/{AmqpIT.java => AmqpPoolingIT.java}     |  2 +-
 .../amqp/it/{AmqpTest.java => AmqpPoolingTest.java} |  9 ++++++++-
 .../component/amqp}/it/JmsPoolingEnabled.java       |  3 ++-
 integration-tests/jms-qpid-amqp-client/pom.xml      | 13 +++++++------
 .../src/main/resources/application.properties       |  2 +-
 .../component/jms/qpid}/it/JmsPoolingEnabled.java   |  3 ++-
 .../it/{JmsQpidIT.java => JmsQpidPoolingIT.java}    |  2 +-
 .../{JmsQpidTest.java => JmsQpidPoolingTest.java}   | 10 +++++++++-
 pom.xml                                             |  4 ++--
 27 files changed, 125 insertions(+), 63 deletions(-)
 create mode 100644 .mvn/maven.config
 create mode 100644 .mvn/rrf/groupId-atlassian.txt
 copy integration-tests-support/custom-main-listener/runtime/src/main/java/org/apache/camel/quarkus/it/support/mainlistener/CustomMainListenerRecorder.java => extensions-support/language/runtime/src/main/java/org/apache/camel/quarkus/support/language/runtime/LanguageSupportRecorder.java (75%)
 delete mode 100644 extensions/amqp/runtime/src/main/doc/limitations.adoc
 copy integration-tests/{jms-ibmmq-client => amqp}/src/main/resources/application.properties (96%)
 copy integration-tests/amqp/src/test/java/org/apache/camel/quarkus/component/amqp/it/{AmqpIT.java => AmqpPoolingIT.java} (95%)
 copy integration-tests/amqp/src/test/java/org/apache/camel/quarkus/component/amqp/it/{AmqpTest.java => AmqpPoolingTest.java} (85%)
 copy integration-tests/{jms-artemis-client/src/test/java/org/apache/camel/quarkus/component/jms/artemis => amqp/src/test/java/org/apache/camel/quarkus/component/amqp}/it/JmsPoolingEnabled.java (92%)
 copy integration-tests/{jms-ibmmq-client => jms-qpid-amqp-client}/src/main/resources/application.properties (96%)
 copy integration-tests/{jms-artemis-client/src/test/java/org/apache/camel/quarkus/component/jms/artemis => jms-qpid-amqp-client/src/test/java/org/apache/camel/quarkus/component/jms/qpid}/it/JmsPoolingEnabled.java (92%)
 copy integration-tests/jms-qpid-amqp-client/src/test/java/org/apache/camel/quarkus/component/jms/qpid/it/{JmsQpidIT.java => JmsQpidPoolingIT.java} (94%)
 copy integration-tests/jms-qpid-amqp-client/src/test/java/org/apache/camel/quarkus/component/jms/qpid/it/{JmsQpidTest.java => JmsQpidPoolingTest.java} (88%)