-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
Co-authored-by: Christoph Kuhnke <[email protected]> Co-authored-by: Christoph Pirkl <[email protected]>
- Loading branch information
1 parent
baadefb
commit f987853
Showing
22 changed files
with
294 additions
and
134 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
sources: | ||
- type: golang | ||
path: go.mod | ||
version: 1.0.4 | ||
version: 1.0.5 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
# Exasol Driver go 1.0.5, released 2024-03-13 | ||
|
||
Code name: Escape connection string | ||
|
||
## Summary | ||
|
||
This release supports using `;` in the connection string. When using the builder like this, it will automatically escape the semicolon: | ||
|
||
```go | ||
connectionString := exasol.NewConfig("<username>", "<password>"). | ||
Host("<host>"). | ||
Port(8563). | ||
ClientName("My Client; Version abc"). | ||
String() | ||
``` | ||
|
||
When using the connection string directly, you need to escape `;` with a `\`: | ||
|
||
```go | ||
connectionString := `exa:localhost:1234;user=sys;password=exasol;clientname=My Client\; Version abc` | ||
``` | ||
|
||
Additionally this release also support specifying an URL path when creating the WebSocket connection to the database. This is only required in special situations and should not be used when connecting to an Exasol database. | ||
|
||
## Features | ||
|
||
* #103: Added support for URL Path when connecting | ||
|
||
## Dependency Updates | ||
|
||
### Compile Dependency Updates | ||
|
||
* Updated `golang:1.20` to `1.21` | ||
* Updated `github.com/gorilla/websocket:v1.5.0` to `v1.5.1` | ||
* Updated `github.com/stretchr/testify:v1.8.4` to `v1.9.0` | ||
* Updated `github.com/exasol/exasol-test-setup-abstraction-server/go-client:v0.3.4` to `v0.3.6` | ||
|
||
### Test Dependency Updates | ||
|
||
* Updated `go.uber.org/goleak:v1.2.1` to `v1.3.0` | ||
* Updated `golang.org/x/sync:v0.4.0` to `v0.6.0` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,22 @@ | ||
module github.com/exasol/exasol-driver-go | ||
|
||
go 1.20 | ||
go 1.21 | ||
|
||
require ( | ||
github.com/exasol/error-reporting-go v0.2.0 | ||
github.com/exasol/exasol-test-setup-abstraction-server/go-client v0.3.4 | ||
github.com/gorilla/websocket v1.5.0 | ||
github.com/stretchr/testify v1.8.4 | ||
go.uber.org/goleak v1.2.1 | ||
golang.org/x/sync v0.4.0 | ||
github.com/exasol/exasol-test-setup-abstraction-server/go-client v0.3.6 | ||
github.com/gorilla/websocket v1.5.1 | ||
github.com/stretchr/testify v1.9.0 | ||
go.uber.org/goleak v1.3.0 | ||
golang.org/x/sync v0.6.0 | ||
gopkg.in/yaml.v3 v3.0.1 | ||
) | ||
|
||
require ( | ||
github.com/davecgh/go-spew v1.1.1 // indirect | ||
github.com/kr/text v0.2.0 // indirect | ||
github.com/pmezard/go-difflib v1.0.0 // indirect | ||
github.com/rogpeppe/go-internal v1.11.0 // indirect | ||
github.com/stretchr/objx v0.5.1 // indirect | ||
github.com/rogpeppe/go-internal v1.12.0 // indirect | ||
github.com/stretchr/objx v0.5.2 // indirect | ||
golang.org/x/net v0.22.0 // indirect | ||
) |
Oops, something went wrong.