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

dongjoon pushed a commit to branch branch-1.0
in repository https://gitbox.apache.org/repos/asf/orc-format.git


The following commit(s) were added to refs/heads/branch-1.0 by this push:
     new 2e13d8c  ORC-FORMAT-29: Upgrade `protoc` and `protobuf-java` to 3.25.8
2e13d8c is described below

commit 2e13d8c2b280104409ce8046494c63394160277e
Author: cxzl25 <[email protected]>
AuthorDate: Thu Aug 14 01:22:01 2025 +0800

    ORC-FORMAT-29: Upgrade `protoc` and `protobuf-java` to 3.25.8
    
    This PR aims to fix the mismatch between protoc and protobuf in orc-format 
module.
    
    Using ORC 2.1.3, `protobuf.GeneratedMessage` will output some warning 
information.
    
    https://github.com/apache/orc/pull/2305
    
    local test
    
    After regenerating orc-format, no warning.
    
    This closes #29
    
    (cherry picked from commit 654dd3f6c2c9ed5bd14d59f317cd8cc8486f9970)
    Signed-off-by: Dongjoon Hyun <[email protected]>
---
 pom.xml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/pom.xml b/pom.xml
index 36eda49..6dba10c 100644
--- a/pom.xml
+++ b/pom.xml
@@ -61,7 +61,7 @@
         <maven.compiler.release>17</maven.compiler.release>
         
<maven.compiler.useIncrementalCompilation>false</maven.compiler.useIncrementalCompilation>
         <maven.version>3.9.6</maven.version>
-        <protoc.version>3.17.3</protoc.version>
+        <protoc.version>3.25.8</protoc.version>
         <test.tmp.dir>${project.build.directory}/testing-tmp</test.tmp.dir>
     </properties>
 
@@ -69,7 +69,7 @@
         <dependency>
             <groupId>com.google.protobuf</groupId>
             <artifactId>protobuf-java</artifactId>
-            <version>3.25.1</version>
+            <version>3.25.8</version>
         </dependency>
     </dependencies>
 

Reply via email to