File tree Expand file tree Collapse file tree 4 files changed +4
-3
lines changed
test/java/com/ing/data/cassandra/jdbc Expand file tree Collapse file tree 4 files changed +4
-3
lines changed Original file line number Diff line number Diff 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.
Original file line number Diff line number Diff line change 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>
Original file line number Diff line number Diff line change 1616# The Cassandra JDBC Driver version is retrieved from the version defined in the POM file.
1717driver.version =${project.version}
1818driver.name =Cassandra JDBC Driver
19- driver.jdbcVersion =4.0
19+ driver.jdbcVersion =4.3
2020
2121# The properties supported by the driver.
2222driver.properties.user =The username used to connect to the database.
Original file line number Diff line number Diff 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+" ));
You can’t perform that action at this time.
0 commit comments