You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by gi...@apache.org on 2023/05/02 13:36:47 UTC

[camel] branch regen_bot updated (d0888629fcb -> aea5c7099a9)

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

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


    from d0888629fcb CAMEL-19058: rework the Message to avoid hitting the type-check scalability issue
     add 43a6a299189 (chores) camel-sjms: disabled flaky tests on GH Actions
     add f53a9203a0e (chores) camel-jms: disabled flaky tests on GH Actions
     add bbd1140ebd5 CAMEL-19304: camel-jpa implement paging (#9970)
     add aea5c7099a9 Regen for commit bbd1140ebd5b3e135c1f66c0658ca4a75c650b9a

No new revisions were added by this update.

Summary of changes:
 .../org/apache/camel/catalog/components/jpa.json   |   5 +-
 .../jms/temp/TemporaryQueueRouteTest.java          |   2 +
 .../camel/component/jpa/JpaEndpointConfigurer.java |   6 +
 .../camel/component/jpa/JpaEndpointUriFactory.java |   3 +-
 .../org/apache/camel/component/jpa/jpa.json        |   5 +-
 .../apache/camel/component/jpa/JpaConstants.java   |   6 +
 .../apache/camel/component/jpa/JpaEndpoint.java    |  13 ++
 .../apache/camel/component/jpa/JpaProducer.java    |  12 +-
 .../component/jpa/AbstractJpaMethodSupport.java    |  92 ++++++++++
 .../camel/component/jpa/AbstractJpaMethodTest.java |  63 +------
 .../apache/camel/component/jpa/JpaPagingTest.java  | 199 +++++++++++++++++++++
 .../sjms/consumer/JmsPollingConsumerTest.java      |   2 +
 .../camel/component/sjms/producer/SjmsToDTest.java |   2 +
 13 files changed, 344 insertions(+), 66 deletions(-)
 create mode 100644 components/camel-jpa/src/test/java/org/apache/camel/component/jpa/AbstractJpaMethodSupport.java
 create mode 100644 components/camel-jpa/src/test/java/org/apache/camel/component/jpa/JpaPagingTest.java