diff --git a/CHANGELOG.md b/CHANGELOG.md index e0cc7d1..88c9252 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,32 @@ # Release History +## v1.5.x (2024-01-17) +- Bug fix for ArrowBatchIterator.HasNext(). Incorrectly returned true for result sets with zero rows. + +## v1.5.2 (2023-11-17) +- Added .us domain to inference list for AWS OAuth +- Bug fix for OAuth m2m scopes, updated m2m authenticator to use "all-apis" scope. + +## v1.5.1 (2023-10-17) +- Logging improvements +- Added handling for staging remove + +## v1.5.0 (2023-10-02) +- Named parameter support +- Better handling of bad connection errors and specifying server protocol +- OAuth implementation +- Expose Arrow batches to users +- Add support for staging operations + +## v1.4.0 (2023-08-09) +- Improve error information when query terminates in unexpected state +- Do not override global logger time format +- Enable Transport configuration for http client +- fix: update arrow to v12 +- Updated doc.go for retrieving query id and connection id +- Bug fix issue 147: BUG with reading table that contains copied map +- Allow WithServerHostname to specify protocol + ## v1.3.1 (2023-06-23) - bug fix for panic when executing non record producing statements using DB.Query()/DB.QueryExec() diff --git a/driver.go b/driver.go index ec28fe2..90d4b20 100644 --- a/driver.go +++ b/driver.go @@ -13,7 +13,7 @@ func init() { sql.Register("databricks", &databricksDriver{}) } -var DriverVersion = "1.3.1" // update version before each release +var DriverVersion = "1.5.3" // update version before each release type databricksDriver struct{}