Skip to content
Merged
Show file tree
Hide file tree
Changes from 3 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
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# Release History

## 1.11.0

- Enable cloud fetch by default (databricks/databricks-sql-nodejs#287)
- Added `useLZ4Compression` in `ExecuteStatementOptions` making compression configurable (databricks/databricks-sql-nodejs#288)
- Improve URL handling. Fixes [#284](https://github.com/databricks/databricks-sql-nodejs/issues/284) (databricks/databricks-sql-nodejs#290)
- Add thrift protocol version handling for driver features (databricks/databricks-sql-nodejs#292)
- Cleanup deprecated/removed fields in thrift files (databricks/databricks-sql-nodejs#295)
Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

nit : cleanup auto-generated thrift files

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

updated

- Add lenient LZ4 check to handle dependecy errors gracefully. Fixes [#289](https://github.com/databricks/databricks-sql-nodejs/issues/289) [#275](https://github.com/databricks/databricks-sql-nodejs/issues/275) [#266](https://github.com/databricks/databricks-sql-nodejs/issues/266) [#270](https://github.com/databricks/databricks-sql-nodejs/issues/270) (databricks/databricks-sql-nodejs#298)

## 1.10.0

- Rename `clientId` parameter to `userAgentEntry` in connect call to standardize across sql drivers (databricks/databricks-sql-nodejs#281)
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@databricks/sql",
"version": "1.10.0",
"version": "1.11.0",
"description": "Driver for connection to Databricks SQL via Thrift API.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
Expand Down
Loading