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

joewitt pushed a change to branch support/nifi-1.11.x
in repository https://gitbox.apache.org/repos/asf/nifi.git.


    from a38cf14  NIFI-7155 updated dockerfile versions for next release
     new 5ed7dbc  NIFI-7135 - Fix Java 11 build with 
com.puppycrawl.tools:checkstyle:jar:8.29 dependency
     new 0466918  NIFI-7175 removed appveyor and travis builds which have 
become unreliable.  Added Github Actions based CI build for pull requests and 
pushes. Removed unit tests which make unreadable or unaccesible dirs. Includes 
windows build as well as ubuntu. we can do localization based builds later as 
this is all proven stable.
     new 6504829  NIFI-7175 README.md
     new fc89f98  NIFI-7049 : SFTP processors shouldn't silently try to access 
known hosts file of the user
     new 7e74984  NIFI-7109 Unit tests should be able to determine if item 
validator was called - Create a mock Validator to track count of calls to 
validate(). We cannot use Mockito for this, because it can't mock all the 
StandardValidators
     new c276ac5  NIFI-7136 Added autocomplete="off" to login password input 
(#4055)
     new 1c6863a  NIFI-7143: Upgrade GCP dependency
     new 84c28cf  NIFI-6064 MockComponentLog misplaces reported exceptions
     new 1a07d26  NIFI-7142: Automatically handle schema drift in the PutKudu 
processor
     new e4b905b  NIFI-6867: Validate PutKudu operation type property
     new 6b11736  NIFI-6551: Improve PutKudu timestamp handling
     new 46d3b6b  NIFI-6927 Consolidate SSL context and trust managers for 
OkHttp on JDK9. Fixes name conflicts.
     new ea13898  NIFI-7165 Fixed TLS Toolkit Guide flags with default validity 
days.
     new 9748695  NIFI-7175 Fixed core attributes formatting in Developer 
Guide. (#4066)

The 14 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .github/workflows/ci-workflow.yml                  | 111 ++++++++++++++++++
 .travis-output-filters                             |  15 ---
 .travis.sh                                         |  28 -----
 .travis.yml                                        | 126 --------------------
 README.md                                          |   2 +-
 appveyor.yml                                       |  38 ------
 .../notification/http/HttpNotificationService.java |  69 +++--------
 .../nifi/security/util/SslContextFactory.java      |  71 +++++++++---
 .../validator/InstrumentedStandardValidator.java   |  92 +++++++++++++++
 .../util/validator/TestStandardValidators.java     |  73 +++++++++---
 nifi-docs/src/main/asciidoc/developer-guide.adoc   |  30 ++---
 nifi-docs/src/main/asciidoc/toolkit-guide.adoc     |   4 +-
 .../java/org/apache/nifi/util/CapturingLogger.java |   5 +
 .../nifi/util/validator/InstrumentedValidator.java |  92 +++++++++++++++
 .../nifi/util/TestStandardProcessorTestRunner.java |  19 +++
 .../nifi-elasticsearch-processors/pom.xml          |   2 +-
 .../AbstractElasticsearchHttpProcessor.java        |  31 ++++-
 .../TestQueryElasticsearchHttpNoHits.java          |   2 +-
 .../okhttp/OkHttpReplicationClient.java            |  84 +++++---------
 .../security/util/SslServerSocketFactory.java      |  82 -------------
 .../framework/security/util/SslSocketFactory.java  |  92 ---------------
 .../webapp/WEB-INF/partials/login/login-form.jsp   |   4 +-
 .../nifi-gcp-bundle/nifi-gcp-services-api/pom.xml  |   2 +-
 nifi-nar-bundles/nifi-gcp-bundle/pom.xml           |   2 +-
 .../processors/kudu/AbstractKuduProcessor.java     |  81 +++++++++----
 .../org/apache/nifi/processors/kudu/PutKudu.java   | 110 ++++++++++++++++--
 .../org/apache/nifi/processors/kudu/ITPutKudu.java |  42 +++++--
 .../apache/nifi/processors/kudu/TestPutKudu.java   |   5 +-
 .../nifi/processors/standard/InvokeHTTP.java       |  20 +++-
 .../processors/standard/util/SFTPTransfer.java     |  20 ++--
 .../nifi/processors/standard/TestGetFile.java      | 127 ++-------------------
 .../nifi/processors/standard/TestGetSFTP.java      |  29 +++++
 .../org/apache/nifi/lookup/RestLookupService.java  |  38 +++++-
 pom.xml                                            |  29 ++++-
 34 files changed, 860 insertions(+), 717 deletions(-)
 create mode 100644 .github/workflows/ci-workflow.yml
 delete mode 100644 .travis-output-filters
 delete mode 100755 .travis.sh
 delete mode 100644 .travis.yml
 delete mode 100644 appveyor.yml
 create mode 100644 
nifi-commons/nifi-utils/src/test/java/org/apache/nifi/util/validator/InstrumentedStandardValidator.java
 create mode 100644 
nifi-mock/src/main/java/org/apache/nifi/util/validator/InstrumentedValidator.java
 delete mode 100644 
nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-security/src/main/java/org/apache/nifi/framework/security/util/SslServerSocketFactory.java
 delete mode 100644 
nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-security/src/main/java/org/apache/nifi/framework/security/util/SslSocketFactory.java

Reply via email to