Skip to content

Commit

Permalink
#119: Upgrade dependencies (#120)
Browse files Browse the repository at this point in the history
  • Loading branch information
kaklakariada authored Jul 29, 2024
1 parent 4b07409 commit 6dc81ea
Show file tree
Hide file tree
Showing 8 changed files with 27 additions and 17 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,16 +8,16 @@ jobs:
matrix-build:
strategy:
matrix:
go: ["1.21", "1.22"]
go: ["1.21.12", "1.22.5"]
db: ["7.1.26", "8.27.0"]
env:
DEFAULT_GO: "1.22"
DEFAULT_GO: "1.21.12"
DEFAULT_DB: "8.27.0"
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}-go-${{ matrix.go }}-db-${{ matrix.db }}
cancel-in-progress: true
name: Build with go version ${{ matrix.go }} and db ${{ matrix.db }}
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
defaults:
run:
shell: "bash"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/dependencies_check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
id: go
uses: actions/setup-go@v5
with:
go-version: "1.22"
go-version: "1.22.5"
cache: true

- name: Install vulncheck
Expand Down
2 changes: 1 addition & 1 deletion .project-keeper.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
sources:
- type: golang
path: go.mod
version: 1.0.9
version: 1.0.10
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"
1 change: 1 addition & 0 deletions doc/changes/changelog.md

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

13 changes: 13 additions & 0 deletions doc/changes/changes_1.0.10.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# Exasol Driver go 1.0.10, released 2024-07-29

Code name: Fix vulnerability GO-2024-2963 in `net/[email protected]`

## Summary

This release fixes vulnerability [GO-2024-2963](https://pkg.go.dev/vuln/GO-2024-2963) in `net/[email protected]` by upgrading builds to the latest Go version 1.22.5.

**Important:** We recommend users to also upgrade to the latest Go version in order to fix this vulnerability.

## Security

* #119: Fixed vulnerability GO-2024-2963 in `net/[email protected]`
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -18,5 +18,5 @@ require (
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/rogpeppe/go-internal v1.12.0 // indirect
github.com/stretchr/objx v0.5.2 // indirect
golang.org/x/net v0.26.0 // indirect
golang.org/x/net v0.27.0 // indirect
)
16 changes: 6 additions & 10 deletions go.sum

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion internal/version/version.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
package version

const DriverVersion = "v1.0.9"
const DriverVersion = "v1.0.10"

0 comments on commit 6dc81ea

Please sign in to comment.