-
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.
Security/128 fix security issues (#129)
* prepare new release * update driver version * update go version and exasol in CI * update changelog * update golangci-lint * add error checks * restore * rewrite checks. and test cases * improve changelog * avoid defer in loop. reuse connections in test cases where is possible
- Loading branch information
1 parent
f9283be
commit 1ccbc5f
Showing
13 changed files
with
105 additions
and
34 deletions.
There are no files selected for viewing
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
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,7 +1,7 @@ | ||
sources: | ||
- type: golang | ||
path: go.mod | ||
version: 1.0.11 | ||
version: 1.0.12 | ||
excludes: | ||
# Releases are done with Release Droid because PK does not yet support release process for Go projects. | ||
- "E-PK-CORE-26: 'release_config.yml' exists but must not exist. Reason: Release-droid configuration is replaced by release.yml" |
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,28 @@ | ||
# Exasol Driver go 1.0.12, released 2025-02-10 | ||
|
||
Code name: Update to go 1.22 and improved error handling | ||
|
||
## Summary | ||
|
||
This release updates to go 1.22 and updates version used in CI pipeline to fix vulnerabilities in the go standard library: | ||
- GO-2024-3107 | ||
- GO-2024-3105 | ||
- GO-2024-3106 | ||
|
||
It also improves the detection of errors during login. | ||
|
||
## Security | ||
|
||
* #128: Fix security issues in dependencies / standard library | ||
|
||
## Dependency Updates | ||
|
||
### Compile Dependency Updates | ||
|
||
* Updated `golang:1.21` to `1.22` | ||
* Updated `github.com/stretchr/testify:v1.9.0` to `v1.10.0` | ||
* Updated `github.com/exasol/exasol-test-setup-abstraction-server/go-client:v0.3.9` to `v0.3.10` | ||
|
||
### Test Dependency Updates | ||
|
||
* Updated `golang.org/x/sync:v0.7.0` to `v0.11.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,22 +1,22 @@ | ||
module github.com/exasol/exasol-driver-go | ||
|
||
go 1.21 | ||
go 1.22 | ||
|
||
require ( | ||
github.com/exasol/error-reporting-go v0.2.0 | ||
github.com/exasol/exasol-test-setup-abstraction-server/go-client v0.3.9 | ||
github.com/exasol/exasol-test-setup-abstraction-server/go-client v0.3.10 | ||
github.com/gorilla/websocket v1.5.3 | ||
github.com/stretchr/testify v1.9.0 | ||
github.com/stretchr/testify v1.10.0 | ||
go.uber.org/goleak v1.3.0 | ||
golang.org/x/sync v0.7.0 | ||
golang.org/x/sync v0.11.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.12.0 // indirect | ||
github.com/rogpeppe/go-internal v1.13.1 // indirect | ||
github.com/stretchr/objx v0.5.2 // indirect | ||
golang.org/x/net v0.34.0 // indirect | ||
) |
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,3 +1,3 @@ | ||
package version | ||
|
||
const DriverVersion = "v1.0.11" | ||
const DriverVersion = "v1.0.12" |
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
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