Skip to content

Commit 719965e

Browse files
committed
Update Apache Cassandra Java driver to 4.19.2
1 parent cd0448b commit 719965e

File tree

4 files changed

+4
-3
lines changed

4 files changed

+4
-3
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
77
## [5.0.0] - Unreleased
88
### Changed
99
- **BREAKING CHANGE**: upgrade minimal required JDK to 17.
10+
- Update Java Driver for Apache Cassandra® to version 4.19.2.
1011
- Update Apache Commons IO to version 2.21.0.
1112
- Update Jackson dependencies to version 3.0.2.
1213
- Update Caffeine to version 3.2.3.

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@
117117
<commons-collections.version>4.5.0</commons-collections.version>
118118
<commons-io.version>2.21.0</commons-io.version>
119119
<commons-lang3.version>3.19.0</commons-lang3.version>
120-
<java.driver.version>4.19.1</java.driver.version>
120+
<java.driver.version>4.19.2</java.driver.version>
121121
<jackson.version>3.0.2</jackson.version>
122122
<jakarta.version>3.0.0</jakarta.version>
123123
<lombok.version>1.18.42</lombok.version>

src/main/resources/jdbc-driver.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
# The Cassandra JDBC Driver version is retrieved from the version defined in the POM file.
1717
driver.version=${project.version}
1818
driver.name=Cassandra JDBC Driver
19-
driver.jdbcVersion=4.0
19+
driver.jdbcVersion=4.3
2020

2121
# The properties supported by the driver.
2222
driver.properties.user=The username used to connect to the database.

src/test/java/com/ing/data/cassandra/jdbc/ConnectionUnitTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -550,7 +550,7 @@ void givenConnection_whenGetMetaData_getExpectedResultSet() throws Exception {
550550
assertEquals("Cassandra JDBC Driver", dbMetadata.getDriverName());
551551
assertNotEquals(0, dbMetadata.getDriverMajorVersion());
552552
assertEquals(4, dbMetadata.getJDBCMajorVersion());
553-
assertEquals(0, dbMetadata.getJDBCMinorVersion());
553+
assertEquals(3, dbMetadata.getJDBCMinorVersion());
554554
assertEquals("Cassandra", dbMetadata.getDatabaseProductName());
555555
assertThat(dbMetadata.getDriverVersion(), Matchers.matchesPattern("\\d.\\d+.\\d+(-SNAPSHOT|-beta.\\d+)?"));
556556
assertThat(dbMetadata.getDatabaseProductVersion(), Matchers.matchesPattern("\\d.\\d+.\\d+"));

0 commit comments

Comments
 (0)