[nifi] branch support/nifi-1.x updated: NIFI-11184 Deprecated HashAttribute and CryptographicHashAttribute

2023-02-21 Thread mthomsen
This is an automated email from the ASF dual-hosted git repository.

mthomsen pushed a commit to branch support/nifi-1.x
in repository https://gitbox.apache.org/repos/asf/nifi.git


The following commit(s) were added to refs/heads/support/nifi-1.x by this push:
 new 8c65b78ff3 NIFI-11184 Deprecated HashAttribute and 
CryptographicHashAttribute
8c65b78ff3 is described below

commit 8c65b78ff3da9c57735162175620a4743232decb
Author: exceptionfactory 
AuthorDate: Tue Feb 14 16:57:52 2023 -0600

NIFI-11184 Deprecated HashAttribute and CryptographicHashAttribute

This closes #6956

Signed-off-by: Mike Thomsen 
---
 .../apache/nifi/processors/standard/CryptographicHashAttribute.java  | 5 +
 .../main/java/org/apache/nifi/processors/standard/HashAttribute.java | 5 +
 2 files changed, 10 insertions(+)

diff --git 
a/nifi-nar-bundles/nifi-standard-bundle/nifi-standard-processors/src/main/java/org/apache/nifi/processors/standard/CryptographicHashAttribute.java
 
b/nifi-nar-bundles/nifi-standard-bundle/nifi-standard-processors/src/main/java/org/apache/nifi/processors/standard/CryptographicHashAttribute.java
index 053dab3916..cbc24c63af 100644
--- 
a/nifi-nar-bundles/nifi-standard-bundle/nifi-standard-processors/src/main/java/org/apache/nifi/processors/standard/CryptographicHashAttribute.java
+++ 
b/nifi-nar-bundles/nifi-standard-bundle/nifi-standard-processors/src/main/java/org/apache/nifi/processors/standard/CryptographicHashAttribute.java
@@ -35,6 +35,7 @@ import org.apache.nifi.annotation.behavior.SideEffectFree;
 import org.apache.nifi.annotation.behavior.SupportsBatching;
 import org.apache.nifi.annotation.behavior.WritesAttribute;
 import org.apache.nifi.annotation.documentation.CapabilityDescription;
+import org.apache.nifi.annotation.documentation.DeprecationNotice;
 import org.apache.nifi.annotation.documentation.Tags;
 import org.apache.nifi.components.AllowableValue;
 import org.apache.nifi.components.PropertyDescriptor;
@@ -60,6 +61,10 @@ import org.apache.nifi.security.util.crypto.HashService;
 description = "The property name defines the attribute to look for and 
hash in the incoming flowfile. "
 + "The property value defines the name to give the generated 
attribute. "
 + "Attribute names must be unique.")
+@DeprecationNotice(
+classNames = "org.apache.nifi.processors.attributes.UpdateAttribute",
+reason = "UpdateAttribute can be configured using the hash Expression 
Language function to digest one or more attributes"
+)
 public class CryptographicHashAttribute extends AbstractProcessor {
 public enum PartialAttributePolicy {
 ALLOW,
diff --git 
a/nifi-nar-bundles/nifi-standard-bundle/nifi-standard-processors/src/main/java/org/apache/nifi/processors/standard/HashAttribute.java
 
b/nifi-nar-bundles/nifi-standard-bundle/nifi-standard-processors/src/main/java/org/apache/nifi/processors/standard/HashAttribute.java
index dab0260cb6..b8519fde6d 100644
--- 
a/nifi-nar-bundles/nifi-standard-bundle/nifi-standard-processors/src/main/java/org/apache/nifi/processors/standard/HashAttribute.java
+++ 
b/nifi-nar-bundles/nifi-standard-bundle/nifi-standard-processors/src/main/java/org/apache/nifi/processors/standard/HashAttribute.java
@@ -39,6 +39,7 @@ import org.apache.nifi.annotation.behavior.SideEffectFree;
 import org.apache.nifi.annotation.behavior.SupportsBatching;
 import org.apache.nifi.annotation.behavior.WritesAttribute;
 import org.apache.nifi.annotation.documentation.CapabilityDescription;
+import org.apache.nifi.annotation.documentation.DeprecationNotice;
 import org.apache.nifi.annotation.documentation.Tags;
 import org.apache.nifi.components.PropertyDescriptor;
 import org.apache.nifi.flowfile.FlowFile;
@@ -115,6 +116,10 @@ import org.apache.nifi.processor.util.StandardValidators;
 + "group, the value of that group will be used when comparing flow 
file "
 + "attributes. Otherwise, the original flow file attribute's value 
will be used "
 + "if and only if the value matches the given regular expression.")
+@DeprecationNotice(
+classNames = "org.apache.nifi.processors.attributes.UpdateAttribute",
+reason = "UpdateAttribute can be configured using the hash Expression 
Language function to digest one or more attributes"
+)
 public class HashAttribute extends AbstractProcessor {
 
 public static final PropertyDescriptor HASH_VALUE_ATTRIBUTE = new 
PropertyDescriptor.Builder()



[nifi] branch main updated (57a1144f34 -> 85f2162021)

2023-02-21 Thread mthomsen
This is an automated email from the ASF dual-hosted git repository.

mthomsen pushed a change to branch main
in repository https://gitbox.apache.org/repos/asf/nifi.git


from 57a1144f34 NIFI-11187 Removed ActiveMQ from Standard Processors
 new a0ef378a42 NIFI-11207 Removed HBase 1.1.2 Services
 new 85f2162021 NIFI-11201 Added include-iotdb Maven build profile

The 2 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:
 nifi-assembly/pom.xml  |  23 +-
 nifi-docs/src/main/asciidoc/developer-guide.adoc   |  28 +-
 .../apache/nifi/processors/QueryIoTDBRecord.java   |   2 +-
 .../nifi-hbase_1_1_2-client-service-nar/pom.xml|  45 -
 .../src/main/resources/META-INF/LICENSE| 357 
 .../src/main/resources/META-INF/NOTICE | 322 ---
 .../nifi-hbase_1_1_2-client-service/pom.xml| 142 
 .../nifi/hbase/AbstractHBaseLookupService.java | 157 
 .../hbase/HBase_1_1_2_ClientMapCacheService.java   | 316 ---
 .../nifi/hbase/HBase_1_1_2_ClientService.java  | 946 -
 .../nifi/hbase/HBase_1_1_2_ListLookupService.java  | 115 ---
 .../hbase/HBase_1_1_2_RecordLookupService.java |  85 --
 .../apache/nifi/hbase/VisibilityLabelUtils.java|  50 --
 .../org.apache.nifi.controller.ControllerService   |  18 -
 .../apache/nifi/hbase/MockHBaseClientService.java  | 235 -
 .../TestHBase_1_1_2_ClientMapCacheService.java | 453 --
 .../nifi/hbase/TestHBase_1_1_2_ClientService.java  | 529 
 .../hbase/TestHBase_1_1_2_ListLookupService.java   | 128 ---
 .../hbase/TestHBase_1_1_2_RecordLookupService.java | 124 ---
 .../java/org/apache/nifi/hbase/TestProcessor.java  |  56 --
 .../nifi/hbase/TestRecordLookupProcessor.java  | 112 ---
 .../src/test/resources/core-site-security.xml  |  30 -
 .../src/test/resources/core-site.xml   |  22 -
 .../src/test/resources/fake.keytab |   0
 .../src/test/resources/hbase-site-security.xml |  30 -
 .../src/test/resources/hbase-site.xml  |  22 -
 .../src/test/resources/krb5.conf   |   0
 .../nifi-hbase_1_1_2-client-service-bundle/pom.xml | 114 ---
 nifi-nar-bundles/nifi-standard-services/pom.xml|   1 -
 29 files changed, 32 insertions(+), 4430 deletions(-)
 delete mode 100644 
nifi-nar-bundles/nifi-standard-services/nifi-hbase_1_1_2-client-service-bundle/nifi-hbase_1_1_2-client-service-nar/pom.xml
 delete mode 100644 
nifi-nar-bundles/nifi-standard-services/nifi-hbase_1_1_2-client-service-bundle/nifi-hbase_1_1_2-client-service-nar/src/main/resources/META-INF/LICENSE
 delete mode 100644 
nifi-nar-bundles/nifi-standard-services/nifi-hbase_1_1_2-client-service-bundle/nifi-hbase_1_1_2-client-service-nar/src/main/resources/META-INF/NOTICE
 delete mode 100644 
nifi-nar-bundles/nifi-standard-services/nifi-hbase_1_1_2-client-service-bundle/nifi-hbase_1_1_2-client-service/pom.xml
 delete mode 100644 
nifi-nar-bundles/nifi-standard-services/nifi-hbase_1_1_2-client-service-bundle/nifi-hbase_1_1_2-client-service/src/main/java/org/apache/nifi/hbase/AbstractHBaseLookupService.java
 delete mode 100644 
nifi-nar-bundles/nifi-standard-services/nifi-hbase_1_1_2-client-service-bundle/nifi-hbase_1_1_2-client-service/src/main/java/org/apache/nifi/hbase/HBase_1_1_2_ClientMapCacheService.java
 delete mode 100644 
nifi-nar-bundles/nifi-standard-services/nifi-hbase_1_1_2-client-service-bundle/nifi-hbase_1_1_2-client-service/src/main/java/org/apache/nifi/hbase/HBase_1_1_2_ClientService.java
 delete mode 100644 
nifi-nar-bundles/nifi-standard-services/nifi-hbase_1_1_2-client-service-bundle/nifi-hbase_1_1_2-client-service/src/main/java/org/apache/nifi/hbase/HBase_1_1_2_ListLookupService.java
 delete mode 100644 
nifi-nar-bundles/nifi-standard-services/nifi-hbase_1_1_2-client-service-bundle/nifi-hbase_1_1_2-client-service/src/main/java/org/apache/nifi/hbase/HBase_1_1_2_RecordLookupService.java
 delete mode 100644 
nifi-nar-bundles/nifi-standard-services/nifi-hbase_1_1_2-client-service-bundle/nifi-hbase_1_1_2-client-service/src/main/java/org/apache/nifi/hbase/VisibilityLabelUtils.java
 delete mode 100644 
nifi-nar-bundles/nifi-standard-services/nifi-hbase_1_1_2-client-service-bundle/nifi-hbase_1_1_2-client-service/src/main/resources/META-INF/services/org.apache.nifi.controller.ControllerService
 delete mode 100644 
nifi-nar-bundles/nifi-standard-services/nifi-hbase_1_1_2-client-service-bundle/nifi-hbase_1_1_2-client-service/src/test/java/org/apache/nifi/hbase/MockHBaseClientService.java
 delete mode 100644 
nifi-nar-bundles/nifi-standard-services/nifi-hbase_1_1_2-client-service-bundle/nifi-hbase_1_1_2-client-service/src/test/java/org/apache/nifi/hbase/TestHBase_1_1_2_ClientMapCacheService.java
 delete mode 100644 
nifi-nar-bundles/ni

[nifi] 02/02: NIFI-11201 Added include-iotdb Maven build profile

2023-02-21 Thread mthomsen
This is an automated email from the ASF dual-hosted git repository.

mthomsen pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/nifi.git

commit 85f2162021d8f8c0049915c96a1d2b236086f65f
Author: exceptionfactory 
AuthorDate: Sat Feb 18 20:38:51 2023 -0600

NIFI-11201 Added include-iotdb Maven build profile

This closes #6975

- Corrected Fetch Size property evaluation in QueryIoTDBRecord for FlowFile 
attributes

Signed-off-by: Mike Thomsen 
---
 nifi-assembly/pom.xml  | 17 +
 nifi-docs/src/main/asciidoc/developer-guide.adoc   | 28 +++---
 .../apache/nifi/processors/QueryIoTDBRecord.java   |  2 +-
 3 files changed, 32 insertions(+), 15 deletions(-)

diff --git a/nifi-assembly/pom.xml b/nifi-assembly/pom.xml
index 5a6f523f0e..1c3e6d9ad5 100644
--- a/nifi-assembly/pom.xml
+++ b/nifi-assembly/pom.xml
@@ -1044,6 +1044,23 @@ language governing permissions and limitations under the 
License. -->
 
 
 
+
+include-iotdb
+
+false
+
+allProfiles
+
+
+
+
+org.apache.nifi
+nifi-iotdb-nar
+2.0.0-SNAPSHOT
+nar
+
+
+
 
 include-media
 

[nifi] branch main updated: NIFI-11187 Removed ActiveMQ from Standard Processors

2023-02-21 Thread mattyb149
This is an automated email from the ASF dual-hosted git repository.

mattyb149 pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/nifi.git


The following commit(s) were added to refs/heads/main by this push:
 new 57a1144f34 NIFI-11187 Removed ActiveMQ from Standard Processors
57a1144f34 is described below

commit 57a1144f34ab60bb9ed78a8d86861fb7bcd378b2
Author: exceptionfactory 
AuthorDate: Wed Feb 15 13:41:36 2023 -0600

NIFI-11187 Removed ActiveMQ from Standard Processors

Signed-off-by: Matthew Burgess 

This closes #6961
---
 .../nifi-standard-processors/pom.xml   |   9 -
 .../nifi/processors/standard/JmsConsumer.java  | 240 --
 .../standard/util/DocumentReaderCallback.java  |  57 ---
 .../nifi/processors/standard/util/JmsFactory.java  | 514 -
 .../standard/util/JmsProcessingSummary.java|  81 
 .../processors/standard/util/JmsProperties.java| 189 
 .../standard/util/UDPStreamConsumer.java   | 214 -
 .../standard/util/WrappedMessageConsumer.java  |  77 ---
 .../standard/util/WrappedMessageProducer.java  |  77 ---
 .../standard/TestWaitNotifyProtocol.java   |   2 +-
 nifi-nar-bundles/nifi-standard-bundle/pom.xml  |  11 -
 11 files changed, 1 insertion(+), 1470 deletions(-)

diff --git 
a/nifi-nar-bundles/nifi-standard-bundle/nifi-standard-processors/pom.xml 
b/nifi-nar-bundles/nifi-standard-bundle/nifi-standard-processors/pom.xml
index 51d63fd09f..1f28987cbe 100644
--- a/nifi-nar-bundles/nifi-standard-bundle/nifi-standard-processors/pom.xml
+++ b/nifi-nar-bundles/nifi-standard-bundle/nifi-standard-processors/pom.xml
@@ -269,10 +269,6 @@
 javax.jms
 javax.jms-api
 
-
-org.apache.activemq
-activemq-client
-
 
 com.jayway.jsonpath
 json-path
@@ -345,11 +341,6 @@
 2.0.0-SNAPSHOT
 test
 
-
-org.apache.activemq
-activemq-broker
-test
-
 
 org.apache.nifi
 nifi-ssl-context-service
diff --git 
a/nifi-nar-bundles/nifi-standard-bundle/nifi-standard-processors/src/main/java/org/apache/nifi/processors/standard/JmsConsumer.java
 
b/nifi-nar-bundles/nifi-standard-bundle/nifi-standard-processors/src/main/java/org/apache/nifi/processors/standard/JmsConsumer.java
deleted file mode 100644
index 2d8f96f5f4..00
--- 
a/nifi-nar-bundles/nifi-standard-bundle/nifi-standard-processors/src/main/java/org/apache/nifi/processors/standard/JmsConsumer.java
+++ /dev/null
@@ -1,240 +0,0 @@
-/*
- * Licensed to the Apache Software Foundation (ASF) under one or more
- * contributor license agreements.  See the NOTICE file distributed with
- * this work for additional information regarding copyright ownership.
- * The ASF licenses this file to You under the Apache License, Version 2.0
- * (the "License"); you may not use this file except in compliance with
- * the License.  You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-package org.apache.nifi.processors.standard;
-
-import org.apache.nifi.components.PropertyDescriptor;
-import org.apache.nifi.flowfile.FlowFile;
-import org.apache.nifi.logging.ComponentLog;
-import org.apache.nifi.processor.AbstractProcessor;
-import org.apache.nifi.processor.ProcessContext;
-import org.apache.nifi.processor.ProcessSession;
-import org.apache.nifi.processor.Relationship;
-import org.apache.nifi.processor.exception.ProcessException;
-import org.apache.nifi.processor.io.OutputStreamCallback;
-import org.apache.nifi.processors.standard.util.JmsFactory;
-import org.apache.nifi.processors.standard.util.JmsProcessingSummary;
-import org.apache.nifi.processors.standard.util.WrappedMessageConsumer;
-import org.apache.nifi.util.StopWatch;
-
-import javax.jms.JMSException;
-import javax.jms.MapMessage;
-import javax.jms.Message;
-import javax.jms.MessageConsumer;
-import java.io.BufferedOutputStream;
-import java.io.IOException;
-import java.io.OutputStream;
-import java.util.ArrayList;
-import java.util.Collections;
-import java.util.Enumeration;
-import java.util.HashMap;
-import java.util.HashSet;
-import java.util.List;
-import java.util.Map;
-import java.util.Set;
-import java.util.concurrent.TimeUnit;
-import java.util.concurrent.atomic.AtomicInteger;
-
-import static 
org.apache.nifi.processors.standard.util.JmsProperties.ACKNOWLEDGEMENT_MODE;
-import static 
org.apache.nifi.processors.standard.util.JmsProperties.ACK_MODE_CLIENT;
-import static 
org.

[nifi] branch main updated: NIFI-11208 Removed Hortonworks Schema Registry

2023-02-21 Thread mattyb149
This is an automated email from the ASF dual-hosted git repository.

mattyb149 pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/nifi.git


The following commit(s) were added to refs/heads/main by this push:
 new 0fa1060297 NIFI-11208 Removed Hortonworks Schema Registry
0fa1060297 is described below

commit 0fa1060297805177dcc98a0d274ade8859f26f7c
Author: exceptionfactory 
AuthorDate: Tue Feb 21 10:53:16 2023 -0600

NIFI-11208 Removed Hortonworks Schema Registry

Signed-off-by: Matthew Burgess 

This closes #6980
---
 NOTICE |   5 -
 nifi-assembly/pom.xml  |   6 -
 .../nifi-hwx-schema-registry-nar/pom.xml   |  34 --
 .../src/main/resources/META-INF/LICENSE| 233 
 .../src/main/resources/META-INF/NOTICE | 125 
 .../nifi-hwx-schema-registry-service/pom.xml   | 126 
 .../hortonworks/HortonworksSchemaRegistry.java | 632 -
 .../hortonworks/KerberosUserLogin.java |  69 ---
 .../SchemaRegistryClientWithKerberosPassword.java  | 104 
 .../org.apache.nifi.controller.ControllerService   |  16 -
 .../hortonworks/HortonworksSchemaRegistryTest.java | 107 
 .../hortonworks/TestHortonworksSchemaRegistry.java | 175 --
 .../src/test/resources/empty-schema.avsc   |   6 -
 .../nifi-hwx-schema-registry-bundle/pom.xml|  50 --
 nifi-nar-bundles/nifi-standard-services/pom.xml|   1 -
 15 files changed, 1689 deletions(-)

diff --git a/NOTICE b/NOTICE
index ffc00b29fa..8150bd7c84 100644
--- a/NOTICE
+++ b/NOTICE
@@ -122,11 +122,6 @@ This product includes derived works from Apache Commons Id 
(ASLv2 licensed)
   and
 nifi-commons/nifi-uuid5/src/main/java/org/apache/nifi/uuid5/Uuid5Util.java
 
-This includes derived works from Cloudera Schema Registry available under 
Apache Software License V2 (https://github.com/hortonworks/registry)
-  Cloudera Schema Registry
-  Copyright 2016-2019 Cloudera, Inc.
-  The code can be found in 
nifi-nar-bundles/nifi-standard-services/nifi-hwx-schema-registry-bundle/nifi-hwx-schema-registry-service/src/main/java/com/hortonworks/registries/schemaregistry/client/SchemaRegistryClient.java
-
 This includes derived works from Apache Kafka available under Apache Software 
License V2
 Copyright 2021 The Apache Software Foundation.
 The derived work is adapted from
diff --git a/nifi-assembly/pom.xml b/nifi-assembly/pom.xml
index e4f16e93d2..093bba00e3 100644
--- a/nifi-assembly/pom.xml
+++ b/nifi-assembly/pom.xml
@@ -756,12 +756,6 @@ language governing permissions and limitations under the 
License. -->
 2.0.0-SNAPSHOT
 nar
 
-
-org.apache.nifi
-nifi-hwx-schema-registry-nar
-2.0.0-SNAPSHOT
-nar
-
 
 org.apache.nifi
 nifi-redis-service-api-nar
diff --git 
a/nifi-nar-bundles/nifi-standard-services/nifi-hwx-schema-registry-bundle/nifi-hwx-schema-registry-nar/pom.xml
 
b/nifi-nar-bundles/nifi-standard-services/nifi-hwx-schema-registry-bundle/nifi-hwx-schema-registry-nar/pom.xml
deleted file mode 100644
index f57c0686fb..00
--- 
a/nifi-nar-bundles/nifi-standard-services/nifi-hwx-schema-registry-bundle/nifi-hwx-schema-registry-nar/pom.xml
+++ /dev/null
@@ -1,34 +0,0 @@
-
-
-http://maven.apache.org/POM/4.0.0"; 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"; 
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 
https://maven.apache.org/xsd/maven-4.0.0.xsd";>
-4.0.0
-
-org.apache.nifi
-nifi-hwx-schema-registry-bundle
-2.0.0-SNAPSHOT
-
-nifi-hwx-schema-registry-nar
-nar
-
-
-org.apache.nifi
-nifi-standard-services-api-nar
-2.0.0-SNAPSHOT
-nar
-
-
-org.apache.nifi
-nifi-hwx-schema-registry-service
-2.0.0-SNAPSHOT
-
-
-
diff --git 
a/nifi-nar-bundles/nifi-standard-services/nifi-hwx-schema-registry-bundle/nifi-hwx-schema-registry-nar/src/main/resources/META-INF/LICENSE
 
b/nifi-nar-bundles/nifi-standard-services/nifi-hwx-schema-registry-bundle/nifi-hwx-schema-registry-nar/src/main/resources/META-INF/LICENSE
deleted file mode 100644
index ca0bdb3a86..00
--- 
a/nifi-nar-bundles/nifi-standard-services/nifi-hwx-schema-registry-bundle/nifi-hwx-schema-registry-nar/src/main/resources/META-INF/LICENSE
+++ /dev/null
@@ -1,233 +0,0 @@
-
- Apache License
-   Version 2.0, January 2004
-http://www.apache.org/licenses/
-
-   TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
-
-   1. Definitions.
-
-  "License" shall mean the terms and conditions for use, reproduction,
-  and distribution as defined by Sections 1 through 9 of this document.
-
-  "Licensor" shall mean

[nifi] 02/03: NIFI-11199 - Upgrade kotlin to 1.8.10

2023-02-21 Thread mthomsen
This is an automated email from the ASF dual-hosted git repository.

mthomsen pushed a commit to branch support/nifi-1.x
in repository https://gitbox.apache.org/repos/asf/nifi.git

commit f7116f4a2534dc5706b037671491f7fb9ebe321e
Author: Pierre Villard 
AuthorDate: Sat Feb 18 18:52:50 2023 -0500

NIFI-11199 - Upgrade kotlin to 1.8.10

This closes #6973

Signed-off-by: Mike Thomsen 
---
 pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/pom.xml b/pom.xml
index ca4151d928..ce9abb9b2d 100644
--- a/pom.xml
+++ b/pom.xml
@@ -107,7 +107,7 @@
 1.12.371
 
2.17.295
 2.10.1
-1.7.20
+1.8.10
 4.10.0
 1.5.0
 
3.12.0



[nifi] 01/03: NIFI-11200 - Upgrade aspectj to 1.9.19

2023-02-21 Thread mthomsen
This is an automated email from the ASF dual-hosted git repository.

mthomsen pushed a commit to branch support/nifi-1.x
in repository https://gitbox.apache.org/repos/asf/nifi.git

commit a98fb9d81a7ac31ef4f503b51f96e5b31935d085
Author: Pierre Villard 
AuthorDate: Sat Feb 18 19:01:03 2023 -0500

NIFI-11200 - Upgrade aspectj to 1.9.19

This closes #6974

Signed-off-by: Mike Thomsen 
---
 pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/pom.xml b/pom.xml
index d748e9e0f9..ca4151d928 100644
--- a/pom.xml
+++ b/pom.xml
@@ -135,7 +135,7 @@
 3.3.4
 1.2.1
 2.1.5
-1.9.6
+1.9.19
 2.36
 2.18.0
 1.3.5



[nifi] 03/03: NIFI-11198 - Upgrade snowflake-ingest-sdk to 1.0.3

2023-02-21 Thread mthomsen
This is an automated email from the ASF dual-hosted git repository.

mthomsen pushed a commit to branch support/nifi-1.x
in repository https://gitbox.apache.org/repos/asf/nifi.git

commit 4fd8dd0bd40b6dcc6d2265eeb5b1ee0e5d006a5f
Author: Pierre Villard 
AuthorDate: Sat Feb 18 18:40:22 2023 -0500

NIFI-11198 - Upgrade snowflake-ingest-sdk to 1.0.3

This closes #6972

Signed-off-by: Mike Thomsen 
---
 nifi-nar-bundles/nifi-snowflake-bundle/pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/nifi-nar-bundles/nifi-snowflake-bundle/pom.xml 
b/nifi-nar-bundles/nifi-snowflake-bundle/pom.xml
index eee3f1d934..1ec01487a2 100644
--- a/nifi-nar-bundles/nifi-snowflake-bundle/pom.xml
+++ b/nifi-nar-bundles/nifi-snowflake-bundle/pom.xml
@@ -36,7 +36,7 @@
 
 net.snowflake
 snowflake-ingest-sdk
-1.0.2-beta.7
+1.0.3-beta
 
 
 



[nifi] branch support/nifi-1.x updated (2ace153a7d -> 4fd8dd0bd4)

2023-02-21 Thread mthomsen
This is an automated email from the ASF dual-hosted git repository.

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


from 2ace153a7d NIFI-11156 Updated SchemaValidator to include error message 
for ValidateXml
 new a98fb9d81a NIFI-11200 - Upgrade aspectj to 1.9.19
 new f7116f4a25 NIFI-11199 - Upgrade kotlin to 1.8.10
 new 4fd8dd0bd4 NIFI-11198 - Upgrade snowflake-ingest-sdk to 1.0.3

The 3 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:
 nifi-nar-bundles/nifi-snowflake-bundle/pom.xml | 2 +-
 pom.xml| 4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)



[nifi] branch main updated: NIFI-11185 Removed GetTwitter Processor

2023-02-21 Thread mthomsen
This is an automated email from the ASF dual-hosted git repository.

mthomsen pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/nifi.git


The following commit(s) were added to refs/heads/main by this push:
 new 0255c0c4ed NIFI-11185 Removed GetTwitter Processor
0255c0c4ed is described below

commit 0255c0c4ed9f1f7e9efa2ca6c3084839f956871a
Author: exceptionfactory 
AuthorDate: Wed Feb 15 09:18:00 2023 -0600

NIFI-11185 Removed GetTwitter Processor

This closes #6958

Signed-off-by: Mike Thomsen 
---
 .../nifi-twitter-processors/pom.xml|  32 +-
 .../apache/nifi/processors/twitter/GetTwitter.java | 487 -
 .../nifi/processors/twitter/LocationUtil.java  |  93 
 .../services/org.apache.nifi.processor.Processor   |   2 -
 .../nifi/processors/twitter/TestGetTwitter.java| 273 
 .../nifi/processors/twitter/TestLocationUtil.java  |  76 
 6 files changed, 2 insertions(+), 961 deletions(-)

diff --git 
a/nifi-nar-bundles/nifi-social-media-bundle/nifi-twitter-processors/pom.xml 
b/nifi-nar-bundles/nifi-social-media-bundle/nifi-twitter-processors/pom.xml
index 8b5767571c..7624a7dafe 100644
--- a/nifi-nar-bundles/nifi-social-media-bundle/nifi-twitter-processors/pom.xml
+++ b/nifi-nar-bundles/nifi-social-media-bundle/nifi-twitter-processors/pom.xml
@@ -44,46 +44,18 @@
 org.apache.oltu.oauth2
 org.apache.oltu.oauth2.client
 
-
-
-
-com.twitter
-hbc-core
-2.2.0
-
-
-com.google.code.findbugs
-jsr305
-
-
-org.twitter4j
-twitter4j-core
-
 
-commons-logging
-commons-logging
+com.twitter
+joauth
 
 
 
-
-org.slf4j
-jcl-over-slf4j
-
-
-com.github.stephenc.findbugs
-findbugs-annotations
-1.3.9-1
-
 
 org.apache.nifi
 nifi-mock
 2.0.0-SNAPSHOT
 test
 
-
-com.squareup.okhttp3
-okhttp
-
 
 com.squareup.okhttp3
 mockwebserver
diff --git 
a/nifi-nar-bundles/nifi-social-media-bundle/nifi-twitter-processors/src/main/java/org/apache/nifi/processors/twitter/GetTwitter.java
 
b/nifi-nar-bundles/nifi-social-media-bundle/nifi-twitter-processors/src/main/java/org/apache/nifi/processors/twitter/GetTwitter.java
deleted file mode 100644
index 0e17106a14..00
--- 
a/nifi-nar-bundles/nifi-social-media-bundle/nifi-twitter-processors/src/main/java/org/apache/nifi/processors/twitter/GetTwitter.java
+++ /dev/null
@@ -1,487 +0,0 @@
-/*
- * Licensed to the Apache Software Foundation (ASF) under one or more
- * contributor license agreements.  See the NOTICE file distributed with
- * this work for additional information regarding copyright ownership.
- * The ASF licenses this file to You under the Apache License, Version 2.0
- * (the "License"); you may not use this file except in compliance with
- * the License.  You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-package org.apache.nifi.processors.twitter;
-
-import com.twitter.hbc.ClientBuilder;
-import com.twitter.hbc.core.Client;
-import com.twitter.hbc.core.Constants;
-import com.twitter.hbc.core.endpoint.Location;
-import com.twitter.hbc.core.endpoint.Location.Coordinate;
-import com.twitter.hbc.core.endpoint.StatusesFilterEndpoint;
-import com.twitter.hbc.core.endpoint.StatusesFirehoseEndpoint;
-import com.twitter.hbc.core.endpoint.StatusesSampleEndpoint;
-import com.twitter.hbc.core.endpoint.StreamingEndpoint;
-import com.twitter.hbc.core.event.Event;
-import com.twitter.hbc.core.processor.StringDelimitedProcessor;
-import com.twitter.hbc.httpclient.auth.Authentication;
-import com.twitter.hbc.httpclient.auth.OAuth1;
-import org.apache.nifi.annotation.behavior.DynamicProperty;
-import org.apache.nifi.annotation.behavior.InputRequirement;
-import org.apache.nifi.annotation.behavior.InputRequirement.Requirement;
-import org.apache.nifi.annotation.behavior.SupportsBatching;
-import org.apache.nifi.annotation.behavior.WritesAttribute;
-import org.apache.nifi.annotation.documentation.CapabilityDescription;
-import org.apache.nifi.annotation.documentation.DeprecationNotice;
-import o

[nifi] 01/03: NIFI-11200 - Upgrade aspectj to 1.9.19

2023-02-21 Thread mthomsen
This is an automated email from the ASF dual-hosted git repository.

mthomsen pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/nifi.git

commit 88813081e427b2ad7230c48f7ded55209f72fe14
Author: Pierre Villard 
AuthorDate: Sat Feb 18 19:01:03 2023 -0500

NIFI-11200 - Upgrade aspectj to 1.9.19

This closes #6974

Signed-off-by: Mike Thomsen 
---
 pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/pom.xml b/pom.xml
index f0fe6174a8..127935c59a 100644
--- a/pom.xml
+++ b/pom.xml
@@ -135,7 +135,7 @@
 3.3.4
 1.2.1
 2.1.5
-1.9.6
+1.9.19
 2.36
 2.18.0
 1.3.5



[nifi] branch main updated (3115b9f28d -> 21394038cd)

2023-02-21 Thread mthomsen
This is an automated email from the ASF dual-hosted git repository.

mthomsen pushed a change to branch main
in repository https://gitbox.apache.org/repos/asf/nifi.git


from 3115b9f28d NIFI-10803 - Upgrade Dropbox SDK to 5.4.4
 new 88813081e4 NIFI-11200 - Upgrade aspectj to 1.9.19
 new 48af85f472 NIFI-11199 - Upgrade kotlin to 1.8.10
 new 21394038cd NIFI-11198 - Upgrade snowflake-ingest-sdk to 1.0.3

The 3 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:
 nifi-nar-bundles/nifi-snowflake-bundle/pom.xml | 2 +-
 pom.xml| 4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)



[nifi] 03/03: NIFI-11198 - Upgrade snowflake-ingest-sdk to 1.0.3

2023-02-21 Thread mthomsen
This is an automated email from the ASF dual-hosted git repository.

mthomsen pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/nifi.git

commit 21394038cd3b8f522184efcf9c85d2d5a11d5267
Author: Pierre Villard 
AuthorDate: Sat Feb 18 18:40:22 2023 -0500

NIFI-11198 - Upgrade snowflake-ingest-sdk to 1.0.3

This closes #6972

Signed-off-by: Mike Thomsen 
---
 nifi-nar-bundles/nifi-snowflake-bundle/pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/nifi-nar-bundles/nifi-snowflake-bundle/pom.xml 
b/nifi-nar-bundles/nifi-snowflake-bundle/pom.xml
index 61524dd156..b2270cbcdf 100644
--- a/nifi-nar-bundles/nifi-snowflake-bundle/pom.xml
+++ b/nifi-nar-bundles/nifi-snowflake-bundle/pom.xml
@@ -36,7 +36,7 @@
 
 net.snowflake
 snowflake-ingest-sdk
-1.0.2-beta.7
+1.0.3-beta
 
 
 



[nifi] 02/03: NIFI-11199 - Upgrade kotlin to 1.8.10

2023-02-21 Thread mthomsen
This is an automated email from the ASF dual-hosted git repository.

mthomsen pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/nifi.git

commit 48af85f472edc862379e376fc5d016e763a22372
Author: Pierre Villard 
AuthorDate: Sat Feb 18 18:52:50 2023 -0500

NIFI-11199 - Upgrade kotlin to 1.8.10

This closes #6973

Signed-off-by: Mike Thomsen 
---
 pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/pom.xml b/pom.xml
index 127935c59a..2fae67f0f4 100644
--- a/pom.xml
+++ b/pom.xml
@@ -107,7 +107,7 @@
 1.12.371
 
2.17.295
 2.10.1
-1.7.20
+1.8.10
 4.10.0
 1.5.0
 
3.12.0



[nifi] branch main updated: NIFI-10803 - Upgrade Dropbox SDK to 5.4.4

2023-02-21 Thread turcsanyi
This is an automated email from the ASF dual-hosted git repository.

turcsanyi pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/nifi.git


The following commit(s) were added to refs/heads/main by this push:
 new 3115b9f28d NIFI-10803 - Upgrade Dropbox SDK to 5.4.4
3115b9f28d is described below

commit 3115b9f28d6b84930c950f27247b86fa8ff5970c
Author: Pierre Villard 
AuthorDate: Sat Feb 18 18:12:48 2023 -0500

NIFI-10803 - Upgrade Dropbox SDK to 5.4.4

This closes #6971.

Reviewed-by: krisztina-zsihovszki 

Signed-off-by: Peter Turcsanyi 
---
 .../src/main/java/org/apache/nifi/processors/dropbox/ListDropbox.java | 4 ++--
 .../test/java/org/apache/nifi/processors/dropbox/ListDropboxTest.java | 4 ++--
 nifi-nar-bundles/nifi-dropbox-bundle/pom.xml  | 2 +-
 3 files changed, 5 insertions(+), 5 deletions(-)

diff --git 
a/nifi-nar-bundles/nifi-dropbox-bundle/nifi-dropbox-processors/src/main/java/org/apache/nifi/processors/dropbox/ListDropbox.java
 
b/nifi-nar-bundles/nifi-dropbox-bundle/nifi-dropbox-processors/src/main/java/org/apache/nifi/processors/dropbox/ListDropbox.java
index e0b5373e17..9005b37314 100644
--- 
a/nifi-nar-bundles/nifi-dropbox-bundle/nifi-dropbox-processors/src/main/java/org/apache/nifi/processors/dropbox/ListDropbox.java
+++ 
b/nifi-nar-bundles/nifi-dropbox-bundle/nifi-dropbox-processors/src/main/java/org/apache/nifi/processors/dropbox/ListDropbox.java
@@ -33,8 +33,8 @@ import static 
org.apache.nifi.processors.dropbox.DropboxAttributes.TIMESTAMP_DES
 
 import com.dropbox.core.DbxException;
 import com.dropbox.core.v2.DbxClientV2;
+import com.dropbox.core.v2.files.DbxUserListFolderBuilder;
 import com.dropbox.core.v2.files.FileMetadata;
-import com.dropbox.core.v2.files.ListFolderBuilder;
 import com.dropbox.core.v2.files.ListFolderResult;
 import java.io.IOException;
 import java.util.ArrayList;
@@ -201,7 +201,7 @@ public class ListDropbox extends 
AbstractListProcessor implemen
 try {
 Predicate metadataFilter = 
createMetadataFilter(minTimestamp, minAge);
 
-final ListFolderBuilder listFolderBuilder = 
dropboxApiClient.files().listFolderBuilder(convertFolderName(folderName));
+final DbxUserListFolderBuilder listFolderBuilder = 
dropboxApiClient.files().listFolderBuilder(convertFolderName(folderName));
 ListFolderResult result = listFolderBuilder
 .withRecursive(recursive)
 .start();
diff --git 
a/nifi-nar-bundles/nifi-dropbox-bundle/nifi-dropbox-processors/src/test/java/org/apache/nifi/processors/dropbox/ListDropboxTest.java
 
b/nifi-nar-bundles/nifi-dropbox-bundle/nifi-dropbox-processors/src/test/java/org/apache/nifi/processors/dropbox/ListDropboxTest.java
index be08c2dc94..6b14b5d2f6 100644
--- 
a/nifi-nar-bundles/nifi-dropbox-bundle/nifi-dropbox-processors/src/test/java/org/apache/nifi/processors/dropbox/ListDropboxTest.java
+++ 
b/nifi-nar-bundles/nifi-dropbox-bundle/nifi-dropbox-processors/src/test/java/org/apache/nifi/processors/dropbox/ListDropboxTest.java
@@ -26,8 +26,8 @@ import static org.mockito.Mockito.when;
 import com.dropbox.core.DbxException;
 import com.dropbox.core.v2.DbxClientV2;
 import com.dropbox.core.v2.files.DbxUserFilesRequests;
+import com.dropbox.core.v2.files.DbxUserListFolderBuilder;
 import com.dropbox.core.v2.files.FolderMetadata;
-import com.dropbox.core.v2.files.ListFolderBuilder;
 import com.dropbox.core.v2.files.ListFolderResult;
 import com.dropbox.core.v2.files.Metadata;
 import com.fasterxml.jackson.core.JsonProcessingException;
@@ -69,7 +69,7 @@ public class ListDropboxTest extends AbstractDropboxTest {
 private ListFolderResult mockListFolderResult;
 
 @Mock
-private ListFolderBuilder mockListFolderBuilder;
+private DbxUserListFolderBuilder mockListFolderBuilder;
 
 @BeforeEach
 protected void setUp() throws Exception {
diff --git a/nifi-nar-bundles/nifi-dropbox-bundle/pom.xml 
b/nifi-nar-bundles/nifi-dropbox-bundle/pom.xml
index c24fef70d2..dc7c2d293f 100644
--- a/nifi-nar-bundles/nifi-dropbox-bundle/pom.xml
+++ b/nifi-nar-bundles/nifi-dropbox-bundle/pom.xml
@@ -27,7 +27,7 @@
 pom
 
 
-4.0.1
+5.4.4