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

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


    omit 4efd1d61b MINIFICPP-2687 Move Python extension docker tests to modular 
docker tests
    omit ff1088c68 MINIFICPP-2688 Move site-to-site tests to modular docker 
tests
    omit 09575740c MINIFICPP-2709 Fix site to site receive using HTTP protocol
    omit fed598885 MINIFICPP-2686 Move Prometheus tests to modular docker tests
    omit 2a53e5159 MINIFICPP-2685 Move MQTT tests to modular docker tests
    omit 7037f68c0 MINIFICPP-2683 Move C2 docker tests to modular docker tests
     add 94a8480ac MINIFICPP-2703 Update GCP extension to use unified 
credentials
     add 18380fc7d MINIFICPP-2707 Catch exceptions during C2 Start/Stop commands
     add 9187c2efd MINIFICPP-2709 Fix site to site receive using HTTP protocol
     add 961f352f0 MINIFICPP-2713 curl: upgrade to 8.18.0
     add 3b9711e69 MINIFICPP-2720 Overwrite agent_version.cpp instead of 
appending
     add 2ac1f1b86 MINIFICPP-2721 Fix rocky linux docker image name retrieval 
in CI
     add d24d32400 MINIFICPP-2683 Move C2 docker tests to modular docker tests
     add e730451c9 MINIFICPP-2685 Move MQTT tests to modular docker tests
     add ebc89c186 MINIFICPP-2256 Remove LoggerConfiguration::newInstance
     add 3b1334649 MINIFICPP-2722 C API enum explicit type
     add 3190ca615 MINIFICPP-2724 Add MinifiStatus return type to C api 
function that might fail
     add ad6400339 MINIFICPP-2686 Move Prometheus tests to modular docker tests
     add 8a50f63bd Review update
     add 883ad84c0 Review update
     add a4391a6c0 Fix after rebase
     add 9932821b7 MINIFICPP-2688 Move site-to-site tests to modular docker 
tests
     add 59277ad78 Review update
     add 155f21e5c MINIFICPP-2687 Move Python extension docker tests to modular 
docker tests
     add 7f681bbcd Review update

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   (4efd1d61b)
            \
             N -- N -- N   refs/heads/MINIFICPP-2687 (7f681bbcd)

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                           |  2 +-
 .../minifi_test_framework/containers/container.py  |  5 +-
 .../containers/minifi_container.py                 | 39 ++--------
 .../minifi_test_framework/steps/checking_steps.py  |  8 ---
 .../steps/configuration_steps.py                   | 23 +-----
 .../src/minifi_test_framework/steps/core_steps.py  | 32 +++------
 cmake/BundledLibcURL.cmake                         |  8 ++-
 cmake/GoogleCloudCpp.cmake                         |  4 +-
 core-framework/include/http/HTTPStream.h           |  6 ++
 .../include/api/core/ProcessContext.h              |  2 -
 .../include/api/utils/ProcessorConfigUtils.h       | 24 +++----
 .../cpp-extension-lib/src/core/ProcessContext.cpp  | 10 ---
 .../cpp-extension-lib/src/core/ProcessSession.cpp  | 22 ++++--
 .../include/utils/ProcessorConfigUtils.h           | 24 +++----
 .../azure/tests/FetchAzureDataLakeStorageTests.cpp |  2 +-
 .../GCPCredentialsControllerService.cpp            | 37 +++-------
 .../GCPCredentialsControllerService.h              |  9 ++-
 extensions/gcp/processors/GCSProcessor.cpp         | 14 ++--
 extensions/gcp/processors/GCSProcessor.h           |  6 +-
 .../tests/GCPCredentialsControllerServiceTests.cpp | 17 +++--
 .../llamacpp/tests/RunLlamaCppInferenceTests.cpp   |  4 +-
 extensions/mqtt/tests/ConsumeMQTTTests.cpp         |  4 +-
 extensions/mqtt/tests/PublishMQTTTests.cpp         |  2 +-
 extensions/mqtt/tests/features/mqtt.feature        | 14 ++--
 .../tests/features/steps/mqtt_broker_container.py  |  2 +-
 .../tests/features/resources/prometheus_checker.py |  8 +--
 .../tests/features/steps/prometheus_container.py   |  4 +-
 .../prometheus/tests/features/steps/steps.py       | 22 +++++-
 extensions/python/tests/features/python.feature    |  1 +
 .../features/steps}/minifi_c2_server_container.py  |  0
 .../resources/minifi-c2-server/authorizations.yaml |  0
 .../resources/minifi-c2-server/c2.properties       |  0
 .../steps}/resources/minifi-c2-server/config.yml   |  0
 .../tests/features/steps/steps.py                  | 54 +++++++++++++-
 .../tests/unit/SegmentContentTests.cpp             |  4 +-
 .../tests/unit/SplitContentTests.cpp               |  2 +-
 .../tests/unit/SplitTextTests.cpp                  |  2 +-
 generateVersion.bat                                |  2 +-
 .../include/core/logging/LoggerConfiguration.h     |  9 +--
 libminifi/include/sitetosite/SiteToSiteClient.h    |  4 +-
 libminifi/src/c2/C2Agent.cpp                       | 26 ++++---
 libminifi/src/minifi-c.cpp                         | 31 ++++----
 libminifi/src/sitetosite/HttpSiteToSiteClient.cpp  |  4 +-
 libminifi/test/libtest/unit/TestBase.cpp           |  7 +-
 libminifi/test/unit/LoggerTests.cpp                | 84 +++++++++++-----------
 minifi-api/include/minifi-c/minifi-c.h             | 15 ++--
 minifi-api/minifi-c-api.def                        |  1 -
 thirdparty/curl/module-path.patch                  | 17 +++--
 48 files changed, 312 insertions(+), 305 deletions(-)
 rename {behave_framework/src/minifi_test_framework/containers => 
extensions/standard-processors/tests/features/steps}/minifi_c2_server_container.py
 (100%)
 rename {behave_framework/src/minifi_test_framework/containers => 
extensions/standard-processors/tests/features/steps}/resources/minifi-c2-server/authorizations.yaml
 (100%)
 rename {behave_framework/src/minifi_test_framework/containers => 
extensions/standard-processors/tests/features/steps}/resources/minifi-c2-server/c2.properties
 (100%)
 rename {behave_framework/src/minifi_test_framework/containers => 
extensions/standard-processors/tests/features/steps}/resources/minifi-c2-server/config.yml
 (100%)

Reply via email to