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

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


    omit 2b489d6e1 K -> P in Property context 2
    omit c7b0ed09b K -> P in Property context
    omit f7fddb476 review change + small improvement in build.rs
    omit fdc8bf61b is_required: K::IS_REQUIRED
    omit 96eecad11 cargo fmt
    omit 2af66cf93 fix
    omit 614f750b3 manifest update
    omit 4f22e3bfe rebase NUMBER_VALIDATOR
    omit 3ceb9f089 win fix
    omit 04bef4b10 property rework
    omit 7862f00f3 MINIFICPP-2869 Improve rust api property validation and 
property getters
     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 48eedde6d MINIFICPP-2878 PRs from apache should not double run CI 
(#2248)
     add afc5c0744 MINIFICPP-2869 Improve rust api property validation and 
property getters
     add 786b6a2a1 property rework
     add 9dda01cab win fix
     add 72389ffed rebase NUMBER_VALIDATOR
     add c44eb1c94 manifest update
     add 56a694ddb fix
     add cd85d2bd5 cargo fmt
     add d52fcd261 is_required: K::IS_REQUIRED
     add 60d8d5ffe review change + small improvement in build.rs
     add b82dfb753 K -> P in Property context
     add f4637dcca K -> P in Property context 2

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   (2b489d6e1)
            \
             N -- N -- N   refs/heads/minifi_rust_impr (f4637dcca)

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                           |  46 +++++-
 .github/workflows/memcheck_ci.yml                  |  19 +++
 CMakeLists.txt                                     |   1 +
 bootstrap/cli.py                                   |  26 ++-
 bootstrap/main.py                                  |   7 +-
 bootstrap/minifi_option.py                         |   2 +-
 bootstrap/package_manager.py                       |  21 +++
 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                                       |  22 ++-
 docker/DockerBuild.sh                              |  18 ++-
 docker/Dockerfile                                  |  28 +++-
 docker/rockylinux/Dockerfile                       |  25 ++-
 .../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 +----------------
 .../{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 +-
 .../{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 -----
 39 files changed, 951 insertions(+), 308 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%)
 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

Reply via email to