Merge branch 'cassandra-3.0' into cassandra-3.11

This commit is contained in:
Brandon Williams 2022-03-14 14:04:26 -05:00
commit 541d769042
2 changed files with 10 additions and 0 deletions

View File

@ -2,6 +2,7 @@
* Validate existence of DCs when repairing (CASSANDRA-17407)
* dropping of a materialized view creates a snapshot with dropped- prefix (CASSANDRA-17415)
Merged from 3.0:
* Require ant >= 1.10 (CASSANDRA-17428)
* Disallow CONTAINS for UPDATE and DELETE (CASSANDRA-15266)
* filter out NULL_VERSION entries from peers table in ConfiguredLimit (CASSANDRA-16518)
* Suppress inapplicable CVEs (CASSANDRA-17368)

View File

@ -18,6 +18,15 @@
xmlns:artifact="antlib:org.apache.maven.artifact.ant"
xmlns:if="ant:if"
xmlns:unless="ant:unless">
<fail message="You need to use Ant of version at least 1.10 to continue.">
<condition>
<not>
<antversion atleast="1.10"/>
</not>
</condition>
</fail>
<property environment="env"/>
<property file="build.properties" />
<property file="build.properties.default" />