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 2020/08/03 22:01:59 UTC

[orc] branch branch-1.6 updated: ORC-652: Upgrade ZSTD to 1.4.5

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

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


The following commit(s) were added to refs/heads/branch-1.6 by this push:
     new 7374425  ORC-652: Upgrade ZSTD to 1.4.5
7374425 is described below

commit 7374425d954e1075ffd932d0b05d01686016b1d6
Author: Dongjoon Hyun <do...@apache.org>
AuthorDate: Mon Aug 3 14:59:57 2020 -0700

    ORC-652: Upgrade ZSTD to 1.4.5
    
    ### What changes were proposed in this pull request?
    
    This PR aims to upgrade ZSTD from 1.3.5 to 1.4.5.
    
    ### Why are the changes needed?
    
    This will bring the latest improvements and bug fixes.
    - https://github.com/facebook/zstd/releases/tag/v1.4.5
    - https://github.com/facebook/zstd/releases/tag/v1.4.4
    - https://github.com/facebook/zstd/releases/tag/v1.4.3
    - https://github.com/facebook/zstd/releases/tag/v1.4.2
    - https://github.com/facebook/zstd/releases/tag/v1.4.1
    - https://github.com/facebook/zstd/releases/tag/v1.4.0
    - https://github.com/facebook/zstd/releases/tag/v1.3.8
    - https://github.com/facebook/zstd/releases/tag/v1.3.7
    - https://github.com/facebook/zstd/releases/tag/v1.3.6
    
    ### How was this patch tested?
    
    Pass the CIs.
    
    (cherry picked from commit 18d082822eabbc9caf5a7033edb39a96eabc44a0)
    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 7692444..3a35325 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.3.5")
+set(ZSTD_VERSION "1.4.5")
 
 # zstd requires us to add the threads
 FIND_PACKAGE(Threads REQUIRED)