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

github-bot pushed a change to branch camel-master
in repository https://gitbox.apache.org/repos/asf/camel-quarkus.git.


 discard ed930b0  nats: Raised the TLS handshake timeout to fix builds when O/S 
is under pressure #1978
 discard ea88485  [Camel 3.7] JSON-B data format support
 discard 40334d1  nats: enabled connections fine grained tracing to capture 
more information on next occurence of issue #1978
 discard 0dd2c0d  Upgrade to Camel 3.7.0
     add 2d70c6d  nats: Raised the TLS handshake timeout to fix builds when O/S 
is under pressure #1978
     add d691671  Updated CHANGELOG.md
     add babb402  Updated CHANGELOG.md
     add 7f556d1  Updated CHANGELOG.md
     add d7179db  Updated CHANGELOG.md
     add 3f784b0  Kudu: unshade and remove embedded netty and use quarkus-netty 
instead #1907
     add a1b0769  Added JSLT native support #1740
     new b7c0183  Upgrade to Camel 3.7.0
     new 4901d02  nats: enabled connections fine grained tracing to capture 
more information on next occurence of issue #1978
     new 19b50f6  [Camel 3.7] JSON-B data format support

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   (ed930b0)
            \
             N -- N -- N   refs/heads/camel-master (19b50f6)

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                                       |   2 +-
 .../ROOT/pages/reference/extensions/jslt.adoc      |  54 ++-
 .../ROOT/partials/reference/components/jslt.adoc   |   6 +-
 .../component/jslt/deployment/JsltProcessor.java   |  46 ---
 extensions-jvm/jslt/integration-test/pom.xml       |  83 ----
 .../quarkus/component/jslt/it/JsltResource.java    |  51 ---
 .../camel/quarkus/component/jslt/it/JsltTest.java  |  34 --
 extensions-jvm/pom.xml                             |   1 -
 .../jslt/deployment/pom.xml                        |   0
 .../component/jslt/deployment/JsltProcessor.java}  |   8 +-
 {extensions-jvm => extensions}/jslt/pom.xml        |   1 -
 .../jslt/runtime/pom.xml                           |   1 +
 .../jslt/runtime/src/main/doc/configuration.adoc   |  37 ++
 .../main/resources/META-INF/quarkus-extension.yaml |   3 +-
 .../beans => extensions/kudu/client}/pom.xml       |  53 +--
 extensions/kudu/deployment/pom.xml                 |   4 +
 .../kudu/deployment/JBossNettyLoggerFactory.java   | 197 ---------
 .../component/kudu/deployment/KuduProcessor.java   | 160 --------
 extensions/kudu/pom.xml                            |   1 +
 extensions/kudu/runtime/pom.xml                    |  14 +
 .../component/kudu/graal/EmptyByteBufStub.java     |  53 ---
 .../component/kudu/graal/NettySubstitutions.java   | 453 ---------------------
 .../component/kudu/graal/ZLibSubstitutions.java    |  88 ----
 extensions/pom.xml                                 |   1 +
 integration-tests/{dropbox => jslt}/pom.xml        |  12 +-
 .../component/jslt/it/JsltConfiguration.java       |  71 ++++
 .../quarkus/component/jslt/it/JsltResource.java    | 158 +++++++
 .../component/jslt/it/MathFunctionStub.java}       |  13 +-
 .../src/main/resources/application.properties      |   7 +-
 .../resources/demoPlayground/transformation.json   |   8 +
 .../resources/objectFilter/transformation.json     |   7 +
 .../resources/withVariables/transformation.json    |   5 +
 .../transformationWithProperties.json              |   6 +
 .../camel/quarkus/component/jslt/it/JsltIT.java}   |   4 +-
 .../camel/quarkus/component/jslt/it/JsltTest.java  |  94 +++++
 .../src/test/resources/demoPlayground/input.json   |   8 +
 .../src/test/resources/demoPlayground/output.json  |   1 +
 .../demoPlayground/outputPrettyPrint.json          |   8 +
 .../src/test/resources/objectFilter/input.json     |  13 +
 .../src/test/resources/objectFilter/output.json    |   1 +
 .../src/test/resources/withVariables/input.json    |   8 +
 .../src/test/resources/withVariables/output.json   |   1 +
 .../withVariables/outputWithProperties.json        |   1 +
 integration-tests/pom.xml                          |   1 +
 pom.xml                                            |   1 +
 poms/bom/pom.xml                                   |  10 +
 tooling/scripts/test-categories.yaml               |   1 +
 47 files changed, 562 insertions(+), 1228 deletions(-)
 delete mode 100644 
extensions-jvm/jslt/deployment/src/main/java/org/apache/camel/quarkus/component/jslt/deployment/JsltProcessor.java
 delete mode 100644 extensions-jvm/jslt/integration-test/pom.xml
 delete mode 100644 
extensions-jvm/jslt/integration-test/src/main/java/org/apache/camel/quarkus/component/jslt/it/JsltResource.java
 delete mode 100644 
extensions-jvm/jslt/integration-test/src/test/java/org/apache/camel/quarkus/component/jslt/it/JsltTest.java
 rename {extensions-jvm => extensions}/jslt/deployment/pom.xml (100%)
 copy 
extensions/{saga/deployment/src/main/java/org/apache/camel/quarkus/component/saga/deployment/SagaProcessor.java
 => 
jslt/deployment/src/main/java/org/apache/camel/quarkus/component/jslt/deployment/JsltProcessor.java}
 (84%)
 rename {extensions-jvm => extensions}/jslt/pom.xml (97%)
 rename {extensions-jvm => extensions}/jslt/runtime/pom.xml (98%)
 create mode 100644 extensions/jslt/runtime/src/main/doc/configuration.adoc
 rename {extensions-jvm => 
extensions}/jslt/runtime/src/main/resources/META-INF/quarkus-extension.yaml 
(97%)
 copy {extensions-support/spring/beans => extensions/kudu/client}/pom.xml (64%)
 delete mode 100644 
extensions/kudu/deployment/src/main/java/org/apache/camel/quarkus/component/kudu/deployment/JBossNettyLoggerFactory.java
 delete mode 100644 
extensions/kudu/runtime/src/main/java/org/apache/camel/quarkus/component/kudu/graal/EmptyByteBufStub.java
 delete mode 100644 
extensions/kudu/runtime/src/main/java/org/apache/camel/quarkus/component/kudu/graal/NettySubstitutions.java
 delete mode 100644 
extensions/kudu/runtime/src/main/java/org/apache/camel/quarkus/component/kudu/graal/ZLibSubstitutions.java
 copy integration-tests/{dropbox => jslt}/pom.xml (92%)
 create mode 100644 
integration-tests/jslt/src/main/java/org/apache/camel/quarkus/component/jslt/it/JsltConfiguration.java
 create mode 100644 
integration-tests/jslt/src/main/java/org/apache/camel/quarkus/component/jslt/it/JsltResource.java
 copy 
integration-tests/{openapi-java/src/main/java/org/apache/camel/quarkus/component/openapijava/it/model/Fruit.java
 => 
jslt/src/main/java/org/apache/camel/quarkus/component/jslt/it/MathFunctionStub.java}
 (77%)
 copy integration-tests/{bean => 
jslt}/src/main/resources/application.properties (89%)
 create mode 100644 
integration-tests/jslt/src/main/resources/demoPlayground/transformation.json
 create mode 100644 
integration-tests/jslt/src/main/resources/objectFilter/transformation.json
 create mode 100644 
integration-tests/jslt/src/main/resources/withVariables/transformation.json
 create mode 100644 
integration-tests/jslt/src/main/resources/withVariables/transformationWithProperties.json
 copy 
integration-tests/{amqp/src/test/java/org/apache/camel/quarkus/component/amqp/it/AmqpIT.java
 => jslt/src/test/java/org/apache/camel/quarkus/component/jslt/it/JsltIT.java} 
(91%)
 create mode 100644 
integration-tests/jslt/src/test/java/org/apache/camel/quarkus/component/jslt/it/JsltTest.java
 create mode 100644 
integration-tests/jslt/src/test/resources/demoPlayground/input.json
 create mode 100644 
integration-tests/jslt/src/test/resources/demoPlayground/output.json
 create mode 100644 
integration-tests/jslt/src/test/resources/demoPlayground/outputPrettyPrint.json
 create mode 100644 
integration-tests/jslt/src/test/resources/objectFilter/input.json
 create mode 100644 
integration-tests/jslt/src/test/resources/objectFilter/output.json
 create mode 100644 
integration-tests/jslt/src/test/resources/withVariables/input.json
 create mode 100644 
integration-tests/jslt/src/test/resources/withVariables/output.json
 create mode 100644 
integration-tests/jslt/src/test/resources/withVariables/outputWithProperties.json

Reply via email to