Skip to content

Commit b292676

Browse files
committed
Prepare version 4.12.0
Update some dependencies
1 parent 1fded2a commit b292676

File tree

2 files changed

+22
-19
lines changed

2 files changed

+22
-19
lines changed

Diff for: CHANGELOG.md

+5-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) and this project adheres to
55
[Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

7-
## Unreleased
7+
## [4.12.0] - 2024-05-05
88
### Added
99
- Add a parameter `fetchsize` to specify a default fetch size for all the queries returning result sets. This value is
1010
the number of rows the server will return in each network frame (see
@@ -24,7 +24,9 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
2424
- `getUDTs(String, String, String, int[])`
2525
- In prepared statements, force the page size to the configured one (from JDBC URL or configuration file if present), or
2626
the default page size.
27-
- Update Apache Commons IO to version 2.15.1.
27+
- Update Apache Commons IO to version 2.16.1.
28+
- Update Jackson dependencies to version 2.17.0.
29+
- Update Semver4j to version 5.3.0.
2830
### Removed
2931
- Remove the parameter `version` (CQL version) in JDBC URL and the deprecated constructors of `CassandraDataSource`
3032
using this parameter.
@@ -253,6 +255,7 @@ For this version, the changelog lists the main changes comparatively to the late
253255
- Fix logs in `CassandraConnection` constructor.
254256

255257
[original project]: https://github.com/adejanovski/cassandra-jdbc-wrapper/
258+
[4.12.0]: https://github.com/ing-bank/cassandra-jdbc-wrapper/compare/v4.11.1...v4.12.0
256259
[4.11.1]: https://github.com/ing-bank/cassandra-jdbc-wrapper/compare/v4.11.0...v4.11.1
257260
[4.11.0]: https://github.com/ing-bank/cassandra-jdbc-wrapper/compare/v4.10.2...v4.11.0
258261
[4.10.2]: https://github.com/ing-bank/cassandra-jdbc-wrapper/compare/v4.10.1...v4.10.2

Diff for: pom.xml

+17-17
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
<groupId>com.ing.data</groupId>
77
<artifactId>cassandra-jdbc-wrapper</artifactId>
8-
<version>4.11.1</version>
8+
<version>4.12.0</version>
99
<packaging>jar</packaging>
1010

1111
<name>Cassandra JDBC Wrapper</name>
@@ -116,30 +116,30 @@
116116
<caffeine.version>2.9.3</caffeine.version>
117117
<cassandra-driver-krb5.version>3.0.0</cassandra-driver-krb5.version>
118118
<commons-collections.version>4.4</commons-collections.version>
119-
<commons-io.version>2.15.1</commons-io.version>
119+
<commons-io.version>2.16.1</commons-io.version>
120120
<commons-lang3.version>3.14.0</commons-lang3.version>
121121
<java.driver.version>4.17.0</java.driver.version>
122-
<jackson.version>2.16.0</jackson.version>
123-
<semver4j.version>5.2.2</semver4j.version>
122+
<jackson.version>2.17.0</jackson.version>
123+
<semver4j.version>5.3.0</semver4j.version>
124124
<!-- Versions for test dependencies -->
125125
<hamcrest.version>2.2</hamcrest.version>
126-
<junit5.version>5.10.1</junit5.version>
127-
<junit-platform.version>1.10.1</junit-platform.version>
128-
<lombok.version>1.18.30</lombok.version>
126+
<junit5.version>5.10.2</junit5.version>
127+
<junit-platform.version>1.10.2</junit-platform.version>
128+
<lombok.version>1.18.32</lombok.version>
129129
<mockito.version>3.12.4</mockito.version>
130130
<slf4j.version>1.7.36</slf4j.version>
131-
<testcontainers.version>1.19.3</testcontainers.version>
132-
<astra-sdk.version>1.0.1</astra-sdk.version>
131+
<testcontainers.version>1.19.7</testcontainers.version>
132+
<astra-sdk.version>1.2.7</astra-sdk.version>
133133
<!-- Versions for plugins -->
134-
<maven-checkstyle-plugin.version>3.3.0</maven-checkstyle-plugin.version>
135-
<maven-clean-plugin.version>3.3.1</maven-clean-plugin.version>
136-
<maven-compiler-plugin.version>3.11.0</maven-compiler-plugin.version>
137-
<maven-enforcer-plugin.version>3.3.0</maven-enforcer-plugin.version>
138-
<maven-gpg-plugin.version>3.1.0</maven-gpg-plugin.version>
139-
<maven-javadoc-plugin.version>3.5.0</maven-javadoc-plugin.version>
134+
<maven-checkstyle-plugin.version>3.3.1</maven-checkstyle-plugin.version>
135+
<maven-clean-plugin.version>3.3.2</maven-clean-plugin.version>
136+
<maven-compiler-plugin.version>3.13.0</maven-compiler-plugin.version>
137+
<maven-enforcer-plugin.version>3.4.1</maven-enforcer-plugin.version>
138+
<maven-gpg-plugin.version>3.2.4</maven-gpg-plugin.version>
139+
<maven-javadoc-plugin.version>3.6.3</maven-javadoc-plugin.version>
140140
<maven-resources-plugin.version>3.3.1</maven-resources-plugin.version>
141-
<maven-shade-plugin.version>3.5.0</maven-shade-plugin.version>
142-
<maven-source-plugin.version>3.2.1</maven-source-plugin.version>
141+
<maven-shade-plugin.version>3.5.3</maven-shade-plugin.version>
142+
<maven-source-plugin.version>3.3.1</maven-source-plugin.version>
143143
<maven-surefire-plugin.version>2.22.2</maven-surefire-plugin.version>
144144
</properties>
145145

0 commit comments

Comments
 (0)