Skip to content

Commit 44d147c

Browse files
Bump version to 1.3.1 (#138)
- 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 <[email protected]>
2 parents 341b55e + 16c1512 commit 44d147c

File tree

2 files changed

+55
-1
lines changed

2 files changed

+55
-1
lines changed

CHANGELOG.md

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

3+
## v1.3.1 (2023-06-23)
4+
5+
- bug fix for panic when executing non record producing statements using DB.Query()/DB.QueryExec()
6+
7+
## v1.3.0 (2023-06-07)
8+
9+
- allow client provided authenticator
10+
- more robust retry behaviour
11+
- bug fix for null values in complex types
12+
13+
## v1.2.0 (2023-04-20)
14+
15+
- Improved error types and info
16+
17+
## v1.1.0 (2023-03-06)
18+
19+
- Feat: Support ability to retry on specific failures
20+
- Fetch results in arrow format
21+
- Improve error message and retry behaviour
22+
23+
## v1.0.1 (2023-01-05)
24+
25+
Fixing cancel race condition
26+
27+
## v1.0.0 (2022-12-20)
28+
29+
- Package doc (doc.go)
30+
- Handle FLOAT values as float32
31+
- Fix for result.AffectedRows
32+
- Use new ctx when closing operation after cancel
33+
- Set default port to 443
34+
35+
## v1.0.0-rc.1 (2022-12-19)
36+
37+
- Package doc (doc.go)
38+
- Handle FLOAT values as float32
39+
- Fix for result.AffectedRows
40+
- Add or edit documentation above methods
41+
- Tweaks to readme
42+
- Use new ctx when closing operation after cancel
43+
44+
## 0.2.2 (2022-12-12)
45+
46+
- Handle parsing negative years in dates
47+
- fix thread safety issue
48+
49+
## 0.2.1 (2022-12-05)
50+
51+
- Don't ignore error in InitThriftClient
52+
- Close optimization for Rows
53+
- Close operation after executing statement
54+
- Minor change to examples
55+
- P&R improvements
56+
357
## 0.1.x (Unreleased)
458

559
- Fix thread safety issue in connector

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

1818
type databricksDriver struct{}
1919

0 commit comments

Comments
 (0)