This is an automated email from the ASF dual-hosted git repository.
lordgamez pushed a change to branch main
in repository https://gitbox.apache.org/repos/asf/nifi-minifi-cpp.git
from 2cef282cf MINIFICPP-2183 fix MacOS CI failure
new deab43e44 MINIFICPP-2129 Refactor threadpool
new 14e2586aa MINIFICPP-2170 Fix system certificate store usage in
SSLContextService on Linux
new 4307333d1 MINIFICPP-2116 - Support GCC13
new 6372d67ab MINIFICPP-2175 Increase CMAKE requirements to 3.24
new fbd69e7e2 MINIFICPP-2164 Use a list of types for allowed types in
PropertyDefinition
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 | 2 +-
.github/workflows/gcc13-compat.yml | 45 ++++++
CMakeLists.txt | 2 +-
README.md | 2 +-
centos.sh | 8 +-
cmake/Abseil.cmake | 4 +-
cmake/BundledAzureSdkCpp.cmake | 16 ++-
cmake/GoogleCloudCpp.cmake | 2 +
cmake/KubernetesClientC.cmake | 3 +-
cmake/curl/dummy/FindCURL.cmake | 1 +
docker/Dockerfile | 2 +-
docker/centos/Dockerfile | 2 +-
docker/requirements.txt | 2 +-
docker/rockylinux/Dockerfile | 4 +-
.../cluster/DockerTestDirectoryBindings.py | 2 +
.../features/MiNiFi_integration_test_driver.py | 24 +++-
docker/test/integration/features/https.feature | 155 +++++++++++++++++++--
docker/test/integration/features/kafka.feature | 8 +-
docker/test/integration/features/steps/steps.py | 43 +++---
.../minifi/controllers/SSLContextService.py | 5 +-
.../test/integration/ssl_utils/SSL_cert_utils.py | 2 +-
extensions/aws/processors/S3Processor.cpp | 6 +-
extensions/azure/storage/BlobStorageClient.h | 2 +-
extensions/azure/storage/DataLakeStorageClient.h | 2 +-
extensions/elasticsearch/PostElasticsearch.h | 9 +-
extensions/gcp/processors/GCSProcessor.h | 4 +-
extensions/http-curl/client/HTTPClient.cpp | 24 ++--
extensions/http-curl/client/HTTPClient.h | 2 +-
extensions/http-curl/processors/InvokeHTTP.cpp | 2 +-
extensions/http-curl/processors/InvokeHTTP.h | 4 +-
extensions/http-curl/tests/HTTPHandlers.h | 2 +-
.../http-curl/tests/VerifyInvokeHTTPGetTest.cpp | 2 -
extensions/librdkafka/KafkaProcessorBase.h | 52 +++----
extensions/rocksdb-repos/FlowFileLoader.cpp | 6 +-
extensions/rocksdb-repos/FlowFileLoader.h | 2 +-
extensions/sftp/client/SFTPClient.cpp | 5 +-
extensions/sftp/processors/ListSFTP.cpp | 4 +-
extensions/splunk/SplunkHECProcessor.h | 40 +++---
extensions/standard-processors/processors/GetTCP.h | 4 +-
.../standard-processors/processors/ListenSyslog.h | 4 +-
.../standard-processors/processors/ListenTCP.h | 4 +-
.../standard-processors/processors/PutFile.h | 2 +-
extensions/standard-processors/processors/PutTCP.h | 98 ++++++-------
.../standard-processors/processors/TailFile.h | 4 +-
.../tests/unit/YamlConfigurationTests.cpp | 8 +-
libminifi/include/CronDrivenSchedulingAgent.h | 2 +-
libminifi/include/EventDrivenSchedulingAgent.h | 2 +-
libminifi/include/FlowController.h | 2 +-
libminifi/include/SchedulingAgent.h | 4 +-
libminifi/include/ThreadedSchedulingAgent.h | 2 +-
libminifi/include/TimerDrivenSchedulingAgent.h | 2 +-
libminifi/include/c2/C2Agent.h | 2 +-
libminifi/include/core/OutputAttributeDefinition.h | 4 +-
libminifi/include/core/Processor.h | 1 +
libminifi/include/core/PropertyDefinition.h | 18 +--
libminifi/include/core/PropertyDefinitionBuilder.h | 41 +++---
libminifi/include/core/Resource.h | 4 +-
libminifi/include/utils/HTTPUtils.h | 4 +-
libminifi/include/utils/Monitors.h | 82 +++--------
libminifi/include/utils/ThreadPool.h | 98 ++++---------
libminifi/src/CronDrivenSchedulingAgent.cpp | 3 +-
libminifi/src/EventDrivenSchedulingAgent.cpp | 2 +-
libminifi/src/FlowController.cpp | 2 +-
libminifi/src/ThreadedSchedulingAgent.cpp | 17 +--
libminifi/src/TimerDrivenSchedulingAgent.cpp | 2 +-
libminifi/src/c2/C2Agent.cpp | 5 +-
libminifi/src/controllers/SSLContextService.cpp | 13 +-
libminifi/src/core/Property.cpp | 6 +-
libminifi/src/utils/HTTPUtils.cpp | 9 +-
libminifi/src/utils/ThreadPool.cpp | 80 ++++-------
libminifi/src/utils/TimeUtil.cpp | 2 +-
libminifi/test/TestBase.cpp | 3 +-
libminifi/test/unit/BackTraceTests.cpp | 97 ++++++-------
libminifi/test/unit/ComponentManifestTests.cpp | 4 +-
libminifi/test/unit/SchedulingAgentTests.cpp | 57 ++++----
libminifi/test/unit/SocketTests.cpp | 46 +++---
libminifi/test/unit/ThreadPoolTests.cpp | 64 +++------
libminifi/test/unit/TypeListTests.cpp | 61 ++++++++
linux.sh | 30 ++++
nanofi/include/cxx/Instance.h | 5 +-
.../azure-sdk-cpp-remove-samples.patch | 23 ---
thirdparty/azure-sdk-cpp/gcc13.patch | 44 ++++++
thirdparty/azure-sdk-cpp/remove-amqp.patch | 15 ++
83 files changed, 826 insertions(+), 658 deletions(-)
create mode 100644 .github/workflows/gcc13-compat.yml
create mode 100644 libminifi/test/unit/TypeListTests.cpp
delete mode 100644 thirdparty/azure-sdk-cpp/azure-sdk-cpp-remove-samples.patch
create mode 100644 thirdparty/azure-sdk-cpp/gcc13.patch
create mode 100644 thirdparty/azure-sdk-cpp/remove-amqp.patch