Skip to content

Commit 09f043c

Browse files
Updated driver version and change log for 1.5.3 (#187)
2 parents ad8bb37 + 1f54319 commit 09f043c

File tree

2 files changed

+28
-1
lines changed

2 files changed

+28
-1
lines changed

CHANGELOG.md

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

3+
## v1.5.3 (2024-01-17)
4+
- Bug fix for ArrowBatchIterator.HasNext(). Incorrectly returned true for result sets with zero rows.
5+
6+
## v1.5.2 (2023-11-17)
7+
- Added .us domain to inference list for AWS OAuth
8+
- Bug fix for OAuth m2m scopes, updated m2m authenticator to use "all-apis" scope.
9+
10+
## v1.5.1 (2023-10-17)
11+
- Logging improvements
12+
- Added handling for staging remove
13+
14+
## v1.5.0 (2023-10-02)
15+
- Named parameter support
16+
- Better handling of bad connection errors and specifying server protocol
17+
- OAuth implementation
18+
- Expose Arrow batches to users
19+
- Add support for staging operations
20+
21+
## v1.4.0 (2023-08-09)
22+
- Improve error information when query terminates in unexpected state
23+
- Do not override global logger time format
24+
- Enable Transport configuration for http client
25+
- fix: update arrow to v12
26+
- Updated doc.go for retrieving query id and connection id
27+
- Bug fix issue 147: BUG with reading table that contains copied map
28+
- Allow WithServerHostname to specify protocol
29+
330
## v1.3.1 (2023-06-23)
431

532
- bug fix for panic when executing non record producing statements using DB.Query()/DB.QueryExec()

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

1818
type databricksDriver struct{}
1919

0 commit comments

Comments
 (0)