This is an automated email from the ASF dual-hosted git repository.
lordgamez pushed a change to branch MINIFICPP-2567
in repository https://gitbox.apache.org/repos/asf/nifi-minifi-cpp.git
omit cacb29e47 update README.md compiler support
omit ce8c76de3 add explanation for thirdparty/coachbase/c++23_fixes.patch
omit 9253ac2c6 MINIFICPP-2567 C++23 Support
add 6bf869e3f MINIFICPP-2567 C++23 Support
add 404e95021 add explanation for thirdparty/coachbase/c++23_fixes.patch
add 629231e11 update README.md compiler support
add 976891dad rebase fix
add e22e8555f add clang20 support
add 83c0277b2 add gcc15 support
add 94324e0c5 do not upgrade Couchbase and fmtlib versions on Windows
add d7f069731 clang-tidy fixes
add e2b5e97fd fix
add 0f79afd89 NetUtilsTest fix
add d2f8749b4 Update libminifi/test/unit/ExpectedTest.cpp
add 256abadfd Update .github/workflows/compiler-support.yml
add a2d5ef907 Update cmake/ExpectedLite.cmake
add 05314ac3f remove -Wno-error=restrict
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 (cacb29e47)
\
N -- N -- N refs/heads/MINIFICPP-2567 (05314ac3f)
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-tidy | 57 +++++++++-
.dockerignore | 2 +
.github/workflows/ci.yml | 18 +--
.github/workflows/compiler-support.yml | 51 +++++++++
.github/workflows/verify-package.yml | 1 +
CMakeLists.txt | 8 +-
README.md | 4 +-
bootstrap/system_dependency.py | 2 +-
cmake/Abseil.cmake | 1 +
cmake/ArgParse.cmake | 1 +
cmake/Asio.cmake | 3 +-
cmake/AzureSdkCpp.cmake | 58 ++++++++++
cmake/BundledAwsSdkCpp.cmake | 4 +-
cmake/BundledAzureSdkCpp.cmake | 125 ---------------------
cmake/BundledOpen62541.cmake | 3 +-
cmake/Bustache.cmake | 7 +-
cmake/Catch2.cmake | 5 +-
cmake/CivetWeb.cmake | 1 +
cmake/Couchbase.cmake | 5 +-
cmake/{Couchbase.cmake => Couchbase_1_0_2.cmake} | 8 +-
cmake/Crc32c.cmake | 1 +
cmake/Date.cmake | 2 +
cmake/ExpectedLite.cmake | 8 +-
cmake/FetchBenchmark.cmake | 1 +
cmake/FetchUvc.cmake | 1 +
cmake/Fetchlibrdkafka.cmake | 1 +
cmake/{GetFmt.cmake => GetFmt_11_0_2.cmake} | 8 +-
cmake/GetSpdlog.cmake | 9 +-
cmake/GoogleCloudCpp.cmake | 8 +-
cmake/Grpc.cmake | 1 +
cmake/GslLite.cmake | 1 +
cmake/JoltTests.cmake | 1 +
cmake/JsonSchemaValidator.cmake | 3 +-
cmake/KubernetesClientC.cmake | 3 +
cmake/LZ4.cmake | 1 +
cmake/LibLZMA.cmake | 3 +-
cmake/LlamaCpp.cmake | 10 +-
cmake/Lua.cmake | 1 +
cmake/MagicEnum.cmake | 3 +-
cmake/MiMalloc.cmake | 1 +
cmake/PahoMqttC.cmake | 15 ++-
cmake/Prometheus.cmake | 1 +
cmake/RangeV3.cmake | 6 +
cmake/RpMalloc.cmake | 1 +
cmake/Sol2.cmake | 36 ++----
cmake/Spdlog.cmake | 7 +-
cmake/Zstd.cmake | 1 +
cmake/fmt.cmake | 5 +-
cmake/{fmt.cmake => fmt_11_0_2.cmake} | 1 +
docker/centos/Dockerfile | 67 -----------
docker/compiler-test/clang.Dockerfile | 22 ++++
docker/compiler-test/gcc.Dockerfile | 18 +++
extensions/azure/CMakeLists.txt | 5 +-
extensions/couchbase/CMakeLists.txt | 7 +-
extensions/expression-language/CMakeLists.txt | 1 +
extensions/gcp/CMakeLists.txt | 3 +
extensions/gcp/tests/CMakeLists.txt | 8 +-
extensions/sql/CMakeLists.txt | 2 +
extensions/sql/processors/ExecuteSQL.cpp | 3 +-
.../controllers/JsonRecordSetWriter.cpp | 8 +-
.../src/core/flow/StructuredConfiguration.cpp | 6 +-
libminifi/test/unit/ExpectedTest.cpp | 16 ++-
libminifi/test/unit/NetUtilsTest.cpp | 8 +-
minifi-api/include/minifi-cpp/utils/Literals.h | 22 ++--
run_clang_tidy.sh | 2 +-
.../fix-deprecated-literal-operator.patch | 31 +++++
thirdparty/azure-sdk-cpp/gcc13.patch | 44 --------
thirdparty/azure-sdk-cpp/remove-amqp.patch | 32 +++++-
thirdparty/azure-sdk-cpp/wil.patch | 12 ++
.../bustache/fix-deprecated-literal-operator.patch | 19 ++++
...rdparty.patch => remove-thirdparty-1.0.2.patch} | 0
thirdparty/couchbase/remove-thirdparty.patch | 123 +++++++++++++++-----
.../GCC-15-needs-typedef-SQLRETURN-HPROC.patch | 25 +++++
thirdparty/llamacpp/cpp-23-fixes.patch | 24 ++++
.../1576-Changed-bool-typedef-to-bit.patch | 96 ++++++++++++++++
thirdparty/ranges-v3/remove-deprecated.patch | 27 +++++
utils/src/utils/net/DNS.cpp | 2 +-
77 files changed, 751 insertions(+), 386 deletions(-)
create mode 100644 .github/workflows/compiler-support.yml
create mode 100644 cmake/AzureSdkCpp.cmake
delete mode 100644 cmake/BundledAzureSdkCpp.cmake
copy cmake/{Couchbase.cmake => Couchbase_1_0_2.cmake} (88%)
copy cmake/{GetFmt.cmake => GetFmt_11_0_2.cmake} (86%)
copy cmake/{fmt.cmake => fmt_11_0_2.cmake} (98%)
delete mode 100644 docker/centos/Dockerfile
create mode 100644 docker/compiler-test/clang.Dockerfile
create mode 100644 docker/compiler-test/gcc.Dockerfile
create mode 100644 thirdparty/aws-sdk-cpp/fix-deprecated-literal-operator.patch
delete mode 100644 thirdparty/azure-sdk-cpp/gcc13.patch
create mode 100644 thirdparty/azure-sdk-cpp/wil.patch
create mode 100644 thirdparty/bustache/fix-deprecated-literal-operator.patch
copy thirdparty/couchbase/{remove-thirdparty.patch =>
remove-thirdparty-1.0.2.patch} (100%)
create mode 100644 thirdparty/iODBC/GCC-15-needs-typedef-SQLRETURN-HPROC.patch
create mode 100644 thirdparty/llamacpp/cpp-23-fixes.patch
create mode 100644 thirdparty/paho-mqtt/1576-Changed-bool-typedef-to-bit.patch
create mode 100644 thirdparty/ranges-v3/remove-deprecated.patch