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

acosentino pushed a change to branch sandbox/camel-3.x
in repository https://gitbox.apache.org/repos/asf/camel.git.


    from 1daf964  Regen
     new 9a369fa  CAMEL-12964: Initial import of jBPM CamelWIH and Command.
     new 9ecf4a9  CamelCommand splitted in a separate command for Camel 
DeploymentContext and GlobalContext. WorkItemHandler can now be configured with 
default route. WIH supports both InOut and InOnly MEPs. Added tests that use a 
test CamelContext and test-routes to verify behaviour on Exceptions.
     new a04dd48  Replaced hard-coded strings with constants. Changed WorkItem 
parameter names to be inline with other WorkItemHandlers.
     new 9024d73  Removed TODO comments.
     new b5d9201  CAMEL-12964: Fix CS
     new df880c9  Upgrade Rabbitmq client to version 5.5.1
     new bb2c087  [CAMEL-12605] Refactoring for compression support.
     new a2517d7  CAMEL-12967 - Fixed CS
     new afd2431  Upgrade PAX Exam to version 4.13.0
     new a463f55   [CAMEL-12605] Added tests and fixes for compression
     new 6d3120c  Typo
     new b423d4e1 Polished
     new b871a11  Typos
     new dee4c1d  Polished
     new c5c2223  Upgrade Flink to version 1.7.0
     new 856f83d  Upgrade Micrometer to version 1.1.1
     new de2a1d9  Upgrade Spring Boot to version 2.1.1.RELEASE
     new 9cf7ff3  Update Spring Boot to version 2.1.1.RELEASE even in dm
     new 6224342  Upgrade Vertx to version 3.6.0
     new 0dd5a65  Avoid potentially conflicting jetty port during test execution
     new 67af4a2  CAMEL-12944 - externalize configs as PR #2549 tried to avoid 
potentially conflicting jetty port during test execution
     new b2fae4f  Fix camel-micrometer documentation references to 
METRICS_REGISTRY_NAME
     new 065d68d  Upgrade Zipkin to version 2.11.9
     new 80b9b29  Upgrade Zipkin Reporter to version 2.7.12
     new 9c421bd  CAMEL-12973: Init deferred to first call when WIH uses 
Deployment-scoped context in combination with Singleton RuntimeStrategy. 
Removed redundant double slash from 'direct' URL.
     new ead7272  CAMEL-12973 - Fixed CS
     new 1e91cef  [CAMEL-12605] Added further tests and fixes for compression
     new 41f8c85  Upgrade Infinispan to version 9.4.3.Final
     new f9a1c7b0 Upgrade Zipkin to version 2.11.10
     new 176f890  Upgrade Zipkin Reporter to version 2.7.13
     new b8e1419  Upgrade Brave to version 5.5.2
     new 1447ab2  Fixed wrong default mentioned in docs. Thanks to Bjoern Ohm 
for spotting this.
     new 23d298e  CAMEL-12979 - support for service beans with custom lifecycle 
on CxfRsEndpoint, Thanks to Jens Kleine-Herzbruch
     new c2b6d7b  Regen
     new 9e39dc1  Regen docs

The 35 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:
 camel-core/src/main/docs/file-component.adoc       |   2 +-
 .../camel/component/file/GenericFileEndpoint.java  |   2 +-
 .../camel/component/as2/api/AS2ClientManager.java  | 122 +++++++-
 ...Structure.java => AS2CompressionAlgorithm.java} |  36 +--
 .../camel/component/as2/api/AS2MediaType.java      |   8 +-
 .../component/as2/api/AS2MessageStructure.java     |  10 +-
 .../ApplicationPkcs7MimeCompressedDataEntity.java  |   2 +-
 ...> ApplicationPkcs7MimeEnvelopedDataEntity.java} |  11 +-
 .../component/as2/api/entity/EntityParser.java     |  56 +++-
 .../CompressionUtils.java}                         |  36 +--
 .../camel/component/as2/api/AS2MessageTest.java    | 316 +++++++++++++++++++--
 .../component/as2/api/entity/EntityParserTest.java |   2 +-
 .../src/main/docs/as2-component.adoc               |   6 +-
 .../camel/component/as2/AS2Configuration.java      |  17 +-
 .../as2/AS2ClientManagerIntegrationTest.java       |   6 +-
 .../as2/AS2ServerManagerIntegrationTest.java       |   4 +-
 components/camel-corda/README.md                   |   2 +-
 .../camel-corda/src/main/docs/corda-component.adoc |   2 -
 .../camel-cxf/src/main/docs/cxfrs-component.adoc   |   3 +-
 .../camel/component/cxf/jaxrs/CxfRsEndpoint.java   |  32 +++
 .../component/cxf/jaxrs/CxfRsConsumerTest.java     |  22 +-
 .../camel-ftp/src/main/docs/ftp-component.adoc     |   2 +-
 .../camel-ftp/src/main/docs/ftps-component.adoc    |   2 +-
 .../camel-ftp/src/main/docs/sftp-component.adoc    |   2 +-
 .../src/main/docs/google-bigquery-component.adoc   |  25 +-
 .../main/docs/google-bigquery-sql-component.adoc   |  22 +-
 .../bigquery/sql/GoogleBigQuerySQLEndpoint.java    |  24 +-
 .../stream/GoogleCalendarStreamEndpoint.java       |   2 +-
 .../SheetsStreamConsumerIntegrationTest.java       |   3 +-
 components/camel-jbpm/pom.xml                      |  27 ++
 .../apache/camel/component/jbpm/JBPMConstants.java |   8 +
 .../jbpm/server/CamelKieServerExtension.java       |  32 +--
 .../jbpm/workitem/AbstractCamelCommand.java        |  81 ++++++
 .../workitem/AbstractCamelWorkItemHandler.java     | 178 ++++++++++++
 .../workitem/DeploymentContextCamelCommand.java    |  71 +++++
 .../jbpm/workitem/GlobalContextCamelCommand.java   |  56 ++++
 .../jbpm/workitem/InOnlyCamelWorkItemHandler.java  | 106 +++++++
 .../jbpm/workitem/InOutCamelWorkItemHandler.java   | 116 ++++++++
 .../jbpm/JBPMComponentIntegrationTest.java         |   1 -
 .../CamelWorkItemHandlerIntegrationTests.java      | 208 ++++++++++++++
 .../DeploymentContextCamelCommandTest.java         |  99 +++++++
 .../workitem/GlobalContextCamelCommandTest.java    |  99 +++++++
 .../workitem/InOnlyCamelWorkItemHandlerTest.java   | 101 +++++++
 .../workitem/InOutCamelWorkItemHandlerTest.java    | 231 +++++++++++++++
 .../src/main/docs/micrometer-component.adoc        |   6 +-
 .../cloud/SpringRibbonServiceCallRouteTest.java    |  16 +-
 .../cloud/SpringBeanRibbonServiceCallRouteTest.xml |  18 +-
 ...ringDslRibbonPropertiesServiceCallRouteTest.xml |  18 +-
 .../cloud/SpringDslRibbonServiceCallRouteTest.xml  |  18 +-
 ...springbeanribbonservicecallroutetest.properties |  19 ++
 ...ribbonpropertiesservicecallroutetest.properties |  19 ++
 .../springdslribbonservicecallroutetest.properties |  19 ++
 components/readme.adoc                             |   4 +-
 parent/pom.xml                                     |  20 +-
 .../as2/springboot/AS2ComponentConfiguration.java  |  14 +
 .../GoogleBigQuerySQLComponentConfiguration.java   |  11 +-
 ...GoogleCalendarStreamComponentConfiguration.java |   2 +-
 platforms/spring-boot/spring-boot-dm/pom.xml       |   2 +-
 58 files changed, 2169 insertions(+), 210 deletions(-)
 copy 
components/camel-as2/camel-as2-api/src/main/java/org/apache/camel/component/as2/api/{AS2MessageStructure.java
 => AS2CompressionAlgorithm.java} (56%)
 rename 
components/camel-as2/camel-as2-api/src/main/java/org/apache/camel/component/as2/api/entity/{ApplicationPkcs7MimeEntity.java
 => ApplicationPkcs7MimeEnvelopedDataEntity.java} (93%)
 copy 
components/camel-as2/camel-as2-api/src/main/java/org/apache/camel/component/as2/api/{AS2MessageStructure.java
 => util/CompressionUtils.java} (52%)
 create mode 100644 
components/camel-jbpm/src/main/java/org/apache/camel/component/jbpm/workitem/AbstractCamelCommand.java
 create mode 100644 
components/camel-jbpm/src/main/java/org/apache/camel/component/jbpm/workitem/AbstractCamelWorkItemHandler.java
 create mode 100644 
components/camel-jbpm/src/main/java/org/apache/camel/component/jbpm/workitem/DeploymentContextCamelCommand.java
 create mode 100644 
components/camel-jbpm/src/main/java/org/apache/camel/component/jbpm/workitem/GlobalContextCamelCommand.java
 create mode 100644 
components/camel-jbpm/src/main/java/org/apache/camel/component/jbpm/workitem/InOnlyCamelWorkItemHandler.java
 create mode 100644 
components/camel-jbpm/src/main/java/org/apache/camel/component/jbpm/workitem/InOutCamelWorkItemHandler.java
 create mode 100644 
components/camel-jbpm/src/test/java/org/apache/camel/component/jbpm/workitem/CamelWorkItemHandlerIntegrationTests.java
 create mode 100644 
components/camel-jbpm/src/test/java/org/apache/camel/component/jbpm/workitem/DeploymentContextCamelCommandTest.java
 create mode 100644 
components/camel-jbpm/src/test/java/org/apache/camel/component/jbpm/workitem/GlobalContextCamelCommandTest.java
 create mode 100644 
components/camel-jbpm/src/test/java/org/apache/camel/component/jbpm/workitem/InOnlyCamelWorkItemHandlerTest.java
 create mode 100644 
components/camel-jbpm/src/test/java/org/apache/camel/component/jbpm/workitem/InOutCamelWorkItemHandlerTest.java
 create mode 100644 
components/camel-ribbon/src/test/resources/springbeanribbonservicecallroutetest.properties
 create mode 100644 
components/camel-ribbon/src/test/resources/springdslribbonpropertiesservicecallroutetest.properties
 create mode 100644 
components/camel-ribbon/src/test/resources/springdslribbonservicecallroutetest.properties

Reply via email to