Bump @clickhouse/client from 0.2.10 to 1.0.1 in /relay-worker
Bumps @clickhouse/client from 0.2.10 to 1.0.1.
Release notes
Sourced from @clickhouse/client's releases.
1.0.1
A hotfix for both Node.js and Web packages. See the 1.0.0 entry that contains the entire 1.0.x changelog.
Bug fixes
- Fixed the regression where the default HTTP/HTTPS port numbers (80/443) could not be used with the URL configuration (#258).
1.0.0
Formal stable release milestone with many improvements and some breaking changes.
Major new features overview:
- Advanced TypeScript support for
query+ResultSet- URL configuration
From now on, the client will follow the official semantic versioning guidelines.
Deprecated API
The following configuration parameters are marked as deprecated:
- The
hostconfiguration parameter is deprecated; useurlinstead.additional_headersconfiguration parameter is deprecated; usehttp_headersinstead.The client will log a warning if any of these parameters are used. However, it is still allowed to use
hostinstead ofurlandadditional_headersinstead ofhttp_headersfor now; this deprecation is not supposed to break the existing code.These parameters will be removed in the next major release (2.0.0).
See the "New features" section for more details.
Breaking changes in 1.0.0
compression.responseis now disabled by default in the client configuration options, as it cannot be used with readonly=1 users, and it was not clear from the ClickHouse error message what exact client option was causing the failing query in this case. If you'd like to continue using response compression, you should explicitly enable it in the client configuration.- As the client now supports parsing URL configuration, you should specify
pathnameas a separate configuration option (as it would be considered as thedatabaseotherwise).- (TypeScript only)
ResultSetandRoware now more strictly typed, according to the format used during thequerycall.- (TypeScript only) Both Node.js and Web versions now uniformly export correct
ClickHouseClientandClickHouseClientConfigOptionstypes specific to each implementation. ExportedClickHouseClientnow does not have aStreamtype parameter, as it was unintended to expose it there. NB: you should still use thecreateClientfactory function provided in the package.New features in 1.0.0
Advanced TypeScript support for
query+ResultSetThe client will now try its best to figure out the shape of the data based on the DataFormat literal specified to the
querycall, as well as which methods are allowed to be called on theResultSet.Live demo (see the full description below):
Complete reference:
... (truncated)
Changelog
Sourced from @clickhouse/client's changelog.
1.0.1 (Common, Node.js, Web)
Bug fixes
- Fixed the regression where the default HTTP/HTTPS port numbers (80/443) could not be used with the URL configuration (#258).
1.0.0 (Common, Node.js, Web)
Formal stable release milestone with a lot of improvements and some breaking changes.
Major new features overview:
From now on, the client will follow the official semantic versioning guidelines.
Deprecated API
The following configuration parameters are marked as deprecated:
hostconfiguration parameter is deprecated; useurlinstead.additional_headersconfiguration parameter is deprecated; usehttp_headersinstead.The client will log a warning if any of these parameters are used. However, it is still allowed to use
hostinstead ofurlandadditional_headersinstead ofhttp_headersfor now; this deprecation is not supposed to break the existing code.These parameters will be removed in the next major release (2.0.0).
See "New features" section for more details.
Breaking changes in 1.0.0
compression.responseis now disabled by default in the client configuration options, as it cannot be used with readonly=1 users, and it was not clear from the ClickHouse error message what exact client option was causing the failing query in this case. If you'd like to continue using response compression, you should explicitly enable it in the client configuration.- As the client now supports parsing URL configuration, you should specify
pathnameas a separate configuration option (as it would be considered as thedatabaseotherwise).- (TypeScript only)
ResultSetandRoware now more strictly typed, according to the format used during thequerycall. See this section for more details.- (TypeScript only) Both Node.js and Web versions now uniformly export correct
ClickHouseClientandClickHouseClientConfigOptionstypes, specific to each implementation. ExportedClickHouseClientnow does not have aStreamtype parameter, as it was unintended to expose it there. NB: you should still usecreateClientfactory function provided in the package.New features in 1.0.0
Advanced TypeScript support for
query+ResultSetClient will now try its best to figure out the shape of the data based on the DataFormat literal specified to the
querycall, as well as which methods are allowed to be called on theResultSet.Live demo (see the full description below):
Complete reference:
| Format |
ResultSet.json<T>()|ResultSet.stream<T>()| Stream data |Row.json<T>()|
... (truncated)
Commits
800a337Fix flaky query_id test720ca1bFix URL configuration with the default HTTP/HTTPS ports (#259)64b5f81Update README and CHANGELOG, fix test commentf0e99b4Update tests, add more socket and ping tests, re-export a bit more types, add...ca172b6Update Sonar actionf892c52sonarcloud actiona238be3Update coverage pathb0f95daDisable shallow clone for Sonar checkout13676c9Merge pull request #255 from ClickHouse/coverage-reports41a5889Update coverage path- 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 rebasewill rebase this PR -
@dependabot recreatewill recreate this PR, overwriting any edits that have been made to it -
@dependabot mergewill merge this PR after your CI passes on it -
@dependabot squash and mergewill squash and merge this PR after your CI passes on it -
@dependabot cancel mergewill cancel a previously requested merge and block automerging -
@dependabot reopenwill reopen this PR if it is closed -
@dependabot closewill close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually -
@dependabot show <dependency name> ignore conditionswill show all of the ignore conditions of the specified dependency -
@dependabot ignore this major versionwill 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 versionwill 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 dependencywill close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)