This is an automated email from the ASF dual-hosted git repository.
lordgamez pushed a change to branch MINIFICPP-2377
in repository https://gitbox.apache.org/repos/asf/nifi-minifi-cpp.git
omit 852793c7b Fix after rebase
omit ea783cec6 MINIFICPP-2377 Support process group level controller
services
add 1eccfd8a2 MINIFICPP-2447 Include the Python processor version in the
manifest
add 66e465d9b MINIFICPP-2453 Add yield function support to python API
add a6ef49d7a MINIFICPP-2456 Remove curl output from Elasticsearch
responses
add 0359e1be1 MINIFICPP-2460 Add tests for S2S tests using SSL
add fafb1f955 Bump commons-io:commons-io
add 48bebcd6c MINIFICPP-2476 Upgrade OpenSSL to 3.3.2
add 8c9c1a9ae MINIFICPP-2472 msi: fix install scope, should be per machine
add 6c0979ff4 MINIFICPP-2464 Drop the GPS extension
add 2fec6043e MINIFICPP-2377 Support process group level controller
services
add 862feceb6 Fix after rebase
add c71a5d0bb Review update
This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version. This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:
* -- * -- B -- O -- O -- O (852793c7b)
\
N -- N -- N refs/heads/MINIFICPP-2377 (c71a5d0bb)
You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.
Any revisions marked "omit" are not gone; other references still
refer to them. Any revisions marked "discard" are gone forever.
No new revisions were added by this update.
Summary of changes:
.github/workflows/ci.yml | 9 +-
Extensions.md | 4 +-
PROCESSORS.md | 24 ---
README.md | 9 -
Windows.md | 2 +-
aptitude.sh | 2 -
arch.sh | 2 -
bootstrap.sh | 3 -
bootstrap/package_manager.py | 7 +-
bootstrap/system_dependency.py | 2 -
bstrp_functions.sh | 2 -
centos.sh | 6 +-
cmake/BundledOpenSSL.cmake | 8 +-
cmake/DockerConfig.cmake | 1 -
cmake/FindLibGPS.cmake | 55 ------
cmake/MiNiFiOptions.cmake | 1 -
darwin.sh | 2 -
debian.sh | 2 -
docker/Dockerfile | 2 -
docker/centos/Dockerfile | 3 +-
docker/rockylinux/Dockerfile | 5 +-
docker/test/integration/cluster/ContainerStore.py | 10 +-
.../test/integration/cluster/DockerTestCluster.py | 3 +
.../cluster/DockerTestDirectoryBindings.py | 121 ++++++++----
.../cluster/checkers/ElasticSearchChecker.py | 14 +-
.../cluster/containers/MinifiContainer.py | 5 +-
.../cluster/containers/NifiContainer.py | 61 ++++--
docker/test/integration/convert_cert_to_jks.sh | 45 +++++
.../features/MiNiFi_integration_test_driver.py | 62 +-----
docker/test/integration/features/environment.py | 7 +-
docker/test/integration/features/s2s.feature | 78 +++++++-
docker/test/integration/features/steps/steps.py | 44 ++++-
docker/test/integration/features/utils.py | 2 +-
docker/test/integration/minifi/core/InputPort.py | 3 +
.../integration/minifi/core/RemoteProcessGroup.py | 4 +
.../Minifi_flow_json_serializer.py | 3 +-
.../Minifi_flow_yaml_serializer.py | 2 +-
.../integration/resources/python/CreateNothing.py | 1 +
extensions/aws/tests/S3TestsFixture.h | 8 +-
extensions/gps/CMakeLists.txt | 39 ----
extensions/gps/GetGPS.cpp | 135 -------------
extensions/gps/GetGPS.h | 90 ---------
extensions/gps/tests/CMakeLists.txt | 34 ----
extensions/gps/tests/GPSTests.cpp | 84 --------
extensions/python/ExecutePythonProcessor.h | 9 +
extensions/python/PythonCreator.h | 2 +-
extensions/python/PythonProcessor.cpp | 4 +
extensions/python/PythonProcessor.h | 2 +
.../pythonprocessors/nifiapi/processorbase.py | 3 +
.../python/pythonprocessors/nifiapi/properties.py | 3 +
extensions/python/tests/CMakeLists.txt | 1 +
extensions/python/tests/PythonManifestTests.cpp | 212 +++++++++++++++++----
extensions/python/types/PyProcessContext.cpp | 13 ++
extensions/python/types/PyProcessContext.h | 1 +
extensions/python/types/PyProcessor.cpp | 16 ++
extensions/python/types/PyProcessor.h | 1 +
.../sftp/tests/tools/sftp-test-server/pom.xml | 2 +-
fedora.sh | 2 -
libminifi/src/RemoteProcessorGroupPort.cpp | 1 +
libminifi/src/core/flow/FlowSchema.cpp | 2 +-
libminifi/test/libtest/unit/TestUtils.h | 12 ++
msi/WixWin.wsi.in | 2 +-
rheldistro.sh | 39 +---
suse.sh | 12 +-
64 files changed, 604 insertions(+), 741 deletions(-)
delete mode 100644 cmake/FindLibGPS.cmake
create mode 100755 docker/test/integration/convert_cert_to_jks.sh
delete mode 100644 extensions/gps/CMakeLists.txt
delete mode 100644 extensions/gps/GetGPS.cpp
delete mode 100644 extensions/gps/GetGPS.h
delete mode 100644 extensions/gps/tests/CMakeLists.txt
delete mode 100644 extensions/gps/tests/GPSTests.cpp