Skip to content

Commit

Permalink
[ga-bump-release] Update Dolt version to 1.50.0 and release v1.50.0
Browse files Browse the repository at this point in the history
  • Loading branch information
coffeegoddd committed Feb 27, 2025
1 parent 529fbe7 commit ab7b558
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion go/cmd/dolt/doltversion/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,5 @@
package doltversion

const (
Version = "1.49.3"
Version = "1.50.0"
)
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions go/libraries/doltcore/servercfg/yaml_config.go
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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 {
Expand Down

0 comments on commit ab7b558

Please sign in to comment.