You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@nifi.apache.org by sz...@apache.org on 2021/06/02 13:41:59 UTC

[nifi-minifi-cpp] branch MINIFICPP-1507 updated (09f9d38 -> 3cea8d5)

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

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


    omit 09f9d38  fix PutS3Object error
    omit 47358cb  review feedback
    omit 09ce788  MINIFICPP-1507 convert InputStream::read to size_t (squashed)
     add d3b149c  MINIFICPP-1565 - Minor improvements to PerformanceDataMonitor
     add ff31971  MINIFICPP-1559 Add new redistributable file to the msi in VS2019 builds
     add 88deb7a  MINIFICPP-1575 - Make linter creation configurable
     add 4f63efc  MINIFICPP-1574 Update the version number to 0.10.0
     add fd0914a  MINIFICPP-1562 Use CLCACHE_NODIRECT option to avoid clcache failures
     add f083adc  MINIFICPP-1569 Readd test running in Windows builds
     add c0059a1  MINIFICPP-1572 Fix -Wmaybe-uninitialized warnings
     add 2e0ce6a  MINIFICPP-1570 fix Azure SDK transient cmake patch failure by making patch command idempotent
     add 91f6359  MINIFICPP-1571 nanofi: fix strncpy warnings
     add 34603d0  MINIFICPP-987 Improve error handling in GetFile
     add af79a4a  MINIFICPP-1507 convert InputStream::read to size_t (squashed)
     add d49b02c  review feedback
     add a8f6e2d  fix PutS3Object error
     add 3cea8d5  CompressContent/archive_read: restore archive_set_error call

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   (09f9d38)
            \
             N -- N -- N   refs/heads/MINIFICPP-1507 (3cea8d5)

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                           |   6 +-
 CMakeLists.txt                                     |  21 ++--
 PROCESSORS.md                                      | 103 ++++++++++++++++
 README.md                                          |  10 +-
 Windows.md                                         |   6 +-
 cmake/BundledAzureSdkCpp.cmake                     |   3 +-
 cmake/Extensions.cmake                             |  10 +-
 conf/minifi.properties                             |   2 +-
 extensions/http-curl/protocols/RESTSender.cpp      |   1 -
 extensions/libarchive/CompressContent.h            |   7 +-
 extensions/librdkafka/tests/ConsumeKafkaTests.cpp  |   2 +-
 extensions/pdh/PDHCounters.cpp                     |  12 +-
 extensions/pdh/PerformanceDataMonitor.cpp          | 100 +++++++++++++---
 extensions/pdh/PerformanceDataMonitor.h            |  14 ++-
 .../pdh/tests/PerformanceDataMonitorTests.cpp      |  23 +++-
 .../standard-processors/processors/GetFile.cpp     | 129 ++++++++++-----------
 .../standard-processors/processors/GetFile.h       |  27 ++---
 .../tests/unit/GetFileTests.cpp                    | 100 +++++++++++-----
 libminifi/CMakeLists.txt                           |   2 +-
 libminifi/include/c2/PayloadSerializer.h           |  16 ++-
 libminifi/include/utils/FileOutputCallback.h       |  76 ------------
 .../utils/{JsonCallback.h => FileReaderCallback.h} |  33 +++---
 libminifi/include/utils/JsonCallback.h             |  25 +++-
 libminifi/src/utils/FileOutputCallback.cpp         |  61 ----------
 libminifi/src/utils/FileReaderCallback.cpp         |  72 ++++++++++++
 msi/WixWin.wsi                                     |  49 ++++----
 nanofi/src/api/ecu.c                               |  10 +-
 win_build_vs.bat                                   |  12 +-
 28 files changed, 554 insertions(+), 378 deletions(-)
 delete mode 100644 libminifi/include/utils/FileOutputCallback.h
 copy libminifi/include/utils/{JsonCallback.h => FileReaderCallback.h} (63%)
 delete mode 100644 libminifi/src/utils/FileOutputCallback.cpp
 create mode 100644 libminifi/src/utils/FileReaderCallback.cpp