This is an automated email from the ASF dual-hosted git repository.
exceptionfactory pushed a change to branch main
in repository https://gitbox.apache.org/repos/asf/nifi.git
from 0135191106 NIFI-10821 Upgraded Netty from 4.1.84 to 4.1.85
add a702a8c215 NIFI-7392 Added ValidateJson to Standard Processors
No new revisions were added by this update.
Summary of changes:
.../nifi-standard-processors/pom.xml | 8 +
.../nifi/processors/standard/ValidateJson.java | 202 +++++++++++++++++++++
.../services/org.apache.nifi.processor.Processor | 1 +
.../nifi/processors/standard/TestValidateJson.java | 196 ++++++++++++++++++++
.../schema-simple-example-missing-required.json | 35 ++++
.../schema-simple-example-unmatched-pattern.json | 34 ++++
.../TestValidateJson/schema-simple-example.json | 34 ++++
.../resources/TestValidateJson/simple-example.json | 9 +
nifi-nar-bundles/nifi-standard-bundle/pom.xml | 5 +
9 files changed, 524 insertions(+)
create mode 100644
nifi-nar-bundles/nifi-standard-bundle/nifi-standard-processors/src/main/java/org/apache/nifi/processors/standard/ValidateJson.java
create mode 100644
nifi-nar-bundles/nifi-standard-bundle/nifi-standard-processors/src/test/java/org/apache/nifi/processors/standard/TestValidateJson.java
create mode 100644
nifi-nar-bundles/nifi-standard-bundle/nifi-standard-processors/src/test/resources/TestValidateJson/schema-simple-example-missing-required.json
create mode 100644
nifi-nar-bundles/nifi-standard-bundle/nifi-standard-processors/src/test/resources/TestValidateJson/schema-simple-example-unmatched-pattern.json
create mode 100644
nifi-nar-bundles/nifi-standard-bundle/nifi-standard-processors/src/test/resources/TestValidateJson/schema-simple-example.json
create mode 100644
nifi-nar-bundles/nifi-standard-bundle/nifi-standard-processors/src/test/resources/TestValidateJson/simple-example.json