This is an automated email from the ASF dual-hosted git repository. davsclaus pushed a change to branch master in repository https://gitbox.apache.org/repos/asf/camel.git.
from e462dc5 Add XML schema references for release 2.22.5 new 7d79ee9 CAMEL-13369: Message History EIP now supports filtering nodes and to keep a copy of the traced message. new 3de03c0 CAMEL-13369: Message History EIP now supports filtering nodes and to keep a copy of the traced message. new 66863cc Regen new d644327 CAMEL-13369: Message History EIP now supports filtering nodes and to keep a copy of the traced message. new 7ff0c7e CAMEL-13369: Message History EIP now supports filtering nodes and to keep a copy of the traced message. new 3a72850 CAMEL-13369: Message History EIP now supports filtering nodes and to keep a copy of the traced message. new e3cb28f CAMEL-13369: Message History EIP now supports filtering nodes and to keep a copy of the traced message. new 58508d8 CAMEL-13369: Message History EIP now supports filtering nodes and to keep a copy of the traced message. The 8 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: MIGRATION.md | 2 + .../messagehistory/MetricsMessageHistory.java | 5 +- .../MetricsMessageHistoryFactory.java | 47 +++++++++- .../messagehistory/MicrometerMessageHistory.java | 8 +- .../MicrometerMessageHistoryFactory.java | 46 ++++++++- .../main/java/org/apache/camel/MessageHistory.java | 5 + .../apache/camel/spi/MessageHistoryFactory.java | 27 +++++- .../impl/engine/DefaultMessageHistoryFactory.java | 82 +++++++++++++++- .../camel/processor/CamelInternalProcessor.java | 6 +- .../DefaultAsyncProcessorAwaitManagerTest.java | 6 +- .../processor/MessageHistoryCopyMessageTest.java | 84 +++++++++++++++++ .../processor/MessageHistoryStepOnlyTest.java | 80 ++++++++++++++++ .../management/ManagedMessageHistoryTest.java | 103 +++++++++++++++++++++ .../management/ManagedNonManagedServiceTest.java | 2 +- ...edProducerRouteAddRemoveRegisterAlwaysTest.java | 2 +- .../management/ManagedRouteAddRemoveTest.java | 2 +- .../camel/support/DefaultMessageHistory.java | 16 ++++ .../modules/ROOT/pages/spark-component.adoc | 2 +- 18 files changed, 500 insertions(+), 25 deletions(-) create mode 100644 core/camel-core/src/test/java/org/apache/camel/processor/MessageHistoryCopyMessageTest.java create mode 100644 core/camel-core/src/test/java/org/apache/camel/processor/MessageHistoryStepOnlyTest.java create mode 100644 core/camel-management-impl/src/test/java/org/apache/camel/management/ManagedMessageHistoryTest.java