You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@orc.apache.org by do...@apache.org on 2021/12/28 19:36:55 UTC

[orc] branch branch-1.7 updated: ORC-1067: Upgrade ZSTD to 1.5.1 (#981)

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

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


The following commit(s) were added to refs/heads/branch-1.7 by this push:
     new f171a4c  ORC-1067: Upgrade ZSTD to 1.5.1 (#981)
f171a4c is described below

commit f171a4c2914373c1c59014de81813a4405c9ee68
Author: David Christle <dc...@users.noreply.github.com>
AuthorDate: Tue Dec 28 12:35:53 2021 -0700

    ORC-1067: Upgrade ZSTD to 1.5.1 (#981)
    
    ### What changes were proposed in this pull request?
    
    Upgrade zstd in the C++ library to version 1.5.1.
    
    ### Why are the changes needed?
    This version is primarily a maintenance release that contains a variety of small bug fixes and improvements to the testing process. It also includes small performance improvements (~3-5%) at the fast compression levels. The release notes are here:
    
    https://github.com/facebook/zstd/releases/tag/v1.5.1
    
    ### How was this patch tested?
    Builds and passes CIs.
    
    (cherry picked from commit 0829da7be7df773bba2845e5221493987386ae07)
    Signed-off-by: Dongjoon Hyun <do...@apache.org>
---
 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 5ec18af..d04defa 100644
--- a/cmake_modules/ThirdpartyToolchain.cmake
+++ b/cmake_modules/ThirdpartyToolchain.cmake
@@ -15,7 +15,7 @@ set(SNAPPY_VERSION "1.1.7")
 set(ZLIB_VERSION "1.2.11")
 set(GTEST_VERSION "1.8.0")
 set(PROTOBUF_VERSION "3.5.1")
-set(ZSTD_VERSION "1.5.0")
+set(ZSTD_VERSION "1.5.1")
 
 option(ORC_PREFER_STATIC_PROTOBUF "Prefer static protobuf library, if available" ON)
 option(ORC_PREFER_STATIC_SNAPPY   "Prefer static snappy library, if available"   ON)