Skip to content

Commit 6c068b9

Browse files
committed
Merge branch 'cassandra-4.0' into cassandra-4.1
2 parents aeae910 + f9dbfd4 commit 6c068b9

File tree

4 files changed

+6
-17
lines changed

4 files changed

+6
-17
lines changed

.build/dependency-check-suppressions.xml

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -52,13 +52,6 @@
5252
<cve>CVE-2023-44487</cve>
5353
<cve>CVE-2025-25193</cve>
5454
</suppress>
55-
<!-- https://issues.apache.org/jira/browse/CASSANDRA-17966 -->
56-
<suppress>
57-
<packageUrl regex="true">^pkg:maven/com\.fasterxml\.jackson\.core/jackson\-databind@.*$</packageUrl>
58-
<cve>CVE-2022-42003</cve>
59-
<cve>CVE-2022-42004</cve>
60-
<cve>CVE-2023-35116</cve>
61-
</suppress>
6255

6356
<!-- https://issues.apache.org/jira/browse/CASSANDRA-19142 -->
6457
<!-- https://issues.apache.org/jira/browse/CASSANDRA-20412 -->

.snyk

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -34,16 +34,10 @@ ignore:
3434
- reason: https://issues.apache.org/jira/browse/CASSANDRA-17907 -- ^pkg:maven/org\.yaml/snakeyaml@.*$
3535
CVE-2022-41881:
3636
- reason: netty's http stuff is not applicable here -- ^pkg:maven/io\.netty/netty\-all@.*$
37-
CVE-2022-42003:
38-
- reason: https://issues.apache.org/jira/browse/CASSANDRA-17966 -- ^pkg:maven/com\.fasterxml\.jackson\.core/jackson\-databind@.*$
39-
CVE-2022-42004:
40-
- reason: https://issues.apache.org/jira/browse/CASSANDRA-17966 -- ^pkg:maven/com\.fasterxml\.jackson\.core/jackson\-databind@.*$
4137
CVE-2023-2976:
4238
- reason: not applicable https://nvd.nist.gov/vuln/detail/CVE-2020-8908 -- ^pkg:maven/com\.google\.guava/guava@.*$
4339
CVE-2023-34462:
4440
- reason: netty's http stuff is not applicable here -- ^pkg:maven/io\.netty/netty\-all@.*$
45-
CVE-2023-35116:
46-
- reason: https://issues.apache.org/jira/browse/CASSANDRA-17966 -- ^pkg:maven/com\.fasterxml\.jackson\.core/jackson\-databind@.*$
4741
CVE-2023-44487:
4842
- reason: netty's http stuff is not applicable here -- ^pkg:maven/io\.netty/netty\-all@.*$
4943
CVE-2023-6378:

CHANGES.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
* IntrusiveStack.accumulate is not accumulating correctly (CASSANDRA-20670)
66
* Add nodetool get/setguardrailsconfig commands (CASSANDRA-19552)
77
Merged from 4.0:
8+
* Update Jackson to 2.19.2 (CASSANDRA-20848)
89
* Update commons-lang3 to 3.18.0 (CASSANDRA-20849)
910
* Add NativeTransportMaxConcurrentConnectionsPerIp to StorageProxyMBean (CASSANDRA-20642)
1011
* Make secondary index implementations notified about rows in fully expired SSTables in compaction (CASSANDRA-20829)

build.xml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -591,11 +591,12 @@
591591
<dependency groupId="org.slf4j" artifactId="jcl-over-slf4j" version="1.7.25" />
592592
<dependency groupId="ch.qos.logback" artifactId="logback-core" version="1.2.9"/>
593593
<dependency groupId="ch.qos.logback" artifactId="logback-classic" version="1.2.9"/>
594-
<dependency groupId="com.fasterxml.jackson.core" artifactId="jackson-core" version="2.13.2"/>
595-
<dependency groupId="com.fasterxml.jackson.core" artifactId="jackson-databind" version="2.13.2.2"/>
596-
<dependency groupId="com.fasterxml.jackson.core" artifactId="jackson-annotations" version="2.13.2"/>
597-
<dependency groupId="com.fasterxml.jackson.datatype" artifactId="jackson-datatype-jsr310" version="2.13.2"/>
594+
<dependency groupId="com.fasterxml.jackson.core" artifactId="jackson-core" version="2.19.2"/>
595+
<dependency groupId="com.fasterxml.jackson.core" artifactId="jackson-databind" version="2.19.2"/>
596+
<dependency groupId="com.fasterxml.jackson.core" artifactId="jackson-annotations" version="2.19.2"/>
597+
<dependency groupId="com.fasterxml.jackson.datatype" artifactId="jackson-datatype-jsr310" version="2.19.2"/>
598598
<dependency groupId="com.fasterxml.jackson.dataformat" artifactId="jackson-dataformat-yaml" version="2.13.2" scope="test">
599+
<!-- CASSANDRA-20848 2.19.x would bring snakeyaml 2.4 which is for now incompatible with rest of the codebase -->
599600
<exclusion groupId="org.yaml" artifactId="snakeyaml"/>
600601
</dependency>
601602
<dependency groupId="com.googlecode.json-simple" artifactId="json-simple" version="1.1"/>

0 commit comments

Comments
 (0)