Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Prepare release v1.6.0 #241

Merged
merged 2 commits into from
Jul 31, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/CODEOWNERS
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@
# the repo. Unless a later match takes precedence, these
# users will be requested for review when someone opens a
# pull request.
* @yunbodeng-db @andrefurlan-db @rcypher-databricks @jadewang-db @kravets-levko
* @yunbodeng-db @andrefurlan-db @rcypher-databricks @jadewang-db @kravets-levko @jackyhu-db

6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Release History

## v1.6.0 (2024-07-31)

- Security: Resolve HIGH vulnerability in x/net (CVE-2023-39325) (databricks/databricks-sql-go#233 by @anthonycrobinson)
- Expose `dbsql.ConnOption` type (databricks/databricks-sql-go#202 by @shelldandy)
- Fix a connection leak in PingContext (databricks/databricks-sql-go#240 by @jackyhu-db)

## v1.5.7 (2024-06-05)

- Reverted dependencies upgrade because of compatibility issues (databricks/databricks-sql-go#228)
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.5.7" // update version before each release
var DriverVersion = "1.6.0" // update version before each release

type databricksDriver struct{}

Expand Down
Loading