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 clickhouse.driver.version from 0.3.2-patch11 to 0.7.1 #168

Closed

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Nov 4, 2024

Bumps clickhouse.driver.version from 0.3.2-patch11 to 0.7.1.
Updates com.clickhouse:clickhouse-jdbc from 0.3.2-patch11 to 0.7.1

Release notes

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

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)

Dependency Updates

Documentation

Bug Fixes

Release v0.7.0

Deprecations

  • Following deprecated components are removed:
    • clickhouse-cli-client
    • clickhouse-grpc-client

Important Changes

  • [client-v2] New transport layer implementation is used by default. It is still possible to switch back using old implementation by setting com.clickhouse.client.api.Client.Builder#useNewImplementation to false. (ClickHouse/clickhouse-java#1847)

New Features

  • [client-v2] Now there is an easy way to set custom HTTP headers globally for client and per operation. See com.clickhouse.client.api.Client.Builder.httpHeader(java.lang.String, java.lang.String) for details. (ClickHouse/clickhouse-java#1782)

... (truncated)

Changelog

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

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 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)

Dependency Updates

Documentation

Bug Fixes

0.7.0

Deprecations

  • Following deprecated components are removed:
    • clickhouse-cli-client
    • clickhouse-grpc-client

Important Changes

  • [client-v2] New transport layer implementation is used by default. It is still possible to switch back using old implementation by setting com.clickhouse.client.api.Client.Builder#useNewImplementation to false. (ClickHouse/clickhouse-java#1847)

New Features

... (truncated)

Commits
  • 3667f7d Make clickhouse-http-client as mandatory dependency
  • 6b40122 Merge pull request #1898 from ClickHouse/pre_0.7.1
  • 8d9aa24 pre 0.7.1 changes
  • 85f7bae Merge pull request #1892 from ClickHouse/fix_password_authentication
  • 842f519 disable tests for cloud
  • 8ffa30a added configuration flags to switch between basic auth and CH auth headers
  • 8533f46 Merge branch 'main' into fix_password_authentication
  • 714dcf8 Merge pull request #1895 from ClickHouse/fix-insert-settings
  • 8b25d63 Tweak the setting
  • e1e7416 Merge pull request #1894 from ClickHouse/jdbc_framework_detection
  • Additional commits viewable in compare view

Updates com.clickhouse:clickhouse-http-client from 0.3.2-patch11 to 0.7.1

Release notes

Sourced from com.clickhouse:clickhouse-http-client's releases.

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)

Dependency Updates

Documentation

Bug Fixes

Release v0.7.0

Deprecations

  • Following deprecated components are removed:
    • clickhouse-cli-client
    • clickhouse-grpc-client

Important Changes

  • [client-v2] New transport layer implementation is used by default. It is still possible to switch back using old implementation by setting com.clickhouse.client.api.Client.Builder#useNewImplementation to false. (ClickHouse/clickhouse-java#1847)

New Features

  • [client-v2] Now there is an easy way to set custom HTTP headers globally for client and per operation. See com.clickhouse.client.api.Client.Builder.httpHeader(java.lang.String, java.lang.String) for details. (ClickHouse/clickhouse-java#1782)

... (truncated)

Changelog

Sourced from com.clickhouse:clickhouse-http-client's changelog.

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 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)

Dependency Updates

Documentation

Bug Fixes

0.7.0

Deprecations

  • Following deprecated components are removed:
    • clickhouse-cli-client
    • clickhouse-grpc-client

Important Changes

  • [client-v2] New transport layer implementation is used by default. It is still possible to switch back using old implementation by setting com.clickhouse.client.api.Client.Builder#useNewImplementation to false. (ClickHouse/clickhouse-java#1847)

New Features

... (truncated)

Commits
  • 3667f7d Make clickhouse-http-client as mandatory dependency
  • 6b40122 Merge pull request #1898 from ClickHouse/pre_0.7.1
  • 8d9aa24 pre 0.7.1 changes
  • 85f7bae Merge pull request #1892 from ClickHouse/fix_password_authentication
  • 842f519 disable tests for cloud
  • 8ffa30a added configuration flags to switch between basic auth and CH auth headers
  • 8533f46 Merge branch 'main' into fix_password_authentication
  • 714dcf8 Merge pull request #1895 from ClickHouse/fix-insert-settings
  • 8b25d63 Tweak the setting
  • e1e7416 Merge pull request #1894 from ClickHouse/jdbc_framework_detection
  • Additional commits viewable in compare view

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 `clickhouse.driver.version` from 0.3.2-patch11 to 0.7.1.

Updates `com.clickhouse:clickhouse-jdbc` from 0.3.2-patch11 to 0.7.1
- [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.3.2-patch11...v0.7.1)

Updates `com.clickhouse:clickhouse-http-client` from 0.3.2-patch11 to 0.7.1
- [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.3.2-patch11...v0.7.1)

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

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot requested a review from a team as a code owner November 4, 2024 18:05
@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Nov 4, 2024
Copy link
Contributor Author

dependabot bot commented on behalf of github Nov 7, 2024

Superseded by #170.

@dependabot dependabot bot closed this Nov 7, 2024
@dependabot dependabot bot deleted the dependabot/maven/clickhouse.driver.version-0.7.1 branch November 7, 2024 18:14
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
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants