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 2d2f300 MINIFICPP-1605 Always refresh AWS credentials through default
credentials chain
new bf79391 MINIFICPP-1367 Add ENABLE_NANOFI cmake option, disable by
default
new f7f29cb MINIFICPP-1606 ProcessSession::read() should return int64_t
new a178c9f MINIFICPP-1601 Add example flow configurations
new c683cbe MINIFICPP-1587 Fix CWEL test compilation if path contains
whitespace
The 4 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:
.github/workflows/ci.yml | 8 +-
.gitignore | 9 ++
CMakeLists.txt | 19 +--
PROCESSORS.md | 10 +-
README.md | 7 +-
bootstrap.sh | 4 +
bstrp_functions.sh | 28 ++++-
cmake/BuildTests.cmake | 89 +++++++-------
cmake/DockerConfig.cmake | 1 +
conf/config.yml | 2 +-
docker/Dockerfile | 5 +-
examples/README.md | 128 ++++++++++++++++++++-
examples/azure_storage_config.yml | 46 ++++++++
.../consumejournald_config.yml | 26 ++++-
examples/consumekafka_config.yml | 53 +++++++++
examples/cwel_config.yml | 50 ++++++++
examples/getfile_putfile_config.yml | 50 ++++++++
examples/http_post_config.yml | 85 ++++++++++++++
examples/lists3_fetchs3_config.yml | 66 +++++++++++
examples/pdh_config.yml | 49 ++++++++
examples/publishkafka_config.yml | 49 ++++++++
examples/publishkafka_ssl_config.yml | 55 +++++++++
examples/puts3_config.yml | 45 ++++++++
examples/querydbtable_config.yml | 52 +++++++++
examples/site_to_site_config.yml | 43 +++++++
examples/tailfile_config.yml | 47 ++++++++
extensions/libarchive/MergeContent.h | 6 +-
.../custom-provider/generate-and-register.bat | 13 ++-
libminifi/include/core/ProcessSession.h | 2 +-
.../include/serialization/FlowFileSerializer.h | 4 +-
.../include/serialization/FlowFileV3Serializer.h | 2 +-
.../include/serialization/PayloadSerializer.h | 2 +-
libminifi/src/core/ProcessSession.cpp | 4 +-
.../src/serialization/FlowFileV3Serializer.cpp | 4 +-
libminifi/src/serialization/PayloadSerializer.cpp | 2 +-
win_build_vs.bat | 4 +-
36 files changed, 983 insertions(+), 86 deletions(-)
create mode 100644 examples/azure_storage_config.yml
copy libminifi/test/resources/TestEmpty.yml =>
examples/consumejournald_config.yml (50%)
create mode 100644 examples/consumekafka_config.yml
create mode 100644 examples/cwel_config.yml
create mode 100644 examples/getfile_putfile_config.yml
create mode 100644 examples/http_post_config.yml
create mode 100644 examples/lists3_fetchs3_config.yml
create mode 100644 examples/pdh_config.yml
create mode 100644 examples/publishkafka_config.yml
create mode 100644 examples/publishkafka_ssl_config.yml
create mode 100644 examples/puts3_config.yml
create mode 100644 examples/querydbtable_config.yml
create mode 100644 examples/site_to_site_config.yml
create mode 100644 examples/tailfile_config.yml