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 33549357a MINIFICPP-2327 Fix Loki protobuf code generation on Windows 
using msbuild
     new 45971b514 MINIFICPP-2309 Add JSON flow config examples
     new 542924e67 MINIFICPP-2323 ListenTCP custom delimiter support
     new ab20656da MINIFICPP-2325 Add missing compiler flags
     new ae6b74881 MINIFICPP-2328 Upgrade OpenSSL to version 3.3.0
     new 3d7262a88 MINIFICPP-2326 Link lua statically

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:
 .github/workflows/ci.yml                           |   7 +-
 .github/workflows/gcc13-compat.yml                 |   2 +-
 CMakeLists.txt                                     |   7 +-
 LICENSE                                            |  22 +
 NOTICE                                             |   1 +
 PROCESSORS.md                                      |   4 +-
 README.md                                          |   7 -
 aptitude.sh                                        |   2 -
 arch.sh                                            |   2 -
 bootstrap/package_manager.py                       |   5 +-
 bootstrap/system_dependency.py                     |   2 -
 centos.sh                                          |   3 -
 cmake/BundledOpenSSL.cmake                         |  15 +-
 cmake/{JoltTests.cmake => Lua.cmake}               |  23 +-
 cmake/prep_for_win_package.cmake                   |   1 -
 darwin.sh                                          |   2 -
 debian.sh                                          |   2 -
 docker/Dockerfile                                  |   4 +-
 docker/bionic/Dockerfile                           |   2 +-
 docker/centos/Dockerfile                           |   1 -
 docker/fedora/Dockerfile                           |   2 +-
 docker/focal/Dockerfile                            |   2 +-
 docker/rockylinux/Dockerfile                       |   1 -
 examples/README.md                                 | 110 ++--
 examples/azure_storage_config.json                 |  52 ++
 examples/azure_storage_config.nifi.schema.json     | 254 ++++++++
 examples/consumejournald_config.json               |  49 ++
 examples/consumejournald_config.nifi.schema.json   | 213 +++++++
 examples/consumekafka_config.json                  |  59 ++
 examples/cwel_config.json                          |  54 ++
 examples/getfile_putfile_config.json               |  54 ++
 examples/grafana_loki_config.json                  |  52 ++
 ...tailfile_config.yml => grafana_loki_config.yml} |  36 +-
 examples/http_post_config.json                     | 142 +++++
 examples/http_post_config.nifi.schema.json         | 647 +++++++++++++++++++++
 examples/http_post_config.yml                      |   4 +-
 examples/kubernetes_tailfile_config.json           |  72 +++
 examples/lists3_fetchs3_config.json                |  85 +++
 examples/lists3_fetchs3_config.nifi.schema.json    | 492 ++++++++++++++++
 .../merge_compress_and_upload_to_gcs_config.json   | 157 +++++
 .../merge_compress_and_upload_to_gcs_config.yml    | 116 ++++
 examples/mqtt_config.json                          |  52 ++
 examples/mqtt_config.yml                           |  32 +
 examples/pdh_config.json                           |  53 ++
 examples/process_data_with_scripts.json            | 105 ++++
 examples/publishkafka_config.json                  |  55 ++
 examples/publishkafka_ssl_config.json              |  60 ++
 examples/publishkafka_ssl_config.yml               |   3 +-
 examples/puts3_config.json                         |  51 ++
 examples/querydbtable_config.json                  |  61 ++
 examples/querydbtable_config.nifi.schema.json      | 245 ++++++++
 examples/querydbtable_config.yml                   |   1 -
 examples/site_to_site_config.json                  |  49 ++
 examples/site_to_site_config.nifi.schema.json      | 195 +++++++
 examples/splittext_puttcp_config.json              |  84 +++
 examples/splittext_puttcp_config.yml               |  53 ++
 examples/tailfile_config.json                      |  50 ++
 examples/tailfile_config.yml                       |   3 +-
 extensions/lua/CMakeLists.txt                      |   4 +-
 .../processors/ListenSyslog.cpp                    |   2 +-
 .../standard-processors/processors/ListenTCP.cpp   |  10 +-
 .../standard-processors/processors/ListenTCP.h     |  24 +-
 .../processors/NetworkListenerProcessor.cpp        |   8 +-
 .../processors/NetworkListenerProcessor.h          |  10 +-
 .../tests/unit/ListenSyslogTests.cpp               |  14 +-
 .../tests/unit/ListenTcpTests.cpp                  |  75 +--
 .../standard-processors/tests/unit/PutTCPTests.cpp |   6 +-
 fedora.sh                                          |   2 -
 libminifi/include/utils/IntegrationTestUtils.h     |   9 +
 libminifi/include/utils/StringUtils.h              |   2 +
 libminifi/include/utils/net/TcpServer.h            |  11 +-
 libminifi/src/utils/StringUtils.cpp                |  59 +-
 libminifi/src/utils/net/TcpServer.cpp              |   5 +-
 libminifi/test/Utils.h                             |   5 +-
 libminifi/test/unit/CronTests.cpp                  |   2 +-
 libminifi/test/unit/StringUtilsTests.cpp           |  19 +-
 minifi_main/CMakeLists.txt                         |   8 +-
 rheldistro.sh                                      |   2 -
 suse.sh                                            |   2 -
 ...arch64-feature-detection-code-in-armcap.c.patch | 560 ------------------
 80 files changed, 4001 insertions(+), 757 deletions(-)
 copy cmake/{JoltTests.cmake => Lua.cmake} (55%)
 delete mode 100644 cmake/prep_for_win_package.cmake
 create mode 100644 examples/azure_storage_config.json
 create mode 100644 examples/azure_storage_config.nifi.schema.json
 create mode 100644 examples/consumejournald_config.json
 create mode 100644 examples/consumejournald_config.nifi.schema.json
 create mode 100644 examples/consumekafka_config.json
 create mode 100644 examples/cwel_config.json
 create mode 100644 examples/getfile_putfile_config.json
 create mode 100644 examples/grafana_loki_config.json
 copy examples/{tailfile_config.yml => grafana_loki_config.yml} (64%)
 create mode 100644 examples/http_post_config.json
 create mode 100644 examples/http_post_config.nifi.schema.json
 create mode 100644 examples/kubernetes_tailfile_config.json
 create mode 100644 examples/lists3_fetchs3_config.json
 create mode 100644 examples/lists3_fetchs3_config.nifi.schema.json
 create mode 100644 examples/merge_compress_and_upload_to_gcs_config.json
 create mode 100644 examples/merge_compress_and_upload_to_gcs_config.yml
 create mode 100644 examples/mqtt_config.json
 create mode 100644 examples/mqtt_config.yml
 create mode 100644 examples/pdh_config.json
 create mode 100644 examples/process_data_with_scripts.json
 create mode 100644 examples/publishkafka_config.json
 create mode 100644 examples/publishkafka_ssl_config.json
 create mode 100644 examples/puts3_config.json
 create mode 100644 examples/querydbtable_config.json
 create mode 100644 examples/querydbtable_config.nifi.schema.json
 create mode 100644 examples/site_to_site_config.json
 create mode 100644 examples/site_to_site_config.nifi.schema.json
 create mode 100644 examples/splittext_puttcp_config.json
 create mode 100644 examples/splittext_puttcp_config.yml
 create mode 100644 examples/tailfile_config.json
 delete mode 100644 
thirdparty/openssl/Tidy-up-aarch64-feature-detection-code-in-armcap.c.patch

Reply via email to