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 b81b27891 ruff format, ruff check --fix
 discard 1c47b2887 no public key should route to failure instead of rollback
 discard 1500641d9 refactor
 discard 7e045c2b7 minifi_pgp set version to 1.0.0
 discard 082e0edad update manifest
 discard e66c97509 MINIFICPP-2749 Add EncryptContentPGP and DecryptContentPGP
 discard 10f7b47da review changes
 discard a92115f8f add anyhow error support and fold parse errors into 
validation errors
 discard 535575bd0 MINIFICPP-2886 Improve rust api process errors
     add 776ba835e MINIFICPP-2883 Support host file copies in docker behave 
(#2238)
     add 89be46fe9 MINIFICPP-2849 Implement LMDB based content repository 
(#2201)
     add c392cf4f5 MINIFICPP-2871 Create conanfile for openssl-fips target 
(#2223)
     add 8e3172929 MINIFICPP-2873 Add option to run create release artifacts 
job with Conan (#2242)
     add 2fe292064 MINIFICPP-2886 Improve rust api process errors
     add 9b552e874 add anyhow error support and fold parse errors into 
validation errors
     add a06e4fcb7 review changes
     add 3e585bc19 revert const PROPERTIES -> const fn properties()
     add a41a111c7 tests for with_attribute(s)
     add 1fe3ffaff wildcard for generate_docs
     add 4b9c70d8b apache license for with_attributes.rs
     add ddb3a00e7 with_content changes
     add 46eb9b846 build fix
     add d765e376d MINIFICPP-2749 Add EncryptContentPGP and DecryptContentPGP
     add 1ba71262a update manifest
     add a4be6f91e minifi_pgp set version to 1.0.0
     add 775d95d2b refactor
     add 1a8edc11c no public key should route to failure instead of rollback
     add f8adceba5 ruff format, ruff check --fix
     add 39c2916ed 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   (b81b27891)
            \
             N -- N -- N   refs/heads/minifi_rust_pgp (39c2916ed)

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 +-
 .github/workflows/create-release-artifacts.yml     |  30 ++-
 CMakeLists.txt                                     |   5 +-
 CONFIGURE.md                                       |  16 +-
 .../minifi_behave/containers/container_linux.py    |  19 ++
 behave_framework/src/minifi_behave/core/hooks.py   |  46 ++++
 .../src/minifi_behave/steps/core_steps.py          |  17 ++
 .../src/minifi_behave/steps/flow_building_steps.py |  13 +
 bootstrap/cli.py                                   |   1 +
 bootstrap/minifi_option.py                         |   8 +-
 cmake/{GetAsio.cmake => GetLMDB.cmake}             |  12 +-
 cmake/GetOpenSSL.cmake                             |  50 +++-
 cmake/LMDB.cmake                                   |  46 ++++
 cmake/MiNiFiOptions.cmake                          |   2 +
 cmake/VerifyPackageWithDocker.cmake                |  12 +-
 conanfile.py                                       |   5 +
 conf/minifi.properties.in                          |   3 +
 core-framework/src/core/BufferedContentSession.cpp |   2 +-
 extensions/{elasticsearch => lmdb}/CMakeLists.txt  |  14 +-
 extensions/lmdb/LmdbContentRepository.cpp          | 299 +++++++++++++++++++++
 extensions/lmdb/LmdbContentRepository.h            |  92 +++++++
 extensions/lmdb/LmdbStream.cpp                     | 126 +++++++++
 .../StreamSlice.h => extensions/lmdb/LmdbStream.h  |  56 ++--
 .../{rocksdb-repos => lmdb}/tests/CMakeLists.txt   |  17 +-
 .../lmdb/tests/LmdbContentRepositoryTests.cpp      | 259 ++++++++++++++++++
 extensions/lmdb/tests/LmdbContentSessionTests.cpp  | 293 ++++++++++++++++++++
 extensions/lmdb/tests/LmdbStreamTests.cpp          | 289 ++++++++++++++++++++
 .../rocksdb-repos/DatabaseContentRepository.h      |   2 +-
 .../rocksdb-repos/tests/ContentSessionTests.cpp    |  10 +-
 .../tests/DBContentRepositoryTests.cpp             |  14 +-
 extensions/rocksdb-repos/tests/RepoTests.cpp       |   4 +-
 extensions/sql/tests/SQLTestPlan.h                 |   2 +-
 .../include/core/repository/FileSystemRepository.h |   2 +-
 libminifi/src/Configuration.cpp                    |   1 +
 libminifi/src/core/RepositoryFactory.cpp           |   2 +
 libminifi/test/libtest/unit/TestBase.h             |   1 +
 libminifi/test/unit/FileSystemRepositoryTests.cpp  |  12 +-
 minifi-api/include/minifi-cpp/core/StreamManager.h |   2 +-
 .../include/minifi-cpp/properties/Configuration.h  |   2 +
 .../decrypt_content/processor_definition.rs        |   8 +-
 .../encrypt_content/processor_definition.rs        |  15 +-
 .../minifi_rs_playground/features/environment.py   |  49 +---
 .../asciify_german/processor_definition.rs         |   4 +-
 .../src/processors/count_actual_logging.rs         |   5 +-
 .../src/processors/duplicate_text.rs               |   4 +-
 .../generate_flow_file/processor_definition.rs     |  17 +-
 .../processors/get_file/processor_definition.rs    |  27 +-
 .../kamikaze_processor/processor_definition.rs     |   9 +-
 .../log_attribute/processor_definition.rs          |  21 +-
 .../lorem_ipsum_cs_user/processor_definition.rs    |   7 +-
 .../processors/put_file/processor_definition.rs    |  35 ++-
 .../src/processors/zoo_processor.rs                |   8 +-
 minifi_rust/generate_docs/Dockerfile.generate_docs |   2 +-
 .../src/api/component_definition_traits.rs         |   3 +-
 .../src/api/processor_wrappers/flow_file_source.rs |  25 ++
 .../flow_file_stream_transform.rs                  |  25 ++
 .../api/processor_wrappers/flow_file_transform.rs  |  31 ++-
 .../processor_wrappers/utils/with_attributes.rs    |  17 ++
 .../src/c_ffi/c_ffi_processor_definition.rs        |   2 +-
 thirdparty/{llamacpp => lmdb}/all/conandata.yml    |  12 +-
 thirdparty/lmdb/all/conanfile.py                   |  97 +++++++
 thirdparty/lmdb/all/patches/add-cmake-file.patch   |  23 ++
 .../lmdb/all/patches/fix-windows-symbols.patch     | 112 ++++++++
 thirdparty/{llamacpp => lmdb}/config.yml           |   2 +-
 .../{jolt-tests => openssl-fips}/all/conandata.yml |   6 +-
 thirdparty/openssl-fips/all/conanfile.py           |  75 ++++++
 thirdparty/{jolt-tests => openssl-fips}/config.yml |   2 +-
 67 files changed, 2188 insertions(+), 250 deletions(-)
 copy cmake/{GetAsio.cmake => GetLMDB.cmake} (77%)
 create mode 100644 cmake/LMDB.cmake
 copy extensions/{elasticsearch => lmdb}/CMakeLists.txt (64%)
 create mode 100644 extensions/lmdb/LmdbContentRepository.cpp
 create mode 100644 extensions/lmdb/LmdbContentRepository.h
 create mode 100644 extensions/lmdb/LmdbStream.cpp
 copy core-framework/include/io/StreamSlice.h => extensions/lmdb/LmdbStream.h 
(51%)
 copy extensions/{rocksdb-repos => lmdb}/tests/CMakeLists.txt (71%)
 create mode 100644 extensions/lmdb/tests/LmdbContentRepositoryTests.cpp
 create mode 100644 extensions/lmdb/tests/LmdbContentSessionTests.cpp
 create mode 100644 extensions/lmdb/tests/LmdbStreamTests.cpp
 copy thirdparty/{llamacpp => lmdb}/all/conandata.yml (72%)
 create mode 100644 thirdparty/lmdb/all/conanfile.py
 create mode 100644 thirdparty/lmdb/all/patches/add-cmake-file.patch
 create mode 100644 thirdparty/lmdb/all/patches/fix-windows-symbols.patch
 copy thirdparty/{llamacpp => lmdb}/config.yml (98%)
 copy thirdparty/{jolt-tests => openssl-fips}/all/conandata.yml (80%)
 create mode 100644 thirdparty/openssl-fips/all/conanfile.py
 copy thirdparty/{jolt-tests => openssl-fips}/config.yml (98%)

Reply via email to