You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@orc.apache.org by ga...@apache.org on 2023/04/15 13:36:30 UTC

[orc] branch main updated: ORC-1410: [C++] Bump zstd to v1.5.5

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

gangwu pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/orc.git


The following commit(s) were added to refs/heads/main by this push:
     new 806dd012d ORC-1410: [C++] Bump zstd to v1.5.5
806dd012d is described below

commit 806dd012d878eaa2886b8b19bede90ca31c1fc29
Author: ffacs <ff...@gmail.com>
AuthorDate: Sat Apr 15 21:36:23 2023 +0800

    ORC-1410: [C++] Bump zstd to v1.5.5
    
    ### What changes were proposed in this pull request?
    Upgrade zstd to v1.5.5 for the C++ library.
    
    ### Why are the changes needed?
    The most recent release of zstd has fixed a rare corruption bug and brings some speed improvements.
    see also https://github.com/facebook/zstd/releases/tag/v1.5.5
    
    ### How was this patch tested?
    All UT passed
    
    This closes #1468
---
 cmake_modules/ThirdpartyToolchain.cmake | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/cmake_modules/ThirdpartyToolchain.cmake b/cmake_modules/ThirdpartyToolchain.cmake
index 86d46cfe7..47c1a65ba 100644
--- a/cmake_modules/ThirdpartyToolchain.cmake
+++ b/cmake_modules/ThirdpartyToolchain.cmake
@@ -20,7 +20,7 @@ set(SNAPPY_VERSION "1.1.7")
 set(ZLIB_VERSION "1.2.11")
 set(GTEST_VERSION "1.12.1")
 set(PROTOBUF_VERSION "3.5.1")
-set(ZSTD_VERSION "1.5.4")
+set(ZSTD_VERSION "1.5.5")
 
 option(ORC_PREFER_STATIC_PROTOBUF "Prefer static protobuf library, if available" ON)
 option(ORC_PREFER_STATIC_SNAPPY   "Prefer static snappy library, if available"   ON)