Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
# 1.5.0 (Node.js, Web)

## New features

- `ClickHouseClient` is now exported as a value from packages, allowing to a better integration in dependency injection frameworks which rely on IoC.

# 1.4.0 (Node.js)

## New features
Expand Down
4 changes: 2 additions & 2 deletions packages/client-node/src/index.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
export type {
export {
NodeClickHouseClient as ClickHouseClient,
QueryResult,
type QueryResult,
} from './client'
export { createClient } from './client'
export { type NodeClickHouseClientConfigOptions as ClickHouseClientConfigOptions } from './config'
Expand Down
4 changes: 2 additions & 2 deletions packages/client-web/src/index.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
export type {
export {
WebClickHouseClient as ClickHouseClient,
QueryResult,
type QueryResult,
} from './client'
export { createClient } from './client'
export { type WebClickHouseClientConfigOptions as ClickHouseClientConfigOptions } from './config'
Expand Down