Skip to content

Commit

Permalink
Prepare version 4.12.0
Browse files Browse the repository at this point in the history
Update some dependencies
  • Loading branch information
maximevw committed May 5, 2024
1 parent 1fded2a commit b292676
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 19 deletions.
7 changes: 5 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) and this project adheres to
[Semantic Versioning](https://semver.org/spec/v2.0.0.html).

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

[original project]: https://github.com/adejanovski/cassandra-jdbc-wrapper/
[4.12.0]: https://github.com/ing-bank/cassandra-jdbc-wrapper/compare/v4.11.1...v4.12.0
[4.11.1]: https://github.com/ing-bank/cassandra-jdbc-wrapper/compare/v4.11.0...v4.11.1
[4.11.0]: https://github.com/ing-bank/cassandra-jdbc-wrapper/compare/v4.10.2...v4.11.0
[4.10.2]: https://github.com/ing-bank/cassandra-jdbc-wrapper/compare/v4.10.1...v4.10.2
Expand Down
34 changes: 17 additions & 17 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

<groupId>com.ing.data</groupId>
<artifactId>cassandra-jdbc-wrapper</artifactId>
<version>4.11.1</version>
<version>4.12.0</version>
<packaging>jar</packaging>

<name>Cassandra JDBC Wrapper</name>
Expand Down Expand Up @@ -116,30 +116,30 @@
<caffeine.version>2.9.3</caffeine.version>
<cassandra-driver-krb5.version>3.0.0</cassandra-driver-krb5.version>
<commons-collections.version>4.4</commons-collections.version>
<commons-io.version>2.15.1</commons-io.version>
<commons-io.version>2.16.1</commons-io.version>
<commons-lang3.version>3.14.0</commons-lang3.version>
<java.driver.version>4.17.0</java.driver.version>
<jackson.version>2.16.0</jackson.version>
<semver4j.version>5.2.2</semver4j.version>
<jackson.version>2.17.0</jackson.version>
<semver4j.version>5.3.0</semver4j.version>
<!-- Versions for test dependencies -->
<hamcrest.version>2.2</hamcrest.version>
<junit5.version>5.10.1</junit5.version>
<junit-platform.version>1.10.1</junit-platform.version>
<lombok.version>1.18.30</lombok.version>
<junit5.version>5.10.2</junit5.version>
<junit-platform.version>1.10.2</junit-platform.version>
<lombok.version>1.18.32</lombok.version>
<mockito.version>3.12.4</mockito.version>
<slf4j.version>1.7.36</slf4j.version>
<testcontainers.version>1.19.3</testcontainers.version>
<astra-sdk.version>1.0.1</astra-sdk.version>
<testcontainers.version>1.19.7</testcontainers.version>
<astra-sdk.version>1.2.7</astra-sdk.version>
<!-- Versions for plugins -->
<maven-checkstyle-plugin.version>3.3.0</maven-checkstyle-plugin.version>
<maven-clean-plugin.version>3.3.1</maven-clean-plugin.version>
<maven-compiler-plugin.version>3.11.0</maven-compiler-plugin.version>
<maven-enforcer-plugin.version>3.3.0</maven-enforcer-plugin.version>
<maven-gpg-plugin.version>3.1.0</maven-gpg-plugin.version>
<maven-javadoc-plugin.version>3.5.0</maven-javadoc-plugin.version>
<maven-checkstyle-plugin.version>3.3.1</maven-checkstyle-plugin.version>
<maven-clean-plugin.version>3.3.2</maven-clean-plugin.version>
<maven-compiler-plugin.version>3.13.0</maven-compiler-plugin.version>
<maven-enforcer-plugin.version>3.4.1</maven-enforcer-plugin.version>
<maven-gpg-plugin.version>3.2.4</maven-gpg-plugin.version>
<maven-javadoc-plugin.version>3.6.3</maven-javadoc-plugin.version>
<maven-resources-plugin.version>3.3.1</maven-resources-plugin.version>
<maven-shade-plugin.version>3.5.0</maven-shade-plugin.version>
<maven-source-plugin.version>3.2.1</maven-source-plugin.version>
<maven-shade-plugin.version>3.5.3</maven-shade-plugin.version>
<maven-source-plugin.version>3.3.1</maven-source-plugin.version>
<maven-surefire-plugin.version>2.22.2</maven-surefire-plugin.version>
</properties>

Expand Down

0 comments on commit b292676

Please sign in to comment.