Skip to content

Commit

Permalink
v1.12.5
Browse files Browse the repository at this point in the history
  • Loading branch information
stfnmllr committed Oct 31, 2024
1 parent e4f00c2 commit e1ff110
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 1 deletion.
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.5
- updated documentation

#### v1.12.4
- updated dependencies
- fixed README.me HANA client link
Expand Down
2 changes: 2 additions & 0 deletions driver/connector.go
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@ func NewBasicAuthConnector(host, username, password string) *Connector {
}

// NewX509AuthConnector creates a connector for X509 (client certificate) authentication.
// Parameters clientCert and clientKey in PEM format, clientKey not password encryped.
func NewX509AuthConnector(host string, clientCert, clientKey []byte) (*Connector, error) {
c := NewConnector()
c._host = host
Expand All @@ -59,6 +60,7 @@ func NewX509AuthConnector(host string, clientCert, clientKey []byte) (*Connector

// NewX509AuthConnectorByFiles creates a connector for X509 (client certificate) authentication
// based on client certificate and client key files.
// Parameters clientCertFile and clientKeyFile in PEM format, clientKeyFile not password encryped.
func NewX509AuthConnectorByFiles(host, clientCertFile, clientKeyFile string) (*Connector, error) {
c := NewConnector()
c._host = host
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.4"
const DriverVersion = "1.12.5"

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

0 comments on commit e1ff110

Please sign in to comment.