Merge branch 'cassandra-4.1' into trunk

This commit is contained in:
Stefan Miklosovic 2022-10-21 10:09:02 +02:00
commit 5f3e60cfd4
2 changed files with 5 additions and 1 deletions

View File

@ -35,6 +35,9 @@
<equals arg1="${git.success}" arg2="0"/>
</not>
</condition>
</target>
<target name="_rat_copy_versioned_files" depends="_build_ratinclude" unless="${rat.skip}">
<copy file="build/.versioned_files" tofile="build/.ratinclude">
<filterchain>
<linecontainsregexp>
@ -44,7 +47,7 @@
</copy>
</target>
<target name="rat-check" depends="_build_ratinclude" unless="${rat.skip}" description="License checks on source" >
<target name="rat-check" depends="_rat_copy_versioned_files" unless="${rat.skip}" description="License checks on source" >
<rat:report reportFile="${build.dir}/rat.txt">
<fileset dir="." includesfile="build/.ratinclude">
<!-- Config files with not much creativity -->

View File

@ -128,6 +128,7 @@ Merged from 3.11:
* Creating of a keyspace on insufficient number of replicas should filter out gosspping-only members (CASSANDRA-17759)
* Suppress CVE-2022-25857 and other snakeyaml CVEs (CASSANDRA-17907)
Merged from 3.0:
* Fix running Ant rat targets without git (CASSANDRA-17974)
* Harden JMX by resolving beanshooter issues (CASSANDRA-17921)
* Suppress CVE-2019-2684 (CASSANDRA-17965)
* Fix auto-completing "WITH" when creating a materialized view (CASSANDRA-17879)