Skip to content

Commit dd8a79f

Browse files
Prepare for v1.11.1 release (#358)
## Summary Bump `DriverVersion` to `1.11.1` and add the `v1.11.1` section to `CHANGELOG.md`. ### Notable changes since v1.11.0 - Fix CloudFetch goroutine leak that retained Arrow buffers after Close (#357) ## Test plan - [x] `go test ./... -count=1 -short` passes locally - [x] Multi-DBR tests in `universe/peco/correctness/go` passed (5/5 suites on DBR 18.x-photon-scala2.13) - [ ] CI green This pull request was AI-assisted by Isaac. Signed-off-by: Vikrant Puppala <vikrant.puppala@databricks.com>
1 parent 2557e6f commit dd8a79f

2 files changed

Lines changed: 4 additions & 1 deletion

File tree

CHANGELOG.md

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

3+
## v1.11.1 (2026-05-20)
4+
- Fix CloudFetch goroutine leak that retained Arrow buffers after Close (databricks/databricks-sql-go#357)
5+
36
## v1.11.0 (2026-04-16)
47
- Enable telemetry by default with DSN-controlled priority (databricks/databricks-sql-go#320, #321, #322, #349)
58
- Add SPOG (Custom URL) routing support via `x-databricks-org-id` header (databricks/databricks-sql-go#347)

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.11.0" // update version before each release
16+
var DriverVersion = "1.11.1" // update version before each release
1717

1818
type databricksDriver struct{}
1919

0 commit comments

Comments
 (0)