Skip to content

Commit f775ef3

Browse files
authored
FMWK-701 Update dependencies and set version to 1.10.1 (#87)
1 parent a7e0e99 commit f775ef3

File tree

2 files changed

+14
-7
lines changed

2 files changed

+14
-7
lines changed

pom.xml

Lines changed: 13 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
<name>aerospike-jdbc</name>
1212
<description>A JDBC driver for the Aerospike database</description>
1313
<url>https://github.com/aerospike/aerospike-jdbc</url>
14-
<version>1.10.0</version>
14+
<version>1.10.1</version>
1515

1616
<properties>
1717
<skipTests>false</skipTests>
@@ -26,11 +26,11 @@
2626
<maven-gpg-plugin.version>1.6</maven-gpg-plugin.version>
2727
<maven-shade-plugin.version>3.6.0</maven-shade-plugin.version>
2828

29-
<aerospike-client.version>9.0.2</aerospike-client.version>
30-
<netty.version>4.1.115.Final</netty.version>
31-
<jackson.version>2.18.2</jackson.version>
32-
<calcite.version>1.38.0</calcite.version>
33-
<guava.version>33.3.1-jre</guava.version>
29+
<aerospike-client.version>9.0.5</aerospike-client.version>
30+
<netty.version>4.1.119.Final</netty.version>
31+
<jackson.version>2.18.3</jackson.version>
32+
<calcite.version>1.39.0</calcite.version>
33+
<guava.version>33.4.0-jre</guava.version>
3434
<httpclient.version>4.5.14</httpclient.version>
3535

3636
<assertj.version>3.25.0</assertj.version>
@@ -128,6 +128,13 @@
128128
<version>${httpclient.version}</version>
129129
</dependency>
130130

131+
<!-- overrides the calcite transitive dependency to address CVE-2024-57699 -->
132+
<dependency>
133+
<groupId>net.minidev</groupId>
134+
<artifactId>json-smart</artifactId>
135+
<version>2.5.2</version>
136+
</dependency>
137+
131138
<!-- for testing -->
132139
<dependency>
133140
<groupId>org.assertj</groupId>

src/main/java/com/aerospike/jdbc/util/Constants.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ public final class Constants {
1212
public static final String UNSUPPORTED_QUERY_TYPE_MESSAGE = "Unsupported query type";
1313

1414
// Driver version
15-
public static final String DRIVER_VERSION = "1.10.0";
15+
public static final String DRIVER_VERSION = "1.10.1";
1616
public static final int DRIVER_MAJOR_VERSION = 1;
1717
public static final int DRIVER_MINOR_VERSION = 10;
1818

0 commit comments

Comments
 (0)