This is an automated email from the ASF dual-hosted git repository. davsclaus pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/camel.git
The following commit(s) were added to refs/heads/main by this push: new 11aa510 CAMEL-17101: Split EIP should support splitting a java.util.Map into a Set<Map.Entry> - so it works out of the box, and what you would assume Camel can do. Fixed some other components that was using the faulty behavioiur of createIterable. 11aa510 is described below commit 11aa51085986223dd01e66df8939f32329959ce7 Author: Claus Ibsen <claus.ib...@gmail.com> AuthorDate: Wed Oct 20 20:54:08 2021 +0200 CAMEL-17101: Split EIP should support splitting a java.util.Map into a Set<Map.Entry> - so it works out of the box, and what you would assume Camel can do. Fixed some other components that was using the faulty behavioiur of createIterable. --- docs/user-manual/modules/ROOT/pages/camel-3x-upgrade-guide-3_13.adoc | 3 +++ 1 file changed, 3 insertions(+) diff --git a/docs/user-manual/modules/ROOT/pages/camel-3x-upgrade-guide-3_13.adoc b/docs/user-manual/modules/ROOT/pages/camel-3x-upgrade-guide-3_13.adoc index 96d6f1c..b3c5721 100644 --- a/docs/user-manual/modules/ROOT/pages/camel-3x-upgrade-guide-3_13.adoc +++ b/docs/user-manual/modules/ROOT/pages/camel-3x-upgrade-guide-3_13.adoc @@ -12,6 +12,9 @@ Added method `getStartedEventNotifiers` to `org.apache.camel.spi.ManagementStrat Added method `scheduleQueue` to `org.apache.camel.spi.ReactiveExecutor`. +The `org.apache.camel.support.ObjectHelper#createIterable` now supports `java.util.Map` returning +an `Iterable<Map.Entry>` iterating each row in the map. + === Split EIP The Split EIP now supports splitting message bodies that are of type `java.util.Map`, which