Skip to content

Commit 6d53e55

Browse files
Prepare for 1.6.2 (#259)
Prepare for the next release of go driver (1.6.2) which adds the following changes: - Support positional query parameters (#247) - Add custom auth headers into cloud fetch request (#249) - Security: GO-2024-2947 - Update go-retryablehttp (#251) - Security: CVE-2025-27144 - Resolve vulnerability in go-jose (#258) - Bugfix: Handle incorrect EOF in fetchResultPage when TFetchResults call fails with an error (#255) Signed-off-by: Vikrant Puppala <vikrant.puppala@databricks.com>
1 parent 2a39cfa commit 6d53e55

File tree

2 files changed

+9
-1
lines changed

2 files changed

+9
-1
lines changed

CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# Release History
22

3+
## v1.6.2 (2025-03-18)
4+
5+
- Support positional query parameters (databricks/databricks-sql-go#247)
6+
- Add custom auth headers into cloud fetch request (databricks/databricks-sql-go#249)
7+
- Security: GO-2024-2947 - Update go-retryablehttp (databricks/databricks-sql-go#251)
8+
- Security: CVE-2025-27144 - Resolve vulnerability in go-jose (databricks/databricks-sql-go#258)
9+
- Bugfix: Handle incorrect EOF in fetchResultPage when TFetchResults call fails with an error (databricks/databricks-sql-go#255)
10+
311
## v1.6.1 (2024-08-27)
412

513
- Fix CloudFetch "row number N is not contained in any arrow batch" error (databricks/databricks-sql-go#234)

driver.go

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

1818
type databricksDriver struct{}
1919

0 commit comments

Comments
 (0)