From ab7b5589a27b837fdc95410d406def309e8ed8ae Mon Sep 17 00:00:00 2001 From: coffeegoddd Date: Thu, 27 Feb 2025 17:31:47 +0000 Subject: [PATCH] [ga-bump-release] Update Dolt version to 1.50.0 and release v1.50.0 --- go/cmd/dolt/doltversion/version.go | 2 +- .../doltcore/servercfg/testdata/minver_validation.txt | 2 ++ go/libraries/doltcore/servercfg/yaml_config.go | 4 ++-- 3 files changed, 5 insertions(+), 3 deletions(-) diff --git a/go/cmd/dolt/doltversion/version.go b/go/cmd/dolt/doltversion/version.go index 55cfd0abf2e..cf0835db5c8 100644 --- a/go/cmd/dolt/doltversion/version.go +++ b/go/cmd/dolt/doltversion/version.go @@ -16,5 +16,5 @@ package doltversion const ( - Version = "1.49.3" + Version = "1.50.0" ) diff --git a/go/libraries/doltcore/servercfg/testdata/minver_validation.txt b/go/libraries/doltcore/servercfg/testdata/minver_validation.txt index f13c2fbcc69..28b759ab296 100644 --- a/go/libraries/doltcore/servercfg/testdata/minver_validation.txt +++ b/go/libraries/doltcore/servercfg/testdata/minver_validation.txt @@ -11,6 +11,8 @@ BehaviorConfig servercfg.BehaviorYAMLConfig 0.0.0 behavior,omitempty -DisableClientMultiStatements *bool 0.0.0 disable_client_multi_statements,omitempty -DoltTransactionCommit *bool 0.0.0 dolt_transaction_commit,omitempty -EventSchedulerStatus *string 1.17.0 event_scheduler,omitempty +-AutoGCBehavior *servercfg.AutoGCBehaviorYAMLConfig 1.50.0 auto_gc_behavior,omitempty +--Enable_ *bool 1.50.0 enable,omitempty UserConfig servercfg.UserYAMLConfig 0.0.0 user,omitempty -Name *string 0.0.0 name,omitempty -Password *string 0.0.0 password,omitempty diff --git a/go/libraries/doltcore/servercfg/yaml_config.go b/go/libraries/doltcore/servercfg/yaml_config.go index 5f370f33505..34ba03712bc 100644 --- a/go/libraries/doltcore/servercfg/yaml_config.go +++ b/go/libraries/doltcore/servercfg/yaml_config.go @@ -66,7 +66,7 @@ type BehaviorYAMLConfig struct { EventSchedulerStatus *string `yaml:"event_scheduler,omitempty" minver:"1.17.0"` - AutoGCBehavior *AutoGCBehaviorYAMLConfig `yaml:"auto_gc_behavior,omitempty" minver:"TBD"` + AutoGCBehavior *AutoGCBehaviorYAMLConfig `yaml:"auto_gc_behavior,omitempty" minver:"1.50.0"` } // UserYAMLConfig contains server configuration regarding the user account clients must use to connect @@ -935,7 +935,7 @@ func (cfg YAMLConfig) ValueSet(value string) bool { } type AutoGCBehaviorYAMLConfig struct { - Enable_ *bool `yaml:"enable,omitempty" minver:"TBD"` + Enable_ *bool `yaml:"enable,omitempty" minver:"1.50.0"` } func (a *AutoGCBehaviorYAMLConfig) Enable() bool {