This is an automated email from the ASF dual-hosted git repository.

szaszm pushed a change to branch main
in repository https://gitbox.apache.org/repos/asf/nifi-minifi-cpp.git


    from fb9cfe38f MINIFICPP-2134 Do not swallow parsing exceptions
     new 266bb13ed MINIFICPP-2127 Add multipart upload support for PutS3Object 
processor
     new dc3239dbf MINIFICPP-2143 Resolve Security/UserID attribute
     new 034ff6cbf MINIFICPP-2165 Add logger max log entry length configuration 
property
     new bed452e70 MINIFICPP-2166 Remove unused properties and update 
documentation
     new 914289a5a MINIFICPP-2158 Show true|false as allowed values of boolean 
properties in PROCESSORS.md

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:
 C2.md                                              |  26 +-
 CONFIGURE.md                                       | 186 +++++++++-
 PROCESSORS.md                                      | 237 ++++++-------
 conf/minifi-log.properties                         |   3 +
 docker/conf/minifi-log.properties                  |   3 +
 .../test/integration/cluster/DockerTestCluster.py  |   4 +
 .../cluster/DockerTestDirectoryBindings.py         |  17 +
 .../integration/cluster/checkers/AwsChecker.py     |  12 +
 .../features/MiNiFi_integration_test_driver.py     |   9 +
 docker/test/integration/features/s3.feature        |  41 +++
 docker/test/integration/features/steps/steps.py    |  10 +
 .../filesystem_validation/OutputEventHandler.py    |   6 -
 extensions/aws/processors/PutS3Object.cpp          |  94 ++++-
 extensions/aws/processors/PutS3Object.h            | 111 +++---
 extensions/aws/s3/MultipartUploadStateStorage.cpp  | 135 ++++++++
 extensions/aws/s3/MultipartUploadStateStorage.h    |  76 ++++
 extensions/aws/s3/S3ClientRequestSender.cpp        |  87 +++++
 extensions/aws/s3/S3ClientRequestSender.h          |  25 ++
 extensions/aws/s3/S3RequestSender.h                |  49 ++-
 extensions/aws/s3/S3Wrapper.cpp                    | 261 ++++++++++----
 extensions/aws/s3/S3Wrapper.h                      | 108 +++++-
 extensions/aws/tests/MockS3RequestSender.h         | 108 ++++++
 .../aws/tests/MultipartUploadStateStorageTest.cpp  | 162 +++++++++
 extensions/aws/tests/PutS3ObjectTests.cpp          | 238 ++++++++++++-
 extensions/aws/tests/S3TestsFixture.h              |   9 +-
 .../http-curl/tests/C2DescribeManifestTest.cpp     |   4 +-
 .../standard-processors/processors/LogAttribute.h  |   1 +
 .../tests/unit/ConfigurationTests.cpp              |   2 +-
 .../tests/ConsumeWindowsEventLogTests.cpp          |   4 +-
 .../tests/MetadataWalkerTests.cpp                  |  15 +
 .../tests/resources/invalidxml.xml                 |   2 +-
 .../tests/resources/multiplesids.xml               |   2 +-
 .../tests/resources/nobodysid.xml                  |   2 +-
 .../windows-event-log/tests/resources/nodata.xml   |   2 +-
 .../resources/{withsids.xml => resolveduserid.xml} |   4 +-
 .../tests/resources/unknownsid.xml                 |   2 +-
 .../tests/resources/{nobodysid.xml => userid.xml}  |   4 +-
 .../windows-event-log/tests/resources/withsids.xml |   2 +-
 extensions/windows-event-log/wel/JSONUtils.cpp     |   6 +
 .../windows-event-log/wel/MetadataWalker.cpp       |  48 ++-
 extensions/windows-event-log/wel/MetadataWalker.h  |   7 +-
 libminifi/include/FlowControlProtocol.h            | 273 ---------------
 libminifi/include/FlowController.h                 |   2 -
 libminifi/include/core/ProcessContext.h            |   4 +
 libminifi/include/core/logging/Logger.h            |  15 +-
 .../include/core/logging/LoggerConfiguration.h     |   3 +
 libminifi/include/properties/Configuration.h       |   7 +-
 libminifi/include/utils/TimeUtil.h                 |  19 +-
 libminifi/src/Configuration.cpp                    |   7 +-
 libminifi/src/FlowControlProtocol.cpp              | 383 ---------------------
 libminifi/src/FlowController.cpp                   |   3 -
 .../controllers/keyvalue/KeyValueStateManager.cpp  |   4 +-
 libminifi/src/core/logging/Logger.cpp              |   1 -
 libminifi/src/core/logging/LoggerConfiguration.cpp |  15 +
 .../integration/StateTransactionalityTests.cpp     |  13 +-
 libminifi/test/unit/LoggerTests.cpp                |  71 ++++
 libminifi/test/unit/TimeUtilTests.cpp              |  12 +-
 minifi_main/AgentDocs.cpp                          |  17 +-
 58 files changed, 1963 insertions(+), 1010 deletions(-)
 create mode 100644 extensions/aws/s3/MultipartUploadStateStorage.cpp
 create mode 100644 extensions/aws/s3/MultipartUploadStateStorage.h
 create mode 100644 extensions/aws/tests/MultipartUploadStateStorageTest.cpp
 copy extensions/windows-event-log/tests/resources/{withsids.xml => 
resolveduserid.xml} (96%)
 copy extensions/windows-event-log/tests/resources/{nobodysid.xml => 
userid.xml} (96%)
 delete mode 100644 libminifi/include/FlowControlProtocol.h
 delete mode 100644 libminifi/src/FlowControlProtocol.cpp

Reply via email to