Skip to content
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.
Loading
Jump to
Jump to file
Failed to load files.
Loading
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.7.1 (2025-05-20)

- Add schema to ArrowBatchIterator (databricks/databricks-sql-go#267)
- Update thrift client library after cleaning up unused fields and structs (databricks/databricks-sql-go#268)
- Add nil handling for isStagingOperation to handle older DBR versions (databricks/databricks-sql-go#266)
- Security: Fix CVE-2024-45337 - Update golang.org/x/crypto (databricks/databricks-sql-go#264)

## v1.7.0 (2025-04-09)

- Enable cloud fetch mode by default (databricks/databricks-sql-go#260)
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.7.0" // update version before each release
var DriverVersion = "1.7.1" // update version before each release

type databricksDriver struct{}

Expand Down
Loading