This is an automated email from the ASF dual-hosted git repository. coheigea pushed a change to branch camel-3.0.x in repository https://gitbox.apache.org/repos/asf/camel.git.
from 2deab6f CAMEL-14414: for aggregation group completion setting and removal is handled through methods to enforce code cohesion and avoid repetitions. fixed issue for CURRENT_GROUP and ALL_GROUPS flag removal. adapted tests and documentation (#3554) new 9bb3f9b CAMEL-14532 - Fix issues with camel-snakeyaml new 1a64407 CAMEL-14532 - Fixing up docs new b00d36c CAMEL-14532 - In xml model the types must be String new 70afca5 CAMEL-14532 - Fix checkstyle warnings new 1a04b47 CAMEL-14532 - Changing method signature The 5 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: .../src/main/docs/yaml-snakeyaml-dataformat.adoc | 8 +- .../component/snakeyaml/SnakeYAMLDataFormat.java | 66 +- .../custom/CustomClassLoaderConstructor.java | 90 +++ .../component/snakeyaml/custom/CustomComposer.java | 276 ++++++++ .../snakeyaml/custom/CustomConstructor.java | 83 +++ .../snakeyaml/custom/CustomSafeConstructor.java | 83 +++ .../camel/component/snakeyaml/custom/Yaml.java | 715 +++++++++++++++++++++ .../component/snakeyaml/SnakeYAMLDoSTest.java | 159 +++++ .../src/test/resources/data-dos.yaml | 11 + .../camel-snakeyaml/src/test/resources/data.yaml | 2 + .../camel/model/dataformat/YAMLDataFormat.java | 27 + .../reifier/dataformat/YAMLDataFormatReifier.java | 2 + .../ROOT/pages/yaml-snakeyaml-dataformat.adoc | 8 +- .../modules/ROOT/pages/aggregate-eip.adoc | 2 +- .../SnakeYAMLDataFormatConfiguration.java | 24 + 15 files changed, 1534 insertions(+), 22 deletions(-) create mode 100644 components/camel-snakeyaml/src/main/java/org/apache/camel/component/snakeyaml/custom/CustomClassLoaderConstructor.java create mode 100644 components/camel-snakeyaml/src/main/java/org/apache/camel/component/snakeyaml/custom/CustomComposer.java create mode 100644 components/camel-snakeyaml/src/main/java/org/apache/camel/component/snakeyaml/custom/CustomConstructor.java create mode 100644 components/camel-snakeyaml/src/main/java/org/apache/camel/component/snakeyaml/custom/CustomSafeConstructor.java create mode 100644 components/camel-snakeyaml/src/main/java/org/apache/camel/component/snakeyaml/custom/Yaml.java create mode 100644 components/camel-snakeyaml/src/test/java/org/apache/camel/component/snakeyaml/SnakeYAMLDoSTest.java create mode 100644 components/camel-snakeyaml/src/test/resources/data-dos.yaml create mode 100644 components/camel-snakeyaml/src/test/resources/data.yaml