You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cassandra.apache.org by ms...@apache.org on 2019/01/14 17:41:47 UTC

[cassandra] branch cassandra-2.1 updated: Update release checksum algorithms to SHA-256, SHA-512

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

mshuler pushed a commit to branch cassandra-2.1
in repository https://gitbox.apache.org/repos/asf/cassandra.git


The following commit(s) were added to refs/heads/cassandra-2.1 by this push:
     new 6506684  Update release checksum algorithms to SHA-256, SHA-512
6506684 is described below

commit 6506684b81a093a329b07cd41f42d858041ba8b7
Author: Michael Shuler <ms...@apache.org>
AuthorDate: Tue Jan 8 17:00:07 2019 -0600

    Update release checksum algorithms to SHA-256, SHA-512
    
    Patch by Michael Shuler; reviewed by Brandon Williams for CASSANDRA-14970
---
 CHANGES.txt | 1 +
 build.xml   | 8 ++++----
 2 files changed, 5 insertions(+), 4 deletions(-)

diff --git a/CHANGES.txt b/CHANGES.txt
index aeb3009..7b88686 100644
--- a/CHANGES.txt
+++ b/CHANGES.txt
@@ -1,4 +1,5 @@
 2.1.21
+ * Update release checksum algorithms to SHA-256, SHA-512 (CASSANDRA-14970)
  * Check checksum before decompressing data (CASSANDRA-14284)
  * CVE-2017-5929 Security vulnerability in Logback warning in NEWS.txt (CASSANDRA-14183)
 
diff --git a/build.xml b/build.xml
index 3ac2665..ce47717 100644
--- a/build.xml
+++ b/build.xml
@@ -1040,14 +1040,14 @@
 
     <target name="release" depends="artifacts,rat-init"
             description="Create and QC release artifacts">
-      <checksum forceOverwrite="yes" todir="${build.dir}" fileext=".md5"
-                algorithm="MD5">
+      <checksum forceOverwrite="yes" todir="${build.dir}" fileext=".sha256"
+                algorithm="SHA-256">
         <fileset dir="${build.dir}">
           <include name="*.tar.gz" />
         </fileset>
       </checksum>
-      <checksum forceOverwrite="yes" todir="${build.dir}" fileext=".sha"
-                algorithm="SHA">
+      <checksum forceOverwrite="yes" todir="${build.dir}" fileext=".sha512"
+                algorithm="SHA-512">
         <fileset dir="${build.dir}">
           <include name="*.tar.gz" />
         </fileset>


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@cassandra.apache.org
For additional commands, e-mail: commits-help@cassandra.apache.org