Skip to content

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Mar 3, 2025

Bumps com.clickhouse:clickhouse-r2dbc from 0.7.0 to 0.8.2.

Release notes

Sourced from com.clickhouse:clickhouse-r2dbc's releases.

Release v0.8.2

Bug Fixes

[jdbc-v2] - Fixed a bug affecting JDBC insert performance. (ClickHouse/clickhouse-java#2165) [client-v1] - Removed unnecessary object creation and added executor pool configuration (ClickHouse/clickhouse-java#2164)

Miscellaneous

[client-v1] - Deprecated the old client, though it is still available. We've not yet set a date for its removal, this more serves as a head's up.

Release v0.8.1

New Features

  • [client-v2] - Added support for Variant Data Type for RowBinary format. Can be read into a POJO or using a reader. Writing is supported only for POJO. (ClickHouse/clickhouse-java#2130)
  • [client-v2] - Added support for Dynamic Data Type for RowBinary format. Can be read into a POJO or using a reader. Writing is supported only for POJO. (ClickHouse/clickhouse-java#2130)
  • [client-v2] - Added support for JSON Data Type for RowBinary format. Can be read into a POJO or using a reader. Writing is supported only for POJO. (ClickHouse/clickhouse-java#2130)
  • [client-v2] - Added support for ZonedDateTime in POJO serde. (ClickHouse/clickhouse-java#2117)
  • [client-v2] - Added suport for micrometer metrics for Apache HTTP client connection pool. It is now possible to get metrics registered in micrometer registry by calling com.clickhouse.client.api.Client.Builder.registerClientMetrics(registry, groupName). (ClickHouse/clickhouse-java#1901)

Bug Fixes

  • [client-v2] - Fixed getTableSchema(tableName, databaseName) now it doesn't ignore database name. (ClickHouse/clickhouse-java#2139)
  • [client-v2] - Fixed returnGeneratedValues to not throw an exception. Keep in mind that ClickHouse doesn't support returning anything in response for INSERT statements. This change was done just to make client usable with certain frameworks. (ClickHouse/clickhouse-java#2121)
  • [jdbc-v2] - Fixed changing database by USE statement. (ClickHouse/clickhouse-java#2137)
  • [jbdc-v2] - Fixed ResultSetMetadata.getColumnClassName() to return null instead of throwing exception. This change is done only to allow certain frameworks work with the client. (ClickHouse/clickhouse-java#2112)
  • [jdbc-v2] - Fixed using statements with WITH in JDBC v2. Previously was causing NPE. (ClickHouse/clickhouse-java#2132)
  • [repo] - Fixed failing Test in Windows when attempting to locate files with reserved characters in the file path. (ClickHouse/clickhouse-java#2114)

Release v0.8.0

Highlights

  • We've updated ClickHouseDriver and ClickHouseDataSource to default to using the new (jdbc-v2) implementation of the JDBC driver. Setting clickhouse.jdbc.v1=true will revert this change.

JDBC Changes

  • jdbc-v2 - Removed support for Transaction Support. Early versions of the driver only simulated transaction support, which could have unexpected results.
  • jdbc-v2 - Removed support for Response Column Renaming. ResultSet was mutable - for efficiency sake they're now read-only
  • jdbc-v2 - Removed support for Multi-Statement SQL. Multi-statement support was only simulated, now it strictly follows 1:1
  • jdbc-v2 - Removed support for Named Parameters. Not part of the JDBC spec
  • jdbc-v2 - Removed support for Stream-based PreparedStatement. Early version of the driver allowed for non-jdbc usage of PreparedStatement - if you desire such options, we recommend looking at client-v2.

New Features

  • [client-v2, jdbc-v2] - Added support for Bearer token authentication like JWT. Now it is possible to specify encoded token while creating a client and change while runtime using com.clickhouse.client.api.Client.updateBearerToken. (ClickHouse/clickhouse-java#1834, ClickHouse/clickhouse-java#1988)
  • [client-v2] - Exposed connection pool metrics through Micrometer. It allows to monitor internal connection pool for number of active and leased connections. (ClickHouse/clickhouse-java#1901)

Bug Fixes

  • [client-v2] - Fixed construction of User-Agent header. Prev. implementation uses class.getPackage().getImplementationVersion() what returns incorrect title and version when library is shaded. New implementation uses build time information from resource files generated while build. (ClickHouse/clickhouse-java#2007)

... (truncated)

Changelog

Sourced from com.clickhouse:clickhouse-r2dbc's changelog.

0.8.2

New Features

Bug Fixes

Miscellaneous

  • [client-v1] - Deprecated the old client, though it is still available. We've not yet set a date for its removal, this more serves as a head's up.

0.8.1

New Features

  • [client-v2] - Added support for Variant Data Type for RowBinary format. Can be read into a POJO or using a reader. Writing is supported only for POJO. (ClickHouse/clickhouse-java#2130)
  • [client-v2] - Added support for Dynamic Data Type for RowBinary format. Can be read into a POJO or using a reader. Writing is supported only for POJO. (ClickHouse/clickhouse-java#2130)
  • [client-v2] - Added support for JSON Data Type for RowBinary format. Can be read into a POJO or using a reader. Writing is supported only for POJO. (ClickHouse/clickhouse-java#2130)
  • [client-v2] - Added support for ZonedDateTime in POJO serde. (ClickHouse/clickhouse-java#2117)
  • [client-v2] - Added suport for micrometer metrics for Apache HTTP client connection pool. It is now possible to get metrics registered in micrometer registry by calling com.clickhouse.client.api.Client.Builder.registerClientMetrics(registry, groupName). (ClickHouse/clickhouse-java#1901)

Bug Fixes

  • [client-v2] - Fixed getTableSchema(tableName, databaseName) now it doesn't ignore database name. (ClickHouse/clickhouse-java#2139)
  • [client-v2] - Fixed returnGeneratedValues to not throw an exception. Keep in mind that ClickHouse doesn't support returning anything in response for INSERT statements. This change was done just to make client usable with certain frameworks. (ClickHouse/clickhouse-java#2121)
  • [jdbc-v2] - Fixed changing database by USE statement. (ClickHouse/clickhouse-java#2137)
  • [jbdc-v2] - Fixed ResultSetMetadata.getColumnClassName() to return null instead of throwing exception. This change is done only to allow certain frameworks work with the client. (ClickHouse/clickhouse-java#2112)
  • [jdbc-v2] - Fixed using statements with WITH in JDBC v2. Previously was causing NPE. (ClickHouse/clickhouse-java#2132)
  • [repo] - Fixed failing Test in Windows when attempting to locate files with reserved characters in the file path. (ClickHouse/clickhouse-java#2114)

0.8.0

Highlights

  • We've updated ClickHouseDriver and ClickHouseDataSource to default to using the new (jdbc-v2) implementation of the JDBC driver. Setting clickhouse.jdbc.v1=true will revert this change.

JDBC Changes

  • jdbc-v2 - Removed support for Transaction Support. Early versions of the driver only simulated transaction support, which could have unexpected results.
  • jdbc-v2 - Removed support for Response Column Renaming. ResultSet was mutable - for efficiency sake they're now read-only
  • jdbc-v2 - Removed support for Multi-Statement SQL. Multi-statement support was only simulated, now it strictly follows 1:1
  • jdbc-v2 - Removed support for Named Parameters. Not part of the JDBC spec
  • jdbc-v2 - Removed support for Stream-based PreparedStatement. Early version of the driver allowed for non-jdbc usage of PreparedStatement - if you desire such options, we recommend looking at client-v2.

New Features

  • [client-v2, jdbc-v2] - Added support for Bearer token authentication like JWT. Now it is possible to specify encoded token while creating a client and change while runtime using com.clickhouse.client.api.Client.updateBearerToken. (ClickHouse/clickhouse-java#1834, ClickHouse/clickhouse-java#1988)
  • [client-v2] - Exposed connection pool metrics through Micrometer. It allows to monitor internal connection pool for number of active and leased connections. (ClickHouse/clickhouse-java#1901)

... (truncated)

Commits
  • 1414421 Merge pull request #2184 from ClickHouse/0.8.2-release-prep
  • 5034a45 0.8.2 Pre-release
  • 3de788c Merge pull request #2183 from ClickHouse/v2_fix_compression_tests
  • 55a7907 fixe compression test and undeprecated some classes
  • 6493e2d Merge pull request #2178 from ClickHouse/undeprecating
  • c4e6b7a Removing deprecated label since they'll be copied to V2
  • 57a0159 Improve JDBC insert performance (#2165)
  • ca3c0c0 Merge pull request #2166 from ClickHouse/small_fixes
  • e30544d enabled same settings for cloud in the jdbc tests
  • 6f4b195 fixed settings for variant tests
  • Additional commits viewable in compare view

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

@dependabot dependabot bot requested a review from a team March 3, 2025 22:43
@dependabot dependabot bot added dependencies Pull requests that update a dependency file java Pull requests that update Java code labels Mar 3, 2025
Bumps [com.clickhouse:clickhouse-r2dbc](https://github.com/ClickHouse/clickhouse-java) from 0.7.0 to 0.8.2.
- [Release notes](https://github.com/ClickHouse/clickhouse-java/releases)
- [Changelog](https://github.com/ClickHouse/clickhouse-java/blob/main/CHANGELOG.md)
- [Commits](ClickHouse/clickhouse-java@v0.7.0...v0.8.2)

---
updated-dependencies:
- dependency-name: com.clickhouse:clickhouse-r2dbc
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot force-pushed the dependabot/gradle/modules/clickhouse/com.clickhouse-clickhouse-r2dbc-0.8.2 branch from 6d743d4 to 2181d08 Compare March 4, 2025 20:35
@dependabot @github
Copy link
Contributor Author

dependabot bot commented on behalf of github May 1, 2025

Superseded by #10223.

@dependabot dependabot bot closed this May 1, 2025
@dependabot dependabot bot deleted the dependabot/gradle/modules/clickhouse/com.clickhouse-clickhouse-r2dbc-0.8.2 branch May 1, 2025 22:30
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file java Pull requests that update Java code modules/clickhouse

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant