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

#119: Upgrade dependencies #120

Merged
merged 6 commits into from
Jul 29, 2024
Merged
Show file tree
Hide file tree
Changes from 3 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
4 changes: 2 additions & 2 deletions .github/workflows/ci-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ 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"
Expand All @@ -17,7 +17,7 @@ jobs:
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"