From 893ae0d19815123722d9423075f105afae4e28ee Mon Sep 17 00:00:00 2001 From: Serge Klochkov Date: Fri, 29 Nov 2024 19:31:18 +0100 Subject: [PATCH] Prepare 1.9.0 --- CHANGELOG.md | 11 +++++++++++ packages/client-common/src/version.ts | 2 +- packages/client-node/src/version.ts | 2 +- packages/client-web/src/version.ts | 2 +- 4 files changed, 14 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3cdff47..6c01061 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,14 @@ +# 1.9.0 (Common, Node.js, Web) + +## New features + +- Added `input_format_json_throw_on_bad_escape_sequence` to the `ClickhouseSettings` type. ([#355](https://github.com/ClickHouse/clickhouse-js/pull/355), [@emmanuel-bonin](https://github.com/emmanuel-bonin)) +- The client now exports `TupleParam` wrapper class, allowing tuples to be properly used as query parameters. Added support for JS Map as a query parameter. ([#359](https://github.com/ClickHouse/clickhouse-js/pull/359)) + +## Improvements + +- The client will throw a more informative error if the buffered response is larger than the max allowed string length in V8, which is `2**29 - 24` bytes. ([#357](https://github.com/ClickHouse/clickhouse-js/pull/357)) + # 1.8.1 (Node.js) ## Bug fixes diff --git a/packages/client-common/src/version.ts b/packages/client-common/src/version.ts index e409cba..b6d1f4d 100644 --- a/packages/client-common/src/version.ts +++ b/packages/client-common/src/version.ts @@ -1 +1 @@ -export default '1.8.1' +export default '1.9.0' diff --git a/packages/client-node/src/version.ts b/packages/client-node/src/version.ts index e409cba..b6d1f4d 100644 --- a/packages/client-node/src/version.ts +++ b/packages/client-node/src/version.ts @@ -1 +1 @@ -export default '1.8.1' +export default '1.9.0' diff --git a/packages/client-web/src/version.ts b/packages/client-web/src/version.ts index e409cba..b6d1f4d 100644 --- a/packages/client-web/src/version.ts +++ b/packages/client-web/src/version.ts @@ -1 +1 @@ -export default '1.8.1' +export default '1.9.0'