This is an automated email from the ASF dual-hosted git repository.
lordgamez pushed a change to branch MINIFICPP-2469
in repository https://gitbox.apache.org/repos/asf/nifi-minifi-cpp.git
discard edc6b2e30 Add extenstion docs and refactor docker tests
discard 6c5d6904e MINIFICPP-2469 Create GetCouchbaseKey processor
discard dccd6ab58 Update extensions in README.md
discard d6cd322c9 Refactor tests
discard b7278a98b Review update
discard 25a84f886 Add Document Type property
discard cda0f92f1 Refactor
discard d4e8f14d8 Remove connection state management
discard de840c331 Fix clang issue and revise temporary failures
discard e8f04615c Review update
discard 70d4d0a20 Handle temporary errors on connection initialization
discard 128604db3 MINIFICPP-2467 MINIFICPP-2468 PutCouchbaseKey processor and
controller
add 49e5b9370 MINIFICPP-2346-P1: Integrated Conan2 for OpenSSL, CURL, ZLIB
& Build MiNiFi
add ba91eb884 MINIFICPP-2378 Add support for parameters in controller
services
add 8ba39e475 MINIFICPP-2473 Add .clang-format to project
add 5529e8065 Revert "MINIFICPP-2378 Add support for parameters in
controller services"
add c96806180 MINIFICPP-2467 MINIFICPP-2468 PutCouchbaseKey processor and
controller
add fc809299a Handle temporary errors on connection initialization
add 281e3eed6 Review update
add c205a504d Fix clang issue and revise temporary failures
add a22a7a8fa Remove connection state management
add ee8f5e4a9 Refactor
add b31fff387 Add Document Type property
add 866f6daf9 Review update
add 5cf601df0 Refactor tests
add 7438e139d Update extensions in README.md
add 9dd8d0146 Fix test after rebase
add c1b5d14ab MINIFICPP-2469 Create GetCouchbaseKey processor
add 57f8862d4 Add extenstion docs and refactor docker tests
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 (edc6b2e30)
\
N -- N -- N refs/heads/MINIFICPP-2469 (57f8862d4)
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:
.clang-format | 54 +++++
CMakeLists.txt | 33 +--
CONAN.md | 137 ++++++++++++
README.md | 9 +
cmake/BuildTests.cmake | 3 +-
cmake/BundledOpenSSL.cmake | 1 +
cmake/BundledRocksDB.cmake | 6 +-
cmake/Bustache.cmake | 4 +-
cmake/{Coroutines.cmake => GetBZip2.cmake} | 13 +-
cmake/{Coroutines.cmake => GetCatch2.cmake} | 13 +-
cmake/{Coroutines.cmake => GetCivetWeb.cmake} | 12 +-
cmake/{Coroutines.cmake => GetFmt.cmake} | 12 +-
cmake/{Coroutines.cmake => GetLibCURL.cmake} | 13 +-
cmake/{Coroutines.cmake => GetLibXml2.cmake} | 13 +-
cmake/{Coroutines.cmake => GetOpenSSL.cmake} | 13 +-
cmake/{Coroutines.cmake => GetRocksDB.cmake} | 20 +-
cmake/{Coroutines.cmake => GetSpdlog.cmake} | 17 +-
cmake/{Coroutines.cmake => GetZLIB.cmake} | 13 +-
cmake/{Coroutines.cmake => GetZstd.cmake} | 13 +-
cmake/MiNiFiOptions.cmake | 41 +++-
cmake/Spdlog.cmake | 2 +-
conanfile.py | 90 ++++++++
etc/conan/profiles/release-linux | 12 +
extensions/civetweb/CMakeLists.txt | 2 +-
extensions/opc/CMakeLists.txt | 2 +-
extensions/rocksdb-repos/CMakeLists.txt | 9 +-
libminifi/CMakeLists.txt | 2 +-
libminifi/test/libtest/unit/CMakeLists.txt | 2 +-
libminifi/test/unit/LoggerTests.cpp | 6 +-
thirdparty/rocksdb/all/conandata.yml | 15 ++
thirdparty/rocksdb/all/conanfile.py | 243 +++++++++++++++++++++
thirdparty/rocksdb/{ => all/patches}/arm7.patch | 0
thirdparty/rocksdb/{ => all/patches}/cstdint.patch | 0
.../patches}/dboptions_equality_operator.patch | 0
thirdparty/rocksdb/config.yml | 3 +
35 files changed, 741 insertions(+), 87 deletions(-)
create mode 100644 .clang-format
create mode 100644 CONAN.md
copy cmake/{Coroutines.cmake => GetBZip2.cmake} (67%)
copy cmake/{Coroutines.cmake => GetCatch2.cmake} (67%)
copy cmake/{Coroutines.cmake => GetCivetWeb.cmake} (70%)
copy cmake/{Coroutines.cmake => GetFmt.cmake} (73%)
copy cmake/{Coroutines.cmake => GetLibCURL.cmake} (65%)
copy cmake/{Coroutines.cmake => GetLibXml2.cmake} (66%)
copy cmake/{Coroutines.cmake => GetOpenSSL.cmake} (66%)
copy cmake/{Coroutines.cmake => GetRocksDB.cmake} (54%)
copy cmake/{Coroutines.cmake => GetSpdlog.cmake} (66%)
copy cmake/{Coroutines.cmake => GetZLIB.cmake} (67%)
copy cmake/{Coroutines.cmake => GetZstd.cmake} (69%)
create mode 100644 conanfile.py
create mode 100644 etc/conan/profiles/release-linux
create mode 100644 thirdparty/rocksdb/all/conandata.yml
create mode 100644 thirdparty/rocksdb/all/conanfile.py
rename thirdparty/rocksdb/{ => all/patches}/arm7.patch (100%)
rename thirdparty/rocksdb/{ => all/patches}/cstdint.patch (100%)
rename thirdparty/rocksdb/{ => all/patches}/dboptions_equality_operator.patch
(100%)
create mode 100644 thirdparty/rocksdb/config.yml