Skip to content

Commit

Permalink
Update Zookeeper to fix cve [cql-tests][tp-tests]
Browse files Browse the repository at this point in the history
Signed-off-by: Oleksandr Porunov <[email protected]>
(cherry picked from commit 8c31747)
  • Loading branch information
porunov committed Nov 22, 2023
1 parent 05bd57c commit ce1fb2d
Show file tree
Hide file tree
Showing 3 changed files with 63 additions and 11 deletions.
8 changes: 8 additions & 0 deletions cassandra-hadoop-util/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,14 @@
</properties>

<dependencies>
<dependency>
<groupId>org.apache.curator</groupId>
<artifactId>curator-client</artifactId>
</dependency>
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-transport-native-epoll</artifactId>
</dependency>
<dependency>
<groupId>org.apache.hadoop</groupId>
<artifactId>hadoop-client</artifactId>
Expand Down
8 changes: 8 additions & 0 deletions janusgraph-hadoop/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,14 @@
<groupId>com.fasterxml.jackson.module</groupId>
<artifactId>jackson-module-scala_2.12</artifactId>
</dependency>
<dependency>
<groupId>org.apache.curator</groupId>
<artifactId>curator-client</artifactId>
</dependency>
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-transport-native-epoll</artifactId>
</dependency>
<dependency>
<groupId>org.apache.hadoop</groupId>
<artifactId>hadoop-client</artifactId>
Expand Down
58 changes: 47 additions & 11 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -67,8 +67,8 @@
<logback.version>1.2.11</logback.version>
<httpcomponents.httpclient.version>4.5.14</httpcomponents.httpclient.version>
<httpcomponents.httpcore.version>4.4.16</httpcomponents.httpcore.version>
<hadoop.version>3.3.5</hadoop.version>
<hbase2.version>2.5.3-hadoop3</hbase2.version>
<hadoop.version>3.3.6</hadoop.version>
<hbase2.version>2.5.6-hadoop3</hbase2.version>
<htrace.version>4.1.5</htrace.version>
<bigtable.version>1.24.0</bigtable.version>
<!-- align with org.apache.spark:spark-core_2.12 -->
Expand All @@ -77,8 +77,8 @@
<elasticsearch.version>8.10.4</elasticsearch.version>
<commons.beanutils.version>1.9.4</commons.beanutils.version>
<commons.collections.version>3.2.2</commons.collections.version>
<zookeeper.version>3.8.1</zookeeper.version>
<netty4.version>4.1.100.Final</netty4.version>
<zookeeper.version>3.9.1</zookeeper.version>
<netty4.version>4.1.101.Final</netty4.version>
<jna.version>5.13.0</jna.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
Expand Down Expand Up @@ -119,6 +119,7 @@
<graalvm-nativeimage.version>23.1.1</graalvm-nativeimage.version>
<caffeine.version>2.9.3</caffeine.version>
<checker-qual.version>3.39.0</checker-qual.version>
<curator.version>5.5.0</curator.version>
</properties>
<modules>
<module>janusgraph-grpc</module>
Expand Down Expand Up @@ -1290,6 +1291,18 @@
<groupId>ch.qos.reload4j</groupId>
<artifactId>reload4j</artifactId>
</exclusion>
<exclusion>
<groupId>org.apache.curator</groupId>
<artifactId>curator-framework</artifactId>
</exclusion>
<exclusion>
<groupId>org.apache.curator</groupId>
<artifactId>curator-recipes</artifactId>
</exclusion>
<exclusion>
<groupId>org.apache.curator</groupId>
<artifactId>curator-client</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
Expand All @@ -1305,6 +1318,18 @@
<groupId>ch.qos.reload4j</groupId>
<artifactId>reload4j</artifactId>
</exclusion>
<exclusion>
<groupId>org.apache.curator</groupId>
<artifactId>curator-framework</artifactId>
</exclusion>
<exclusion>
<groupId>org.apache.curator</groupId>
<artifactId>curator-recipes</artifactId>
</exclusion>
<exclusion>
<groupId>org.apache.curator</groupId>
<artifactId>curator-client</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
Expand Down Expand Up @@ -1374,12 +1399,28 @@
<dependency>
<groupId>org.apache.curator</groupId>
<artifactId>curator-framework</artifactId>
<version>4.2.0</version>
<version>${curator.version}</version>
</dependency>
<dependency>
<groupId>org.apache.curator</groupId>
<artifactId>curator-recipes</artifactId>
<version>4.2.0</version>
<version>${curator.version}</version>
</dependency>
<dependency>
<groupId>org.apache.curator</groupId>
<artifactId>curator-client</artifactId>
<version>${curator.version}</version>
<exclusions>
<exclusion>
<groupId>io.netty</groupId>
<artifactId>netty-transport-native-epoll</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-transport-native-epoll</artifactId>
<version>${netty4.version}</version>
</dependency>
<dependency>
<groupId>org.codehaus.woodstox</groupId>
Expand All @@ -1396,11 +1437,6 @@
<artifactId>hbase-noop-htrace</artifactId>
<version>${htrace.version}</version>
</dependency>
<dependency>
<groupId>org.apache.hbase.thirdparty</groupId>
<artifactId>hbase-noop-htrace</artifactId>
<version>${htrace.version}</version>
</dependency>
<dependency>
<groupId>org.json</groupId>
<artifactId>json</artifactId>
Expand Down

0 comments on commit ce1fb2d

Please sign in to comment.