Skip to content

Commit 98148d9

Browse files
authored
Prepare for release (#324)
New version → v1.10.0 (new features warrant a minor bump). This release has a bunch of bug fixes too
1 parent cd6dc19 commit 98148d9

File tree

2 files changed

+9
-1
lines changed

2 files changed

+9
-1
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# Release History
22

3+
## v1.10.0 (2026-02-19)
4+
- Add token federation / token provider support for OAuth (databricks/databricks-sql-go#290, #291, #292)
5+
- Internal: add foundational telemetry infrastructure, disabled by default (databricks/databricks-sql-go#297, #304, #305, #311, #319)
6+
- Fix type inference for int64/uint64 (BIGINT) and float64 (DOUBLE) (databricks/databricks-sql-go#316)
7+
- Fix context loss in polling and connection close operations (databricks/databricks-sql-go#295)
8+
- CloudFetch: allow configuration of HTTP client (databricks/databricks-sql-go#308)
9+
- Add metric view metadata support (databricks/databricks-sql-go#286)
10+
311
## v1.9.0 (2025-09-17)
412
- Added support for query tags
513
- Passing session params in open session request instead of SET commands (databricks/databricks-sql-go#283)

driver.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ func init() {
1313
sql.Register("databricks", &databricksDriver{})
1414
}
1515

16-
var DriverVersion = "1.9.0" // update version before each release
16+
var DriverVersion = "1.10.0" // update version before each release
1717

1818
type databricksDriver struct{}
1919

0 commit comments

Comments
 (0)