Merge branch 'cassandra-3.11' into trunk

This commit is contained in:
Michael Shuler 2019-01-14 11:40:11 -06:00
commit f8e32649a3
2 changed files with 6 additions and 4 deletions

View File

@ -372,6 +372,8 @@ Merged from 3.0:
Merged from 2.2:
* MigrationManager attempts to pull schema from different major version nodes (CASSANDRA-14928)
* Returns null instead of NaN or Infinity in JSON strings (CASSANDRA-14377)
Merged from 2.1:
* Update release checksum algorithms to SHA-256, SHA-512 (CASSANDRA-14970)
3.11.3

View File

@ -1183,14 +1183,14 @@
<target name="release" depends="eclipse-warnings,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>