Skip to content

Commit

Permalink
Bump version and update CHANGELOG
Browse files Browse the repository at this point in the history
  • Loading branch information
slvrtrn committed Jul 11, 2024
1 parent ba73962 commit 244d582
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 4 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
# 1.4.0 (Node.js)

## New features

- (Node.js only) The `exec` method now accepts an optional `values` parameter, which allows you to pass the request body as a `Stream.Readable`. This can be useful in case of custom insert streaming with arbitrary ClickHouse data formats (which might not be explicitly supported and allowed by the client in the `insert` method yet). NB: in this case, you are expected to serialize the data in the stream in the required input format yourself.

# 1.3.0 (Common, Node.js, Web)

## New features
Expand Down
2 changes: 1 addition & 1 deletion packages/client-common/src/version.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export default '1.3.0'
export default '1.4.0'
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import Stream from 'stream'
import { getAsText } from '../../src/utils'
import { drainStream, ResultSet } from '../../src'

fdescribe('[Node.js] exec', () => {
describe('[Node.js] exec', () => {
let client: ClickHouseClient<Stream.Readable>
beforeEach(() => {
client = createTestClient()
Expand Down
2 changes: 1 addition & 1 deletion packages/client-node/src/version.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export default '1.3.0'
export default '1.4.0'
2 changes: 1 addition & 1 deletion packages/client-web/src/version.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export default '1.3.0'
export default '1.4.0'

0 comments on commit 244d582

Please sign in to comment.