This is an automated email from the ASF dual-hosted git repository.

martinzink pushed a change to branch minifi_rust_impr_2
in repository https://gitbox.apache.org/repos/asf/nifi-minifi-cpp.git


 discard 920c40659 build fix
 discard aff32a7a7 with_content changes
 discard 766d6ff80 apache license for with_attributes.rs
 discard d18b6fda1 wildcard for generate_docs
 discard 776490c80 tests for with_attribute(s)
 discard a81eea69a revert const PROPERTIES -> const fn properties()
 discard 462f86919 review changes
 discard af11ee664 add anyhow error support and fold parse errors into 
validation errors
 discard 0a3915e90 MINIFICPP-2886 Improve rust api process errors
     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

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   (920c40659)
            \
             N -- N -- N   refs/heads/minifi_rust_impr_2 (46eb9b846)

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 +-
 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 +
 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 +-
 43 files changed, 1932 insertions(+), 97 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