This is an automated email from the ASF dual-hosted git repository.
martinzink pushed a change to branch minifi_rust_pgp
in repository https://gitbox.apache.org/repos/asf/nifi-minifi-cpp.git
discard ec38f7e38 cargo fmt
discard be86f83d3 rebase
discard 49ecbf341 MINIFICPP-2749 Add EncryptContentPGP and DecryptContentPGP
discard 18547e8e0 property rework
discard 9aba852c8 MINIFICPP-2869 Improve rust api property validation and
property getters
add 2f7ce29bc MINIFICPP-2862 Add StandardValidator::NUMBER_VALIDATOR
(#2232)
add ac48ad190 MINIFICPP-2869 Improve rust api property validation and
property getters
add cd1f52788 property rework
add 11962ac64 win fix
add 00bd3f375 rebase NUMBER_VALIDATOR
add ff08c36c7 manifest update
add de1851816 fix
add 48c934876 cargo fmt
add 38db2803a MINIFICPP-2749 Add EncryptContentPGP and DecryptContentPGP
add 830143dca rebase
add e7e0d11ce cargo fmt
add 5439b837b rebase
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 (ec38f7e38)
\
N -- N -- N refs/heads/minifi_rust_pgp (5439b837b)
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:
.../ubuntu_22_04_clang_arm_manifest.json | 25 +-
core-framework/common/include/utils/ParsingUtils.h | 21 +-
core-framework/common/src/utils/ParsingUtils.cpp | 8 -
.../include/api/utils/ProcessorConfigUtils.h | 2 +-
.../cpp-extension-lib/src/utils/minifi-c-utils.cpp | 3 +
.../include/utils/ProcessorConfigUtils.h | 14 +-
.../llamacpp/processors/RunLlamaCppInference.h | 1 +
.../llamacpp/tests/RunLlamaCppInferenceTests.cpp | 4 -
extensions/python/ExecutePythonProcessor.cpp | 5 +-
.../python/pythonprocessors/nifiapi/properties.py | 6 +
libminifi/src/minifi-api.cpp | 1 +
libminifi/test/unit/PropertyValidationTests.cpp | 12 +
.../include/minifi-cpp/core/PropertyValidator.h | 80 ++++---
minifi-api/include/minifi-api.h | 1 +
.../src/controller_services/private_key_service.rs | 222 +++++++++++++++++-
.../controller_service_definition.rs | 21 +-
.../private_key_service/properties.rs | 18 --
.../private_key_service/tests.rs | 214 -----------------
.../src/controller_services/public_key_service.rs | 248 +++++++++++++++++++-
.../controller_service_definition.rs | 17 +-
.../public_key_service/properties.rs | 14 --
.../public_key_service/tests.rs | 245 --------------------
.../minifi_pgp/src/processors/decrypt_content.rs | 253 ++++++++++++++++++++-
.../decrypt_content/output_attributes.rs | 11 -
.../decrypt_content/processor_definition.rs | 61 +++--
.../src/processors/decrypt_content/properties.rs | 17 --
.../processors/decrypt_content/relationships.rs | 9 -
.../src/processors/decrypt_content/tests.rs | 244 --------------------
.../minifi_pgp/src/processors/encrypt_content.rs | 185 ++++++++++++---
.../encrypt_content/output_attributes.rs | 7 -
.../encrypt_content/processor_definition.rs | 54 ++++-
.../src/processors/encrypt_content/properties.rs | 22 --
.../processors/encrypt_content/relationships.rs | 11 -
.../src/processors/encrypt_content/tests.rs | 138 -----------
.../minifi_rs_playground/minifi_rs_playground.md | 1 +
.../src/processors/put_file/unix_permissions.rs | 10 +-
minifi_rust/minifi_native/src/api/property.rs | 10 +-
.../minifi_native/src/c_ffi/c_ffi_property.rs | 5 +-
minifi_rust/minifi_native_sys/build.rs | 3 +-
39 files changed, 1132 insertions(+), 1091 deletions(-)
delete mode 100644
minifi_rust/extensions/minifi_pgp/src/controller_services/private_key_service/properties.rs
delete mode 100644
minifi_rust/extensions/minifi_pgp/src/controller_services/private_key_service/tests.rs
delete mode 100644
minifi_rust/extensions/minifi_pgp/src/controller_services/public_key_service/properties.rs
delete mode 100644
minifi_rust/extensions/minifi_pgp/src/controller_services/public_key_service/tests.rs
delete mode 100644
minifi_rust/extensions/minifi_pgp/src/processors/encrypt_content/output_attributes.rs
delete mode 100644
minifi_rust/extensions/minifi_pgp/src/processors/encrypt_content/properties.rs
delete mode 100644
minifi_rust/extensions/minifi_pgp/src/processors/encrypt_content/relationships.rs
delete mode 100644
minifi_rust/extensions/minifi_pgp/src/processors/encrypt_content/tests.rs