This is an automated email from the ASF dual-hosted git repository.
martinzink pushed a change to branch ruff_2
in repository https://gitbox.apache.org/repos/asf/nifi-minifi-cpp.git
omit 1c0ed816f rebase
omit 771b20d35 fixes
omit 9afefed59 rebase fixes
omit 2b3aecdc9 copilot review
omit a9cafb3dd extend-exclude
omit c96b9e65b rebase fix
omit 18462e57b update minimum python to 3.10
omit 69f6f86ba documentation changes
omit 967376988 the remaining non-auto fixes
omit fea3c5760 ruff check --fix
omit 1d84671a5 setting ruff rules
omit 2fbfed4f1 ruff format
add 894ba4d1e MINIFICPP-2861 Add Conan support for docker and clang CI
builds (#2216)
add a6d147bbb MINIFICPP-2877 Clean up memcheck (#2243)
add dfba4edfb MINIFICPP-2866 Add Conan support for SOCI and iODBC
libraries (#2218)
add 481e7ede5 setting ruff rules
add 169a4fad1 ruff format
add 7882ea77e ruff check --fix
add 3c8ed0b76 the remaining non-auto fixes
add 89365cda2 documentation changes
add 692ac30f1 update minimum python to 3.10
add 1f8c2b18b rebase fix
add c12fd3d33 extend-exclude
add 36dab23bd copilot review
add d3c87776e rebase fixes
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 (1c0ed816f)
\
N -- N -- N refs/heads/ruff_2 (d3c87776e)
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:
.dockerignore | 1 +
.github/workflows/ci.yml | 16 +-
.github/workflows/memcheck_ci.yml | 19 +++
CMakeLists.txt | 1 +
bootstrap/cli.py | 29 ++++
bootstrap/main.py | 16 +-
bootstrap/minifi_option.py | 1 +
bootstrap/package_manager.py | 24 +++
cmake/BundledIodbc.cmake | 56 +++++++
cmake/DockerConfig.cmake | 30 ++--
cmake/{GetAsio.cmake => GetIODBC.cmake} | 12 +-
cmake/{GetSpdlog.cmake => GetSOCI.cmake} | 24 ++-
cmake/MiNiFiOptions.cmake | 11 +-
cmake/PahoMqttC.cmake | 2 +-
cmake/Soci.cmake | 47 ++++++
cmake/valgrind.supp | 121 ++++++++++++++
conanfile.py | 20 ++-
docker/DockerBuild.sh | 18 ++-
docker/Dockerfile | 28 +++-
docker/rockylinux/Dockerfile | 26 ++-
.../config.yml => docker/settings_user.yml | 6 +-
extensions/opc/include/opc.h | 2 +-
extensions/opc/src/opc.cpp | 39 +++--
extensions/opc/tests/PutOpcProcessorTests.cpp | 5 +
extensions/sql/CMakeLists.txt | 152 +----------------
thirdparty/google-styleguide/cpplint.py | 3 +
.../{google-cloud-cpp => iodbc}/all/conandata.yml | 12 +-
thirdparty/{ossp-uuid => iodbc}/all/conanfile.py | 61 +++----
.../GCC-15-needs-typedef-SQLRETURN-HPROC.patch | 0
thirdparty/{magic-enum => iodbc}/config.yml | 2 +-
thirdparty/paho-mqtt/all/conandata.yml | 7 +
thirdparty/paho-mqtt/all/conanfile.py | 171 ++++++++++++++++++++
.../{ => all/patches}/cmake-openssl.patch | 0
thirdparty/{grpc => paho-mqtt}/config.yml | 2 +-
thirdparty/rocksdb/all/conanfile.py | 87 +++-------
.../{google-cloud-cpp => soci}/all/conandata.yml | 15 +-
thirdparty/soci/all/conanfile.py | 180 +++++++++++++++++++++
.../all/patches/disable-sqlwchar-support.patch | 31 ++++
.../odbc-get-parameter-name-bounds-safe.patch | 17 ++
thirdparty/{magic-enum => soci}/config.yml | 2 +-
thirdparty/soci/sqlite3-path.patch | 36 -----
41 files changed, 961 insertions(+), 371 deletions(-)
create mode 100644 cmake/BundledIodbc.cmake
copy cmake/{GetAsio.cmake => GetIODBC.cmake} (76%)
copy cmake/{GetSpdlog.cmake => GetSOCI.cmake} (66%)
create mode 100644 cmake/Soci.cmake
create mode 100644 cmake/valgrind.supp
copy thirdparty/couchbase/config.yml => docker/settings_user.yml (94%)
mode change 100755 => 100644 thirdparty/google-styleguide/cpplint.py
copy thirdparty/{google-cloud-cpp => iodbc}/all/conandata.yml (72%)
copy thirdparty/{ossp-uuid => iodbc}/all/conanfile.py (56%)
rename thirdparty/{iODBC =>
iodbc/all/patches}/GCC-15-needs-typedef-SQLRETURN-HPROC.patch (100%)
copy thirdparty/{magic-enum => iodbc}/config.yml (98%)
create mode 100644 thirdparty/paho-mqtt/all/conandata.yml
create mode 100644 thirdparty/paho-mqtt/all/conanfile.py
rename thirdparty/paho-mqtt/{ => all/patches}/cmake-openssl.patch (100%)
copy thirdparty/{grpc => paho-mqtt}/config.yml (98%)
copy thirdparty/{google-cloud-cpp => soci}/all/conandata.yml (60%)
create mode 100644 thirdparty/soci/all/conanfile.py
create mode 100644 thirdparty/soci/all/patches/disable-sqlwchar-support.patch
create mode 100644
thirdparty/soci/all/patches/odbc-get-parameter-name-bounds-safe.patch
copy thirdparty/{magic-enum => soci}/config.yml (98%)
delete mode 100644 thirdparty/soci/sqlite3-path.patch