Skip to content

Commit

Permalink
v1.12.6
Browse files Browse the repository at this point in the history
  • Loading branch information
stfnmllr committed Nov 27, 2024
1 parent e1ff110 commit fe4b61b
Show file tree
Hide file tree
Showing 9 changed files with 28 additions and 26 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
matrix:
goos: [linux]
goarch: [amd64, arm, arm64, s390x]
go: ['1.23.2', '1.22.8']
go: ['1.23.3', '1.22.9']
fail-fast: false

name: Go ${{ matrix.go }} ${{ matrix.goos }} ${{ matrix.goarch }} build
Expand Down Expand Up @@ -71,7 +71,7 @@ jobs:
runs-on: macos-latest
strategy:
matrix:
go: ['1.23.2', '1.22.8']
go: ['1.23.3', '1.22.9']
fail-fast: false

name: Go ${{ matrix.go }} macOS
Expand Down Expand Up @@ -104,7 +104,7 @@ jobs:
runs-on: windows-latest
strategy:
matrix:
go: ['1.23.2', '1.22.8']
go: ['1.23.3', '1.22.9']
fail-fast: false

name: Go ${{ matrix.go }} Windows
Expand Down
3 changes: 1 addition & 2 deletions .golangci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,6 @@ linters:
- nonamedreturns
- nlreturn
- ireturn
- gomnd
- gochecknoglobals
- exhaustruct
- gochecknoinits
Expand Down Expand Up @@ -89,10 +88,10 @@ linters:
- errchkjson
- gci
- noctx
- execinquery
- rowserrcheck
- mnd
- exportloopref
- recvcheck
#enable-all: false
#enable:
# - ...
8 changes: 4 additions & 4 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ all:
go test ./...
go test ./... -race
# @echo execute tests on older supported go versions
GOTOOLCHAIN=go1.22.8 go1.22.8 test ./...
GOTOOLCHAIN=go1.22.8 go1.22.8 test ./... -race
GOTOOLCHAIN=go1.22.9 go1.22.9 test ./...
GOTOOLCHAIN=go1.22.9 go1.22.9 test ./... -race
# @echo execute tests on future supported go versions

#see fsfe reuse tool (https://git.fsfe.org/reuse/tool)
Expand Down Expand Up @@ -44,5 +44,5 @@ tools:

#install additional go versions
go:
go install golang.org/dl/go1.22.8@latest
go1.22.8 download
go install golang.org/dl/go1.22.9@latest
go1.22.9 download
3 changes: 3 additions & 0 deletions RELEASENOTES.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@ Release Notes

### Minor revisions

#### v1.12.6
- updated dependencies

#### v1.12.5
- updated documentation

Expand Down
2 changes: 1 addition & 1 deletion driver/driver.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import (
)

// DriverVersion is the version number of the hdb driver.
const DriverVersion = "1.12.5"
const DriverVersion = "1.12.6"

// DriverName is the driver name to use with sql.Open for hdb databases.
const DriverName = "hdb"
Expand Down
6 changes: 3 additions & 3 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ module github.com/SAP/go-hdb

go 1.22

toolchain go1.23.2
toolchain go1.23.3

require (
golang.org/x/crypto v0.28.0
golang.org/x/text v0.19.0
golang.org/x/crypto v0.29.0
golang.org/x/text v0.20.0
)
8 changes: 4 additions & 4 deletions go.sum
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
golang.org/x/crypto v0.28.0 h1:GBDwsMXVQi34v5CCYUm2jkJvu4cbtru2U4TN2PSyQnw=
golang.org/x/crypto v0.28.0/go.mod h1:rmgy+3RHxRZMyY0jjAJShp2zgEdOqj2AO7U0pYmeQ7U=
golang.org/x/text v0.19.0 h1:kTxAhCbGbxhK0IwgSKiMO5awPoDQ0RpfiVYBfK860YM=
golang.org/x/text v0.19.0/go.mod h1:BuEKDfySbSR4drPmRPG/7iBdf8hvFMuRexcpahXilzY=
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=
2 changes: 1 addition & 1 deletion prometheus/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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.8 go1.22.8 test ./...
GOTOOLCHAIN=go1.22.9 go1.22.9 test ./...
# @echo execute tests on future supported go versions
16 changes: 8 additions & 8 deletions prometheus/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@ module github.com/SAP/go-hdb/prometheus

go 1.22

toolchain go1.23.2
toolchain go1.23.3

// replace github.com/SAP/go-hdb => ..

require (
github.com/SAP/go-hdb v1.12.4
github.com/prometheus/client_golang v1.20.4
github.com/SAP/go-hdb v1.12.6
github.com/prometheus/client_golang v1.20.5
)

require (
Expand All @@ -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.0 // indirect
github.com/prometheus/common v0.60.1 // indirect
github.com/prometheus/procfs v0.15.1 // indirect
golang.org/x/crypto v0.28.0 // indirect
golang.org/x/sys v0.26.0 // indirect
golang.org/x/text v0.19.0 // indirect
google.golang.org/protobuf v1.35.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
google.golang.org/protobuf v1.35.2 // indirect
)

0 comments on commit fe4b61b

Please sign in to comment.