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
omit 95c36bf2d0c Regen for commit a9700259b0e4a3ff5bd78399cd517efd491de7cf add 88d60c260bc Upgrade MongoDB Driver Sync to version 4.7.1 add dded3ead06d Sync deps add 15924b82693 camel-jbang - Add reset-stats command add d537cc7e089 camel-jbang - Add reset-stats command add dea274f3a9c CAMEL-18456: created a test infra module for embedded Jetty add 0398b41c1b3 CAMEL-18456: converted camel-ahc-ws tests to camel-test-infra-jetty add d4ecd4b5c74 Regen for commit 0398b41c1b33b864a00b67122ac637093906f375 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 (95c36bf2d0c) \ N -- N -- N refs/heads/regen_bot (d4ecd4b5c74) 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: camel-dependencies/pom.xml | 2 +- components/camel-ahc-ws/pom.xml | 33 +++--- .../component/ahc/ws/WsProducerConsumerTest.java | 62 ++++------- .../camel/component/ahc/ws/WsProducerTest.java | 26 +++-- .../camel/component/ahc/ws/WsProducerTestBase.java | 44 +------- .../ahc/ws/WsProducerUsingStreamingTest.java | 27 ++++- .../camel/component/ahc/ws/WssProducerTest.java | 46 +++++--- .../src/test/resources/log4j2.properties | 3 + .../camel/cli/connector/LocalCliConnector.java | 6 + .../dsl/jbang/core/commands/CamelJBangMain.java | 2 + .../commands/action/CamelResetStatsAction.java | 51 +++++++++ parent/pom.xml | 2 +- test-infra/camel-test-infra-jetty/pom.xml | 70 ++++++++++++ .../src/main/resources/META-INF/MANIFEST.MF | 0 .../test/infra/jetty/common/JettyProperties.java | 22 ++-- .../infra/jetty/services/JettyConfiguration.java | 117 +++++++++++++++++++ .../jetty/services/JettyConfigurationBuilder.java | 75 +++++++++++++ .../infra/jetty/services/JettyEmbeddedService.java | 124 +++++++++++++++++++++ .../test/infra/jetty/services/JettyService.java | 41 ++++--- test-infra/pom.xml | 1 + 20 files changed, 588 insertions(+), 166 deletions(-) create mode 100644 dsl/camel-jbang/camel-jbang-core/src/main/java/org/apache/camel/dsl/jbang/core/commands/action/CamelResetStatsAction.java create mode 100644 test-infra/camel-test-infra-jetty/pom.xml copy {init/camel-bundle-plugin => test-infra/camel-test-infra-jetty}/src/main/resources/META-INF/MANIFEST.MF (100%) copy components/camel-ahc-ws/src/test/java/org/apache/camel/component/ahc/ws/WsProducerTest.java => test-infra/camel-test-infra-jetty/src/test/java/org/apache/camel/test/infra/jetty/common/JettyProperties.java (64%) create mode 100644 test-infra/camel-test-infra-jetty/src/test/java/org/apache/camel/test/infra/jetty/services/JettyConfiguration.java create mode 100644 test-infra/camel-test-infra-jetty/src/test/java/org/apache/camel/test/infra/jetty/services/JettyConfigurationBuilder.java create mode 100644 test-infra/camel-test-infra-jetty/src/test/java/org/apache/camel/test/infra/jetty/services/JettyEmbeddedService.java copy components/camel-ahc-ws/src/test/java/org/apache/camel/component/ahc/ws/WsProducerUsingStreamingTest.java => test-infra/camel-test-infra-jetty/src/test/java/org/apache/camel/test/infra/jetty/services/JettyService.java (53%)