Skip to content

Commit

Permalink
Bump version to 1.3.1 (#138)
Browse files Browse the repository at this point in the history
- Update version and changelog
- 1.3.1 contains a bug fix for queries that don't produce a result set
Signed-off-by: Raymond Cypher <raymond.cypher@databricks.com>
  • Loading branch information
rcypher-databricks authored Jun 26, 2023
2 parents 341b55e + 16c1512 commit 44d147c
Show file tree
Hide file tree
Showing 2 changed files with 55 additions and 1 deletion.
54 changes: 54 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,59 @@
# Release History

## v1.3.1 (2023-06-23)

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

## v1.3.0 (2023-06-07)

- allow client provided authenticator
- more robust retry behaviour
- bug fix for null values in complex types

## v1.2.0 (2023-04-20)

- Improved error types and info

## v1.1.0 (2023-03-06)

- Feat: Support ability to retry on specific failures
- Fetch results in arrow format
- Improve error message and retry behaviour

## v1.0.1 (2023-01-05)

Fixing cancel race condition

## v1.0.0 (2022-12-20)

- Package doc (doc.go)
- Handle FLOAT values as float32
- Fix for result.AffectedRows
- Use new ctx when closing operation after cancel
- Set default port to 443

## v1.0.0-rc.1 (2022-12-19)

- Package doc (doc.go)
- Handle FLOAT values as float32
- Fix for result.AffectedRows
- Add or edit documentation above methods
- Tweaks to readme
- Use new ctx when closing operation after cancel

## 0.2.2 (2022-12-12)

- Handle parsing negative years in dates
- fix thread safety issue

## 0.2.1 (2022-12-05)

- Don't ignore error in InitThriftClient
- Close optimization for Rows
- Close operation after executing statement
- Minor change to examples
- P&R improvements

## 0.1.x (Unreleased)

- Fix thread safety issue in connector
Expand Down
2 changes: 1 addition & 1 deletion driver.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ func init() {
sql.Register("databricks", &databricksDriver{})
}

var DriverVersion = "1.3.0" // update version before each release
var DriverVersion = "1.3.1" // update version before each release

type databricksDriver struct{}

Expand Down

0 comments on commit 44d147c

Please sign in to comment.