Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

GH-5052: use more recent version of snappy to fix CVEs #5065

Merged
merged 1 commit into from
Jul 9, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 8 additions & 1 deletion core/sail/solr/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,8 @@
<enforce-javaee-provided.fail>false</enforce-javaee-provided.fail>
<!-- use at least 3.7 to fix CVE -->
<zookeeper.version>3.7.2</zookeeper.version>
<!-- use ay least 1.1.10.4 to fix CVEs -->
<snappy.version>1.1.10.5</snappy.version>
barthanssens marked this conversation as resolved.
Show resolved Hide resolved
</properties>
<dependencies>
<!-- use at least zookeeper 3.7.2 to fix CVE, can be removed if solr provides a newer version -->
Expand All @@ -27,7 +29,12 @@
<artifactId>zookeeper-jute</artifactId>
<version>${zookeeper.version}</version>
</dependency>
<!-- -->
<!-- use at least snappy 1.1.10.4 to fix CVEs, can be removed if solr provides a newer version -->
<dependency>
<groupId>org.xerial.snappy</groupId>
<artifactId>snappy-java</artifactId>
<version>${snappy.version}</version>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>rdf4j-sail-lucene-api</artifactId>
Expand Down
Loading