Skip to content

Commit

Permalink
Fixing databind version CVE
Browse files Browse the repository at this point in the history
  • Loading branch information
IanMeyers committed Feb 22, 2021
1 parent ab8d6ce commit 398fbd4
Show file tree
Hide file tree
Showing 12 changed files with 19 additions and 10 deletions.
5 changes: 5 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,8 @@ node/.idea/*
python/dist/*
python/aws_kinesis_agg.egg-info/*
.*
java/KinesisDeaggregator/.classpath
java/.project
java/KinesisDeaggregator/.classpath
java/KinesisAggregator/.classpath
java/.project
1 change: 1 addition & 0 deletions java/KinesisAggregator/.classpath
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
<attributes>
<attribute name="optional" value="true"/>
<attribute name="maven.pomderived" value="true"/>
<attribute name="test" value="true"/>
</attributes>
</classpathentry>
<classpathentry kind="output" path="target/classes"/>
Expand Down
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
17 changes: 10 additions & 7 deletions java/KinesisAggregator/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

<groupId>com.amazonaws</groupId>
<artifactId>amazon-kinesis-aggregator</artifactId>
<version>1.1.2</version>
<version>1.1.3</version>

<packaging>jar</packaging>

Expand Down Expand Up @@ -43,7 +43,7 @@
</developers>

<build>
<defaultGoal>clean compile</defaultGoal>
<defaultGoal>clean compile package assembly:assembly</defaultGoal>
<sourceDirectory>src/main/java</sourceDirectory>
<plugins>
<plugin>
Expand Down Expand Up @@ -131,42 +131,45 @@
</exclusion>
</exclusions>
</dependency>

<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-core</artifactId>
<version>2.10.2</version>
</dependency>

<dependency>
<groupId>com.fasterxml.jackson.dataformat</groupId>
<artifactId>jackson-dataformat-cbor</artifactId>
<version>2.10.2</version>
</dependency>

<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
<version>2.10.2</version>
<version>[2.10.5.1,)</version>
</dependency>

<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
<version>3.10</version>
</dependency>

<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.13.1</version>
<scope>test</scope>
</dependency>

<dependency>
<groupId>commons-codec</groupId>
<artifactId>commons-codec</artifactId>
<version>1.11</version>
<scope>test</scope>
</dependency>

<dependency>
<groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId>
Expand Down
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
6 changes: 3 additions & 3 deletions java/KinesisAggregatorV2/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

<groupId>com.amazonaws</groupId>
<artifactId>amazon-kinesis-aggregator</artifactId>
<version>2.0.2</version>
<version>2.0.3</version>

<packaging>jar</packaging>

Expand Down Expand Up @@ -43,7 +43,7 @@
</developers>

<build>
<defaultGoal>clean compile</defaultGoal>
<defaultGoal>clean compile package assembly:assembly</defaultGoal>
<sourceDirectory>src/main/java</sourceDirectory>
<plugins>
<plugin>
Expand Down Expand Up @@ -139,7 +139,7 @@
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
<version>2.10.2</version>
<version>[2.10.5.1,)</version>
</dependency>

<dependency>
Expand Down

0 comments on commit 398fbd4

Please sign in to comment.