Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump com.clickhouse:clickhouse-jdbc from 0.7.0 to 0.7.2 in /modules/clickhouse #9737

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Jan 6, 2025

Bumps com.clickhouse:clickhouse-jdbc from 0.7.0 to 0.7.2.

Release notes

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

Release v0.7.2

New Components

  • jdbc-v2 - pre-release version of upcoming clickhouse-jdbc replacement. Supports basic functionality, works only with client-v2. More information will be available after its release

Highlights

  • [repo] Added shaded packages with requires a set of dependencies. Use all classified for client-v2 full package. Use shaded-all for old jdbc driver.
  • [client-v2] New Data Writer API was added. It allows to gain a control over writing data to low-level output stream. This API makes it possible to write compressed data directly to server. See com.clickhouse.client.api.Client#insert(java.lang.String, com.clickhouse.client.api.DataStreamWriter, com.clickhouse.data.ClickHouseFormat, com.clickhouse.client.api.insert.InsertSettings) (ClickHouse/clickhouse-java#2034)

New Features

  • [client-v2] Added ability to specify client name. It means User-Agent will be filled with proper information (ClickHouse/clickhouse-java#1948)
  • [client-v2] Implemented statement parameters for queryAll and queryRecords API methods. (ClickHouse/clickhouse-java#1979)
  • [client-v2] Implemented string to number conversion. (ClickHouse/clickhouse-java#2014)
  • [client-v1] Added basic auth support for proxies. Now you can specify username/password when connecting via a proxy that requires it with HttpURLConnection and Apache HttpClient.
  • [client-v2] Enum columns can be read as string and number. Previously only as number. Now number matching string constant is returned when get as string. (ClickHouse/clickhouse-java#2028)
  • [client-v2] Client will load some server context (timezone, user) right after build. (ClickHouse/clickhouse-java#2029)

Bug Fixes

Release v0.7.1-patch1

Bug Fixes

Release v0.7.1

New Features

  • [client-v2] Implemented more friendly number conversion. Now it is possible to convert smaller type to bigger one. It is also possible to convert bigger into smaller if value fits into the range. (ClickHouse/clickhouse-java#1852)
  • [client-v2] Ported a feature that allows to remember DB roles for a client instance. See com.clickhouse.client.api.Client#setDBRoles for details. (ClickHouse/clickhouse-java#1832)
  • [client-v2] Ported a feature that allows adding comments to a query. See com.clickhouse.client.api.insert.InsertSettings#logComment and com.clickhouse.client.api.query.QuerySettings#logComment for details. (ClickHouse/clickhouse-java#1836)
  • [client-v2] Added support for SSL Authentication with client certificates. (ClickHouse/clickhouse-java#1837)
  • [client-v2] Implemented a way to define a custom matching between a column name and a field in a POJO in Client#register method. (ClickHouse/clickhouse-java#1866)
  • [client-v1, client-v2] Implemented HTTP Basic authentication and made it a default auth method for HTTP interface. It was done to address problem with passwords contianing special and UTF8 characters. New configuration option com.clickhouse.client.http.config.ClickHouseHttpOption.USE_BASIC_AUTHENTICATION for client v1 is added. For client v2 use com.clickhouse.client.api.Client.Builder#useHTTPBasicAuth method. (ClickHouse/clickhouse-java#1305)

... (truncated)

Changelog

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

0.7.2

New Components

  • jdbc-v2 - pre-release version of upcoming clickhouse-jdbc replacement. Supports basic functionality, works only with client-v2. More information will be available after its release

Highlights

  • [repo] Added shaded packages with requires a set of dependencies. Use all classified for client-v2 full package. Use shaded-all for old jdbc driver.
  • [client-v2] New Data Writer API was added. It allows to gain a control over writing data to low-level output stream. This API makes it possible to write compressed data directly to server. See com.clickhouse.client.api.Client#insert(java.lang.String, com.clickhouse.client.api.DataStreamWriter, com.clickhouse.data.ClickHouseFormat, com.clickhouse.client.api.insert.InsertSettings) (ClickHouse/clickhouse-java#2034)

New Features

  • [client-v2] Added ability to specify client name. It means User-Agent will be filled with proper information (ClickHouse/clickhouse-java#1948)
  • [client-v2] Implemented statement parameters for queryAll and queryRecords API methods. (ClickHouse/clickhouse-java#1979)
  • [client-v2] Implemented string to number conversion. (ClickHouse/clickhouse-java#2014)
  • [client-v1] Added basic auth support for proxies. Now you can specify username/password when connecting via a proxy that requires it with HttpURLConnection and Apache HttpClient.
  • [client-v2] Enum columns can be read as string and number. Previously only as number. Now number matching string constant is returned when get as string. (ClickHouse/clickhouse-java#2028)
  • [client-v2] Client will load some server context (timezone, user) right after build. (ClickHouse/clickhouse-java#2029)

Bug Fixes

0.7.1-patch1

Bug Fixes

0.7.1

New Features

  • [client-v2] Implemented more friendly number conversion. Now it is possible to convert smaller type to bigger one. It is also possible to convert bigger into smaller if value fits into the range. (ClickHouse/clickhouse-java#1852)
  • [client-v2] Ported a feature that allows to remember DB roles for a client instance. See com.clickhouse.client.api.Client#setDBRoles for details. (ClickHouse/clickhouse-java#1832)
  • [client-v2] Ported a feature that allows adding comments to a query. See com.clickhouse.client.api.insert.InsertSettings#logComment and com.clickhouse.client.api.query.QuerySettings#logComment for details. (ClickHouse/clickhouse-java#1836)
  • [client-v2] Added support for SSL Authentication with client certificates. (ClickHouse/clickhouse-java#1837)
  • [client-v2] Implemented a way to define a custom matching between a column name and a field in a POJO in Client#register method. (ClickHouse/clickhouse-java#1866)
  • [client-v1, client-v2] Implemented HTTP Basic authentication and made it a default auth method for HTTP interface. It

... (truncated)

Commits
  • 33b1fad Merge pull request #2059 from ClickHouse/client_v2_fix_table_name
  • a5fc84a added test to check name of the table can be in different forms
  • d183c5e fix table name wrapping in insert statement
  • ca81ec7 Merge pull request #2057 from ClickHouse/add_developers
  • d21de26 added developers list
  • a599876 Merge pull request #2034 from ClickHouse/v2_implement_writer_api
  • 75cde09 Merge pull request #2047 from ClickHouse/pre_0.7.2
  • 8e2cfb7 added line about writer API
  • b0d66cf Merge branch 'main' into pre_0.7.2
  • f50c9df extracted buffer value to constant
  • 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)

Bumps [com.clickhouse:clickhouse-jdbc](https://github.com/ClickHouse/clickhouse-java) from 0.7.0 to 0.7.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.7.2)

---
updated-dependencies:
- dependency-name: com.clickhouse:clickhouse-jdbc
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot requested a review from a team as a code owner January 6, 2025 22:10
@dependabot dependabot bot added dependencies Pull requests that update a dependency file java labels Jan 6, 2025
Copy link
Contributor Author

dependabot bot commented on behalf of github Jan 27, 2025

Superseded by #9897.

@dependabot dependabot bot closed this Jan 27, 2025
@dependabot dependabot bot deleted the dependabot/gradle/modules/clickhouse/com.clickhouse-clickhouse-jdbc-0.7.2 branch January 27, 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 modules/clickhouse
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants