This is an automated email from the ASF dual-hosted git repository.
martinzink pushed a change to branch MINIFICPP-2311
in repository https://gitbox.apache.org/repos/asf/nifi-minifi-cpp.git
discard 91bbdf008 MINIFICPP-2311 Initial support for recordset readers and
writers
add df42dd374 MINIFICPP-2339 Fix sccache path in CI workflow
add ce2163403 MINIFICPP-2333 Don't register example python processors
add cd35edd01 MINIFICPP-2334 win: smb and loki extensions on by default
add cb944b192 MINIFICPP-2332 Fix data size conversion in NiFi python
processors
add 58518e434 MINIFICPP-2330 Copy the python examples from the source into
the msi
add 68ff1f8c0 MINIFICPP-2337 Fix OpenSSL toggle in bootstrap.sh
add 1198ba74a MINIFICPP-1886 - Enable msi upgrade
add 4248c5cd3 MINIFICPP-2344 Update version number to 0.99.0
add 8d7c6c56a MINIFICPP-2355 Fix build if CMAKE_BUILD_TYPE is undefined
add 2b531b86c MINIFICPP-2311 Initial support for recordset readers and
writers
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 (91bbdf008)
\
N -- N -- N refs/heads/MINIFICPP-2311 (2b531b86c)
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 | 2 +-
CMakeLists.txt | 30 +++++--
README.md | 4 +-
bootstrap.sh | 5 +-
docker/test/integration/cluster/ContainerStore.py | 3 +
.../test/integration/cluster/DockerTestCluster.py | 3 +
docker/test/integration/cluster/ImageStore.py | 14 ++-
.../cluster/containers/MinifiContainer.py | 3 +
.../features/MiNiFi_integration_test_driver.py | 3 +
docker/test/integration/features/python.feature | 23 ++++-
docker/test/integration/features/steps/steps.py | 5 ++
...gForwarder.py => SpecialPropertyTypeChecker.py} | 7 +-
.../resources/python/SpecialPropertyTypeChecker.py | 99 ++++++++++++++++++++++
examples/azure_storage_config.nifi.schema.json | 4 +-
examples/consumejournald_config.nifi.schema.json | 4 +-
examples/http_post_config.nifi.schema.json | 8 +-
examples/lists3_fetchs3_config.nifi.schema.json | 10 +--
examples/querydbtable_config.nifi.schema.json | 8 +-
examples/site_to_site_config.nifi.schema.json | 2 +-
extensions/python/CMakeLists.txt | 17 +++-
.../AddPythonAttribute.py | 0
.../CountingProcessor.py | 0
.../GaussianDistributionWithNumpy.py | 0
.../MoveContentToJson.py | 0
.../RemoveFlowFile.py | 0
.../SentimentAnalysis.py | 0
.../python/pythonprocessors/nifiapi/properties.py | 12 +--
libminifi/CMakeLists.txt | 2 +-
msi/WixWin.wsi.in | 46 +++++-----
29 files changed, 248 insertions(+), 66 deletions(-)
copy docker/test/integration/minifi/processors/{RotatingForwarder.py =>
SpecialPropertyTypeChecker.py} (84%)
create mode 100644
docker/test/integration/resources/python/SpecialPropertyTypeChecker.py
rename extensions/python/{pythonprocessors/examples =>
pythonprocessor-examples}/AddPythonAttribute.py (100%)
rename extensions/python/{pythonprocessors/examples =>
pythonprocessor-examples}/CountingProcessor.py (100%)
rename extensions/python/{pythonprocessors/examples =>
pythonprocessor-examples}/GaussianDistributionWithNumpy.py (100%)
rename extensions/python/{pythonprocessors/examples =>
pythonprocessor-examples}/MoveContentToJson.py (100%)
rename extensions/python/{pythonprocessors/examples =>
pythonprocessor-examples}/RemoveFlowFile.py (100%)
rename extensions/python/{pythonprocessors/examples =>
pythonprocessor-examples}/SentimentAnalysis.py (100%)