Skip to content

Commit ec5682c

Browse files
authored
Merge pull request #29 from dchenbec/bump-jackson-versions-4.0.7
Bump Jackson versions
2 parents ef22972 + 0d91215 commit ec5682c

File tree

3 files changed

+22
-6
lines changed

3 files changed

+22
-6
lines changed

CHANGELOG.md

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,24 @@
11
# CHANGELOG
22

3+
## [4.0.7] - 2022-10-05
4+
5+
Updated Jackson version to 2.13.4 to address CVE-2022-42004. This is a transitive dependency of the driver and the SigV4
6+
plugin does not use Jackson directly.
7+
8+
## [4.0.6] - 2022-04-21
9+
10+
Updated Jackson version to 2.13.2
11+
12+
## [4.0.5] - 2022-02-01
13+
14+
* Fixed a bug with region case sensitivity to match the SigV4 spec
15+
* Updated the driver dependency to 4.13.0, including overriding transitive Jackson dependencies to ensure currency
16+
* Removed the Maven license plugin in favor of manual management
17+
318
## [4.0.4] - 2021-01-20
419

520
Updated to AWS 2 SDK.
6-
21+
722

823
## [4.0.3] - 2020-05-15
924

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# IMPORTANT: Latest Version
22

3-
The current version is 4.0.6. Please see the [changelog](./CHANGELOG.md) for details on version history.
3+
The current version is 4.0.7. Please see the [changelog](./CHANGELOG.md) for details on version history.
44

55
# What
66

pom.xml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<modelVersion>4.0.0</modelVersion>
44
<groupId>software.aws.mcs</groupId>
55
<artifactId>aws-sigv4-auth-cassandra-java-driver-plugin</artifactId>
6-
<version>4.0.6</version>
6+
<version>4.0.7</version>
77
<name>AWS SigV4 Auth Java Driver 4.x Plugin</name>
88
<description>A Plugin to allow SigV4 authentication for Java Cassandra drivers with Amazon MCS</description>
99
<url>https://github.com/aws/aws-sigv4-auth-cassandra-java-driver-plugin</url>
@@ -42,6 +42,7 @@
4242
<maven.compiler.source>1.8</maven.compiler.source>
4343
<maven.compiler.target>1.8</maven.compiler.target>
4444
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
45+
<jackson.version>2.13.4</jackson.version>
4546
</properties>
4647

4748
<dependencies>
@@ -64,17 +65,17 @@
6465
<dependency>
6566
<groupId>com.fasterxml.jackson.core</groupId>
6667
<artifactId>jackson-core</artifactId>
67-
<version>2.13.2</version>
68+
<version>${jackson.version}</version>
6869
</dependency>
6970
<dependency>
7071
<groupId>com.fasterxml.jackson.core</groupId>
7172
<artifactId>jackson-databind</artifactId>
72-
<version>2.13.2.2</version>
73+
<version>${jackson.version}</version>
7374
</dependency>
7475
<dependency>
7576
<groupId>com.fasterxml.jackson.core</groupId>
7677
<artifactId>jackson-annotations</artifactId>
77-
<version>2.13.2</version>
78+
<version>${jackson.version}</version>
7879
</dependency>
7980
<!-- Test Dependencies -->
8081
<dependency>

0 commit comments

Comments
 (0)