File tree Expand file tree Collapse file tree 4 files changed +6
-17
lines changed Expand file tree Collapse file tree 4 files changed +6
-17
lines changed Original file line number Diff line number Diff line change 52
52
<cve >CVE-2023-44487</cve >
53
53
<cve >CVE-2025-25193</cve >
54
54
</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 >
62
55
63
56
<!-- https://issues.apache.org/jira/browse/CASSANDRA-19142 -->
64
57
<!-- https://issues.apache.org/jira/browse/CASSANDRA-20412 -->
Original file line number Diff line number Diff line change @@ -34,16 +34,10 @@ ignore:
34
34
- reason: https://issues.apache.org/jira/browse/CASSANDRA-17907 -- ^pkg:maven/org\.yaml/snakeyaml@.*$
35
35
CVE-2022-41881:
36
36
- 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@.*$
41
37
CVE-2023-2976:
42
38
- reason: not applicable https://nvd.nist.gov/vuln/detail/CVE-2020-8908 -- ^pkg:maven/com\.google\.guava/guava@.*$
43
39
CVE-2023-34462:
44
40
- 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@.*$
47
41
CVE-2023-44487:
48
42
- reason: netty's http stuff is not applicable here -- ^pkg:maven/io\.netty/netty\-all@.*$
49
43
CVE-2023-6378:
Original file line number Diff line number Diff line change 5
5
* IntrusiveStack.accumulate is not accumulating correctly (CASSANDRA-20670)
6
6
* Add nodetool get/setguardrailsconfig commands (CASSANDRA-19552)
7
7
Merged from 4.0:
8
+ * Update Jackson to 2.19.2 (CASSANDRA-20848)
8
9
* Update commons-lang3 to 3.18.0 (CASSANDRA-20849)
9
10
* Add NativeTransportMaxConcurrentConnectionsPerIp to StorageProxyMBean (CASSANDRA-20642)
10
11
* Make secondary index implementations notified about rows in fully expired SSTables in compaction (CASSANDRA-20829)
Original file line number Diff line number Diff line change 591
591
<dependency groupId =" org.slf4j" artifactId =" jcl-over-slf4j" version =" 1.7.25" />
592
592
<dependency groupId =" ch.qos.logback" artifactId =" logback-core" version =" 1.2.9" />
593
593
<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" />
598
598
<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 -->
599
600
<exclusion groupId =" org.yaml" artifactId =" snakeyaml" />
600
601
</dependency >
601
602
<dependency groupId =" com.googlecode.json-simple" artifactId =" json-simple" version =" 1.1" />
You can’t perform that action at this time.
0 commit comments