diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 251294c..02c59f6 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -30,7 +30,7 @@ jobs: matrix: goos: [linux] goarch: [amd64, arm, arm64, s390x] - go: ['1.23.3', '1.22.9'] + go: ['1.23.4', '1.22.10'] fail-fast: false name: Go ${{ matrix.go }} ${{ matrix.goos }} ${{ matrix.goarch }} build @@ -71,7 +71,7 @@ jobs: runs-on: macos-latest strategy: matrix: - go: ['1.23.3', '1.22.9'] + go: ['1.23.4', '1.22.10'] fail-fast: false name: Go ${{ matrix.go }} macOS @@ -104,7 +104,7 @@ jobs: runs-on: windows-latest strategy: matrix: - go: ['1.23.3', '1.22.9'] + go: ['1.23.4', '1.22.10'] fail-fast: false name: Go ${{ matrix.go }} Windows diff --git a/Makefile b/Makefile index df41e00..f7911b0 100644 --- a/Makefile +++ b/Makefile @@ -13,8 +13,8 @@ all: go test ./... go test ./... -race # @echo execute tests on older supported go versions - GOTOOLCHAIN=go1.22.9 go1.22.9 test ./... - GOTOOLCHAIN=go1.22.9 go1.22.9 test ./... -race + GOTOOLCHAIN=go1.22.10 go1.22.10 test ./... + GOTOOLCHAIN=go1.22.10 go1.22.10 test ./... -race # @echo execute tests on future supported go versions #see fsfe reuse tool (https://git.fsfe.org/reuse/tool) @@ -44,5 +44,5 @@ tools: #install additional go versions go: - go install golang.org/dl/go1.22.9@latest - go1.22.9 download + go install golang.org/dl/go1.22.10@latest + go1.22.10 download diff --git a/RELEASENOTES.md b/RELEASENOTES.md index 7bccb18..b555f50 100644 --- a/RELEASENOTES.md +++ b/RELEASENOTES.md @@ -5,6 +5,9 @@ Release Notes ### Minor revisions +#### v1.12.7 +- updated dependencies + #### v1.12.6 - updated dependencies diff --git a/driver/driver.go b/driver/driver.go index 446dfe4..97e67dc 100644 --- a/driver/driver.go +++ b/driver/driver.go @@ -10,7 +10,7 @@ import ( ) // DriverVersion is the version number of the hdb driver. -const DriverVersion = "1.12.6" +const DriverVersion = "1.12.7" // DriverName is the driver name to use with sql.Open for hdb databases. const DriverName = "hdb" diff --git a/go.mod b/go.mod index 17302aa..91d2e39 100644 --- a/go.mod +++ b/go.mod @@ -2,9 +2,9 @@ module github.com/SAP/go-hdb go 1.22 -toolchain go1.23.3 +toolchain go1.23.4 require ( - golang.org/x/crypto v0.29.0 - golang.org/x/text v0.20.0 + golang.org/x/crypto v0.30.0 + golang.org/x/text v0.21.0 ) diff --git a/go.sum b/go.sum index 41c7a62..ffaa666 100644 --- a/go.sum +++ b/go.sum @@ -1,4 +1,4 @@ -golang.org/x/crypto v0.29.0 h1:L5SG1JTTXupVV3n6sUqMTeWbjAyfPwoda2DLX8J8FrQ= -golang.org/x/crypto v0.29.0/go.mod h1:+F4F4N5hv6v38hfeYwTdx20oUvLLc+QfrE9Ax9HtgRg= -golang.org/x/text v0.20.0 h1:gK/Kv2otX8gz+wn7Rmb3vT96ZwuoxnQlY+HlJVj7Qug= -golang.org/x/text v0.20.0/go.mod h1:D4IsuqiFMhST5bX19pQ9ikHC2GsaKyk/oF+pn3ducp4= +golang.org/x/crypto v0.30.0 h1:RwoQn3GkWiMkzlX562cLB7OxWvjH1L8xutO2WoJcRoY= +golang.org/x/crypto v0.30.0/go.mod h1:kDsLvtWBEx7MV9tJOj9bnXsPbxwJQ6csT/x4KIN4Ssk= +golang.org/x/text v0.21.0 h1:zyQAAkrwaneQ066sspRyJaG9VNi/YJ1NfzcGB3hZ/qo= +golang.org/x/text v0.21.0/go.mod h1:4IBbMaMmOPCJ8SecivzSH54+73PCFmPWxNTLm+vZkEQ= diff --git a/prometheus/Makefile b/prometheus/Makefile index 9d4fddb..e273dce 100644 --- a/prometheus/Makefile +++ b/prometheus/Makefile @@ -12,5 +12,5 @@ all: @echo execute tests on latest go version go test ./... # @echo execute tests on older supported go versions - GOTOOLCHAIN=go1.22.9 go1.22.9 test ./... + GOTOOLCHAIN=go1.22.10 go1.22.10 test ./... # @echo execute tests on future supported go versions diff --git a/prometheus/go.mod b/prometheus/go.mod index f1ddf45..d620157 100644 --- a/prometheus/go.mod +++ b/prometheus/go.mod @@ -2,7 +2,7 @@ module github.com/SAP/go-hdb/prometheus go 1.22 -toolchain go1.23.3 +toolchain go1.23.4 // replace github.com/SAP/go-hdb => .. @@ -17,10 +17,10 @@ require ( github.com/klauspost/compress v1.17.9 // indirect github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect github.com/prometheus/client_model v0.6.1 // indirect - github.com/prometheus/common v0.60.1 // indirect + github.com/prometheus/common v0.61.0 // indirect github.com/prometheus/procfs v0.15.1 // indirect - golang.org/x/crypto v0.29.0 // indirect - golang.org/x/sys v0.27.0 // indirect - golang.org/x/text v0.20.0 // indirect + golang.org/x/crypto v0.30.0 // indirect + golang.org/x/sys v0.28.0 // indirect + golang.org/x/text v0.21.0 // indirect google.golang.org/protobuf v1.35.2 // indirect )