You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@nifi.apache.org by kd...@apache.org on 2022/07/28 22:48:55 UTC

[nifi] branch main updated: NIFI-10295 Upgraded GRPC from 1.34.0 to 1.48.0

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

kdoran 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 4e49a55e93 NIFI-10295 Upgraded GRPC from 1.34.0 to 1.48.0
4e49a55e93 is described below

commit 4e49a55e93cd1f5013c4c73146e53672c2d69a33
Author: exceptionfactory <ex...@apache.org>
AuthorDate: Thu Jul 28 14:30:49 2022 -0500

    NIFI-10295 Upgraded GRPC from 1.34.0 to 1.48.0
    
    - Upgraded Protobuf from 3.14.0 to 3.21.4
    - Removed netty-tcnative-boringssl-static as not necessary following NIFI-9897
    
    This closes #6255.
    
    Signed-off-by: Kevin Doran <kd...@apache.org>
---
 nifi-nar-bundles/nifi-grpc-bundle/nifi-grpc-processors/pom.xml | 5 -----
 nifi-nar-bundles/nifi-grpc-bundle/pom.xml                      | 4 ++--
 2 files changed, 2 insertions(+), 7 deletions(-)

diff --git a/nifi-nar-bundles/nifi-grpc-bundle/nifi-grpc-processors/pom.xml b/nifi-nar-bundles/nifi-grpc-bundle/nifi-grpc-processors/pom.xml
index 918045023b..28443a19a9 100644
--- a/nifi-nar-bundles/nifi-grpc-bundle/nifi-grpc-processors/pom.xml
+++ b/nifi-nar-bundles/nifi-grpc-bundle/nifi-grpc-processors/pom.xml
@@ -63,11 +63,6 @@ language governing permissions and limitations under the License. -->
             <artifactId>grpc-stub</artifactId>
             <version>${grpc.version}</version>
         </dependency>
-        <dependency>
-            <groupId>io.netty</groupId>
-            <artifactId>netty-tcnative-boringssl-static</artifactId>
-            <version>2.0.35.Final</version>
-        </dependency>
         <dependency>
             <groupId>org.apache.nifi</groupId>
             <artifactId>nifi-mock</artifactId>
diff --git a/nifi-nar-bundles/nifi-grpc-bundle/pom.xml b/nifi-nar-bundles/nifi-grpc-bundle/pom.xml
index 3202af4367..81a1a62423 100644
--- a/nifi-nar-bundles/nifi-grpc-bundle/pom.xml
+++ b/nifi-nar-bundles/nifi-grpc-bundle/pom.xml
@@ -32,8 +32,8 @@
     </modules>
 
     <properties>
-        <grpc.version>1.34.0</grpc.version>
-        <protoc.version>3.14.0</protoc.version>
+        <grpc.version>1.48.0</grpc.version>
+        <protoc.version>3.21.4</protoc.version>
     </properties>
 
     <dependencyManagement>