Skip to content

Commit e4f00c2

Browse files
committed
v1.12.4
1 parent 0168949 commit e4f00c2

File tree

7 files changed

+18
-14
lines changed

7 files changed

+18
-14
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
Go-hdb is a native Go (golang) HANA database driver for Go's sql package. It implements the SAP HANA SQL command network protocol.
88

9-
For the official SAP HANA client Go support (not this database driver) please see [SAP Help Portal](https://help.sap.com/docs/SAP_HANA_PLATFORM/0eec0d68141541d1b07893a39944924e/0ffbe86c9d9f44338441829c6bee15e6.html).
9+
For the official SAP HANA client Go support (not this database driver) please see [SAP Help Portal](https://help.sap.com/docs/SAP_HANA_CLIENT).
1010

1111
## Installation
1212

RELEASENOTES.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,10 @@ Release Notes
55

66
### Minor revisions
77

8+
#### v1.12.4
9+
- updated dependencies
10+
- fixed README.me HANA client link
11+
812
#### v1.12.3
913
- updated dependencies
1014
- fixed linter issues

driver/driver.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import (
1010
)
1111

1212
// DriverVersion is the version number of the hdb driver.
13-
const DriverVersion = "1.12.3"
13+
const DriverVersion = "1.12.4"
1414

1515
// DriverName is the driver name to use with sql.Open for hdb databases.
1616
const DriverName = "hdb"

go.mod

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,6 @@ go 1.22
55
toolchain go1.23.2
66

77
require (
8-
golang.org/x/crypto v0.27.0
9-
golang.org/x/text v0.18.0
8+
golang.org/x/crypto v0.28.0
9+
golang.org/x/text v0.19.0
1010
)

go.sum

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
golang.org/x/crypto v0.27.0 h1:GXm2NjJrPaiv/h1tb2UH8QfgC/hOf/+z0p6PT8o1w7A=
2-
golang.org/x/crypto v0.27.0/go.mod h1:1Xngt8kV6Dvbssa53Ziq6Eqn0HqbZi5Z6R0ZpwQzt70=
3-
golang.org/x/text v0.18.0 h1:XvMDiNzPAl0jr17s6W9lcaIhGUfUORdGCNsuLmPG224=
4-
golang.org/x/text v0.18.0/go.mod h1:BuEKDfySbSR4drPmRPG/7iBdf8hvFMuRexcpahXilzY=
1+
golang.org/x/crypto v0.28.0 h1:GBDwsMXVQi34v5CCYUm2jkJvu4cbtru2U4TN2PSyQnw=
2+
golang.org/x/crypto v0.28.0/go.mod h1:rmgy+3RHxRZMyY0jjAJShp2zgEdOqj2AO7U0pYmeQ7U=
3+
golang.org/x/text v0.19.0 h1:kTxAhCbGbxhK0IwgSKiMO5awPoDQ0RpfiVYBfK860YM=
4+
golang.org/x/text v0.19.0/go.mod h1:BuEKDfySbSR4drPmRPG/7iBdf8hvFMuRexcpahXilzY=

prometheus/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,5 +12,5 @@ all:
1212
@echo execute tests on latest go version
1313
go test ./...
1414
# @echo execute tests on older supported go versions
15-
GOTOOLCHAIN=go1.22.7 go1.22.7 test ./...
15+
GOTOOLCHAIN=go1.22.8 go1.22.8 test ./...
1616
# @echo execute tests on future supported go versions

prometheus/go.mod

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ toolchain go1.23.2
77
// replace github.com/SAP/go-hdb => ..
88

99
require (
10-
github.com/SAP/go-hdb v1.12.3
10+
github.com/SAP/go-hdb v1.12.4
1111
github.com/prometheus/client_golang v1.20.4
1212
)
1313

@@ -19,8 +19,8 @@ require (
1919
github.com/prometheus/client_model v0.6.1 // indirect
2020
github.com/prometheus/common v0.60.0 // indirect
2121
github.com/prometheus/procfs v0.15.1 // indirect
22-
golang.org/x/crypto v0.27.0 // indirect
23-
golang.org/x/sys v0.25.0 // indirect
24-
golang.org/x/text v0.18.0 // indirect
25-
google.golang.org/protobuf v1.34.2 // indirect
22+
golang.org/x/crypto v0.28.0 // indirect
23+
golang.org/x/sys v0.26.0 // indirect
24+
golang.org/x/text v0.19.0 // indirect
25+
google.golang.org/protobuf v1.35.1 // indirect
2626
)

0 commit comments

Comments
 (0)