Skip to content

Commit

Permalink
Jackson databind CVEs (#7)
Browse files Browse the repository at this point in the history
addressed jackson databind CVE and bumped version

Co-authored-by: Will Massey <[email protected]>
  • Loading branch information
willmasseyic and Will Massey authored Jun 8, 2021
1 parent 1b1214d commit 5ec2e42
Show file tree
Hide file tree
Showing 6 changed files with 17 additions and 12 deletions.
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
# Changelog

## 4.0-rc1 (May 31, 2021)
## 4.0-rc1-1.0.1 (May 31, 2021)

* Addressed jackson databind CVE's

## 4.0-rc1-1.0.0 (May 31, 2021)

* Upgrade to Apache Cassandra 4.0-rc1

Expand Down
6 changes: 3 additions & 3 deletions builder/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
<parent>
<groupId>com.instaclustr</groupId>
<artifactId>cassandra-lucene-index-parent</artifactId>
<version>4.0-rc1-1.0.0</version>
<version>4.0-rc1-1.0.1</version>
<relativePath>../pom.xml</relativePath>
</parent>

Expand All @@ -39,12 +39,12 @@
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-core</artifactId>
<version>${jackson.version}</version>
<version>${jackson.core.version}</version>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
<version>${jackson.version}</version>
<version>${jackson.databind.version}</version>
</dependency>
<dependency>
<groupId>junit</groupId>
Expand Down
6 changes: 3 additions & 3 deletions plugin/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
<parent>
<groupId>com.instaclustr</groupId>
<artifactId>cassandra-lucene-index-parent</artifactId>
<version>4.0-rc1-1.0.0</version>
<version>4.0-rc1-1.0.1</version>
<relativePath>../pom.xml</relativePath>
</parent>

Expand Down Expand Up @@ -97,12 +97,12 @@
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-core</artifactId>
<version>${jackson.version}</version>
<version>${jackson.core.version}</version>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
<version>${jackson.version}</version>
<version>${jackson.databind.version}</version>
</dependency>
<dependency>
<groupId>javax.validation</groupId>
Expand Down
5 changes: 3 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@

<groupId>com.instaclustr</groupId>
<artifactId>cassandra-lucene-index-parent</artifactId>
<version>4.0-rc1-1.0.0</version>
<version>4.0-rc1-1.0.1</version>
<packaging>pom</packaging>

<name>Cassandra Lucene index</name>
Expand Down Expand Up @@ -96,7 +96,8 @@
<properties>
<cassandra.version>4.0-rc1</cassandra.version>

<jackson.version>2.9.10</jackson.version>
<jackson.core.version>2.9.10</jackson.core.version>
<jackson.databind.version>2.9.10.8</jackson.databind.version>
<jacoco-IT-argline></jacoco-IT-argline>
<jts.version>1.14.0</jts.version>
<lucene.version>5.5.4</lucene.version>
Expand Down
4 changes: 2 additions & 2 deletions testsAT/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -26,12 +26,12 @@
<parent>
<groupId>com.instaclustr</groupId>
<artifactId>cassandra-lucene-index-parent</artifactId>
<version>4.0-rc1-1.0.0</version>
<version>4.0-rc1-1.0.1</version>
<relativePath>../pom.xml</relativePath>
</parent>

<artifactId>cassandra-lucene-index-tests</artifactId>
<version>4.0-rc1-1.0.0</version>
<version>4.0-rc1-1.0.1</version>

<packaging>jar</packaging>
<name>Cassandra Lucene Index acceptance tests</name>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ public abstract class PluginTestFramework {

static class NestedSingleton implements BeforeAllCallback, ExtensionContext.Store.CloseableResource {

public static final String pluginCassandraVersion = System.getProperty("plugin.version", "4.0-rc1-1.0.0");
public static final String pluginCassandraVersion = System.getProperty("plugin.version", "4.0-rc1-1.0.1");
public static final String cassandraVersion = System.getProperty("cassandra.version", "4.0-rc1");

private static volatile boolean disconnected = false;
Expand Down

0 comments on commit 5ec2e42

Please sign in to comment.