[ga-bump-release] Update Dolt version to 1.78.2 and release v1.78.2

This commit is contained in:
coffeegoddd
2025-11-20 19:20:52 +00:00
parent 983536931f
commit 1dc3732096
3 changed files with 7 additions and 4 deletions

View File

@@ -15,5 +15,5 @@
package doltversion
const (
Version = "1.78.1"
Version = "1.78.2"
)

View File

@@ -61,6 +61,9 @@ MetricsConfig servercfg.MetricsYAMLConfig 0.0.0 metrics,omitempty
-Labels map[string]string 0.0.0 labels
-Host *string 0.0.0 host,omitempty
-Port *int 0.0.0 port,omitempty
-TlsCert *string 1.78.2 tls_cert,omitempty
-TlsKey *string 1.78.2 tls_key,omitempty
-TlsCa *string 1.78.2 tls_ca,omitempty
ClusterCfg *servercfg.ClusterYAMLConfig 0.0.0 cluster,omitempty
-StandbyRemotes_ []servercfg.StandbyRemoteYAMLConfig 0.0.0 standby_remotes
--Name_ string 0.0.0 name

View File

@@ -111,9 +111,9 @@ type MetricsYAMLConfig struct {
Labels map[string]string `yaml:"labels"`
Host *string `yaml:"host,omitempty"`
Port *int `yaml:"port,omitempty"`
TlsCert *string `yaml:"tls_cert,omitempty" minver:"TBD"`
TlsKey *string `yaml:"tls_key,omitempty" minver:"TBD"`
TlsCa *string `yaml:"tls_ca,omitempty" minver:"TBD"`
TlsCert *string `yaml:"tls_cert,omitempty" minver:"1.78.2"`
TlsKey *string `yaml:"tls_key,omitempty" minver:"1.78.2"`
TlsCa *string `yaml:"tls_ca,omitempty" minver:"1.78.2"`
}
type RemotesapiYAMLConfig struct {