Skip to content

Commit

Permalink
Release v0.2.2 (#58)
Browse files Browse the repository at this point in the history
* Updating packages. In this update, the dependencies specified in the
pyproject.toml file have been updated to more recent versions. The
outdated packages "databricks-labs-blueprint~=0.4.0" and
"databricks-sdk~=0.21.0" have been replaced with
"databricks-labs-blueprint>=0.4.2" and "databricks-sdk>=0.22.0",
respectively. These updates are expected to bring new features and bug
fixes to the software. The dependency `sqlglot` remains unchanged, with
the same version requirement range of "sqlglot>=22.3.1,<22.5.0". These
updates ensure that the software will function as intended, while also
taking advantage of the enhancements provided by the more recent
versions of the packages.
  • Loading branch information
nfx authored Mar 15, 2024
1 parent 6d96e50 commit 31684a2
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Version changelog

## 0.2.2

* Updating packages. In this update, the dependencies specified in the pyproject.toml file have been updated to more recent versions. The outdated packages "databricks-labs-blueprint~=0.4.0" and "databricks-sdk~=0.21.0" have been replaced with "databricks-labs-blueprint>=0.4.2" and "databricks-sdk>=0.22.0", respectively. These updates are expected to bring new features and bug fixes to the software. The dependency `sqlglot` remains unchanged, with the same version requirement range of "sqlglot>=22.3.1,<22.5.0". These updates ensure that the software will function as intended, while also taking advantage of the enhancements provided by the more recent versions of the packages.


## 0.2.1

* Fixed row converter to properly handle nullable values ([#53](https://github.com/databrickslabs/lsql/issues/53)). In this release, the row converter in the `databricks.labs.lsql.core` module has been updated to handle nullable values correctly. A new method `StatementExecutionExt` has been added, which manages the handling of nullable values during SQL statement execution. The `Row` class has also been modified to include nullable values, improving the robustness and flexibility of SQL execution in dealing with various data types, including null values. These enhancements increase the overall reliability of the system, making it more production-ready.
Expand Down
2 changes: 1 addition & 1 deletion src/databricks/labs/lsql/__about__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.2.1"
__version__ = "0.2.2"

0 comments on commit 31684a2

Please sign in to comment.