Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Prepare release v1.5.4 #208

Merged
merged 1 commit into from
Apr 10, 2024
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.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Release History

## v1.5.4 (2024-04-10)

- Added OAuth support for GCP (databricks/databricks-sql-go#189 by @rcypher-databricks)
- Staging operations: stream files instead of loading into memory (databricks/databricks-sql-go#197 by @mdibaiee)
- Staging operations: don't panic on REMOVE (databricks/databricks-sql-go#205 by @candiduslynx)
- Fix formatting of Date/Time query parameters (databricks/databricks-sql-go#207 by @candiduslynx)

## v1.5.3 (2024-01-17)
- Bug fix for ArrowBatchIterator.HasNext(). Incorrectly returned true for result sets with zero rows.

Expand Down
2 changes: 1 addition & 1 deletion driver.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ func init() {
sql.Register("databricks", &databricksDriver{})
}

var DriverVersion = "1.5.3" // update version before each release
var DriverVersion = "1.5.4" // update version before each release

type databricksDriver struct{}

Expand Down