mirror of https://github.com/apache/cassandra
Merge branch 'cassandra-3.0' into cassandra-3.11
This commit is contained in:
commit
6a7aa0f07e
|
|
@ -34,6 +34,8 @@ Merged from 3.0:
|
||||||
* MigrationManager attempts to pull schema from different major version nodes (CASSANDRA-14928)
|
* MigrationManager attempts to pull schema from different major version nodes (CASSANDRA-14928)
|
||||||
* Fix incorrect cqlsh results when selecting same columns multiple times (CASSANDRA-13262)
|
* Fix incorrect cqlsh results when selecting same columns multiple times (CASSANDRA-13262)
|
||||||
* Returns null instead of NaN or Infinity in JSON strings (CASSANDRA-14377)
|
* 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
|
3.11.3
|
||||||
|
|
|
||||||
|
|
@ -1142,14 +1142,14 @@
|
||||||
|
|
||||||
<target name="release" depends="eclipse-warnings,artifacts,rat-init"
|
<target name="release" depends="eclipse-warnings,artifacts,rat-init"
|
||||||
description="Create and QC release artifacts">
|
description="Create and QC release artifacts">
|
||||||
<checksum forceOverwrite="yes" todir="${build.dir}" fileext=".md5"
|
<checksum forceOverwrite="yes" todir="${build.dir}" fileext=".sha256"
|
||||||
algorithm="MD5">
|
algorithm="SHA-256">
|
||||||
<fileset dir="${build.dir}">
|
<fileset dir="${build.dir}">
|
||||||
<include name="*.tar.gz" />
|
<include name="*.tar.gz" />
|
||||||
</fileset>
|
</fileset>
|
||||||
</checksum>
|
</checksum>
|
||||||
<checksum forceOverwrite="yes" todir="${build.dir}" fileext=".sha"
|
<checksum forceOverwrite="yes" todir="${build.dir}" fileext=".sha512"
|
||||||
algorithm="SHA">
|
algorithm="SHA-512">
|
||||||
<fileset dir="${build.dir}">
|
<fileset dir="${build.dir}">
|
||||||
<include name="*.tar.gz" />
|
<include name="*.tar.gz" />
|
||||||
</fileset>
|
</fileset>
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue