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

jiangtian pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/iotdb.git


The following commit(s) were added to refs/heads/master by this push:
     new ad8bedc1d50 Bump ratis to 3.2.1 (#15871)
ad8bedc1d50 is described below

commit ad8bedc1d506baa2f20dcbeb5303871ef9bc3a37
Author: CritasWang <[email protected]>
AuthorDate: Fri Jul 4 14:16:51 2025 +0800

    Bump ratis to 3.2.1 (#15871)
    
    * Bump ratis to 3.2.1
    
    * keep ratis-thirdparty-misc use org.apache
    
    * fix dependencies
---
 dependencies.json               | 14 +++++++-------
 iotdb-core/confignode/pom.xml   |  2 +-
 iotdb-core/consensus/pom.xml    | 14 +++++++-------
 iotdb-core/datanode/pom.xml     |  2 +-
 iotdb-core/node-commons/pom.xml |  2 +-
 pom.xml                         | 16 ++++++++--------
 6 files changed, 25 insertions(+), 25 deletions(-)

diff --git a/dependencies.json b/dependencies.json
index 2e121a31444..1f8f06da726 100644
--- a/dependencies.json
+++ b/dependencies.json
@@ -95,13 +95,13 @@
         "org.apache.commons:commons-pool2",
         "org.apache.httpcomponents:httpclient",
         "org.apache.httpcomponents:httpcore",
-        "org.apache.ratis:ratis-client",
-        "org.apache.ratis:ratis-common",
-        "org.apache.ratis:ratis-grpc",
-        "org.apache.ratis:ratis-metrics-api",
-        "org.apache.ratis:ratis-proto",
-        "org.apache.ratis:ratis-server",
-        "org.apache.ratis:ratis-server-api",
+        "com.timecho.ratis:ratis-client",
+        "com.timecho.ratis:ratis-common",
+        "com.timecho.ratis:ratis-grpc",
+        "com.timecho.ratis:ratis-metrics-api",
+        "com.timecho.ratis:ratis-proto",
+        "com.timecho.ratis:ratis-server",
+        "com.timecho.ratis:ratis-server-api",
         "org.apache.ratis:ratis-thirdparty-misc",
         "org.apache.thrift:libthrift",
         "org.apache.tsfile:common",
diff --git a/iotdb-core/confignode/pom.xml b/iotdb-core/confignode/pom.xml
index 37c737618b8..abffbbcaf08 100644
--- a/iotdb-core/confignode/pom.xml
+++ b/iotdb-core/confignode/pom.xml
@@ -117,7 +117,7 @@
             <artifactId>commons-io</artifactId>
         </dependency>
         <dependency>
-            <groupId>org.apache.ratis</groupId>
+            <groupId>com.timecho.ratis</groupId>
             <artifactId>ratis-common</artifactId>
         </dependency>
         <dependency>
diff --git a/iotdb-core/consensus/pom.xml b/iotdb-core/consensus/pom.xml
index 93a8b888d7a..5280b94468c 100644
--- a/iotdb-core/consensus/pom.xml
+++ b/iotdb-core/consensus/pom.xml
@@ -67,31 +67,31 @@
             <version>2.0.5-SNAPSHOT</version>
         </dependency>
         <dependency>
-            <groupId>org.apache.ratis</groupId>
+            <groupId>com.timecho.ratis</groupId>
             <artifactId>ratis-server</artifactId>
         </dependency>
         <dependency>
-            <groupId>org.apache.ratis</groupId>
+            <groupId>com.timecho.ratis</groupId>
             <artifactId>ratis-server-api</artifactId>
         </dependency>
         <dependency>
-            <groupId>org.apache.ratis</groupId>
+            <groupId>com.timecho.ratis</groupId>
             <artifactId>ratis-common</artifactId>
         </dependency>
         <dependency>
-            <groupId>org.apache.ratis</groupId>
+            <groupId>com.timecho.ratis</groupId>
             <artifactId>ratis-client</artifactId>
         </dependency>
         <dependency>
-            <groupId>org.apache.ratis</groupId>
+            <groupId>com.timecho.ratis</groupId>
             <artifactId>ratis-grpc</artifactId>
         </dependency>
         <dependency>
-            <groupId>org.apache.ratis</groupId>
+            <groupId>com.timecho.ratis</groupId>
             <artifactId>ratis-proto</artifactId>
         </dependency>
         <dependency>
-            <groupId>org.apache.ratis</groupId>
+            <groupId>com.timecho.ratis</groupId>
             <artifactId>ratis-metrics-api</artifactId>
         </dependency>
         <dependency>
diff --git a/iotdb-core/datanode/pom.xml b/iotdb-core/datanode/pom.xml
index 0a4d9418916..f1cd4a4fe46 100644
--- a/iotdb-core/datanode/pom.xml
+++ b/iotdb-core/datanode/pom.xml
@@ -164,7 +164,7 @@
             <artifactId>netty-common</artifactId>
         </dependency>
         <dependency>
-            <groupId>org.apache.ratis</groupId>
+            <groupId>com.timecho.ratis</groupId>
             <artifactId>ratis-common</artifactId>
         </dependency>
         <dependency>
diff --git a/iotdb-core/node-commons/pom.xml b/iotdb-core/node-commons/pom.xml
index 7998441539a..cc2e7a5f90a 100644
--- a/iotdb-core/node-commons/pom.xml
+++ b/iotdb-core/node-commons/pom.xml
@@ -191,7 +191,7 @@
             <scope>test</scope>
         </dependency>
         <dependency>
-            <groupId>org.apache.ratis</groupId>
+            <groupId>com.timecho.ratis</groupId>
             <artifactId>ratis-common</artifactId>
         </dependency>
         <dependency>
diff --git a/pom.xml b/pom.xml
index d7b37da1409..1fa9a6e8eb1 100644
--- a/pom.xml
+++ b/pom.xml
@@ -144,7 +144,7 @@
       is for ensuring the SNAPSHOT will stay available. We should however have 
the Ratis folks do a
       new release soon, as releasing with this version is more than sub-ideal.
     -->
-        <ratis.version>3.2.0</ratis.version>
+        <ratis.version>3.2.1</ratis.version>
         <reactive-streams.version>1.0.4</reactive-streams.version>
         <reactor-netty.version>1.1.20</reactor-netty.version>
         <reactor.version>3.5.18</reactor.version>
@@ -319,37 +319,37 @@
                 <version>${commons-io.version}</version>
             </dependency>
             <dependency>
-                <groupId>org.apache.ratis</groupId>
+                <groupId>com.timecho.ratis</groupId>
                 <artifactId>ratis-server</artifactId>
                 <version>${ratis.version}</version>
             </dependency>
             <dependency>
-                <groupId>org.apache.ratis</groupId>
+                <groupId>com.timecho.ratis</groupId>
                 <artifactId>ratis-server-api</artifactId>
                 <version>${ratis.version}</version>
             </dependency>
             <dependency>
-                <groupId>org.apache.ratis</groupId>
+                <groupId>com.timecho.ratis</groupId>
                 <artifactId>ratis-common</artifactId>
                 <version>${ratis.version}</version>
             </dependency>
             <dependency>
-                <groupId>org.apache.ratis</groupId>
+                <groupId>com.timecho.ratis</groupId>
                 <artifactId>ratis-client</artifactId>
                 <version>${ratis.version}</version>
             </dependency>
             <dependency>
-                <groupId>org.apache.ratis</groupId>
+                <groupId>com.timecho.ratis</groupId>
                 <artifactId>ratis-grpc</artifactId>
                 <version>${ratis.version}</version>
             </dependency>
             <dependency>
-                <groupId>org.apache.ratis</groupId>
+                <groupId>com.timecho.ratis</groupId>
                 <artifactId>ratis-proto</artifactId>
                 <version>${ratis.version}</version>
             </dependency>
             <dependency>
-                <groupId>org.apache.ratis</groupId>
+                <groupId>com.timecho.ratis</groupId>
                 <artifactId>ratis-metrics-api</artifactId>
                 <version>${ratis.version}</version>
             </dependency>

Reply via email to