mirror of https://github.com/apache/cassandra
Merge branch 'cassandra-3.11' into trunk
This commit is contained in:
commit
f8e32649a3
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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>
|
||||
|
|
|
|||
Loading…
Reference in New Issue