This is an automated email from the ASF dual-hosted git repository. coheigea pushed a change to branch camel-2.25.x in repository https://gitbox.apache.org/repos/asf/camel.git.
from bdb6580 [CAMEL-14501]gain fully control of xml parser used by saxon new 2a7cef7 CAMEL-14532 - Fix issues with camel-snakeyaml new 75f1142 CAMEL-14532 - Fixing up docs new 1aba578 CAMEL-14532 - In xml model the types must be String new e577b49 CAMEL-14532 - Fix checkstyle warnings new 7b6d9d8 CAMEL-14532 - Changing method signature new f2340fa Updating Snakeyaml new 4223e9c Fix up docs The 7 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: .../camel/model/dataformat/YAMLDataFormat.java | 30 +- .../src/main/docs/yaml-snakeyaml-dataformat.adoc | 10 +- .../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 + components/readme.adoc | 37 +- .../ROOT/pages/yaml-snakeyaml-dataformat.adoc | 10 +- parent/pom.xml | 2 +- .../SnakeYAMLDataFormatConfiguration.java | 24 + 15 files changed, 1568 insertions(+), 30 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