mirror of https://github.com/apache/cassandra
Merge branch 'cassandra-4.0' into cassandra-4.1
* cassandra-4.0: Switch lz4-java to at.yawk.lz4 version due to CVE
This commit is contained in:
commit
2d0fda4511
|
|
@ -3,6 +3,7 @@
|
|||
* ReadCommandController should close fast to avoid deadlock when building secondary index (CASSANDRA-19564)
|
||||
* Redact security-sensitive information in system_views.settings (CASSANDRA-20856)
|
||||
Merged from 4.0:
|
||||
* Switch lz4-java to at.yawk.lz4 version due to CVE (CASSANDRA-20152)
|
||||
* Restrict BytesType compatibility to scalar types only (CASSANDRA-20982)
|
||||
* Backport fix to nodetool gcstats output for direct memory (CASSANDRA-21037)
|
||||
* ArrayIndexOutOfBoundsException with repaired data tracking and counters (CASSANDRA-20871)
|
||||
|
|
|
|||
13
NEWS.txt
13
NEWS.txt
|
|
@ -51,8 +51,17 @@ restore snapshots created with the previous major version using the
|
|||
'sstableloader' tool. You can upgrade the file format of your snapshots
|
||||
using the provided 'sstableupgrade' tool.
|
||||
|
||||
4.1.7
|
||||
=====
|
||||
4.1.11
|
||||
======
|
||||
|
||||
Upgrading
|
||||
---------
|
||||
- This release addresses a security vulnerability in the LZ4 dependency, documented in CASSANDRA-21052. For users
|
||||
who did not use LZ4 native libraries, this will now fallback to a safer but less performant pure Java
|
||||
implementation. During startup, a warning will be logged if the LZ4 native library is not available.
|
||||
|
||||
4.0.14
|
||||
======
|
||||
|
||||
Upgrading
|
||||
---------
|
||||
|
|
|
|||
|
|
@ -562,7 +562,7 @@
|
|||
<scm connection="${scm.connection}" developerConnection="${scm.developerConnection}" url="${scm.url}"/>
|
||||
<dependencyManagement>
|
||||
<dependency groupId="org.xerial.snappy" artifactId="snappy-java" version="1.1.10.4"/>
|
||||
<dependency groupId="org.lz4" artifactId="lz4-java" version="1.8.0"/>
|
||||
<dependency groupId="at.yawk.lz4" artifactId="lz4-java" version="1.10.1"/>
|
||||
<dependency groupId="com.github.luben" artifactId="zstd-jni" version="1.5.7-2"/>
|
||||
<dependency groupId="com.google.guava" artifactId="guava" version="27.0-jre">
|
||||
<exclusion groupId="com.google.code.findbugs" artifactId="jsr305" />
|
||||
|
|
@ -844,7 +844,7 @@
|
|||
relativePath="${final.name}-parent.pom"/>
|
||||
<scm connection="${scm.connection}" developerConnection="${scm.developerConnection}" url="${scm.url}"/>
|
||||
<dependency groupId="org.xerial.snappy" artifactId="snappy-java"/>
|
||||
<dependency groupId="org.lz4" artifactId="lz4-java"/>
|
||||
<dependency groupId="at.yawk.lz4" artifactId="lz4-java"/>
|
||||
<dependency groupId="com.google.guava" artifactId="guava"/>
|
||||
<dependency groupId="commons-cli" artifactId="commons-cli"/>
|
||||
<dependency groupId="commons-codec" artifactId="commons-codec"/>
|
||||
|
|
|
|||
Loading…
Reference in New Issue