(nifi) branch main updated: NIFI-12514 Added Windows support for Python venv

2024-03-15 Thread exceptionfactory
This is an automated email from the ASF dual-hosted git repository.

exceptionfactory 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 495a7dd7f5 NIFI-12514 Added Windows support for Python venv
495a7dd7f5 is described below

commit 495a7dd7f5b8cb2e365c25dcf4fbb37884ecdac3
Author: bob 
AuthorDate: Thu Mar 14 17:45:02 2024 -0500

NIFI-12514 Added Windows support for Python venv

This closes #8510

Signed-off-by: David Handermann 
---
 .../java/org/apache/nifi/py4j/PythonProcess.java   |  28 +-
 .../org/apache/nifi/py4j/PythonProcessTest.java| 109 +
 2 files changed, 132 insertions(+), 5 deletions(-)

diff --git 
a/nifi-nar-bundles/nifi-py4j-bundle/nifi-py4j-bridge/src/main/java/org/apache/nifi/py4j/PythonProcess.java
 
b/nifi-nar-bundles/nifi-py4j-bundle/nifi-py4j-bridge/src/main/java/org/apache/nifi/py4j/PythonProcess.java
index f34199b5bc..3cfb2b30f4 100644
--- 
a/nifi-nar-bundles/nifi-py4j-bundle/nifi-py4j-bridge/src/main/java/org/apache/nifi/py4j/PythonProcess.java
+++ 
b/nifi-nar-bundles/nifi-py4j-bundle/nifi-py4j-bridge/src/main/java/org/apache/nifi/py4j/PythonProcess.java
@@ -227,10 +227,7 @@ public class PythonProcess {
 private Process launchPythonProcess(final int listeningPort, final String 
authToken) throws IOException {
 final File pythonFrameworkDirectory = 
processConfig.getPythonFrameworkDirectory();
 final File pythonApiDirectory = new 
File(pythonFrameworkDirectory.getParentFile(), "api");
-final File pythonCmdFile = new File(processConfig.getPythonCommand());
-final String pythonCmd = pythonCmdFile.getName();
-final File pythonCommandFile = new File(virtualEnvHome, "bin/" + 
pythonCmd);
-final String pythonCommand = pythonCommandFile.getAbsolutePath();
+final String pythonCommand = resolvePythonCommand();
 
 final File controllerPyFile = new File(pythonFrameworkDirectory, 
PYTHON_CONTROLLER_FILENAME);
 final ProcessBuilder processBuilder = new ProcessBuilder();
@@ -256,7 +253,7 @@ public class PythonProcess {
 processBuilder.environment().put("JAVA_PORT", 
String.valueOf(listeningPort));
 processBuilder.environment().put("ENV_HOME", 
virtualEnvHome.getAbsolutePath());
 processBuilder.environment().put("PYTHONPATH", pythonPath);
-processBuilder.environment().put("PYTHON_CMD", 
pythonCommandFile.getAbsolutePath());
+processBuilder.environment().put("PYTHON_CMD", pythonCommand);
 processBuilder.environment().put("AUTH_TOKEN", authToken);
 
 // Redirect error stream to standard output stream
@@ -267,6 +264,27 @@ public class PythonProcess {
 return processBuilder.start();
 }
 
+String resolvePythonCommand() throws IOException {
+final File pythonCmdFile = new File(processConfig.getPythonCommand());
+final String pythonCmd = pythonCmdFile.getName();
+
+// Find command directories according to standard Python venv 
conventions
+final File[] virtualEnvDirectories = virtualEnvHome.listFiles((file, 
name) -> file.isDirectory() && (name.equals("bin") || name.equals("Scripts")));
+
+final String commandExecutableDirectory;
+if (virtualEnvDirectories == null || virtualEnvDirectories.length == 
0) {
+throw new IOException("Python binary directory could not be found 
in " + virtualEnvHome);
+} else if( virtualEnvDirectories.length == 1) {
+commandExecutableDirectory = virtualEnvDirectories[0].getName();
+} else {
+// Default to bin directory for macOS and Linux
+commandExecutableDirectory = "bin";
+}
+
+final File pythonCommandFile = new File(virtualEnvHome, 
commandExecutableDirectory + File.separator + pythonCmd);
+return pythonCommandFile.getAbsolutePath();
+}
+
 
 private void setupEnvironment() throws IOException {
 final File environmentCreationCompleteFile = new File(virtualEnvHome, 
"env-creation-complete.txt");
diff --git 
a/nifi-nar-bundles/nifi-py4j-bundle/nifi-py4j-bridge/src/test/java/org/apache/nifi/py4j/PythonProcessTest.java
 
b/nifi-nar-bundles/nifi-py4j-bundle/nifi-py4j-bridge/src/test/java/org/apache/nifi/py4j/PythonProcessTest.java
new file mode 100644
index 00..4a1ad32638
--- /dev/null
+++ 
b/nifi-nar-bundles/nifi-py4j-bundle/nifi-py4j-bridge/src/test/java/org/apache/nifi/py4j/PythonProcessTest.java
@@ -0,0 +1,109 @@
+/*
+ * 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 

(nifi) branch support/nifi-1.x updated: NIFI-12911 Upgraded Jagged from 0.3.0 to 0.3.2

2024-03-15 Thread joewitt
This is an automated email from the ASF dual-hosted git repository.

joewitt 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 06e452742b NIFI-12911 Upgraded Jagged from 0.3.0 to 0.3.2
06e452742b is described below

commit 06e452742b82364def9be816efde7cc026bf7f41
Author: exceptionfactory 
AuthorDate: Fri Mar 15 16:01:47 2024 -0500

NIFI-12911 Upgraded Jagged from 0.3.0 to 0.3.2
---
 nifi-nar-bundles/nifi-cipher-bundle/pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/nifi-nar-bundles/nifi-cipher-bundle/pom.xml 
b/nifi-nar-bundles/nifi-cipher-bundle/pom.xml
index 6fb6d30f62..e918ee4594 100644
--- a/nifi-nar-bundles/nifi-cipher-bundle/pom.xml
+++ b/nifi-nar-bundles/nifi-cipher-bundle/pom.xml
@@ -36,7 +36,7 @@
 
 com.exceptionfactory.jagged
 jagged-bom
-0.3.0
+0.3.2
 import
 pom
 



(nifi) branch main updated: NIFI-12911 Upgraded Jagged from 0.3.0 to 0.3.2 This closes #8522.

2024-03-15 Thread joewitt
This is an automated email from the ASF dual-hosted git repository.

joewitt 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 d62c8054d0 NIFI-12911 Upgraded Jagged from 0.3.0 to 0.3.2 This closes 
#8522.
d62c8054d0 is described below

commit d62c8054d016bbbd96b949e804fa471c6b24d274
Author: exceptionfactory 
AuthorDate: Fri Mar 15 16:01:47 2024 -0500

NIFI-12911 Upgraded Jagged from 0.3.0 to 0.3.2
This closes #8522.

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

diff --git a/nifi-nar-bundles/nifi-cipher-bundle/pom.xml 
b/nifi-nar-bundles/nifi-cipher-bundle/pom.xml
index b3e6233c0f..049d23b0de 100644
--- a/nifi-nar-bundles/nifi-cipher-bundle/pom.xml
+++ b/nifi-nar-bundles/nifi-cipher-bundle/pom.xml
@@ -36,7 +36,7 @@
 
 com.exceptionfactory.jagged
 jagged-bom
-0.3.0
+0.3.2
 import
 pom
 



(nifi) branch main updated: NIFI-12910 Upgraded Spring Framework from 6.0.17 to 6.0.18 This closes #8520.

2024-03-15 Thread joewitt
This is an automated email from the ASF dual-hosted git repository.

joewitt 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 82ea7a284c NIFI-12910 Upgraded Spring Framework from 6.0.17 to 6.0.18 
This closes #8520.
82ea7a284c is described below

commit 82ea7a284c164ab1de4fecdc41209018a3c208c7
Author: exceptionfactory 
AuthorDate: Fri Mar 15 15:54:11 2024 -0500

NIFI-12910 Upgraded Spring Framework from 6.0.17 to 6.0.18
This closes #8520.

- Upgraded Spring Boot from 3.2.2 to 3.2.3 for Registry
- Upgraded Spring Framework from 6.1.4 to 6.1.5 for Registry

Signed-off-by: Joseph Witt 
---
 nifi-registry/pom.xml | 4 ++--
 pom.xml   | 2 +-
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/nifi-registry/pom.xml b/nifi-registry/pom.xml
index 6dea181c9b..5bdeeb5d3a 100644
--- a/nifi-registry/pom.xml
+++ b/nifi-registry/pom.xml
@@ -35,8 +35,8 @@
 nifi-registry-docker-maven
 
 
-6.1.4
-3.2.2
+6.1.5
+3.2.3
 9.22.3
 9.5.0
 3.12.0
diff --git a/pom.xml b/pom.xml
index df42bb2751..67f63cf42e 100644
--- a/pom.xml
+++ b/pom.xml
@@ -151,7 +151,7 @@
 2.2
 4.1.106.Final
 6.0.0
-6.0.17
+6.0.18
 6.2.2
 2.2.20
 2.2.224



(nifi) branch support/nifi-1.x updated (37eb52d75f -> e48a8b5d4e)

2024-03-15 Thread exceptionfactory
This is an automated email from the ASF dual-hosted git repository.

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


from 37eb52d75f NIFI-12700: refactored PutKudu to optimize memory handling 
for AUTO_FLUSH_SYNC flush mode (unbatched flush)
 add e48a8b5d4e NIFI-12909 Upgraded Nimbus JOSE+JWT from 9.33.0 to 9.37.3

No new revisions were added by this update.

Summary of changes:
 nifi-nar-bundles/nifi-accumulo-bundle/pom.xml   | 2 +-
 nifi-nar-bundles/nifi-atlas-bundle/pom.xml  | 2 +-
 nifi-nar-bundles/nifi-azure-bundle/pom.xml  | 2 +-
 nifi-nar-bundles/nifi-framework-bundle/pom.xml  | 2 +-
 nifi-nar-bundles/nifi-hadoop-libraries-bundle/pom.xml   | 2 +-
 nifi-nar-bundles/nifi-hive-bundle/pom.xml   | 2 +-
 nifi-nar-bundles/nifi-iceberg-bundle/pom.xml| 2 +-
 nifi-nar-bundles/nifi-ranger-bundle/pom.xml | 2 +-
 nifi-nar-bundles/nifi-spark-bundle/pom.xml  | 2 +-
 .../nifi-standard-services/nifi-hbase_2-client-service-bundle/pom.xml   | 2 +-
 nifi-registry/nifi-registry-core/pom.xml| 2 +-
 nifi-registry/nifi-registry-extensions/nifi-registry-ranger/pom.xml | 2 +-
 12 files changed, 12 insertions(+), 12 deletions(-)



(nifi) branch main updated (d97c794696 -> 82e11df835)

2024-03-15 Thread exceptionfactory
This is an automated email from the ASF dual-hosted git repository.

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


from d97c794696 NIFI-12902: Migrating to 
@angular-devkit/build-angular:application (#8507)
 add 82e11df835 NIFI-12909 Upgraded Nimbus JOSE+JWT from 9.33.0 to 9.37.3

No new revisions were added by this update.

Summary of changes:
 nifi-nar-bundles/nifi-accumulo-bundle/pom.xml   | 2 +-
 nifi-nar-bundles/nifi-azure-bundle/pom.xml  | 2 +-
 nifi-nar-bundles/nifi-framework-bundle/pom.xml  | 2 +-
 nifi-nar-bundles/nifi-hadoop-libraries-bundle/pom.xml   | 2 +-
 nifi-nar-bundles/nifi-hive-bundle/pom.xml   | 2 +-
 nifi-nar-bundles/nifi-iceberg-bundle/pom.xml| 2 +-
 .../nifi-standard-services/nifi-hbase_2-client-service-bundle/pom.xml   | 2 +-
 nifi-registry/nifi-registry-core/pom.xml| 2 +-
 8 files changed, 8 insertions(+), 8 deletions(-)



(nifi) branch main updated (3719fddf84 -> d97c794696)

2024-03-15 Thread rfellows
This is an automated email from the ASF dual-hosted git repository.

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


from 3719fddf84 NIFI-12700: refactored PutKudu to optimize memory handling 
for AUTO_FLUSH_SYNC flush mode (unbatched flush)
 add d97c794696 NIFI-12902: Migrating to 
@angular-devkit/build-angular:application (#8507)

No new revisions were added by this update.

Summary of changes:
 .../nifi-web-frontend/src/main/nifi/angular.json   |  7 +-
 .../src/main/nifi/package-lock.json| 18 +++--
 .../nifi-web-frontend/src/main/nifi/package.json   |  3 +-
 .../src/main/nifi/proxy.config.mjs | 18 -
 .../provenance-event-listing.effects.ts|  3 +-
 .../state/queue-listing/queue-listing.effects.ts   |  2 +-
 .../parameter-tip/parameter-tip.component.scss |  2 +-
 .../src/main/nifi/src/styles.scss  | 92 +-
 8 files changed, 40 insertions(+), 105 deletions(-)



(nifi) branch main updated: NIFI-12700: refactored PutKudu to optimize memory handling for AUTO_FLUSH_SYNC flush mode (unbatched flush)

2024-03-15 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 3719fddf84 NIFI-12700: refactored PutKudu to optimize memory handling 
for AUTO_FLUSH_SYNC flush mode (unbatched flush)
3719fddf84 is described below

commit 3719fddf84ffcf18ed29d87ee931aa1acc1699d3
Author: emiliosetiadarma 
AuthorDate: Mon Jan 22 01:28:09 2024 -0800

NIFI-12700: refactored PutKudu to optimize memory handling for 
AUTO_FLUSH_SYNC flush mode (unbatched flush)

NIFI-12700: made changes based on PR comments. Simplified statements 
involving determination of whether or not there are flowfile 
failures/rowErrors. Separated out getting rowErrors from OperationResponses 
into its own function

Signed-off-by: Matt Burgess 

This closes #8322
---
 .../processors/kudu/AbstractKuduProcessor.java |  40 --
 .../kudu/AutoFlushSyncPutKuduResult.java   |  78 +++
 .../org/apache/nifi/processors/kudu/PutKudu.java   | 110 
 .../apache/nifi/processors/kudu/PutKuduResult.java | 144 +
 .../processors/kudu/StandardPutKuduResult.java |  83 
 5 files changed, 388 insertions(+), 67 deletions(-)

diff --git 
a/nifi-nar-bundles/nifi-kudu-bundle/nifi-kudu-processors/src/main/java/org/apache/nifi/processors/kudu/AbstractKuduProcessor.java
 
b/nifi-nar-bundles/nifi-kudu-bundle/nifi-kudu-processors/src/main/java/org/apache/nifi/processors/kudu/AbstractKuduProcessor.java
index 47c1a34903..b44f2330ee 100644
--- 
a/nifi-nar-bundles/nifi-kudu-bundle/nifi-kudu-processors/src/main/java/org/apache/nifi/processors/kudu/AbstractKuduProcessor.java
+++ 
b/nifi-nar-bundles/nifi-kudu-bundle/nifi-kudu-processors/src/main/java/org/apache/nifi/processors/kudu/AbstractKuduProcessor.java
@@ -22,6 +22,7 @@ import java.sql.Date;
 import java.sql.Timestamp;
 import java.time.LocalDate;
 import java.util.Arrays;
+import java.util.Collections;
 import java.util.List;
 import java.util.Optional;
 import java.util.concurrent.Executor;
@@ -35,6 +36,8 @@ import java.util.concurrent.locks.Lock;
 import java.util.concurrent.locks.ReadWriteLock;
 import java.util.concurrent.locks.ReentrantReadWriteLock;
 import java.util.function.Consumer;
+import java.util.stream.Collectors;
+
 import org.apache.kudu.ColumnSchema;
 import org.apache.kudu.ColumnTypeAttributes;
 import org.apache.kudu.Schema;
@@ -217,19 +220,33 @@ public abstract class AbstractKuduProcessor extends 
AbstractProcessor {
 }
 }
 
-protected void flushKuduSession(final KuduSession kuduSession, boolean 
close, final List rowErrors) throws KuduException {
-final List responses = close ? kuduSession.close() 
: kuduSession.flush();
-
+/**
+ * Get the pending errors from the active {@link KuduSession}. This will 
only be applicable if the flushMode is
+ * {@code SessionConfiguration.FlushMode.AUTO_FLUSH_BACKGROUND}.
+ * @return  a {@link List} of pending {@link RowError}s
+ */
+protected List getPendingRowErrorsFromKuduSession(final 
KuduSession kuduSession) {
 if (kuduSession.getFlushMode() == 
SessionConfiguration.FlushMode.AUTO_FLUSH_BACKGROUND) {
-
rowErrors.addAll(Arrays.asList(kuduSession.getPendingErrors().getRowErrors()));
+return 
Arrays.asList(kuduSession.getPendingErrors().getRowErrors());
 } else {
-responses.stream()
-.filter(OperationResponse::hasRowError)
-.map(OperationResponse::getRowError)
-.forEach(rowErrors::add);
+return Collections.EMPTY_LIST;
 }
 }
 
+protected List flushKuduSession(final KuduSession kuduSession) 
throws KuduException {
+final List responses = kuduSession.flush();
+// RowErrors will only be present in the OperationResponses in this 
case if the flush mode
+// selected is MANUAL_FLUSH. It will be empty otherwise.
+return getRowErrors(responses);
+}
+
+protected List closeKuduSession(final KuduSession kuduSession) 
throws KuduException {
+final List responses = kuduSession.close();
+// RowErrors will only be present in the OperationResponses in this 
case if the flush mode
+// selected is MANUAL_FLUSH, since the underlying implementation of 
kuduSession.close() returns
+// the OperationResponses from a flush() call.
+return getRowErrors(responses);
+}
 
 @OnStopped
 public void shutdown() throws Exception {
@@ -410,4 +427,11 @@ public abstract class AbstractKuduProcessor extends 
AbstractProcessor {
 return String.format("PutKudu[%s]-client-%d", identifier, 
threadCount.getAndIncrement());
 }
 }
+
+private List getRowErrors(final List 
responses) {
+return responses.stream()
+

(nifi) branch support/nifi-1.x updated (4093fc1ab0 -> 37eb52d75f)

2024-03-15 Thread mattyb149
This is an automated email from the ASF dual-hosted git repository.

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


from 4093fc1ab0 NIFI-12901 Removed time units in description of time period 
properties
 add 37eb52d75f NIFI-12700: refactored PutKudu to optimize memory handling 
for AUTO_FLUSH_SYNC flush mode (unbatched flush)

No new revisions were added by this update.

Summary of changes:
 .../processors/kudu/AbstractKuduProcessor.java |  40 --
 .../kudu/AutoFlushSyncPutKuduResult.java   |  78 +++
 .../org/apache/nifi/processors/kudu/PutKudu.java   | 110 
 .../apache/nifi/processors/kudu/PutKuduResult.java | 144 +
 .../processors/kudu/StandardPutKuduResult.java |  83 
 5 files changed, 388 insertions(+), 67 deletions(-)
 create mode 100644 
nifi-nar-bundles/nifi-kudu-bundle/nifi-kudu-processors/src/main/java/org/apache/nifi/processors/kudu/AutoFlushSyncPutKuduResult.java
 create mode 100644 
nifi-nar-bundles/nifi-kudu-bundle/nifi-kudu-processors/src/main/java/org/apache/nifi/processors/kudu/PutKuduResult.java
 create mode 100644 
nifi-nar-bundles/nifi-kudu-bundle/nifi-kudu-processors/src/main/java/org/apache/nifi/processors/kudu/StandardPutKuduResult.java



(nifi) branch dependabot/maven/nifi-nar-bundles/nifi-framework-bundle/com.nimbusds-nimbus-jose-jwt-9.37.2 deleted (was 546205a6fb)

2024-03-15 Thread github-bot
This is an automated email from the ASF dual-hosted git repository.

github-bot pushed a change to branch 
dependabot/maven/nifi-nar-bundles/nifi-framework-bundle/com.nimbusds-nimbus-jose-jwt-9.37.2
in repository https://gitbox.apache.org/repos/asf/nifi.git


 was 546205a6fb Bump com.nimbusds:nimbus-jose-jwt

The revisions that were on this branch are still contained in
other references; therefore, this change does not discard any commits
from the repository.



(nifi) branch dependabot/maven/nifi-nar-bundles/nifi-standard-services/nifi-hbase_2-client-service-bundle/com.nimbusds-nimbus-jose-jwt-9.37.2 deleted (was fe4fb3eb7f)

2024-03-15 Thread github-bot
This is an automated email from the ASF dual-hosted git repository.

github-bot pushed a change to branch 
dependabot/maven/nifi-nar-bundles/nifi-standard-services/nifi-hbase_2-client-service-bundle/com.nimbusds-nimbus-jose-jwt-9.37.2
in repository https://gitbox.apache.org/repos/asf/nifi.git


 was fe4fb3eb7f Bump com.nimbusds:nimbus-jose-jwt

The revisions that were on this branch are still contained in
other references; therefore, this change does not discard any commits
from the repository.



(nifi) branch dependabot/maven/nifi-nar-bundles/nifi-accumulo-bundle/com.nimbusds-nimbus-jose-jwt-9.37.2 deleted (was 3dafc362e7)

2024-03-15 Thread github-bot
This is an automated email from the ASF dual-hosted git repository.

github-bot pushed a change to branch 
dependabot/maven/nifi-nar-bundles/nifi-accumulo-bundle/com.nimbusds-nimbus-jose-jwt-9.37.2
in repository https://gitbox.apache.org/repos/asf/nifi.git


 was 3dafc362e7 Bump com.nimbusds:nimbus-jose-jwt

The revisions that were on this branch are still contained in
other references; therefore, this change does not discard any commits
from the repository.



(nifi) branch dependabot/maven/nifi-nar-bundles/nifi-hive-bundle/com.nimbusds-nimbus-jose-jwt-9.37.2 deleted (was 595b077795)

2024-03-15 Thread github-bot
This is an automated email from the ASF dual-hosted git repository.

github-bot pushed a change to branch 
dependabot/maven/nifi-nar-bundles/nifi-hive-bundle/com.nimbusds-nimbus-jose-jwt-9.37.2
in repository https://gitbox.apache.org/repos/asf/nifi.git


 was 595b077795 Bump com.nimbusds:nimbus-jose-jwt in 
/nifi-nar-bundles/nifi-hive-bundle

The revisions that were on this branch are still contained in
other references; therefore, this change does not discard any commits
from the repository.



(nifi) branch dependabot/maven/nifi-nar-bundles/nifi-iceberg-bundle/com.nimbusds-nimbus-jose-jwt-9.37.2 deleted (was 9cb425fbbc)

2024-03-15 Thread github-bot
This is an automated email from the ASF dual-hosted git repository.

github-bot pushed a change to branch 
dependabot/maven/nifi-nar-bundles/nifi-iceberg-bundle/com.nimbusds-nimbus-jose-jwt-9.37.2
in repository https://gitbox.apache.org/repos/asf/nifi.git


 was 9cb425fbbc Bump com.nimbusds:nimbus-jose-jwt

The revisions that were on this branch are still contained in
other references; therefore, this change does not discard any commits
from the repository.



(nifi) branch dependabot/maven/nifi-nar-bundles/nifi-azure-bundle/com.nimbusds-nimbus-jose-jwt-9.37.2 deleted (was f04e65bf9e)

2024-03-15 Thread github-bot
This is an automated email from the ASF dual-hosted git repository.

github-bot pushed a change to branch 
dependabot/maven/nifi-nar-bundles/nifi-azure-bundle/com.nimbusds-nimbus-jose-jwt-9.37.2
in repository https://gitbox.apache.org/repos/asf/nifi.git


 was f04e65bf9e Bump com.nimbusds:nimbus-jose-jwt in 
/nifi-nar-bundles/nifi-azure-bundle

The revisions that were on this branch are still contained in
other references; therefore, this change does not discard any commits
from the repository.



(nifi) branch dependabot/maven/nifi-nar-bundles/nifi-hadoop-libraries-bundle/com.nimbusds-nimbus-jose-jwt-9.37.2 deleted (was ca9b771b0e)

2024-03-15 Thread github-bot
This is an automated email from the ASF dual-hosted git repository.

github-bot pushed a change to branch 
dependabot/maven/nifi-nar-bundles/nifi-hadoop-libraries-bundle/com.nimbusds-nimbus-jose-jwt-9.37.2
in repository https://gitbox.apache.org/repos/asf/nifi.git


 was ca9b771b0e Bump com.nimbusds:nimbus-jose-jwt

The revisions that were on this branch are still contained in
other references; therefore, this change does not discard any commits
from the repository.



(nifi) branch dependabot/maven/nifi-nar-bundles/nifi-hadoop-libraries-bundle/com.nimbusds-nimbus-jose-jwt-9.37.2 created (now ca9b771b0e)

2024-03-15 Thread github-bot
This is an automated email from the ASF dual-hosted git repository.

github-bot pushed a change to branch 
dependabot/maven/nifi-nar-bundles/nifi-hadoop-libraries-bundle/com.nimbusds-nimbus-jose-jwt-9.37.2
in repository https://gitbox.apache.org/repos/asf/nifi.git


  at ca9b771b0e Bump com.nimbusds:nimbus-jose-jwt

No new revisions were added by this update.



(nifi) branch dependabot/maven/nifi-nar-bundles/nifi-azure-bundle/com.nimbusds-nimbus-jose-jwt-9.37.2 created (now f04e65bf9e)

2024-03-15 Thread github-bot
This is an automated email from the ASF dual-hosted git repository.

github-bot pushed a change to branch 
dependabot/maven/nifi-nar-bundles/nifi-azure-bundle/com.nimbusds-nimbus-jose-jwt-9.37.2
in repository https://gitbox.apache.org/repos/asf/nifi.git


  at f04e65bf9e Bump com.nimbusds:nimbus-jose-jwt in 
/nifi-nar-bundles/nifi-azure-bundle

No new revisions were added by this update.



(nifi) branch dependabot/maven/nifi-nar-bundles/nifi-iceberg-bundle/com.nimbusds-nimbus-jose-jwt-9.37.2 created (now 9cb425fbbc)

2024-03-15 Thread github-bot
This is an automated email from the ASF dual-hosted git repository.

github-bot pushed a change to branch 
dependabot/maven/nifi-nar-bundles/nifi-iceberg-bundle/com.nimbusds-nimbus-jose-jwt-9.37.2
in repository https://gitbox.apache.org/repos/asf/nifi.git


  at 9cb425fbbc Bump com.nimbusds:nimbus-jose-jwt

No new revisions were added by this update.



(nifi) branch dependabot/maven/nifi-nar-bundles/nifi-standard-services/nifi-hbase_2-client-service-bundle/com.nimbusds-nimbus-jose-jwt-9.37.2 created (now fe4fb3eb7f)

2024-03-15 Thread github-bot
This is an automated email from the ASF dual-hosted git repository.

github-bot pushed a change to branch 
dependabot/maven/nifi-nar-bundles/nifi-standard-services/nifi-hbase_2-client-service-bundle/com.nimbusds-nimbus-jose-jwt-9.37.2
in repository https://gitbox.apache.org/repos/asf/nifi.git


  at fe4fb3eb7f Bump com.nimbusds:nimbus-jose-jwt

No new revisions were added by this update.



(nifi) branch dependabot/maven/nifi-nar-bundles/nifi-hive-bundle/com.nimbusds-nimbus-jose-jwt-9.37.2 created (now 595b077795)

2024-03-15 Thread github-bot
This is an automated email from the ASF dual-hosted git repository.

github-bot pushed a change to branch 
dependabot/maven/nifi-nar-bundles/nifi-hive-bundle/com.nimbusds-nimbus-jose-jwt-9.37.2
in repository https://gitbox.apache.org/repos/asf/nifi.git


  at 595b077795 Bump com.nimbusds:nimbus-jose-jwt in 
/nifi-nar-bundles/nifi-hive-bundle

No new revisions were added by this update.



(nifi) branch dependabot/maven/nifi-nar-bundles/nifi-accumulo-bundle/com.nimbusds-nimbus-jose-jwt-9.37.2 created (now 3dafc362e7)

2024-03-15 Thread github-bot
This is an automated email from the ASF dual-hosted git repository.

github-bot pushed a change to branch 
dependabot/maven/nifi-nar-bundles/nifi-accumulo-bundle/com.nimbusds-nimbus-jose-jwt-9.37.2
in repository https://gitbox.apache.org/repos/asf/nifi.git


  at 3dafc362e7 Bump com.nimbusds:nimbus-jose-jwt

No new revisions were added by this update.



(nifi) branch dependabot/maven/nifi-nar-bundles/nifi-framework-bundle/com.nimbusds-nimbus-jose-jwt-9.37.2 created (now 546205a6fb)

2024-03-15 Thread github-bot
This is an automated email from the ASF dual-hosted git repository.

github-bot pushed a change to branch 
dependabot/maven/nifi-nar-bundles/nifi-framework-bundle/com.nimbusds-nimbus-jose-jwt-9.37.2
in repository https://gitbox.apache.org/repos/asf/nifi.git


  at 546205a6fb Bump com.nimbusds:nimbus-jose-jwt

No new revisions were added by this update.