Skip to content

Commit d845db3

Browse files
committed
Update DoltgreSQL version to 0.53.4
1 parent 993e5a1 commit d845db3

File tree

3 files changed

+7
-4
lines changed

3 files changed

+7
-4
lines changed

server/server.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ import (
4646
// Version should have a new line that follows, else the formatter will fail the PR created by the release GH action
4747

4848
const (
49-
Version = "0.53.1"
49+
Version = "0.53.4"
5050

5151
DefUserName = "postres"
5252
DefUserEmail = "[email protected]"

servercfg/config.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -147,9 +147,9 @@ type DoltgesMetricsConfig struct {
147147
Labels map[string]string `yaml:"labels,omitempty" minver:"0.7.4"`
148148
Host *string `yaml:"host,omitempty" minver:"0.7.4"`
149149
Port *int `yaml:"port,omitempty" minver:"0.7.4"`
150-
TlsCert *string `yaml:"tls_cert,omitempty" minver:"TBD"`
151-
TlsKey *string `yaml:"tls_key,omitempty" minver:"TBD"`
152-
TlsCa *string `yaml:"tls_ca,omitempty" minver:"TBD"`
150+
TlsCert *string `yaml:"tls_cert,omitempty" minver:"0.53.4"`
151+
TlsKey *string `yaml:"tls_key,omitempty" minver:"0.53.4"`
152+
TlsCa *string `yaml:"tls_ca,omitempty" minver:"0.53.4"`
153153
}
154154

155155
type DoltgresRemotesapiConfig struct {

servercfg/testdata/minver_validation.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,9 @@ MetricsConfig *servercfg.DoltgesMetricsConfig 0.7.4 metrics,omitempty
2929
-Labels map[string]string 0.7.4 labels,omitempty
3030
-Host *string 0.7.4 host,omitempty
3131
-Port *int 0.7.4 port,omitempty
32+
-TlsCert *string 0.53.4 tls_cert,omitempty
33+
-TlsKey *string 0.53.4 tls_key,omitempty
34+
-TlsCa *string 0.53.4 tls_ca,omitempty
3235
RemotesapiConfig *servercfg.DoltgresRemotesapiConfig 0.7.4 remotesapi,omitempty
3336
-Port *int 0.7.4 port,omitempty
3437
-ReadOnly *bool 0.7.4 read_only,omitempty

0 commit comments

Comments
 (0)