Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .mvn/wrapper/maven-wrapper.properties
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,5 @@
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.9.12/apache-maven-3.9.12-bin.zip
distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.9.13/apache-maven-3.9.13-bin.zip
wrapperUrl=https://repo.maven.apache.org/maven2/org/apache/maven/wrapper/maven-wrapper/3.3.4/maven-wrapper-3.3.4.jar
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@
<dependency>
<groupId>org.apache.maven</groupId>
<artifactId>maven-artifact</artifactId>
<version>3.9.12</version>
<version>3.9.13</version>
<scope>test</scope>
</dependency>
</dependencies>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@

<properties>
<protobuf.version>4.34.0</protobuf.version>
<wire.version>5.5.0</wire.version>
<wire.version>5.5.1</wire.version>
</properties>

<dependencies>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@
<dependency>
<groupId>de.siegmar</groupId>
<artifactId>fastcsv</artifactId>
<version>4.1.0</version>
<version>4.1.1</version>
</dependency>
<dependency>
<groupId>com.github.palindromicity</groupId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,4 +30,9 @@ protected String getConfigPrefix() {
protected boolean shouldVerifyClientHostname() {
return true;
}

@Override
protected boolean shouldAllowReverseDnsLookup() {
return false;
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -30,4 +30,9 @@ protected String getConfigPrefix() {
protected boolean shouldVerifyClientHostname() {
return true;
}

@Override
protected boolean shouldAllowReverseDnsLookup() {
return false;
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
<packaging>pom</packaging>

<properties>
<zookeeper.version>3.9.4</zookeeper.version>
<zookeeper.version>3.9.5</zookeeper.version>
<curator.version>5.9.0</curator.version>
</properties>

Expand Down
2 changes: 1 addition & 1 deletion nifi-registry/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -243,7 +243,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-resources-plugin</artifactId>
<version>3.4.0</version>
<version>3.5.0</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
Expand Down
14 changes: 7 additions & 7 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -116,13 +116,13 @@
<node.version>v22.19.0</node.version>

<!-- NiFi build -->
<nifi-api.version>2.6.0</nifi-api.version>
<nifi-api.version>2.7.0</nifi-api.version>
<nifi.nar.maven.plugin.version>2.3.0</nifi.nar.maven.plugin.version>

<!-- CSPs SDK -->
<software.amazon.awssdk.version>2.42.6</software.amazon.awssdk.version>
<software.amazon.awssdk.version>2.42.8</software.amazon.awssdk.version>
<software.amazon.encryption.s3.version>4.0.1</software.amazon.encryption.s3.version>
<azure.sdk.bom.version>1.3.4</azure.sdk.bom.version> <!-- when changing this version, also update msal4j to the version that is required by azure-identity -->
<azure.sdk.bom.version>1.3.5</azure.sdk.bom.version> <!-- when changing this version, also update msal4j to the version that is required by azure-identity -->

<!-- Apache Commons -->
<org.apache.commons.cli.version>1.11.0</org.apache.commons.cli.version>
Expand All @@ -141,7 +141,7 @@
<ozone.version>1.4.1</ozone.version>

<!-- Kubernetes -->
<io.fabric8.kubernetes.client.version>7.6.0</io.fabric8.kubernetes.client.version>
<io.fabric8.kubernetes.client.version>7.6.1</io.fabric8.kubernetes.client.version>

<!-- Data access -->
<commons.dbcp2.version>2.14.0</commons.dbcp2.version>
Expand Down Expand Up @@ -180,7 +180,7 @@

<!-- Security -->
<nimbus-jose-jwt.version>10.8</nimbus-jose-jwt.version>
<nimbus-oauth2-oidc.version>11.33</nimbus-oauth2-oidc.version>
<nimbus-oauth2-oidc.version>11.34</nimbus-oauth2-oidc.version>
<org.bouncycastle.version>1.83</org.bouncycastle.version>

<!-- Utilities -->
Expand All @@ -195,7 +195,7 @@
<jakarta.activation-api.version>2.1.4</jakarta.activation-api.version>
<jaxb.runtime.version>4.0.6</jaxb.runtime.version>
<jersey.bom.version>4.0.2</jersey.bom.version>
<jetty.version>12.1.6</jetty.version>
<jetty.version>12.1.7</jetty.version>
<servlet-api.version>6.1.0</servlet-api.version>
<spring.security.version>7.0.3</spring.security.version>
<spring.version>7.0.5</spring.version>
Expand Down Expand Up @@ -910,7 +910,7 @@
</plugins>
</requireSameVersions>
<requireMavenVersion>
<version>3.9.12</version>
<version>3.9.13</version>
</requireMavenVersion>
<requireReleaseDeps>
<message>Dependencies outside of Apache NiFi must not use SNAPSHOT versions</message>
Expand Down
Loading